robosystems-client 0.2.3__py3-none-any.whl → 0.2.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of robosystems-client might be problematic. Click here for more details.

Files changed (103) hide show
  1. robosystems_client/api/agent/auto_select_agent.py +1 -41
  2. robosystems_client/api/agent/batch_process_queries.py +1 -41
  3. robosystems_client/api/agent/execute_specific_agent.py +1 -41
  4. robosystems_client/api/agent/get_agent_metadata.py +5 -49
  5. robosystems_client/api/agent/list_agents.py +4 -42
  6. robosystems_client/api/agent/recommend_agent.py +5 -45
  7. robosystems_client/api/auth/generate_sso_token.py +0 -18
  8. robosystems_client/api/auth/get_current_auth_user.py +14 -74
  9. robosystems_client/api/auth/logout_user.py +14 -50
  10. robosystems_client/api/auth/refresh_auth_session.py +14 -50
  11. robosystems_client/api/auth/resend_verification_email.py +14 -74
  12. robosystems_client/api/backup/create_backup.py +5 -45
  13. robosystems_client/api/backup/get_backup_download_url.py +4 -42
  14. robosystems_client/api/backup/get_backup_stats.py +5 -49
  15. robosystems_client/api/backup/list_backups.py +4 -42
  16. robosystems_client/api/backup/restore_backup.py +5 -45
  17. robosystems_client/api/connections/create_connection.py +5 -45
  18. robosystems_client/api/connections/create_link_token.py +5 -45
  19. robosystems_client/api/connections/delete_connection.py +5 -49
  20. robosystems_client/api/connections/exchange_link_token.py +5 -45
  21. robosystems_client/api/connections/get_connection.py +5 -49
  22. robosystems_client/api/connections/get_connection_options.py +5 -49
  23. robosystems_client/api/connections/init_o_auth.py +5 -45
  24. robosystems_client/api/connections/list_connections.py +4 -42
  25. robosystems_client/api/connections/oauth_callback.py +5 -45
  26. robosystems_client/api/connections/sync_connection.py +5 -45
  27. robosystems_client/api/graph_analytics/get_graph_metrics.py +5 -49
  28. robosystems_client/api/graph_analytics/get_graph_usage_stats.py +4 -42
  29. robosystems_client/api/graph_billing/get_current_graph_bill.py +5 -49
  30. robosystems_client/api/graph_billing/get_graph_billing_history.py +4 -42
  31. robosystems_client/api/graph_billing/get_graph_monthly_bill.py +5 -49
  32. robosystems_client/api/graph_billing/get_graph_usage_details.py +4 -42
  33. robosystems_client/api/graph_credits/check_credit_balance.py +0 -38
  34. robosystems_client/api/graph_credits/check_storage_limits.py +1 -45
  35. robosystems_client/api/graph_credits/get_credit_summary.py +1 -45
  36. robosystems_client/api/graph_credits/get_storage_usage.py +0 -38
  37. robosystems_client/api/graph_credits/list_credit_transactions.py +4 -42
  38. robosystems_client/api/graph_health/get_database_health.py +5 -49
  39. robosystems_client/api/graph_info/get_database_info.py +5 -49
  40. robosystems_client/api/graph_limits/get_graph_limits.py +5 -49
  41. robosystems_client/api/graphs/create_graph.py +21 -57
  42. robosystems_client/api/graphs/get_available_extensions.py +131 -15
  43. robosystems_client/api/graphs/get_graphs.py +154 -79
  44. robosystems_client/api/graphs/select_graph.py +117 -49
  45. robosystems_client/api/mcp/call_mcp_tool.py +24 -47
  46. robosystems_client/api/mcp/list_mcp_tools.py +13 -61
  47. robosystems_client/api/operations/cancel_operation.py +1 -45
  48. robosystems_client/api/operations/get_operation_status.py +1 -45
  49. robosystems_client/api/query/execute_cypher_query.py +69 -53
  50. robosystems_client/api/schema/export_graph_schema.py +223 -65
  51. robosystems_client/api/schema/get_graph_schema.py +137 -79
  52. robosystems_client/api/schema/validate_schema.py +5 -45
  53. robosystems_client/api/subgraphs/create_subgraph.py +5 -45
  54. robosystems_client/api/subgraphs/delete_subgraph.py +5 -45
  55. robosystems_client/api/subgraphs/get_subgraph_info.py +5 -49
  56. robosystems_client/api/subgraphs/get_subgraph_quota.py +5 -49
  57. robosystems_client/api/subgraphs/list_subgraphs.py +5 -49
  58. robosystems_client/api/tables/delete_file.py +181 -301
  59. robosystems_client/api/tables/get_file_info.py +117 -265
  60. robosystems_client/api/tables/get_upload_url.py +193 -389
  61. robosystems_client/api/tables/ingest_tables.py +277 -465
  62. robosystems_client/api/tables/list_table_files.py +193 -373
  63. robosystems_client/api/tables/list_tables.py +189 -361
  64. robosystems_client/api/tables/query_tables.py +85 -141
  65. robosystems_client/api/tables/update_file_status.py +205 -349
  66. robosystems_client/api/user/create_user_api_key.py +1 -41
  67. robosystems_client/api/user/get_all_credit_summaries.py +14 -111
  68. robosystems_client/api/user/get_current_user.py +14 -75
  69. robosystems_client/api/user/list_user_api_keys.py +14 -75
  70. robosystems_client/api/user/revoke_user_api_key.py +1 -45
  71. robosystems_client/api/user/update_user.py +1 -41
  72. robosystems_client/api/user/update_user_api_key.py +1 -41
  73. robosystems_client/api/user/update_user_password.py +1 -41
  74. robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -38
  75. robosystems_client/api/user_analytics/get_user_usage_overview.py +14 -75
  76. robosystems_client/api/user_limits/get_all_shared_repository_limits.py +14 -105
  77. robosystems_client/api/user_limits/get_shared_repository_limits.py +1 -45
  78. robosystems_client/api/user_limits/get_user_limits.py +14 -75
  79. robosystems_client/api/user_limits/get_user_usage.py +14 -75
  80. robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +1 -45
  81. robosystems_client/api/user_subscriptions/get_repository_credits.py +1 -45
  82. robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +14 -75
  83. robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -38
  84. robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +1 -41
  85. robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +1 -41
  86. robosystems_client/extensions/__init__.py +8 -1
  87. robosystems_client/extensions/auth_integration.py +1 -2
  88. robosystems_client/extensions/query_client.py +3 -2
  89. robosystems_client/extensions/sse_client.py +1 -1
  90. robosystems_client/extensions/table_ingest_client.py +5 -0
  91. robosystems_client/extensions/utils.py +2 -2
  92. robosystems_client/models/__init__.py +4 -4
  93. robosystems_client/models/create_graph_request.py +4 -3
  94. robosystems_client/models/cypher_query_request.py +5 -22
  95. robosystems_client/models/schema_export_response.py +4 -2
  96. robosystems_client/models/schema_info_response.py +77 -0
  97. robosystems_client/models/{get_graph_schema_response_getgraphschema.py → schema_info_response_schema.py} +6 -6
  98. robosystems_client/models/schema_validation_response.py +7 -6
  99. robosystems_client/models/table_query_request.py +37 -2
  100. {robosystems_client-0.2.3.dist-info → robosystems_client-0.2.4.dist-info}/METADATA +2 -4
  101. {robosystems_client-0.2.3.dist-info → robosystems_client-0.2.4.dist-info}/RECORD +103 -102
  102. {robosystems_client-0.2.3.dist-info → robosystems_client-0.2.4.dist-info}/WHEEL +0 -0
  103. {robosystems_client-0.2.3.dist-info → robosystems_client-0.2.4.dist-info}/licenses/LICENSE +0 -0
@@ -7,34 +7,18 @@ from ... import errors
7
7
  from ...client import AuthenticatedClient, Client
8
8
  from ...models.create_graph_request import CreateGraphRequest
9
9
  from ...models.http_validation_error import HTTPValidationError
10
- from ...types import UNSET, Response, Unset
10
+ from ...types import Response
11
11
 
12
12
 
13
13
  def _get_kwargs(
14
14
  *,
15
15
  body: CreateGraphRequest,
16
- token: Union[None, Unset, str] = UNSET,
17
- authorization: Union[None, Unset, str] = UNSET,
18
16
  ) -> dict[str, Any]:
19
17
  headers: dict[str, Any] = {}
20
- if not isinstance(authorization, Unset):
21
- headers["authorization"] = authorization
22
-
23
- params: dict[str, Any] = {}
24
-
25
- json_token: Union[None, Unset, str]
26
- if isinstance(token, Unset):
27
- json_token = UNSET
28
- else:
29
- json_token = token
30
- params["token"] = json_token
31
-
32
- params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
33
18
 
34
19
  _kwargs: dict[str, Any] = {
35
20
  "method": "post",
36
21
  "url": "/v1/graphs",
37
- "params": params,
38
22
  }
39
23
 
40
24
  _kwargs["json"] = body.to_dict()
@@ -78,8 +62,6 @@ def sync_detailed(
78
62
  *,
79
63
  client: AuthenticatedClient,
80
64
  body: CreateGraphRequest,
81
- token: Union[None, Unset, str] = UNSET,
82
- authorization: Union[None, Unset, str] = UNSET,
83
65
  ) -> Response[Union[Any, HTTPValidationError]]:
84
66
  """Create New Graph Database
85
67
 
@@ -125,13 +107,12 @@ def sync_detailed(
125
107
  - `_links.status`: Point-in-time status check endpoint
126
108
 
127
109
  Args:
128
- token (Union[None, Unset, str]): JWT token for SSE authentication
129
- authorization (Union[None, Unset, str]):
130
110
  body (CreateGraphRequest): Request model for creating a new graph. Example:
131
- {'initial_entity': {'cik': '0001234567', 'name': 'Acme Corp', 'uri': 'https://acme.com'},
132
- 'instance_tier': 'kuzu-standard', 'metadata': {'description': 'Main production graph',
133
- 'graph_name': 'Production System', 'schema_extensions': ['roboledger']}, 'tags':
134
- ['production', 'finance']}.
111
+ {'initial_entity': {'cik': '0001234567', 'name': 'Acme Consulting LLC', 'uri':
112
+ 'https://acmeconsulting.com'}, 'instance_tier': 'kuzu-standard', 'metadata':
113
+ {'description': 'Professional consulting services with full accounting integration',
114
+ 'graph_name': 'Acme Consulting LLC', 'schema_extensions': ['roboledger']}, 'tags':
115
+ ['consulting', 'professional-services']}.
135
116
 
136
117
  Raises:
137
118
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -143,8 +124,6 @@ def sync_detailed(
143
124
 
144
125
  kwargs = _get_kwargs(
145
126
  body=body,
146
- token=token,
147
- authorization=authorization,
148
127
  )
149
128
 
150
129
  response = client.get_httpx_client().request(
@@ -158,8 +137,6 @@ def sync(
158
137
  *,
159
138
  client: AuthenticatedClient,
160
139
  body: CreateGraphRequest,
161
- token: Union[None, Unset, str] = UNSET,
162
- authorization: Union[None, Unset, str] = UNSET,
163
140
  ) -> Optional[Union[Any, HTTPValidationError]]:
164
141
  """Create New Graph Database
165
142
 
@@ -205,13 +182,12 @@ def sync(
205
182
  - `_links.status`: Point-in-time status check endpoint
206
183
 
207
184
  Args:
208
- token (Union[None, Unset, str]): JWT token for SSE authentication
209
- authorization (Union[None, Unset, str]):
210
185
  body (CreateGraphRequest): Request model for creating a new graph. Example:
211
- {'initial_entity': {'cik': '0001234567', 'name': 'Acme Corp', 'uri': 'https://acme.com'},
212
- 'instance_tier': 'kuzu-standard', 'metadata': {'description': 'Main production graph',
213
- 'graph_name': 'Production System', 'schema_extensions': ['roboledger']}, 'tags':
214
- ['production', 'finance']}.
186
+ {'initial_entity': {'cik': '0001234567', 'name': 'Acme Consulting LLC', 'uri':
187
+ 'https://acmeconsulting.com'}, 'instance_tier': 'kuzu-standard', 'metadata':
188
+ {'description': 'Professional consulting services with full accounting integration',
189
+ 'graph_name': 'Acme Consulting LLC', 'schema_extensions': ['roboledger']}, 'tags':
190
+ ['consulting', 'professional-services']}.
215
191
 
216
192
  Raises:
217
193
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -224,8 +200,6 @@ def sync(
224
200
  return sync_detailed(
225
201
  client=client,
226
202
  body=body,
227
- token=token,
228
- authorization=authorization,
229
203
  ).parsed
230
204
 
231
205
 
@@ -233,8 +207,6 @@ async def asyncio_detailed(
233
207
  *,
234
208
  client: AuthenticatedClient,
235
209
  body: CreateGraphRequest,
236
- token: Union[None, Unset, str] = UNSET,
237
- authorization: Union[None, Unset, str] = UNSET,
238
210
  ) -> Response[Union[Any, HTTPValidationError]]:
239
211
  """Create New Graph Database
240
212
 
@@ -280,13 +252,12 @@ async def asyncio_detailed(
280
252
  - `_links.status`: Point-in-time status check endpoint
281
253
 
282
254
  Args:
283
- token (Union[None, Unset, str]): JWT token for SSE authentication
284
- authorization (Union[None, Unset, str]):
285
255
  body (CreateGraphRequest): Request model for creating a new graph. Example:
286
- {'initial_entity': {'cik': '0001234567', 'name': 'Acme Corp', 'uri': 'https://acme.com'},
287
- 'instance_tier': 'kuzu-standard', 'metadata': {'description': 'Main production graph',
288
- 'graph_name': 'Production System', 'schema_extensions': ['roboledger']}, 'tags':
289
- ['production', 'finance']}.
256
+ {'initial_entity': {'cik': '0001234567', 'name': 'Acme Consulting LLC', 'uri':
257
+ 'https://acmeconsulting.com'}, 'instance_tier': 'kuzu-standard', 'metadata':
258
+ {'description': 'Professional consulting services with full accounting integration',
259
+ 'graph_name': 'Acme Consulting LLC', 'schema_extensions': ['roboledger']}, 'tags':
260
+ ['consulting', 'professional-services']}.
290
261
 
291
262
  Raises:
292
263
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -298,8 +269,6 @@ async def asyncio_detailed(
298
269
 
299
270
  kwargs = _get_kwargs(
300
271
  body=body,
301
- token=token,
302
- authorization=authorization,
303
272
  )
304
273
 
305
274
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -311,8 +280,6 @@ async def asyncio(
311
280
  *,
312
281
  client: AuthenticatedClient,
313
282
  body: CreateGraphRequest,
314
- token: Union[None, Unset, str] = UNSET,
315
- authorization: Union[None, Unset, str] = UNSET,
316
283
  ) -> Optional[Union[Any, HTTPValidationError]]:
317
284
  """Create New Graph Database
318
285
 
@@ -358,13 +325,12 @@ async def asyncio(
358
325
  - `_links.status`: Point-in-time status check endpoint
359
326
 
360
327
  Args:
361
- token (Union[None, Unset, str]): JWT token for SSE authentication
362
- authorization (Union[None, Unset, str]):
363
328
  body (CreateGraphRequest): Request model for creating a new graph. Example:
364
- {'initial_entity': {'cik': '0001234567', 'name': 'Acme Corp', 'uri': 'https://acme.com'},
365
- 'instance_tier': 'kuzu-standard', 'metadata': {'description': 'Main production graph',
366
- 'graph_name': 'Production System', 'schema_extensions': ['roboledger']}, 'tags':
367
- ['production', 'finance']}.
329
+ {'initial_entity': {'cik': '0001234567', 'name': 'Acme Consulting LLC', 'uri':
330
+ 'https://acmeconsulting.com'}, 'instance_tier': 'kuzu-standard', 'metadata':
331
+ {'description': 'Professional consulting services with full accounting integration',
332
+ 'graph_name': 'Acme Consulting LLC', 'schema_extensions': ['roboledger']}, 'tags':
333
+ ['consulting', 'professional-services']}.
368
334
 
369
335
  Raises:
370
336
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -378,7 +344,5 @@ async def asyncio(
378
344
  await asyncio_detailed(
379
345
  client=client,
380
346
  body=body,
381
- token=token,
382
- authorization=authorization,
383
347
  )
384
348
  ).parsed
@@ -1,5 +1,5 @@
1
1
  from http import HTTPStatus
2
- from typing import Any, Optional, Union
2
+ from typing import Any, Optional, Union, cast
3
3
 
4
4
  import httpx
5
5
 
@@ -20,12 +20,16 @@ def _get_kwargs() -> dict[str, Any]:
20
20
 
21
21
  def _parse_response(
22
22
  *, client: Union[AuthenticatedClient, Client], response: httpx.Response
23
- ) -> Optional[AvailableExtensionsResponse]:
23
+ ) -> Optional[Union[Any, AvailableExtensionsResponse]]:
24
24
  if response.status_code == 200:
25
25
  response_200 = AvailableExtensionsResponse.from_dict(response.json())
26
26
 
27
27
  return response_200
28
28
 
29
+ if response.status_code == 500:
30
+ response_500 = cast(Any, None)
31
+ return response_500
32
+
29
33
  if client.raise_on_unexpected_status:
30
34
  raise errors.UnexpectedStatus(response.status_code, response.content)
31
35
  else:
@@ -34,7 +38,7 @@ def _parse_response(
34
38
 
35
39
  def _build_response(
36
40
  *, client: Union[AuthenticatedClient, Client], response: httpx.Response
37
- ) -> Response[AvailableExtensionsResponse]:
41
+ ) -> Response[Union[Any, AvailableExtensionsResponse]]:
38
42
  return Response(
39
43
  status_code=HTTPStatus(response.status_code),
40
44
  content=response.content,
@@ -46,17 +50,45 @@ def _build_response(
46
50
  def sync_detailed(
47
51
  *,
48
52
  client: AuthenticatedClient,
49
- ) -> Response[AvailableExtensionsResponse]:
53
+ ) -> Response[Union[Any, AvailableExtensionsResponse]]:
50
54
  """Get Available Schema Extensions
51
55
 
52
- List all available schema extensions for graph creation
56
+ List all available schema extensions for graph creation.
57
+
58
+ Schema extensions provide pre-built industry-specific data models that extend
59
+ the base graph schema with specialized nodes, relationships, and properties.
60
+
61
+ **Available Extensions:**
62
+ - **RoboLedger**: Complete accounting system with XBRL reporting, general ledger, and financial
63
+ statements
64
+ - **RoboInvestor**: Investment portfolio management and tracking
65
+ - **RoboSCM**: Supply chain management and logistics
66
+ - **RoboFO**: Front office operations and CRM
67
+ - **RoboHRM**: Human resources management
68
+ - **RoboEPM**: Enterprise performance management
69
+ - **RoboReport**: Business intelligence and reporting
70
+
71
+ **Extension Information:**
72
+ Each extension includes:
73
+ - Display name and description
74
+ - Node and relationship counts
75
+ - Context-aware capabilities (e.g., SEC repositories get different features than entity graphs)
76
+
77
+ **Use Cases:**
78
+ - Browse available extensions before creating a graph
79
+ - Understand extension capabilities and data models
80
+ - Plan graph schema based on business requirements
81
+ - Combine multiple extensions for comprehensive data modeling
82
+
83
+ **Note:**
84
+ Extension listing is included - no credit consumption required.
53
85
 
54
86
  Raises:
55
87
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
56
88
  httpx.TimeoutException: If the request takes longer than Client.timeout.
57
89
 
58
90
  Returns:
59
- Response[AvailableExtensionsResponse]
91
+ Response[Union[Any, AvailableExtensionsResponse]]
60
92
  """
61
93
 
62
94
  kwargs = _get_kwargs()
@@ -71,17 +103,45 @@ def sync_detailed(
71
103
  def sync(
72
104
  *,
73
105
  client: AuthenticatedClient,
74
- ) -> Optional[AvailableExtensionsResponse]:
106
+ ) -> Optional[Union[Any, AvailableExtensionsResponse]]:
75
107
  """Get Available Schema Extensions
76
108
 
77
- List all available schema extensions for graph creation
109
+ List all available schema extensions for graph creation.
110
+
111
+ Schema extensions provide pre-built industry-specific data models that extend
112
+ the base graph schema with specialized nodes, relationships, and properties.
113
+
114
+ **Available Extensions:**
115
+ - **RoboLedger**: Complete accounting system with XBRL reporting, general ledger, and financial
116
+ statements
117
+ - **RoboInvestor**: Investment portfolio management and tracking
118
+ - **RoboSCM**: Supply chain management and logistics
119
+ - **RoboFO**: Front office operations and CRM
120
+ - **RoboHRM**: Human resources management
121
+ - **RoboEPM**: Enterprise performance management
122
+ - **RoboReport**: Business intelligence and reporting
123
+
124
+ **Extension Information:**
125
+ Each extension includes:
126
+ - Display name and description
127
+ - Node and relationship counts
128
+ - Context-aware capabilities (e.g., SEC repositories get different features than entity graphs)
129
+
130
+ **Use Cases:**
131
+ - Browse available extensions before creating a graph
132
+ - Understand extension capabilities and data models
133
+ - Plan graph schema based on business requirements
134
+ - Combine multiple extensions for comprehensive data modeling
135
+
136
+ **Note:**
137
+ Extension listing is included - no credit consumption required.
78
138
 
79
139
  Raises:
80
140
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
81
141
  httpx.TimeoutException: If the request takes longer than Client.timeout.
82
142
 
83
143
  Returns:
84
- AvailableExtensionsResponse
144
+ Union[Any, AvailableExtensionsResponse]
85
145
  """
86
146
 
87
147
  return sync_detailed(
@@ -92,17 +152,45 @@ def sync(
92
152
  async def asyncio_detailed(
93
153
  *,
94
154
  client: AuthenticatedClient,
95
- ) -> Response[AvailableExtensionsResponse]:
155
+ ) -> Response[Union[Any, AvailableExtensionsResponse]]:
96
156
  """Get Available Schema Extensions
97
157
 
98
- List all available schema extensions for graph creation
158
+ List all available schema extensions for graph creation.
159
+
160
+ Schema extensions provide pre-built industry-specific data models that extend
161
+ the base graph schema with specialized nodes, relationships, and properties.
162
+
163
+ **Available Extensions:**
164
+ - **RoboLedger**: Complete accounting system with XBRL reporting, general ledger, and financial
165
+ statements
166
+ - **RoboInvestor**: Investment portfolio management and tracking
167
+ - **RoboSCM**: Supply chain management and logistics
168
+ - **RoboFO**: Front office operations and CRM
169
+ - **RoboHRM**: Human resources management
170
+ - **RoboEPM**: Enterprise performance management
171
+ - **RoboReport**: Business intelligence and reporting
172
+
173
+ **Extension Information:**
174
+ Each extension includes:
175
+ - Display name and description
176
+ - Node and relationship counts
177
+ - Context-aware capabilities (e.g., SEC repositories get different features than entity graphs)
178
+
179
+ **Use Cases:**
180
+ - Browse available extensions before creating a graph
181
+ - Understand extension capabilities and data models
182
+ - Plan graph schema based on business requirements
183
+ - Combine multiple extensions for comprehensive data modeling
184
+
185
+ **Note:**
186
+ Extension listing is included - no credit consumption required.
99
187
 
100
188
  Raises:
101
189
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
102
190
  httpx.TimeoutException: If the request takes longer than Client.timeout.
103
191
 
104
192
  Returns:
105
- Response[AvailableExtensionsResponse]
193
+ Response[Union[Any, AvailableExtensionsResponse]]
106
194
  """
107
195
 
108
196
  kwargs = _get_kwargs()
@@ -115,17 +203,45 @@ async def asyncio_detailed(
115
203
  async def asyncio(
116
204
  *,
117
205
  client: AuthenticatedClient,
118
- ) -> Optional[AvailableExtensionsResponse]:
206
+ ) -> Optional[Union[Any, AvailableExtensionsResponse]]:
119
207
  """Get Available Schema Extensions
120
208
 
121
- List all available schema extensions for graph creation
209
+ List all available schema extensions for graph creation.
210
+
211
+ Schema extensions provide pre-built industry-specific data models that extend
212
+ the base graph schema with specialized nodes, relationships, and properties.
213
+
214
+ **Available Extensions:**
215
+ - **RoboLedger**: Complete accounting system with XBRL reporting, general ledger, and financial
216
+ statements
217
+ - **RoboInvestor**: Investment portfolio management and tracking
218
+ - **RoboSCM**: Supply chain management and logistics
219
+ - **RoboFO**: Front office operations and CRM
220
+ - **RoboHRM**: Human resources management
221
+ - **RoboEPM**: Enterprise performance management
222
+ - **RoboReport**: Business intelligence and reporting
223
+
224
+ **Extension Information:**
225
+ Each extension includes:
226
+ - Display name and description
227
+ - Node and relationship counts
228
+ - Context-aware capabilities (e.g., SEC repositories get different features than entity graphs)
229
+
230
+ **Use Cases:**
231
+ - Browse available extensions before creating a graph
232
+ - Understand extension capabilities and data models
233
+ - Plan graph schema based on business requirements
234
+ - Combine multiple extensions for comprehensive data modeling
235
+
236
+ **Note:**
237
+ Extension listing is included - no credit consumption required.
122
238
 
123
239
  Raises:
124
240
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
125
241
  httpx.TimeoutException: If the request takes longer than Client.timeout.
126
242
 
127
243
  Returns:
128
- AvailableExtensionsResponse
244
+ Union[Any, AvailableExtensionsResponse]
129
245
  """
130
246
 
131
247
  return (