@@ -48,16 +48,14 @@ def _build_response(
4848
4949def sync_detailed (
5050 * ,
51- client : AuthenticatedClient | Client ,
51+ client : AuthenticatedClient ,
5252) -> Response [list [RendererManifest ]]:
5353 """Get Renderer Allowlist
5454
5555 Get the list of allowed renderer domains.
5656
57- In production, this could be loaded from:
58- - Database
59- - Environment variables
60- - External config service
57+ Returns static allowlist plus dynamically loaded domains from
58+ MCP endpoints with allow_renderers enabled.
6159
6260 Raises:
6361 errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -78,16 +76,14 @@ def sync_detailed(
7876
7977def sync (
8078 * ,
81- client : AuthenticatedClient | Client ,
79+ client : AuthenticatedClient ,
8280) -> list [RendererManifest ] | None :
8381 """Get Renderer Allowlist
8482
8583 Get the list of allowed renderer domains.
8684
87- In production, this could be loaded from:
88- - Database
89- - Environment variables
90- - External config service
85+ Returns static allowlist plus dynamically loaded domains from
86+ MCP endpoints with allow_renderers enabled.
9187
9288 Raises:
9389 errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -104,16 +100,14 @@ def sync(
104100
105101async def asyncio_detailed (
106102 * ,
107- client : AuthenticatedClient | Client ,
103+ client : AuthenticatedClient ,
108104) -> Response [list [RendererManifest ]]:
109105 """Get Renderer Allowlist
110106
111107 Get the list of allowed renderer domains.
112108
113- In production, this could be loaded from:
114- - Database
115- - Environment variables
116- - External config service
109+ Returns static allowlist plus dynamically loaded domains from
110+ MCP endpoints with allow_renderers enabled.
117111
118112 Raises:
119113 errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -132,16 +126,14 @@ async def asyncio_detailed(
132126
133127async def asyncio (
134128 * ,
135- client : AuthenticatedClient | Client ,
129+ client : AuthenticatedClient ,
136130) -> list [RendererManifest ] | None :
137131 """Get Renderer Allowlist
138132
139133 Get the list of allowed renderer domains.
140134
141- In production, this could be loaded from:
142- - Database
143- - Environment variables
144- - External config service
135+ Returns static allowlist plus dynamically loaded domains from
136+ MCP endpoints with allow_renderers enabled.
145137
146138 Raises:
147139 errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
0 commit comments