robosystems-client 0.1.16__py3-none-any.whl → 0.1.17__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 (96) hide show
  1. robosystems_client/api/agent/auto_select_agent.py +0 -18
  2. robosystems_client/api/agent/batch_process_queries.py +0 -18
  3. robosystems_client/api/agent/execute_specific_agent.py +0 -18
  4. robosystems_client/api/agent/get_agent_metadata.py +0 -18
  5. robosystems_client/api/agent/list_agents.py +0 -18
  6. robosystems_client/api/agent/recommend_agent.py +0 -18
  7. robosystems_client/api/auth/forgot_password.py +191 -0
  8. robosystems_client/api/auth/generate_sso_token.py +18 -0
  9. robosystems_client/api/auth/get_current_auth_user.py +4 -22
  10. robosystems_client/api/auth/logout_user.py +17 -17
  11. robosystems_client/api/auth/{refresh_session.py → refresh_auth_session.py} +21 -21
  12. robosystems_client/api/auth/resend_verification_email.py +222 -0
  13. robosystems_client/api/auth/reset_password.py +177 -0
  14. robosystems_client/api/auth/validate_reset_token.py +171 -0
  15. robosystems_client/api/auth/verify_email.py +177 -0
  16. robosystems_client/api/backup/create_backup.py +0 -18
  17. robosystems_client/api/backup/export_backup.py +0 -18
  18. robosystems_client/api/backup/get_backup_download_url.py +0 -18
  19. robosystems_client/api/backup/get_backup_stats.py +0 -18
  20. robosystems_client/api/backup/list_backups.py +0 -18
  21. robosystems_client/api/backup/restore_backup.py +0 -18
  22. robosystems_client/api/connections/create_connection.py +0 -18
  23. robosystems_client/api/connections/create_link_token.py +0 -18
  24. robosystems_client/api/connections/delete_connection.py +0 -18
  25. robosystems_client/api/connections/exchange_link_token.py +0 -18
  26. robosystems_client/api/connections/get_connection.py +0 -18
  27. robosystems_client/api/connections/get_connection_options.py +0 -18
  28. robosystems_client/api/connections/init_o_auth.py +0 -18
  29. robosystems_client/api/connections/list_connections.py +0 -18
  30. robosystems_client/api/connections/oauth_callback.py +4 -22
  31. robosystems_client/api/connections/sync_connection.py +0 -18
  32. robosystems_client/api/copy/copy_data_to_graph.py +0 -18
  33. robosystems_client/api/create/create_graph.py +0 -18
  34. robosystems_client/api/graph_analytics/get_graph_metrics.py +0 -18
  35. robosystems_client/api/graph_analytics/get_graph_usage_stats.py +0 -18
  36. robosystems_client/api/graph_billing/get_current_graph_bill.py +0 -18
  37. robosystems_client/api/graph_billing/get_graph_billing_history.py +0 -18
  38. robosystems_client/api/graph_billing/get_graph_monthly_bill.py +0 -18
  39. robosystems_client/api/graph_billing/get_graph_usage_details.py +0 -18
  40. robosystems_client/api/graph_credits/check_credit_balance.py +0 -18
  41. robosystems_client/api/graph_credits/check_storage_limits.py +0 -18
  42. robosystems_client/api/graph_credits/get_credit_summary.py +0 -18
  43. robosystems_client/api/graph_credits/get_storage_usage.py +0 -18
  44. robosystems_client/api/graph_credits/list_credit_transactions.py +0 -18
  45. robosystems_client/api/graph_health/get_database_health.py +0 -18
  46. robosystems_client/api/graph_info/get_database_info.py +0 -18
  47. robosystems_client/api/graph_limits/get_graph_limits.py +0 -18
  48. robosystems_client/api/mcp/call_mcp_tool.py +0 -18
  49. robosystems_client/api/mcp/list_mcp_tools.py +0 -18
  50. robosystems_client/api/operations/cancel_operation.py +0 -18
  51. robosystems_client/api/operations/get_operation_status.py +0 -18
  52. robosystems_client/api/operations/stream_operation_events.py +0 -18
  53. robosystems_client/api/query/execute_cypher_query.py +0 -18
  54. robosystems_client/api/schema/export_graph_schema.py +0 -18
  55. robosystems_client/api/schema/get_graph_schema_info.py +0 -18
  56. robosystems_client/api/schema/list_schema_extensions.py +0 -18
  57. robosystems_client/api/schema/validate_schema.py +0 -18
  58. robosystems_client/api/subgraphs/create_subgraph.py +0 -18
  59. robosystems_client/api/subgraphs/delete_subgraph.py +0 -18
  60. robosystems_client/api/subgraphs/get_subgraph_info.py +0 -18
  61. robosystems_client/api/subgraphs/get_subgraph_quota.py +0 -18
  62. robosystems_client/api/subgraphs/list_subgraphs.py +0 -18
  63. robosystems_client/api/user/create_user_api_key.py +0 -18
  64. robosystems_client/api/user/get_all_credit_summaries.py +0 -18
  65. robosystems_client/api/user/get_current_user.py +0 -18
  66. robosystems_client/api/user/get_user_graphs.py +0 -18
  67. robosystems_client/api/user/list_user_api_keys.py +0 -18
  68. robosystems_client/api/user/revoke_user_api_key.py +0 -18
  69. robosystems_client/api/user/select_user_graph.py +0 -18
  70. robosystems_client/api/user/update_user.py +0 -18
  71. robosystems_client/api/user/update_user_api_key.py +0 -18
  72. robosystems_client/api/user/update_user_password.py +0 -18
  73. robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -18
  74. robosystems_client/api/user_analytics/get_user_usage_overview.py +0 -18
  75. robosystems_client/api/user_limits/get_all_shared_repository_limits.py +0 -18
  76. robosystems_client/api/user_limits/get_shared_repository_limits.py +0 -18
  77. robosystems_client/api/user_limits/get_user_limits.py +0 -18
  78. robosystems_client/api/user_limits/get_user_usage.py +0 -18
  79. robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +0 -18
  80. robosystems_client/api/user_subscriptions/get_repository_credits.py +0 -18
  81. robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +0 -18
  82. robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -18
  83. robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +0 -18
  84. robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +0 -18
  85. robosystems_client/models/__init__.py +16 -0
  86. robosystems_client/models/email_verification_request.py +60 -0
  87. robosystems_client/models/forgot_password_request.py +60 -0
  88. robosystems_client/models/forgot_password_response_forgotpassword.py +44 -0
  89. robosystems_client/models/resend_verification_email_response_resendverificationemail.py +44 -0
  90. robosystems_client/models/reset_password_request.py +68 -0
  91. robosystems_client/models/reset_password_validate_response.py +82 -0
  92. robosystems_client-0.1.17.dist-info/METADATA +89 -0
  93. {robosystems_client-0.1.16.dist-info → robosystems_client-0.1.17.dist-info}/RECORD +95 -83
  94. robosystems_client-0.1.17.dist-info/licenses/LICENSE +21 -0
  95. robosystems_client-0.1.16.dist-info/METADATA +0 -302
  96. {robosystems_client-0.1.16.dist-info → robosystems_client-0.1.17.dist-info}/WHEEL +0 -0
@@ -18,16 +18,11 @@ def _get_kwargs(
18
18
  *,
19
19
  days: Union[Unset, int] = 30,
20
20
  authorization: Union[None, Unset, str] = UNSET,
21
- auth_token: Union[None, Unset, str] = UNSET,
22
21
  ) -> dict[str, Any]:
23
22
  headers: dict[str, Any] = {}
24
23
  if not isinstance(authorization, Unset):
25
24
  headers["authorization"] = authorization
26
25
 
27
- cookies = {}
28
- if auth_token is not UNSET:
29
- cookies["auth-token"] = auth_token
30
-
31
26
  params: dict[str, Any] = {}
32
27
 
33
28
  params["days"] = days
@@ -38,7 +33,6 @@ def _get_kwargs(
38
33
  "method": "get",
39
34
  "url": f"/v1/{graph_id}/credits/storage/usage",
40
35
  "params": params,
41
- "cookies": cookies,
42
36
  }
43
37
 
44
38
  _kwargs["headers"] = headers
@@ -91,7 +85,6 @@ def sync_detailed(
91
85
  client: AuthenticatedClient,
92
86
  days: Union[Unset, int] = 30,
93
87
  authorization: Union[None, Unset, str] = UNSET,
94
- auth_token: Union[None, Unset, str] = UNSET,
95
88
  ) -> Response[
96
89
  Union[ErrorResponse, GetStorageUsageResponseGetstorageusage, HTTPValidationError]
97
90
  ]:
@@ -112,7 +105,6 @@ def sync_detailed(
112
105
  graph_id (str): Graph database identifier
113
106
  days (Union[Unset, int]): Number of days of history to return Default: 30.
114
107
  authorization (Union[None, Unset, str]):
115
- auth_token (Union[None, Unset, str]):
116
108
 
117
109
  Raises:
118
110
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -126,7 +118,6 @@ def sync_detailed(
126
118
  graph_id=graph_id,
127
119
  days=days,
128
120
  authorization=authorization,
129
- auth_token=auth_token,
130
121
  )
131
122
 
132
123
  response = client.get_httpx_client().request(
@@ -142,7 +133,6 @@ def sync(
142
133
  client: AuthenticatedClient,
143
134
  days: Union[Unset, int] = 30,
144
135
  authorization: Union[None, Unset, str] = UNSET,
145
- auth_token: Union[None, Unset, str] = UNSET,
146
136
  ) -> Optional[
147
137
  Union[ErrorResponse, GetStorageUsageResponseGetstorageusage, HTTPValidationError]
148
138
  ]:
@@ -163,7 +153,6 @@ def sync(
163
153
  graph_id (str): Graph database identifier
164
154
  days (Union[Unset, int]): Number of days of history to return Default: 30.
165
155
  authorization (Union[None, Unset, str]):
166
- auth_token (Union[None, Unset, str]):
167
156
 
168
157
  Raises:
169
158
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -178,7 +167,6 @@ def sync(
178
167
  client=client,
179
168
  days=days,
180
169
  authorization=authorization,
181
- auth_token=auth_token,
182
170
  ).parsed
183
171
 
184
172
 
@@ -188,7 +176,6 @@ async def asyncio_detailed(
188
176
  client: AuthenticatedClient,
189
177
  days: Union[Unset, int] = 30,
190
178
  authorization: Union[None, Unset, str] = UNSET,
191
- auth_token: Union[None, Unset, str] = UNSET,
192
179
  ) -> Response[
193
180
  Union[ErrorResponse, GetStorageUsageResponseGetstorageusage, HTTPValidationError]
194
181
  ]:
@@ -209,7 +196,6 @@ async def asyncio_detailed(
209
196
  graph_id (str): Graph database identifier
210
197
  days (Union[Unset, int]): Number of days of history to return Default: 30.
211
198
  authorization (Union[None, Unset, str]):
212
- auth_token (Union[None, Unset, str]):
213
199
 
214
200
  Raises:
215
201
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -223,7 +209,6 @@ async def asyncio_detailed(
223
209
  graph_id=graph_id,
224
210
  days=days,
225
211
  authorization=authorization,
226
- auth_token=auth_token,
227
212
  )
228
213
 
229
214
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -237,7 +222,6 @@ async def asyncio(
237
222
  client: AuthenticatedClient,
238
223
  days: Union[Unset, int] = 30,
239
224
  authorization: Union[None, Unset, str] = UNSET,
240
- auth_token: Union[None, Unset, str] = UNSET,
241
225
  ) -> Optional[
242
226
  Union[ErrorResponse, GetStorageUsageResponseGetstorageusage, HTTPValidationError]
243
227
  ]:
@@ -258,7 +242,6 @@ async def asyncio(
258
242
  graph_id (str): Graph database identifier
259
243
  days (Union[Unset, int]): Number of days of history to return Default: 30.
260
244
  authorization (Union[None, Unset, str]):
261
- auth_token (Union[None, Unset, str]):
262
245
 
263
246
  Raises:
264
247
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -274,6 +257,5 @@ async def asyncio(
274
257
  client=client,
275
258
  days=days,
276
259
  authorization=authorization,
277
- auth_token=auth_token,
278
260
  )
279
261
  ).parsed
@@ -21,16 +21,11 @@ def _get_kwargs(
21
21
  limit: Union[Unset, int] = 100,
22
22
  offset: Union[Unset, int] = 0,
23
23
  authorization: Union[None, Unset, str] = UNSET,
24
- auth_token: Union[None, Unset, str] = UNSET,
25
24
  ) -> dict[str, Any]:
26
25
  headers: dict[str, Any] = {}
27
26
  if not isinstance(authorization, Unset):
28
27
  headers["authorization"] = authorization
29
28
 
30
- cookies = {}
31
- if auth_token is not UNSET:
32
- cookies["auth-token"] = auth_token
33
-
34
29
  params: dict[str, Any] = {}
35
30
 
36
31
  json_transaction_type: Union[None, Unset, str]
@@ -71,7 +66,6 @@ def _get_kwargs(
71
66
  "method": "get",
72
67
  "url": f"/v1/{graph_id}/credits/transactions",
73
68
  "params": params,
74
- "cookies": cookies,
75
69
  }
76
70
 
77
71
  _kwargs["headers"] = headers
@@ -129,7 +123,6 @@ def sync_detailed(
129
123
  limit: Union[Unset, int] = 100,
130
124
  offset: Union[Unset, int] = 0,
131
125
  authorization: Union[None, Unset, str] = UNSET,
132
- auth_token: Union[None, Unset, str] = UNSET,
133
126
  ) -> Response[Union[DetailedTransactionsResponse, ErrorResponse, HTTPValidationError]]:
134
127
  """List Credit Transactions
135
128
 
@@ -160,7 +153,6 @@ def sync_detailed(
160
153
  limit (Union[Unset, int]): Maximum number of transactions to return Default: 100.
161
154
  offset (Union[Unset, int]): Number of transactions to skip Default: 0.
162
155
  authorization (Union[None, Unset, str]):
163
- auth_token (Union[None, Unset, str]):
164
156
 
165
157
  Raises:
166
158
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -179,7 +171,6 @@ def sync_detailed(
179
171
  limit=limit,
180
172
  offset=offset,
181
173
  authorization=authorization,
182
- auth_token=auth_token,
183
174
  )
184
175
 
185
176
  response = client.get_httpx_client().request(
@@ -200,7 +191,6 @@ def sync(
200
191
  limit: Union[Unset, int] = 100,
201
192
  offset: Union[Unset, int] = 0,
202
193
  authorization: Union[None, Unset, str] = UNSET,
203
- auth_token: Union[None, Unset, str] = UNSET,
204
194
  ) -> Optional[Union[DetailedTransactionsResponse, ErrorResponse, HTTPValidationError]]:
205
195
  """List Credit Transactions
206
196
 
@@ -231,7 +221,6 @@ def sync(
231
221
  limit (Union[Unset, int]): Maximum number of transactions to return Default: 100.
232
222
  offset (Union[Unset, int]): Number of transactions to skip Default: 0.
233
223
  authorization (Union[None, Unset, str]):
234
- auth_token (Union[None, Unset, str]):
235
224
 
236
225
  Raises:
237
226
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -251,7 +240,6 @@ def sync(
251
240
  limit=limit,
252
241
  offset=offset,
253
242
  authorization=authorization,
254
- auth_token=auth_token,
255
243
  ).parsed
256
244
 
257
245
 
@@ -266,7 +254,6 @@ async def asyncio_detailed(
266
254
  limit: Union[Unset, int] = 100,
267
255
  offset: Union[Unset, int] = 0,
268
256
  authorization: Union[None, Unset, str] = UNSET,
269
- auth_token: Union[None, Unset, str] = UNSET,
270
257
  ) -> Response[Union[DetailedTransactionsResponse, ErrorResponse, HTTPValidationError]]:
271
258
  """List Credit Transactions
272
259
 
@@ -297,7 +284,6 @@ async def asyncio_detailed(
297
284
  limit (Union[Unset, int]): Maximum number of transactions to return Default: 100.
298
285
  offset (Union[Unset, int]): Number of transactions to skip Default: 0.
299
286
  authorization (Union[None, Unset, str]):
300
- auth_token (Union[None, Unset, str]):
301
287
 
302
288
  Raises:
303
289
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -316,7 +302,6 @@ async def asyncio_detailed(
316
302
  limit=limit,
317
303
  offset=offset,
318
304
  authorization=authorization,
319
- auth_token=auth_token,
320
305
  )
321
306
 
322
307
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -335,7 +320,6 @@ async def asyncio(
335
320
  limit: Union[Unset, int] = 100,
336
321
  offset: Union[Unset, int] = 0,
337
322
  authorization: Union[None, Unset, str] = UNSET,
338
- auth_token: Union[None, Unset, str] = UNSET,
339
323
  ) -> Optional[Union[DetailedTransactionsResponse, ErrorResponse, HTTPValidationError]]:
340
324
  """List Credit Transactions
341
325
 
@@ -366,7 +350,6 @@ async def asyncio(
366
350
  limit (Union[Unset, int]): Maximum number of transactions to return Default: 100.
367
351
  offset (Union[Unset, int]): Number of transactions to skip Default: 0.
368
352
  authorization (Union[None, Unset, str]):
369
- auth_token (Union[None, Unset, str]):
370
353
 
371
354
  Raises:
372
355
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -387,6 +370,5 @@ async def asyncio(
387
370
  limit=limit,
388
371
  offset=offset,
389
372
  authorization=authorization,
390
- auth_token=auth_token,
391
373
  )
392
374
  ).parsed
@@ -14,20 +14,14 @@ def _get_kwargs(
14
14
  graph_id: str,
15
15
  *,
16
16
  authorization: Union[None, Unset, str] = UNSET,
17
- auth_token: Union[None, Unset, str] = UNSET,
18
17
  ) -> dict[str, Any]:
19
18
  headers: dict[str, Any] = {}
20
19
  if not isinstance(authorization, Unset):
21
20
  headers["authorization"] = authorization
22
21
 
23
- cookies = {}
24
- if auth_token is not UNSET:
25
- cookies["auth-token"] = auth_token
26
-
27
22
  _kwargs: dict[str, Any] = {
28
23
  "method": "get",
29
24
  "url": f"/v1/{graph_id}/health",
30
- "cookies": cookies,
31
25
  }
32
26
 
33
27
  _kwargs["headers"] = headers
@@ -76,7 +70,6 @@ def sync_detailed(
76
70
  *,
77
71
  client: AuthenticatedClient,
78
72
  authorization: Union[None, Unset, str] = UNSET,
79
- auth_token: Union[None, Unset, str] = UNSET,
80
73
  ) -> Response[Union[Any, DatabaseHealthResponse, HTTPValidationError]]:
81
74
  """Database Health Check
82
75
 
@@ -101,7 +94,6 @@ def sync_detailed(
101
94
  Args:
102
95
  graph_id (str): Graph database identifier
103
96
  authorization (Union[None, Unset, str]):
104
- auth_token (Union[None, Unset, str]):
105
97
 
106
98
  Raises:
107
99
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -114,7 +106,6 @@ def sync_detailed(
114
106
  kwargs = _get_kwargs(
115
107
  graph_id=graph_id,
116
108
  authorization=authorization,
117
- auth_token=auth_token,
118
109
  )
119
110
 
120
111
  response = client.get_httpx_client().request(
@@ -129,7 +120,6 @@ def sync(
129
120
  *,
130
121
  client: AuthenticatedClient,
131
122
  authorization: Union[None, Unset, str] = UNSET,
132
- auth_token: Union[None, Unset, str] = UNSET,
133
123
  ) -> Optional[Union[Any, DatabaseHealthResponse, HTTPValidationError]]:
134
124
  """Database Health Check
135
125
 
@@ -154,7 +144,6 @@ def sync(
154
144
  Args:
155
145
  graph_id (str): Graph database identifier
156
146
  authorization (Union[None, Unset, str]):
157
- auth_token (Union[None, Unset, str]):
158
147
 
159
148
  Raises:
160
149
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -168,7 +157,6 @@ def sync(
168
157
  graph_id=graph_id,
169
158
  client=client,
170
159
  authorization=authorization,
171
- auth_token=auth_token,
172
160
  ).parsed
173
161
 
174
162
 
@@ -177,7 +165,6 @@ async def asyncio_detailed(
177
165
  *,
178
166
  client: AuthenticatedClient,
179
167
  authorization: Union[None, Unset, str] = UNSET,
180
- auth_token: Union[None, Unset, str] = UNSET,
181
168
  ) -> Response[Union[Any, DatabaseHealthResponse, HTTPValidationError]]:
182
169
  """Database Health Check
183
170
 
@@ -202,7 +189,6 @@ async def asyncio_detailed(
202
189
  Args:
203
190
  graph_id (str): Graph database identifier
204
191
  authorization (Union[None, Unset, str]):
205
- auth_token (Union[None, Unset, str]):
206
192
 
207
193
  Raises:
208
194
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -215,7 +201,6 @@ async def asyncio_detailed(
215
201
  kwargs = _get_kwargs(
216
202
  graph_id=graph_id,
217
203
  authorization=authorization,
218
- auth_token=auth_token,
219
204
  )
220
205
 
221
206
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -228,7 +213,6 @@ async def asyncio(
228
213
  *,
229
214
  client: AuthenticatedClient,
230
215
  authorization: Union[None, Unset, str] = UNSET,
231
- auth_token: Union[None, Unset, str] = UNSET,
232
216
  ) -> Optional[Union[Any, DatabaseHealthResponse, HTTPValidationError]]:
233
217
  """Database Health Check
234
218
 
@@ -253,7 +237,6 @@ async def asyncio(
253
237
  Args:
254
238
  graph_id (str): Graph database identifier
255
239
  authorization (Union[None, Unset, str]):
256
- auth_token (Union[None, Unset, str]):
257
240
 
258
241
  Raises:
259
242
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -268,6 +251,5 @@ async def asyncio(
268
251
  graph_id=graph_id,
269
252
  client=client,
270
253
  authorization=authorization,
271
- auth_token=auth_token,
272
254
  )
273
255
  ).parsed
@@ -14,20 +14,14 @@ def _get_kwargs(
14
14
  graph_id: str,
15
15
  *,
16
16
  authorization: Union[None, Unset, str] = UNSET,
17
- auth_token: Union[None, Unset, str] = UNSET,
18
17
  ) -> dict[str, Any]:
19
18
  headers: dict[str, Any] = {}
20
19
  if not isinstance(authorization, Unset):
21
20
  headers["authorization"] = authorization
22
21
 
23
- cookies = {}
24
- if auth_token is not UNSET:
25
- cookies["auth-token"] = auth_token
26
-
27
22
  _kwargs: dict[str, Any] = {
28
23
  "method": "get",
29
24
  "url": f"/v1/{graph_id}/info",
30
- "cookies": cookies,
31
25
  }
32
26
 
33
27
  _kwargs["headers"] = headers
@@ -76,7 +70,6 @@ def sync_detailed(
76
70
  *,
77
71
  client: AuthenticatedClient,
78
72
  authorization: Union[None, Unset, str] = UNSET,
79
- auth_token: Union[None, Unset, str] = UNSET,
80
73
  ) -> Response[Union[Any, DatabaseInfoResponse, HTTPValidationError]]:
81
74
  """Database Information
82
75
 
@@ -102,7 +95,6 @@ def sync_detailed(
102
95
  Args:
103
96
  graph_id (str): Graph database identifier
104
97
  authorization (Union[None, Unset, str]):
105
- auth_token (Union[None, Unset, str]):
106
98
 
107
99
  Raises:
108
100
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -115,7 +107,6 @@ def sync_detailed(
115
107
  kwargs = _get_kwargs(
116
108
  graph_id=graph_id,
117
109
  authorization=authorization,
118
- auth_token=auth_token,
119
110
  )
120
111
 
121
112
  response = client.get_httpx_client().request(
@@ -130,7 +121,6 @@ def sync(
130
121
  *,
131
122
  client: AuthenticatedClient,
132
123
  authorization: Union[None, Unset, str] = UNSET,
133
- auth_token: Union[None, Unset, str] = UNSET,
134
124
  ) -> Optional[Union[Any, DatabaseInfoResponse, HTTPValidationError]]:
135
125
  """Database Information
136
126
 
@@ -156,7 +146,6 @@ def sync(
156
146
  Args:
157
147
  graph_id (str): Graph database identifier
158
148
  authorization (Union[None, Unset, str]):
159
- auth_token (Union[None, Unset, str]):
160
149
 
161
150
  Raises:
162
151
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -170,7 +159,6 @@ def sync(
170
159
  graph_id=graph_id,
171
160
  client=client,
172
161
  authorization=authorization,
173
- auth_token=auth_token,
174
162
  ).parsed
175
163
 
176
164
 
@@ -179,7 +167,6 @@ async def asyncio_detailed(
179
167
  *,
180
168
  client: AuthenticatedClient,
181
169
  authorization: Union[None, Unset, str] = UNSET,
182
- auth_token: Union[None, Unset, str] = UNSET,
183
170
  ) -> Response[Union[Any, DatabaseInfoResponse, HTTPValidationError]]:
184
171
  """Database Information
185
172
 
@@ -205,7 +192,6 @@ async def asyncio_detailed(
205
192
  Args:
206
193
  graph_id (str): Graph database identifier
207
194
  authorization (Union[None, Unset, str]):
208
- auth_token (Union[None, Unset, str]):
209
195
 
210
196
  Raises:
211
197
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -218,7 +204,6 @@ async def asyncio_detailed(
218
204
  kwargs = _get_kwargs(
219
205
  graph_id=graph_id,
220
206
  authorization=authorization,
221
- auth_token=auth_token,
222
207
  )
223
208
 
224
209
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -231,7 +216,6 @@ async def asyncio(
231
216
  *,
232
217
  client: AuthenticatedClient,
233
218
  authorization: Union[None, Unset, str] = UNSET,
234
- auth_token: Union[None, Unset, str] = UNSET,
235
219
  ) -> Optional[Union[Any, DatabaseInfoResponse, HTTPValidationError]]:
236
220
  """Database Information
237
221
 
@@ -257,7 +241,6 @@ async def asyncio(
257
241
  Args:
258
242
  graph_id (str): Graph database identifier
259
243
  authorization (Union[None, Unset, str]):
260
- auth_token (Union[None, Unset, str]):
261
244
 
262
245
  Raises:
263
246
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -272,6 +255,5 @@ async def asyncio(
272
255
  graph_id=graph_id,
273
256
  client=client,
274
257
  authorization=authorization,
275
- auth_token=auth_token,
276
258
  )
277
259
  ).parsed
@@ -16,20 +16,14 @@ def _get_kwargs(
16
16
  graph_id: str,
17
17
  *,
18
18
  authorization: Union[None, Unset, str] = UNSET,
19
- auth_token: Union[None, Unset, str] = UNSET,
20
19
  ) -> dict[str, Any]:
21
20
  headers: dict[str, Any] = {}
22
21
  if not isinstance(authorization, Unset):
23
22
  headers["authorization"] = authorization
24
23
 
25
- cookies = {}
26
- if auth_token is not UNSET:
27
- cookies["auth-token"] = auth_token
28
-
29
24
  _kwargs: dict[str, Any] = {
30
25
  "method": "get",
31
26
  "url": f"/v1/{graph_id}/limits",
32
- "cookies": cookies,
33
27
  }
34
28
 
35
29
  _kwargs["headers"] = headers
@@ -78,7 +72,6 @@ def sync_detailed(
78
72
  *,
79
73
  client: AuthenticatedClient,
80
74
  authorization: Union[None, Unset, str] = UNSET,
81
- auth_token: Union[None, Unset, str] = UNSET,
82
75
  ) -> Response[Union[Any, GetGraphLimitsResponseGetgraphlimits, HTTPValidationError]]:
83
76
  """Get Graph Operational Limits
84
77
 
@@ -99,7 +92,6 @@ def sync_detailed(
99
92
  Args:
100
93
  graph_id (str): Graph database identifier (user graph or shared repository)
101
94
  authorization (Union[None, Unset, str]):
102
- auth_token (Union[None, Unset, str]):
103
95
 
104
96
  Raises:
105
97
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -112,7 +104,6 @@ def sync_detailed(
112
104
  kwargs = _get_kwargs(
113
105
  graph_id=graph_id,
114
106
  authorization=authorization,
115
- auth_token=auth_token,
116
107
  )
117
108
 
118
109
  response = client.get_httpx_client().request(
@@ -127,7 +118,6 @@ def sync(
127
118
  *,
128
119
  client: AuthenticatedClient,
129
120
  authorization: Union[None, Unset, str] = UNSET,
130
- auth_token: Union[None, Unset, str] = UNSET,
131
121
  ) -> Optional[Union[Any, GetGraphLimitsResponseGetgraphlimits, HTTPValidationError]]:
132
122
  """Get Graph Operational Limits
133
123
 
@@ -148,7 +138,6 @@ def sync(
148
138
  Args:
149
139
  graph_id (str): Graph database identifier (user graph or shared repository)
150
140
  authorization (Union[None, Unset, str]):
151
- auth_token (Union[None, Unset, str]):
152
141
 
153
142
  Raises:
154
143
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -162,7 +151,6 @@ def sync(
162
151
  graph_id=graph_id,
163
152
  client=client,
164
153
  authorization=authorization,
165
- auth_token=auth_token,
166
154
  ).parsed
167
155
 
168
156
 
@@ -171,7 +159,6 @@ async def asyncio_detailed(
171
159
  *,
172
160
  client: AuthenticatedClient,
173
161
  authorization: Union[None, Unset, str] = UNSET,
174
- auth_token: Union[None, Unset, str] = UNSET,
175
162
  ) -> Response[Union[Any, GetGraphLimitsResponseGetgraphlimits, HTTPValidationError]]:
176
163
  """Get Graph Operational Limits
177
164
 
@@ -192,7 +179,6 @@ async def asyncio_detailed(
192
179
  Args:
193
180
  graph_id (str): Graph database identifier (user graph or shared repository)
194
181
  authorization (Union[None, Unset, str]):
195
- auth_token (Union[None, Unset, str]):
196
182
 
197
183
  Raises:
198
184
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -205,7 +191,6 @@ async def asyncio_detailed(
205
191
  kwargs = _get_kwargs(
206
192
  graph_id=graph_id,
207
193
  authorization=authorization,
208
- auth_token=auth_token,
209
194
  )
210
195
 
211
196
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -218,7 +203,6 @@ async def asyncio(
218
203
  *,
219
204
  client: AuthenticatedClient,
220
205
  authorization: Union[None, Unset, str] = UNSET,
221
- auth_token: Union[None, Unset, str] = UNSET,
222
206
  ) -> Optional[Union[Any, GetGraphLimitsResponseGetgraphlimits, HTTPValidationError]]:
223
207
  """Get Graph Operational Limits
224
208
 
@@ -239,7 +223,6 @@ async def asyncio(
239
223
  Args:
240
224
  graph_id (str): Graph database identifier (user graph or shared repository)
241
225
  authorization (Union[None, Unset, str]):
242
- auth_token (Union[None, Unset, str]):
243
226
 
244
227
  Raises:
245
228
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -254,6 +237,5 @@ async def asyncio(
254
237
  graph_id=graph_id,
255
238
  client=client,
256
239
  authorization=authorization,
257
- auth_token=auth_token,
258
240
  )
259
241
  ).parsed
@@ -18,16 +18,11 @@ def _get_kwargs(
18
18
  format_: Union[None, Unset, str] = UNSET,
19
19
  test_mode: Union[Unset, bool] = False,
20
20
  authorization: Union[None, Unset, str] = UNSET,
21
- auth_token: Union[None, Unset, str] = UNSET,
22
21
  ) -> dict[str, Any]:
23
22
  headers: dict[str, Any] = {}
24
23
  if not isinstance(authorization, Unset):
25
24
  headers["authorization"] = authorization
26
25
 
27
- cookies = {}
28
- if auth_token is not UNSET:
29
- cookies["auth-token"] = auth_token
30
-
31
26
  params: dict[str, Any] = {}
32
27
 
33
28
  json_format_: Union[None, Unset, str]
@@ -45,7 +40,6 @@ def _get_kwargs(
45
40
  "method": "post",
46
41
  "url": f"/v1/{graph_id}/mcp/call-tool",
47
42
  "params": params,
48
- "cookies": cookies,
49
43
  }
50
44
 
51
45
  _kwargs["json"] = body.to_dict()
@@ -122,7 +116,6 @@ def sync_detailed(
122
116
  format_: Union[None, Unset, str] = UNSET,
123
117
  test_mode: Union[Unset, bool] = False,
124
118
  authorization: Union[None, Unset, str] = UNSET,
125
- auth_token: Union[None, Unset, str] = UNSET,
126
119
  ) -> Response[Union[Any, ErrorResponse, HTTPValidationError]]:
127
120
  """Execute MCP Tool
128
121
 
@@ -166,7 +159,6 @@ def sync_detailed(
166
159
  format_ (Union[None, Unset, str]): Response format override (json, sse, ndjson)
167
160
  test_mode (Union[Unset, bool]): Enable test mode for debugging Default: False.
168
161
  authorization (Union[None, Unset, str]):
169
- auth_token (Union[None, Unset, str]):
170
162
  body (MCPToolCall): Request model for MCP tool execution.
171
163
 
172
164
  Raises:
@@ -183,7 +175,6 @@ def sync_detailed(
183
175
  format_=format_,
184
176
  test_mode=test_mode,
185
177
  authorization=authorization,
186
- auth_token=auth_token,
187
178
  )
188
179
 
189
180
  response = client.get_httpx_client().request(
@@ -201,7 +192,6 @@ def sync(
201
192
  format_: Union[None, Unset, str] = UNSET,
202
193
  test_mode: Union[Unset, bool] = False,
203
194
  authorization: Union[None, Unset, str] = UNSET,
204
- auth_token: Union[None, Unset, str] = UNSET,
205
195
  ) -> Optional[Union[Any, ErrorResponse, HTTPValidationError]]:
206
196
  """Execute MCP Tool
207
197
 
@@ -245,7 +235,6 @@ def sync(
245
235
  format_ (Union[None, Unset, str]): Response format override (json, sse, ndjson)
246
236
  test_mode (Union[Unset, bool]): Enable test mode for debugging Default: False.
247
237
  authorization (Union[None, Unset, str]):
248
- auth_token (Union[None, Unset, str]):
249
238
  body (MCPToolCall): Request model for MCP tool execution.
250
239
 
251
240
  Raises:
@@ -263,7 +252,6 @@ def sync(
263
252
  format_=format_,
264
253
  test_mode=test_mode,
265
254
  authorization=authorization,
266
- auth_token=auth_token,
267
255
  ).parsed
268
256
 
269
257
 
@@ -275,7 +263,6 @@ async def asyncio_detailed(
275
263
  format_: Union[None, Unset, str] = UNSET,
276
264
  test_mode: Union[Unset, bool] = False,
277
265
  authorization: Union[None, Unset, str] = UNSET,
278
- auth_token: Union[None, Unset, str] = UNSET,
279
266
  ) -> Response[Union[Any, ErrorResponse, HTTPValidationError]]:
280
267
  """Execute MCP Tool
281
268
 
@@ -319,7 +306,6 @@ async def asyncio_detailed(
319
306
  format_ (Union[None, Unset, str]): Response format override (json, sse, ndjson)
320
307
  test_mode (Union[Unset, bool]): Enable test mode for debugging Default: False.
321
308
  authorization (Union[None, Unset, str]):
322
- auth_token (Union[None, Unset, str]):
323
309
  body (MCPToolCall): Request model for MCP tool execution.
324
310
 
325
311
  Raises:
@@ -336,7 +322,6 @@ async def asyncio_detailed(
336
322
  format_=format_,
337
323
  test_mode=test_mode,
338
324
  authorization=authorization,
339
- auth_token=auth_token,
340
325
  )
341
326
 
342
327
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -352,7 +337,6 @@ async def asyncio(
352
337
  format_: Union[None, Unset, str] = UNSET,
353
338
  test_mode: Union[Unset, bool] = False,
354
339
  authorization: Union[None, Unset, str] = UNSET,
355
- auth_token: Union[None, Unset, str] = UNSET,
356
340
  ) -> Optional[Union[Any, ErrorResponse, HTTPValidationError]]:
357
341
  """Execute MCP Tool
358
342
 
@@ -396,7 +380,6 @@ async def asyncio(
396
380
  format_ (Union[None, Unset, str]): Response format override (json, sse, ndjson)
397
381
  test_mode (Union[Unset, bool]): Enable test mode for debugging Default: False.
398
382
  authorization (Union[None, Unset, str]):
399
- auth_token (Union[None, Unset, str]):
400
383
  body (MCPToolCall): Request model for MCP tool execution.
401
384
 
402
385
  Raises:
@@ -415,6 +398,5 @@ async def asyncio(
415
398
  format_=format_,
416
399
  test_mode=test_mode,
417
400
  authorization=authorization,
418
- auth_token=auth_token,
419
401
  )
420
402
  ).parsed