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
@@ -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}/credits/summary",
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[CreditSummaryResponse, ErrorResponse, HTTPValidationError]]:
85
78
  """Get Credit Summary
86
79
 
@@ -97,7 +90,6 @@ def sync_detailed(
97
90
  Args:
98
91
  graph_id (str): Graph database identifier
99
92
  authorization (Union[None, Unset, str]):
100
- auth_token (Union[None, Unset, str]):
101
93
 
102
94
  Raises:
103
95
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -110,7 +102,6 @@ def sync_detailed(
110
102
  kwargs = _get_kwargs(
111
103
  graph_id=graph_id,
112
104
  authorization=authorization,
113
- auth_token=auth_token,
114
105
  )
115
106
 
116
107
  response = client.get_httpx_client().request(
@@ -125,7 +116,6 @@ def sync(
125
116
  *,
126
117
  client: AuthenticatedClient,
127
118
  authorization: Union[None, Unset, str] = UNSET,
128
- auth_token: Union[None, Unset, str] = UNSET,
129
119
  ) -> Optional[Union[CreditSummaryResponse, ErrorResponse, HTTPValidationError]]:
130
120
  """Get Credit Summary
131
121
 
@@ -142,7 +132,6 @@ def sync(
142
132
  Args:
143
133
  graph_id (str): Graph database identifier
144
134
  authorization (Union[None, Unset, str]):
145
- auth_token (Union[None, Unset, str]):
146
135
 
147
136
  Raises:
148
137
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -156,7 +145,6 @@ def sync(
156
145
  graph_id=graph_id,
157
146
  client=client,
158
147
  authorization=authorization,
159
- auth_token=auth_token,
160
148
  ).parsed
161
149
 
162
150
 
@@ -165,7 +153,6 @@ async def asyncio_detailed(
165
153
  *,
166
154
  client: AuthenticatedClient,
167
155
  authorization: Union[None, Unset, str] = UNSET,
168
- auth_token: Union[None, Unset, str] = UNSET,
169
156
  ) -> Response[Union[CreditSummaryResponse, ErrorResponse, HTTPValidationError]]:
170
157
  """Get Credit Summary
171
158
 
@@ -182,7 +169,6 @@ async def asyncio_detailed(
182
169
  Args:
183
170
  graph_id (str): Graph database identifier
184
171
  authorization (Union[None, Unset, str]):
185
- auth_token (Union[None, Unset, str]):
186
172
 
187
173
  Raises:
188
174
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -195,7 +181,6 @@ async def asyncio_detailed(
195
181
  kwargs = _get_kwargs(
196
182
  graph_id=graph_id,
197
183
  authorization=authorization,
198
- auth_token=auth_token,
199
184
  )
200
185
 
201
186
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -208,7 +193,6 @@ async def asyncio(
208
193
  *,
209
194
  client: AuthenticatedClient,
210
195
  authorization: Union[None, Unset, str] = UNSET,
211
- auth_token: Union[None, Unset, str] = UNSET,
212
196
  ) -> Optional[Union[CreditSummaryResponse, ErrorResponse, HTTPValidationError]]:
213
197
  """Get Credit Summary
214
198
 
@@ -225,7 +209,6 @@ async def asyncio(
225
209
  Args:
226
210
  graph_id (str): Graph database identifier
227
211
  authorization (Union[None, Unset, str]):
228
- auth_token (Union[None, Unset, str]):
229
212
 
230
213
  Raises:
231
214
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -240,6 +223,5 @@ async def asyncio(
240
223
  graph_id=graph_id,
241
224
  client=client,
242
225
  authorization=authorization,
243
- auth_token=auth_token,
244
226
  )
245
227
  ).parsed
@@ -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