robosystems-client 0.1.15__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 (130) hide show
  1. robosystems_client/api/agent/auto_select_agent.py +246 -0
  2. robosystems_client/api/agent/batch_process_queries.py +261 -0
  3. robosystems_client/api/agent/execute_specific_agent.py +258 -0
  4. robosystems_client/api/agent/get_agent_metadata.py +238 -0
  5. robosystems_client/api/agent/list_agents.py +246 -0
  6. robosystems_client/api/agent/recommend_agent.py +255 -0
  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 +14 -28
  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 +51 -3
  86. robosystems_client/models/agent_list_response.py +74 -0
  87. robosystems_client/models/agent_list_response_agents.py +67 -0
  88. robosystems_client/models/{credits_summary_response_credits_by_addon_item.py → agent_list_response_agents_additional_property.py} +5 -5
  89. robosystems_client/models/agent_message.py +35 -1
  90. robosystems_client/models/agent_metadata_response.py +133 -0
  91. robosystems_client/models/agent_mode.py +11 -0
  92. robosystems_client/models/agent_recommendation.py +106 -0
  93. robosystems_client/models/agent_recommendation_request.py +108 -0
  94. robosystems_client/models/agent_recommendation_request_context_type_0.py +44 -0
  95. robosystems_client/models/agent_recommendation_response.py +82 -0
  96. robosystems_client/models/agent_request.py +110 -6
  97. robosystems_client/models/agent_response.py +161 -11
  98. robosystems_client/models/agent_response_error_details_type_0.py +44 -0
  99. robosystems_client/models/agent_response_tokens_used_type_0.py +44 -0
  100. robosystems_client/models/auth_response.py +20 -6
  101. robosystems_client/models/batch_agent_request.py +85 -0
  102. robosystems_client/models/batch_agent_response.py +90 -0
  103. robosystems_client/models/credit_summary.py +35 -9
  104. robosystems_client/models/credits_summary_response.py +47 -21
  105. robosystems_client/models/credits_summary_response_credits_by_addon_type_0_item.py +44 -0
  106. robosystems_client/models/custom_schema_definition.py +7 -14
  107. robosystems_client/models/custom_schema_definition_metadata.py +1 -6
  108. robosystems_client/models/database_health_response.py +11 -11
  109. robosystems_client/models/database_info_response.py +13 -14
  110. robosystems_client/models/email_verification_request.py +60 -0
  111. robosystems_client/models/error_response.py +4 -8
  112. robosystems_client/models/forgot_password_request.py +60 -0
  113. robosystems_client/models/forgot_password_response_forgotpassword.py +44 -0
  114. robosystems_client/models/graph_metadata.py +4 -5
  115. robosystems_client/models/health_status.py +2 -2
  116. robosystems_client/models/repository_credits_response.py +43 -16
  117. robosystems_client/models/resend_verification_email_response_resendverificationemail.py +44 -0
  118. robosystems_client/models/reset_password_request.py +68 -0
  119. robosystems_client/models/reset_password_validate_response.py +82 -0
  120. robosystems_client/models/schema_export_response.py +5 -8
  121. robosystems_client/models/schema_validation_request.py +3 -5
  122. robosystems_client/models/schema_validation_response.py +5 -5
  123. robosystems_client/models/selection_criteria.py +122 -0
  124. robosystems_client/models/success_response.py +1 -1
  125. robosystems_client-0.1.17.dist-info/METADATA +89 -0
  126. {robosystems_client-0.1.15.dist-info → robosystems_client-0.1.17.dist-info}/RECORD +128 -97
  127. robosystems_client-0.1.17.dist-info/licenses/LICENSE +21 -0
  128. robosystems_client/api/agent/query_financial_agent.py +0 -423
  129. robosystems_client-0.1.15.dist-info/METADATA +0 -302
  130. {robosystems_client-0.1.15.dist-info → robosystems_client-0.1.17.dist-info}/WHEEL +0 -0
@@ -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
@@ -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}/mcp/tools",
31
- "cookies": cookies,
32
26
  }
33
27
 
34
28
  _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[ErrorResponse, HTTPValidationError, MCPToolsResponse]]:
81
74
  """List MCP Tools
82
75
 
@@ -99,7 +92,6 @@ def sync_detailed(
99
92
  Args:
100
93
  graph_id (str): Graph database identifier
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[ErrorResponse, HTTPValidationError, MCPToolsResponse]]:
132
122
  """List MCP Tools
133
123
 
@@ -150,7 +140,6 @@ def sync(
150
140
  Args:
151
141
  graph_id (str): Graph database identifier
152
142
  authorization (Union[None, Unset, str]):
153
- auth_token (Union[None, Unset, str]):
154
143
 
155
144
  Raises:
156
145
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -164,7 +153,6 @@ def sync(
164
153
  graph_id=graph_id,
165
154
  client=client,
166
155
  authorization=authorization,
167
- auth_token=auth_token,
168
156
  ).parsed
169
157
 
170
158
 
@@ -173,7 +161,6 @@ async def asyncio_detailed(
173
161
  *,
174
162
  client: AuthenticatedClient,
175
163
  authorization: Union[None, Unset, str] = UNSET,
176
- auth_token: Union[None, Unset, str] = UNSET,
177
164
  ) -> Response[Union[ErrorResponse, HTTPValidationError, MCPToolsResponse]]:
178
165
  """List MCP Tools
179
166
 
@@ -196,7 +183,6 @@ async def asyncio_detailed(
196
183
  Args:
197
184
  graph_id (str): Graph database identifier
198
185
  authorization (Union[None, Unset, str]):
199
- auth_token (Union[None, Unset, str]):
200
186
 
201
187
  Raises:
202
188
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -209,7 +195,6 @@ async def asyncio_detailed(
209
195
  kwargs = _get_kwargs(
210
196
  graph_id=graph_id,
211
197
  authorization=authorization,
212
- auth_token=auth_token,
213
198
  )
214
199
 
215
200
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -222,7 +207,6 @@ async def asyncio(
222
207
  *,
223
208
  client: AuthenticatedClient,
224
209
  authorization: Union[None, Unset, str] = UNSET,
225
- auth_token: Union[None, Unset, str] = UNSET,
226
210
  ) -> Optional[Union[ErrorResponse, HTTPValidationError, MCPToolsResponse]]:
227
211
  """List MCP Tools
228
212
 
@@ -245,7 +229,6 @@ async def asyncio(
245
229
  Args:
246
230
  graph_id (str): Graph database identifier
247
231
  authorization (Union[None, Unset, str]):
248
- auth_token (Union[None, Unset, str]):
249
232
 
250
233
  Raises:
251
234
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -260,6 +243,5 @@ async def asyncio(
260
243
  graph_id=graph_id,
261
244
  client=client,
262
245
  authorization=authorization,
263
- auth_token=auth_token,
264
246
  )
265
247
  ).parsed
@@ -16,20 +16,14 @@ def _get_kwargs(
16
16
  operation_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": "delete",
31
26
  "url": f"/v1/operations/{operation_id}",
32
- "cookies": cookies,
33
27
  }
34
28
 
35
29
  _kwargs["headers"] = headers
@@ -81,7 +75,6 @@ def sync_detailed(
81
75
  *,
82
76
  client: AuthenticatedClient,
83
77
  authorization: Union[None, Unset, str] = UNSET,
84
- auth_token: Union[None, Unset, str] = UNSET,
85
78
  ) -> Response[Union[Any, CancelOperationResponseCanceloperation, HTTPValidationError]]:
86
79
  """Cancel Operation
87
80
 
@@ -98,7 +91,6 @@ def sync_detailed(
98
91
  Args:
99
92
  operation_id (str): Operation identifier
100
93
  authorization (Union[None, Unset, str]):
101
- auth_token (Union[None, Unset, str]):
102
94
 
103
95
  Raises:
104
96
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -111,7 +103,6 @@ def sync_detailed(
111
103
  kwargs = _get_kwargs(
112
104
  operation_id=operation_id,
113
105
  authorization=authorization,
114
- auth_token=auth_token,
115
106
  )
116
107
 
117
108
  response = client.get_httpx_client().request(
@@ -126,7 +117,6 @@ def sync(
126
117
  *,
127
118
  client: AuthenticatedClient,
128
119
  authorization: Union[None, Unset, str] = UNSET,
129
- auth_token: Union[None, Unset, str] = UNSET,
130
120
  ) -> Optional[Union[Any, CancelOperationResponseCanceloperation, HTTPValidationError]]:
131
121
  """Cancel Operation
132
122
 
@@ -143,7 +133,6 @@ def sync(
143
133
  Args:
144
134
  operation_id (str): Operation identifier
145
135
  authorization (Union[None, Unset, str]):
146
- auth_token (Union[None, Unset, str]):
147
136
 
148
137
  Raises:
149
138
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -157,7 +146,6 @@ def sync(
157
146
  operation_id=operation_id,
158
147
  client=client,
159
148
  authorization=authorization,
160
- auth_token=auth_token,
161
149
  ).parsed
162
150
 
163
151
 
@@ -166,7 +154,6 @@ async def asyncio_detailed(
166
154
  *,
167
155
  client: AuthenticatedClient,
168
156
  authorization: Union[None, Unset, str] = UNSET,
169
- auth_token: Union[None, Unset, str] = UNSET,
170
157
  ) -> Response[Union[Any, CancelOperationResponseCanceloperation, HTTPValidationError]]:
171
158
  """Cancel Operation
172
159
 
@@ -183,7 +170,6 @@ async def asyncio_detailed(
183
170
  Args:
184
171
  operation_id (str): Operation identifier
185
172
  authorization (Union[None, Unset, str]):
186
- auth_token (Union[None, Unset, str]):
187
173
 
188
174
  Raises:
189
175
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -196,7 +182,6 @@ async def asyncio_detailed(
196
182
  kwargs = _get_kwargs(
197
183
  operation_id=operation_id,
198
184
  authorization=authorization,
199
- auth_token=auth_token,
200
185
  )
201
186
 
202
187
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -209,7 +194,6 @@ async def asyncio(
209
194
  *,
210
195
  client: AuthenticatedClient,
211
196
  authorization: Union[None, Unset, str] = UNSET,
212
- auth_token: Union[None, Unset, str] = UNSET,
213
197
  ) -> Optional[Union[Any, CancelOperationResponseCanceloperation, HTTPValidationError]]:
214
198
  """Cancel Operation
215
199
 
@@ -226,7 +210,6 @@ async def asyncio(
226
210
  Args:
227
211
  operation_id (str): Operation identifier
228
212
  authorization (Union[None, Unset, str]):
229
- auth_token (Union[None, Unset, str]):
230
213
 
231
214
  Raises:
232
215
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -241,6 +224,5 @@ async def asyncio(
241
224
  operation_id=operation_id,
242
225
  client=client,
243
226
  authorization=authorization,
244
- auth_token=auth_token,
245
227
  )
246
228
  ).parsed
@@ -16,20 +16,14 @@ def _get_kwargs(
16
16
  operation_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/operations/{operation_id}/status",
32
- "cookies": cookies,
33
27
  }
34
28
 
35
29
  _kwargs["headers"] = headers
@@ -84,7 +78,6 @@ def sync_detailed(
84
78
  *,
85
79
  client: AuthenticatedClient,
86
80
  authorization: Union[None, Unset, str] = UNSET,
87
- auth_token: Union[None, Unset, str] = UNSET,
88
81
  ) -> Response[
89
82
  Union[Any, GetOperationStatusResponseGetoperationstatus, HTTPValidationError]
90
83
  ]:
@@ -107,7 +100,6 @@ def sync_detailed(
107
100
  Args:
108
101
  operation_id (str): Operation identifier
109
102
  authorization (Union[None, Unset, str]):
110
- auth_token (Union[None, Unset, str]):
111
103
 
112
104
  Raises:
113
105
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -120,7 +112,6 @@ def sync_detailed(
120
112
  kwargs = _get_kwargs(
121
113
  operation_id=operation_id,
122
114
  authorization=authorization,
123
- auth_token=auth_token,
124
115
  )
125
116
 
126
117
  response = client.get_httpx_client().request(
@@ -135,7 +126,6 @@ def sync(
135
126
  *,
136
127
  client: AuthenticatedClient,
137
128
  authorization: Union[None, Unset, str] = UNSET,
138
- auth_token: Union[None, Unset, str] = UNSET,
139
129
  ) -> Optional[
140
130
  Union[Any, GetOperationStatusResponseGetoperationstatus, HTTPValidationError]
141
131
  ]:
@@ -158,7 +148,6 @@ def sync(
158
148
  Args:
159
149
  operation_id (str): Operation identifier
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
  operation_id=operation_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[
186
173
  Union[Any, GetOperationStatusResponseGetoperationstatus, HTTPValidationError]
187
174
  ]:
@@ -204,7 +191,6 @@ async def asyncio_detailed(
204
191
  Args:
205
192
  operation_id (str): Operation identifier
206
193
  authorization (Union[None, Unset, str]):
207
- auth_token (Union[None, Unset, str]):
208
194
 
209
195
  Raises:
210
196
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -217,7 +203,6 @@ async def asyncio_detailed(
217
203
  kwargs = _get_kwargs(
218
204
  operation_id=operation_id,
219
205
  authorization=authorization,
220
- auth_token=auth_token,
221
206
  )
222
207
 
223
208
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -230,7 +215,6 @@ async def asyncio(
230
215
  *,
231
216
  client: AuthenticatedClient,
232
217
  authorization: Union[None, Unset, str] = UNSET,
233
- auth_token: Union[None, Unset, str] = UNSET,
234
218
  ) -> Optional[
235
219
  Union[Any, GetOperationStatusResponseGetoperationstatus, HTTPValidationError]
236
220
  ]:
@@ -253,7 +237,6 @@ async def asyncio(
253
237
  Args:
254
238
  operation_id (str): Operation 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
  operation_id=operation_id,
269
252
  client=client,
270
253
  authorization=authorization,
271
- auth_token=auth_token,
272
254
  )
273
255
  ).parsed
@@ -14,16 +14,11 @@ def _get_kwargs(
14
14
  *,
15
15
  from_sequence: Union[Unset, int] = 0,
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
  params: dict[str, Any] = {}
28
23
 
29
24
  params["from_sequence"] = from_sequence
@@ -34,7 +29,6 @@ def _get_kwargs(
34
29
  "method": "get",
35
30
  "url": f"/v1/operations/{operation_id}/stream",
36
31
  "params": params,
37
- "cookies": cookies,
38
32
  }
39
33
 
40
34
  _kwargs["headers"] = headers
@@ -83,7 +77,6 @@ def sync_detailed(
83
77
  client: AuthenticatedClient,
84
78
  from_sequence: Union[Unset, int] = 0,
85
79
  authorization: Union[None, Unset, str] = UNSET,
86
- auth_token: Union[None, Unset, str] = UNSET,
87
80
  ) -> Response[Union[Any, HTTPValidationError]]:
88
81
  """Stream Operation Events
89
82
 
@@ -140,7 +133,6 @@ def sync_detailed(
140
133
  from_sequence (Union[Unset, int]): Start streaming from this sequence number (0 = from
141
134
  beginning) Default: 0.
142
135
  authorization (Union[None, Unset, str]):
143
- auth_token (Union[None, Unset, str]):
144
136
 
145
137
  Raises:
146
138
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -154,7 +146,6 @@ def sync_detailed(
154
146
  operation_id=operation_id,
155
147
  from_sequence=from_sequence,
156
148
  authorization=authorization,
157
- auth_token=auth_token,
158
149
  )
159
150
 
160
151
  response = client.get_httpx_client().request(
@@ -170,7 +161,6 @@ def sync(
170
161
  client: AuthenticatedClient,
171
162
  from_sequence: Union[Unset, int] = 0,
172
163
  authorization: Union[None, Unset, str] = UNSET,
173
- auth_token: Union[None, Unset, str] = UNSET,
174
164
  ) -> Optional[Union[Any, HTTPValidationError]]:
175
165
  """Stream Operation Events
176
166
 
@@ -227,7 +217,6 @@ def sync(
227
217
  from_sequence (Union[Unset, int]): Start streaming from this sequence number (0 = from
228
218
  beginning) Default: 0.
229
219
  authorization (Union[None, Unset, str]):
230
- auth_token (Union[None, Unset, str]):
231
220
 
232
221
  Raises:
233
222
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -242,7 +231,6 @@ def sync(
242
231
  client=client,
243
232
  from_sequence=from_sequence,
244
233
  authorization=authorization,
245
- auth_token=auth_token,
246
234
  ).parsed
247
235
 
248
236
 
@@ -252,7 +240,6 @@ async def asyncio_detailed(
252
240
  client: AuthenticatedClient,
253
241
  from_sequence: Union[Unset, int] = 0,
254
242
  authorization: Union[None, Unset, str] = UNSET,
255
- auth_token: Union[None, Unset, str] = UNSET,
256
243
  ) -> Response[Union[Any, HTTPValidationError]]:
257
244
  """Stream Operation Events
258
245
 
@@ -309,7 +296,6 @@ async def asyncio_detailed(
309
296
  from_sequence (Union[Unset, int]): Start streaming from this sequence number (0 = from
310
297
  beginning) Default: 0.
311
298
  authorization (Union[None, Unset, str]):
312
- auth_token (Union[None, Unset, str]):
313
299
 
314
300
  Raises:
315
301
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -323,7 +309,6 @@ async def asyncio_detailed(
323
309
  operation_id=operation_id,
324
310
  from_sequence=from_sequence,
325
311
  authorization=authorization,
326
- auth_token=auth_token,
327
312
  )
328
313
 
329
314
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -337,7 +322,6 @@ async def asyncio(
337
322
  client: AuthenticatedClient,
338
323
  from_sequence: Union[Unset, int] = 0,
339
324
  authorization: Union[None, Unset, str] = UNSET,
340
- auth_token: Union[None, Unset, str] = UNSET,
341
325
  ) -> Optional[Union[Any, HTTPValidationError]]:
342
326
  """Stream Operation Events
343
327
 
@@ -394,7 +378,6 @@ async def asyncio(
394
378
  from_sequence (Union[Unset, int]): Start streaming from this sequence number (0 = from
395
379
  beginning) Default: 0.
396
380
  authorization (Union[None, Unset, str]):
397
- auth_token (Union[None, Unset, str]):
398
381
 
399
382
  Raises:
400
383
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -410,6 +393,5 @@ async def asyncio(
410
393
  client=client,
411
394
  from_sequence=from_sequence,
412
395
  authorization=authorization,
413
- auth_token=auth_token,
414
396
  )
415
397
  ).parsed
@@ -19,16 +19,11 @@ def _get_kwargs(
19
19
  chunk_size: Union[Unset, int] = 1000,
20
20
  test_mode: Union[Unset, bool] = False,
21
21
  authorization: Union[None, Unset, str] = UNSET,
22
- auth_token: Union[None, Unset, str] = UNSET,
23
22
  ) -> dict[str, Any]:
24
23
  headers: dict[str, Any] = {}
25
24
  if not isinstance(authorization, Unset):
26
25
  headers["authorization"] = authorization
27
26
 
28
- cookies = {}
29
- if auth_token is not UNSET:
30
- cookies["auth-token"] = auth_token
31
-
32
27
  params: dict[str, Any] = {}
33
28
 
34
29
  json_mode: Union[None, Unset, str]
@@ -50,7 +45,6 @@ def _get_kwargs(
50
45
  "method": "post",
51
46
  "url": f"/v1/{graph_id}/query",
52
47
  "params": params,
53
- "cookies": cookies,
54
48
  }
55
49
 
56
50
  _kwargs["json"] = body.to_dict()
@@ -118,7 +112,6 @@ def sync_detailed(
118
112
  chunk_size: Union[Unset, int] = 1000,
119
113
  test_mode: Union[Unset, bool] = False,
120
114
  authorization: Union[None, Unset, str] = UNSET,
121
- auth_token: Union[None, Unset, str] = UNSET,
122
115
  ) -> Response[Union[Any, HTTPValidationError]]:
123
116
  """Execute Cypher Query
124
117
 
@@ -176,7 +169,6 @@ def sync_detailed(
176
169
  chunk_size (Union[Unset, int]): Rows per chunk for streaming Default: 1000.
177
170
  test_mode (Union[Unset, bool]): Enable test mode for better debugging Default: False.
178
171
  authorization (Union[None, Unset, str]):
179
- auth_token (Union[None, Unset, str]):
180
172
  body (CypherQueryRequest): Request model for Cypher query execution.
181
173
 
182
174
  Raises:
@@ -194,7 +186,6 @@ def sync_detailed(
194
186
  chunk_size=chunk_size,
195
187
  test_mode=test_mode,
196
188
  authorization=authorization,
197
- auth_token=auth_token,
198
189
  )
199
190
 
200
191
  response = client.get_httpx_client().request(
@@ -213,7 +204,6 @@ def sync(
213
204
  chunk_size: Union[Unset, int] = 1000,
214
205
  test_mode: Union[Unset, bool] = False,
215
206
  authorization: Union[None, Unset, str] = UNSET,
216
- auth_token: Union[None, Unset, str] = UNSET,
217
207
  ) -> Optional[Union[Any, HTTPValidationError]]:
218
208
  """Execute Cypher Query
219
209
 
@@ -271,7 +261,6 @@ def sync(
271
261
  chunk_size (Union[Unset, int]): Rows per chunk for streaming Default: 1000.
272
262
  test_mode (Union[Unset, bool]): Enable test mode for better debugging Default: False.
273
263
  authorization (Union[None, Unset, str]):
274
- auth_token (Union[None, Unset, str]):
275
264
  body (CypherQueryRequest): Request model for Cypher query execution.
276
265
 
277
266
  Raises:
@@ -290,7 +279,6 @@ def sync(
290
279
  chunk_size=chunk_size,
291
280
  test_mode=test_mode,
292
281
  authorization=authorization,
293
- auth_token=auth_token,
294
282
  ).parsed
295
283
 
296
284
 
@@ -303,7 +291,6 @@ async def asyncio_detailed(
303
291
  chunk_size: Union[Unset, int] = 1000,
304
292
  test_mode: Union[Unset, bool] = False,
305
293
  authorization: Union[None, Unset, str] = UNSET,
306
- auth_token: Union[None, Unset, str] = UNSET,
307
294
  ) -> Response[Union[Any, HTTPValidationError]]:
308
295
  """Execute Cypher Query
309
296
 
@@ -361,7 +348,6 @@ async def asyncio_detailed(
361
348
  chunk_size (Union[Unset, int]): Rows per chunk for streaming Default: 1000.
362
349
  test_mode (Union[Unset, bool]): Enable test mode for better debugging Default: False.
363
350
  authorization (Union[None, Unset, str]):
364
- auth_token (Union[None, Unset, str]):
365
351
  body (CypherQueryRequest): Request model for Cypher query execution.
366
352
 
367
353
  Raises:
@@ -379,7 +365,6 @@ async def asyncio_detailed(
379
365
  chunk_size=chunk_size,
380
366
  test_mode=test_mode,
381
367
  authorization=authorization,
382
- auth_token=auth_token,
383
368
  )
384
369
 
385
370
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -396,7 +381,6 @@ async def asyncio(
396
381
  chunk_size: Union[Unset, int] = 1000,
397
382
  test_mode: Union[Unset, bool] = False,
398
383
  authorization: Union[None, Unset, str] = UNSET,
399
- auth_token: Union[None, Unset, str] = UNSET,
400
384
  ) -> Optional[Union[Any, HTTPValidationError]]:
401
385
  """Execute Cypher Query
402
386
 
@@ -454,7 +438,6 @@ async def asyncio(
454
438
  chunk_size (Union[Unset, int]): Rows per chunk for streaming Default: 1000.
455
439
  test_mode (Union[Unset, bool]): Enable test mode for better debugging Default: False.
456
440
  authorization (Union[None, Unset, str]):
457
- auth_token (Union[None, Unset, str]):
458
441
  body (CypherQueryRequest): Request model for Cypher query execution.
459
442
 
460
443
  Raises:
@@ -474,6 +457,5 @@ async def asyncio(
474
457
  chunk_size=chunk_size,
475
458
  test_mode=test_mode,
476
459
  authorization=authorization,
477
- auth_token=auth_token,
478
460
  )
479
461
  ).parsed