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
@@ -20,20 +20,14 @@ def _get_kwargs(
20
20
  *,
21
21
  body: SyncConnectionRequest,
22
22
  authorization: Union[None, Unset, str] = UNSET,
23
- auth_token: Union[None, Unset, str] = UNSET,
24
23
  ) -> dict[str, Any]:
25
24
  headers: dict[str, Any] = {}
26
25
  if not isinstance(authorization, Unset):
27
26
  headers["authorization"] = authorization
28
27
 
29
- cookies = {}
30
- if auth_token is not UNSET:
31
- cookies["auth-token"] = auth_token
32
-
33
28
  _kwargs: dict[str, Any] = {
34
29
  "method": "post",
35
30
  "url": f"/v1/{graph_id}/connections/{connection_id}/sync",
36
- "cookies": cookies,
37
31
  }
38
32
 
39
33
  _kwargs["json"] = body.to_dict()
@@ -95,7 +89,6 @@ def sync_detailed(
95
89
  client: AuthenticatedClient,
96
90
  body: SyncConnectionRequest,
97
91
  authorization: Union[None, Unset, str] = UNSET,
98
- auth_token: Union[None, Unset, str] = UNSET,
99
92
  ) -> Response[
100
93
  Union[ErrorResponse, HTTPValidationError, SyncConnectionResponseSyncconnection]
101
94
  ]:
@@ -130,7 +123,6 @@ def sync_detailed(
130
123
  graph_id (str): Graph database identifier
131
124
  connection_id (str): Connection identifier
132
125
  authorization (Union[None, Unset, str]):
133
- auth_token (Union[None, Unset, str]):
134
126
  body (SyncConnectionRequest): Request to sync a connection.
135
127
 
136
128
  Raises:
@@ -146,7 +138,6 @@ def sync_detailed(
146
138
  connection_id=connection_id,
147
139
  body=body,
148
140
  authorization=authorization,
149
- auth_token=auth_token,
150
141
  )
151
142
 
152
143
  response = client.get_httpx_client().request(
@@ -163,7 +154,6 @@ def sync(
163
154
  client: AuthenticatedClient,
164
155
  body: SyncConnectionRequest,
165
156
  authorization: Union[None, Unset, str] = UNSET,
166
- auth_token: Union[None, Unset, str] = UNSET,
167
157
  ) -> Optional[
168
158
  Union[ErrorResponse, HTTPValidationError, SyncConnectionResponseSyncconnection]
169
159
  ]:
@@ -198,7 +188,6 @@ def sync(
198
188
  graph_id (str): Graph database identifier
199
189
  connection_id (str): Connection identifier
200
190
  authorization (Union[None, Unset, str]):
201
- auth_token (Union[None, Unset, str]):
202
191
  body (SyncConnectionRequest): Request to sync a connection.
203
192
 
204
193
  Raises:
@@ -215,7 +204,6 @@ def sync(
215
204
  client=client,
216
205
  body=body,
217
206
  authorization=authorization,
218
- auth_token=auth_token,
219
207
  ).parsed
220
208
 
221
209
 
@@ -226,7 +214,6 @@ async def asyncio_detailed(
226
214
  client: AuthenticatedClient,
227
215
  body: SyncConnectionRequest,
228
216
  authorization: Union[None, Unset, str] = UNSET,
229
- auth_token: Union[None, Unset, str] = UNSET,
230
217
  ) -> Response[
231
218
  Union[ErrorResponse, HTTPValidationError, SyncConnectionResponseSyncconnection]
232
219
  ]:
@@ -261,7 +248,6 @@ async def asyncio_detailed(
261
248
  graph_id (str): Graph database identifier
262
249
  connection_id (str): Connection identifier
263
250
  authorization (Union[None, Unset, str]):
264
- auth_token (Union[None, Unset, str]):
265
251
  body (SyncConnectionRequest): Request to sync a connection.
266
252
 
267
253
  Raises:
@@ -277,7 +263,6 @@ async def asyncio_detailed(
277
263
  connection_id=connection_id,
278
264
  body=body,
279
265
  authorization=authorization,
280
- auth_token=auth_token,
281
266
  )
282
267
 
283
268
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -292,7 +277,6 @@ async def asyncio(
292
277
  client: AuthenticatedClient,
293
278
  body: SyncConnectionRequest,
294
279
  authorization: Union[None, Unset, str] = UNSET,
295
- auth_token: Union[None, Unset, str] = UNSET,
296
280
  ) -> Optional[
297
281
  Union[ErrorResponse, HTTPValidationError, SyncConnectionResponseSyncconnection]
298
282
  ]:
@@ -327,7 +311,6 @@ async def asyncio(
327
311
  graph_id (str): Graph database identifier
328
312
  connection_id (str): Connection identifier
329
313
  authorization (Union[None, Unset, str]):
330
- auth_token (Union[None, Unset, str]):
331
314
  body (SyncConnectionRequest): Request to sync a connection.
332
315
 
333
316
  Raises:
@@ -345,6 +328,5 @@ async def asyncio(
345
328
  client=client,
346
329
  body=body,
347
330
  authorization=authorization,
348
- auth_token=auth_token,
349
331
  )
350
332
  ).parsed
@@ -18,20 +18,14 @@ def _get_kwargs(
18
18
  *,
19
19
  body: Union["DataFrameCopyRequest", "S3CopyRequest", "URLCopyRequest"],
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
  _kwargs: dict[str, Any] = {
32
27
  "method": "post",
33
28
  "url": f"/v1/{graph_id}/copy",
34
- "cookies": cookies,
35
29
  }
36
30
 
37
31
  _kwargs["json"]: dict[str, Any]
@@ -103,7 +97,6 @@ def sync_detailed(
103
97
  client: AuthenticatedClient,
104
98
  body: Union["DataFrameCopyRequest", "S3CopyRequest", "URLCopyRequest"],
105
99
  authorization: Union[None, Unset, str] = UNSET,
106
- auth_token: Union[None, Unset, str] = UNSET,
107
100
  ) -> Response[Union[Any, CopyResponse, HTTPValidationError]]:
108
101
  """Copy Data to Graph
109
102
 
@@ -170,7 +163,6 @@ def sync_detailed(
170
163
  graph_id (str): Target graph identifier (user graphs only - shared repositories not
171
164
  allowed)
172
165
  authorization (Union[None, Unset, str]):
173
- auth_token (Union[None, Unset, str]):
174
166
  body (Union['DataFrameCopyRequest', 'S3CopyRequest', 'URLCopyRequest']):
175
167
 
176
168
  Raises:
@@ -185,7 +177,6 @@ def sync_detailed(
185
177
  graph_id=graph_id,
186
178
  body=body,
187
179
  authorization=authorization,
188
- auth_token=auth_token,
189
180
  )
190
181
 
191
182
  response = client.get_httpx_client().request(
@@ -201,7 +192,6 @@ def sync(
201
192
  client: AuthenticatedClient,
202
193
  body: Union["DataFrameCopyRequest", "S3CopyRequest", "URLCopyRequest"],
203
194
  authorization: Union[None, Unset, str] = UNSET,
204
- auth_token: Union[None, Unset, str] = UNSET,
205
195
  ) -> Optional[Union[Any, CopyResponse, HTTPValidationError]]:
206
196
  """Copy Data to Graph
207
197
 
@@ -268,7 +258,6 @@ def sync(
268
258
  graph_id (str): Target graph identifier (user graphs only - shared repositories not
269
259
  allowed)
270
260
  authorization (Union[None, Unset, str]):
271
- auth_token (Union[None, Unset, str]):
272
261
  body (Union['DataFrameCopyRequest', 'S3CopyRequest', 'URLCopyRequest']):
273
262
 
274
263
  Raises:
@@ -284,7 +273,6 @@ def sync(
284
273
  client=client,
285
274
  body=body,
286
275
  authorization=authorization,
287
- auth_token=auth_token,
288
276
  ).parsed
289
277
 
290
278
 
@@ -294,7 +282,6 @@ async def asyncio_detailed(
294
282
  client: AuthenticatedClient,
295
283
  body: Union["DataFrameCopyRequest", "S3CopyRequest", "URLCopyRequest"],
296
284
  authorization: Union[None, Unset, str] = UNSET,
297
- auth_token: Union[None, Unset, str] = UNSET,
298
285
  ) -> Response[Union[Any, CopyResponse, HTTPValidationError]]:
299
286
  """Copy Data to Graph
300
287
 
@@ -361,7 +348,6 @@ async def asyncio_detailed(
361
348
  graph_id (str): Target graph identifier (user graphs only - shared repositories not
362
349
  allowed)
363
350
  authorization (Union[None, Unset, str]):
364
- auth_token (Union[None, Unset, str]):
365
351
  body (Union['DataFrameCopyRequest', 'S3CopyRequest', 'URLCopyRequest']):
366
352
 
367
353
  Raises:
@@ -376,7 +362,6 @@ async def asyncio_detailed(
376
362
  graph_id=graph_id,
377
363
  body=body,
378
364
  authorization=authorization,
379
- auth_token=auth_token,
380
365
  )
381
366
 
382
367
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -390,7 +375,6 @@ async def asyncio(
390
375
  client: AuthenticatedClient,
391
376
  body: Union["DataFrameCopyRequest", "S3CopyRequest", "URLCopyRequest"],
392
377
  authorization: Union[None, Unset, str] = UNSET,
393
- auth_token: Union[None, Unset, str] = UNSET,
394
378
  ) -> Optional[Union[Any, CopyResponse, HTTPValidationError]]:
395
379
  """Copy Data to Graph
396
380
 
@@ -457,7 +441,6 @@ async def asyncio(
457
441
  graph_id (str): Target graph identifier (user graphs only - shared repositories not
458
442
  allowed)
459
443
  authorization (Union[None, Unset, str]):
460
- auth_token (Union[None, Unset, str]):
461
444
  body (Union['DataFrameCopyRequest', 'S3CopyRequest', 'URLCopyRequest']):
462
445
 
463
446
  Raises:
@@ -474,6 +457,5 @@ async def asyncio(
474
457
  client=client,
475
458
  body=body,
476
459
  authorization=authorization,
477
- auth_token=auth_token,
478
460
  )
479
461
  ).parsed
@@ -14,20 +14,14 @@ def _get_kwargs(
14
14
  *,
15
15
  body: CreateGraphRequest,
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": "post",
29
24
  "url": "/v1/create/graph",
30
- "cookies": cookies,
31
25
  }
32
26
 
33
27
  _kwargs["json"] = body.to_dict()
@@ -70,7 +64,6 @@ def sync_detailed(
70
64
  client: AuthenticatedClient,
71
65
  body: CreateGraphRequest,
72
66
  authorization: Union[None, Unset, str] = UNSET,
73
- auth_token: Union[None, Unset, str] = UNSET,
74
67
  ) -> Response[Union[Any, HTTPValidationError]]:
75
68
  """Create New Graph Database
76
69
 
@@ -117,7 +110,6 @@ def sync_detailed(
117
110
 
118
111
  Args:
119
112
  authorization (Union[None, Unset, str]):
120
- auth_token (Union[None, Unset, str]):
121
113
  body (CreateGraphRequest): Request model for creating a new graph. Example:
122
114
  {'initial_entity': {'cik': '0001234567', 'name': 'Acme Corp', 'uri': 'https://acme.com'},
123
115
  'instance_tier': 'standard', 'metadata': {'description': 'Main production graph',
@@ -135,7 +127,6 @@ def sync_detailed(
135
127
  kwargs = _get_kwargs(
136
128
  body=body,
137
129
  authorization=authorization,
138
- auth_token=auth_token,
139
130
  )
140
131
 
141
132
  response = client.get_httpx_client().request(
@@ -150,7 +141,6 @@ def sync(
150
141
  client: AuthenticatedClient,
151
142
  body: CreateGraphRequest,
152
143
  authorization: Union[None, Unset, str] = UNSET,
153
- auth_token: Union[None, Unset, str] = UNSET,
154
144
  ) -> Optional[Union[Any, HTTPValidationError]]:
155
145
  """Create New Graph Database
156
146
 
@@ -197,7 +187,6 @@ def sync(
197
187
 
198
188
  Args:
199
189
  authorization (Union[None, Unset, str]):
200
- auth_token (Union[None, Unset, str]):
201
190
  body (CreateGraphRequest): Request model for creating a new graph. Example:
202
191
  {'initial_entity': {'cik': '0001234567', 'name': 'Acme Corp', 'uri': 'https://acme.com'},
203
192
  'instance_tier': 'standard', 'metadata': {'description': 'Main production graph',
@@ -216,7 +205,6 @@ def sync(
216
205
  client=client,
217
206
  body=body,
218
207
  authorization=authorization,
219
- auth_token=auth_token,
220
208
  ).parsed
221
209
 
222
210
 
@@ -225,7 +213,6 @@ async def asyncio_detailed(
225
213
  client: AuthenticatedClient,
226
214
  body: CreateGraphRequest,
227
215
  authorization: Union[None, Unset, str] = UNSET,
228
- auth_token: Union[None, Unset, str] = UNSET,
229
216
  ) -> Response[Union[Any, HTTPValidationError]]:
230
217
  """Create New Graph Database
231
218
 
@@ -272,7 +259,6 @@ async def asyncio_detailed(
272
259
 
273
260
  Args:
274
261
  authorization (Union[None, Unset, str]):
275
- auth_token (Union[None, Unset, str]):
276
262
  body (CreateGraphRequest): Request model for creating a new graph. Example:
277
263
  {'initial_entity': {'cik': '0001234567', 'name': 'Acme Corp', 'uri': 'https://acme.com'},
278
264
  'instance_tier': 'standard', 'metadata': {'description': 'Main production graph',
@@ -290,7 +276,6 @@ async def asyncio_detailed(
290
276
  kwargs = _get_kwargs(
291
277
  body=body,
292
278
  authorization=authorization,
293
- auth_token=auth_token,
294
279
  )
295
280
 
296
281
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -303,7 +288,6 @@ async def asyncio(
303
288
  client: AuthenticatedClient,
304
289
  body: CreateGraphRequest,
305
290
  authorization: Union[None, Unset, str] = UNSET,
306
- auth_token: Union[None, Unset, str] = UNSET,
307
291
  ) -> Optional[Union[Any, HTTPValidationError]]:
308
292
  """Create New Graph Database
309
293
 
@@ -350,7 +334,6 @@ async def asyncio(
350
334
 
351
335
  Args:
352
336
  authorization (Union[None, Unset, str]):
353
- auth_token (Union[None, Unset, str]):
354
337
  body (CreateGraphRequest): Request model for creating a new graph. Example:
355
338
  {'initial_entity': {'cik': '0001234567', 'name': 'Acme Corp', 'uri': 'https://acme.com'},
356
339
  'instance_tier': 'standard', 'metadata': {'description': 'Main production graph',
@@ -370,6 +353,5 @@ async def asyncio(
370
353
  client=client,
371
354
  body=body,
372
355
  authorization=authorization,
373
- auth_token=auth_token,
374
356
  )
375
357
  ).parsed
@@ -15,20 +15,14 @@ def _get_kwargs(
15
15
  graph_id: str,
16
16
  *,
17
17
  authorization: Union[None, Unset, str] = UNSET,
18
- auth_token: Union[None, Unset, str] = UNSET,
19
18
  ) -> dict[str, Any]:
20
19
  headers: dict[str, Any] = {}
21
20
  if not isinstance(authorization, Unset):
22
21
  headers["authorization"] = authorization
23
22
 
24
- cookies = {}
25
- if auth_token is not UNSET:
26
- cookies["auth-token"] = auth_token
27
-
28
23
  _kwargs: dict[str, Any] = {
29
24
  "method": "get",
30
25
  "url": f"/v1/{graph_id}/analytics",
31
- "cookies": cookies,
32
26
  }
33
27
 
34
28
  _kwargs["headers"] = headers
@@ -80,7 +74,6 @@ def sync_detailed(
80
74
  *,
81
75
  client: AuthenticatedClient,
82
76
  authorization: Union[None, Unset, str] = UNSET,
83
- auth_token: Union[None, Unset, str] = UNSET,
84
77
  ) -> Response[Union[ErrorResponse, GraphMetricsResponse, HTTPValidationError]]:
85
78
  """Get Graph Metrics
86
79
 
@@ -105,7 +98,6 @@ def sync_detailed(
105
98
  Args:
106
99
  graph_id (str): The graph ID to get metrics for
107
100
  authorization (Union[None, Unset, str]):
108
- auth_token (Union[None, Unset, str]):
109
101
 
110
102
  Raises:
111
103
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -118,7 +110,6 @@ def sync_detailed(
118
110
  kwargs = _get_kwargs(
119
111
  graph_id=graph_id,
120
112
  authorization=authorization,
121
- auth_token=auth_token,
122
113
  )
123
114
 
124
115
  response = client.get_httpx_client().request(
@@ -133,7 +124,6 @@ def sync(
133
124
  *,
134
125
  client: AuthenticatedClient,
135
126
  authorization: Union[None, Unset, str] = UNSET,
136
- auth_token: Union[None, Unset, str] = UNSET,
137
127
  ) -> Optional[Union[ErrorResponse, GraphMetricsResponse, HTTPValidationError]]:
138
128
  """Get Graph Metrics
139
129
 
@@ -158,7 +148,6 @@ def sync(
158
148
  Args:
159
149
  graph_id (str): The graph ID to get metrics for
160
150
  authorization (Union[None, Unset, str]):
161
- auth_token (Union[None, Unset, str]):
162
151
 
163
152
  Raises:
164
153
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -172,7 +161,6 @@ def sync(
172
161
  graph_id=graph_id,
173
162
  client=client,
174
163
  authorization=authorization,
175
- auth_token=auth_token,
176
164
  ).parsed
177
165
 
178
166
 
@@ -181,7 +169,6 @@ async def asyncio_detailed(
181
169
  *,
182
170
  client: AuthenticatedClient,
183
171
  authorization: Union[None, Unset, str] = UNSET,
184
- auth_token: Union[None, Unset, str] = UNSET,
185
172
  ) -> Response[Union[ErrorResponse, GraphMetricsResponse, HTTPValidationError]]:
186
173
  """Get Graph Metrics
187
174
 
@@ -206,7 +193,6 @@ async def asyncio_detailed(
206
193
  Args:
207
194
  graph_id (str): The graph ID to get metrics for
208
195
  authorization (Union[None, Unset, str]):
209
- auth_token (Union[None, Unset, str]):
210
196
 
211
197
  Raises:
212
198
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -219,7 +205,6 @@ async def asyncio_detailed(
219
205
  kwargs = _get_kwargs(
220
206
  graph_id=graph_id,
221
207
  authorization=authorization,
222
- auth_token=auth_token,
223
208
  )
224
209
 
225
210
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -232,7 +217,6 @@ async def asyncio(
232
217
  *,
233
218
  client: AuthenticatedClient,
234
219
  authorization: Union[None, Unset, str] = UNSET,
235
- auth_token: Union[None, Unset, str] = UNSET,
236
220
  ) -> Optional[Union[ErrorResponse, GraphMetricsResponse, HTTPValidationError]]:
237
221
  """Get Graph Metrics
238
222
 
@@ -257,7 +241,6 @@ async def asyncio(
257
241
  Args:
258
242
  graph_id (str): The graph ID to get metrics for
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,16 +16,11 @@ def _get_kwargs(
16
16
  *,
17
17
  include_details: Union[Unset, bool] = False,
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
  params: dict[str, Any] = {}
30
25
 
31
26
  params["include_details"] = include_details
@@ -36,7 +31,6 @@ def _get_kwargs(
36
31
  "method": "get",
37
32
  "url": f"/v1/{graph_id}/analytics/usage",
38
33
  "params": params,
39
- "cookies": cookies,
40
34
  }
41
35
 
42
36
  _kwargs["headers"] = headers
@@ -85,7 +79,6 @@ def sync_detailed(
85
79
  client: AuthenticatedClient,
86
80
  include_details: Union[Unset, bool] = False,
87
81
  authorization: Union[None, Unset, str] = UNSET,
88
- auth_token: Union[None, Unset, str] = UNSET,
89
82
  ) -> Response[Union[ErrorResponse, GraphUsageResponse, HTTPValidationError]]:
90
83
  """Get Usage Statistics
91
84
 
@@ -118,7 +111,6 @@ def sync_detailed(
118
111
  include_details (Union[Unset, bool]): Include detailed metrics (may be slower) Default:
119
112
  False.
120
113
  authorization (Union[None, Unset, str]):
121
- auth_token (Union[None, Unset, str]):
122
114
 
123
115
  Raises:
124
116
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -132,7 +124,6 @@ def sync_detailed(
132
124
  graph_id=graph_id,
133
125
  include_details=include_details,
134
126
  authorization=authorization,
135
- auth_token=auth_token,
136
127
  )
137
128
 
138
129
  response = client.get_httpx_client().request(
@@ -148,7 +139,6 @@ def sync(
148
139
  client: AuthenticatedClient,
149
140
  include_details: Union[Unset, bool] = False,
150
141
  authorization: Union[None, Unset, str] = UNSET,
151
- auth_token: Union[None, Unset, str] = UNSET,
152
142
  ) -> Optional[Union[ErrorResponse, GraphUsageResponse, HTTPValidationError]]:
153
143
  """Get Usage Statistics
154
144
 
@@ -181,7 +171,6 @@ def sync(
181
171
  include_details (Union[Unset, bool]): Include detailed metrics (may be slower) Default:
182
172
  False.
183
173
  authorization (Union[None, Unset, str]):
184
- auth_token (Union[None, Unset, str]):
185
174
 
186
175
  Raises:
187
176
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -196,7 +185,6 @@ def sync(
196
185
  client=client,
197
186
  include_details=include_details,
198
187
  authorization=authorization,
199
- auth_token=auth_token,
200
188
  ).parsed
201
189
 
202
190
 
@@ -206,7 +194,6 @@ async def asyncio_detailed(
206
194
  client: AuthenticatedClient,
207
195
  include_details: Union[Unset, bool] = False,
208
196
  authorization: Union[None, Unset, str] = UNSET,
209
- auth_token: Union[None, Unset, str] = UNSET,
210
197
  ) -> Response[Union[ErrorResponse, GraphUsageResponse, HTTPValidationError]]:
211
198
  """Get Usage Statistics
212
199
 
@@ -239,7 +226,6 @@ async def asyncio_detailed(
239
226
  include_details (Union[Unset, bool]): Include detailed metrics (may be slower) Default:
240
227
  False.
241
228
  authorization (Union[None, Unset, str]):
242
- auth_token (Union[None, Unset, str]):
243
229
 
244
230
  Raises:
245
231
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -253,7 +239,6 @@ async def asyncio_detailed(
253
239
  graph_id=graph_id,
254
240
  include_details=include_details,
255
241
  authorization=authorization,
256
- auth_token=auth_token,
257
242
  )
258
243
 
259
244
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -267,7 +252,6 @@ async def asyncio(
267
252
  client: AuthenticatedClient,
268
253
  include_details: Union[Unset, bool] = False,
269
254
  authorization: Union[None, Unset, str] = UNSET,
270
- auth_token: Union[None, Unset, str] = UNSET,
271
255
  ) -> Optional[Union[ErrorResponse, GraphUsageResponse, HTTPValidationError]]:
272
256
  """Get Usage Statistics
273
257
 
@@ -300,7 +284,6 @@ async def asyncio(
300
284
  include_details (Union[Unset, bool]): Include detailed metrics (may be slower) Default:
301
285
  False.
302
286
  authorization (Union[None, Unset, str]):
303
- auth_token (Union[None, Unset, str]):
304
287
 
305
288
  Raises:
306
289
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -316,6 +299,5 @@ async def asyncio(
316
299
  client=client,
317
300
  include_details=include_details,
318
301
  authorization=authorization,
319
- auth_token=auth_token,
320
302
  )
321
303
  ).parsed
@@ -17,20 +17,14 @@ def _get_kwargs(
17
17
  graph_id: str,
18
18
  *,
19
19
  authorization: Union[None, Unset, str] = UNSET,
20
- auth_token: Union[None, Unset, str] = UNSET,
21
20
  ) -> dict[str, Any]:
22
21
  headers: dict[str, Any] = {}
23
22
  if not isinstance(authorization, Unset):
24
23
  headers["authorization"] = authorization
25
24
 
26
- cookies = {}
27
- if auth_token is not UNSET:
28
- cookies["auth-token"] = auth_token
29
-
30
25
  _kwargs: dict[str, Any] = {
31
26
  "method": "get",
32
27
  "url": f"/v1/{graph_id}/billing/current",
33
- "cookies": cookies,
34
28
  }
35
29
 
36
30
  _kwargs["headers"] = headers
@@ -92,7 +86,6 @@ def sync_detailed(
92
86
  *,
93
87
  client: AuthenticatedClient,
94
88
  authorization: Union[None, Unset, str] = UNSET,
95
- auth_token: Union[None, Unset, str] = UNSET,
96
89
  ) -> Response[
97
90
  Union[
98
91
  ErrorResponse, GetCurrentGraphBillResponseGetcurrentgraphbill, HTTPValidationError
@@ -116,7 +109,6 @@ def sync_detailed(
116
109
  Args:
117
110
  graph_id (str): Graph database identifier
118
111
  authorization (Union[None, Unset, str]):
119
- auth_token (Union[None, Unset, str]):
120
112
 
121
113
  Raises:
122
114
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -129,7 +121,6 @@ def sync_detailed(
129
121
  kwargs = _get_kwargs(
130
122
  graph_id=graph_id,
131
123
  authorization=authorization,
132
- auth_token=auth_token,
133
124
  )
134
125
 
135
126
  response = client.get_httpx_client().request(
@@ -144,7 +135,6 @@ def sync(
144
135
  *,
145
136
  client: AuthenticatedClient,
146
137
  authorization: Union[None, Unset, str] = UNSET,
147
- auth_token: Union[None, Unset, str] = UNSET,
148
138
  ) -> Optional[
149
139
  Union[
150
140
  ErrorResponse, GetCurrentGraphBillResponseGetcurrentgraphbill, HTTPValidationError
@@ -168,7 +158,6 @@ def sync(
168
158
  Args:
169
159
  graph_id (str): Graph database identifier
170
160
  authorization (Union[None, Unset, str]):
171
- auth_token (Union[None, Unset, str]):
172
161
 
173
162
  Raises:
174
163
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -182,7 +171,6 @@ def sync(
182
171
  graph_id=graph_id,
183
172
  client=client,
184
173
  authorization=authorization,
185
- auth_token=auth_token,
186
174
  ).parsed
187
175
 
188
176
 
@@ -191,7 +179,6 @@ async def asyncio_detailed(
191
179
  *,
192
180
  client: AuthenticatedClient,
193
181
  authorization: Union[None, Unset, str] = UNSET,
194
- auth_token: Union[None, Unset, str] = UNSET,
195
182
  ) -> Response[
196
183
  Union[
197
184
  ErrorResponse, GetCurrentGraphBillResponseGetcurrentgraphbill, HTTPValidationError
@@ -215,7 +202,6 @@ async def asyncio_detailed(
215
202
  Args:
216
203
  graph_id (str): Graph database identifier
217
204
  authorization (Union[None, Unset, str]):
218
- auth_token (Union[None, Unset, str]):
219
205
 
220
206
  Raises:
221
207
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -228,7 +214,6 @@ async def asyncio_detailed(
228
214
  kwargs = _get_kwargs(
229
215
  graph_id=graph_id,
230
216
  authorization=authorization,
231
- auth_token=auth_token,
232
217
  )
233
218
 
234
219
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -241,7 +226,6 @@ async def asyncio(
241
226
  *,
242
227
  client: AuthenticatedClient,
243
228
  authorization: Union[None, Unset, str] = UNSET,
244
- auth_token: Union[None, Unset, str] = UNSET,
245
229
  ) -> Optional[
246
230
  Union[
247
231
  ErrorResponse, GetCurrentGraphBillResponseGetcurrentgraphbill, HTTPValidationError
@@ -265,7 +249,6 @@ async def asyncio(
265
249
  Args:
266
250
  graph_id (str): Graph database identifier
267
251
  authorization (Union[None, Unset, str]):
268
- auth_token (Union[None, Unset, str]):
269
252
 
270
253
  Raises:
271
254
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -280,6 +263,5 @@ async def asyncio(
280
263
  graph_id=graph_id,
281
264
  client=client,
282
265
  authorization=authorization,
283
- auth_token=auth_token,
284
266
  )
285
267
  ).parsed