robosystems-client 0.2.5__py3-none-any.whl → 0.2.7__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.
- robosystems_client/api/agent/auto_select_agent.py +164 -32
- robosystems_client/api/backup/create_backup.py +72 -0
- robosystems_client/api/backup/get_backup_download_url.py +12 -28
- robosystems_client/api/backup/restore_backup.py +92 -0
- robosystems_client/api/graph_limits/get_graph_limits.py +12 -14
- robosystems_client/api/graphs/create_graph.py +136 -36
- robosystems_client/api/graphs/get_available_graph_tiers.py +281 -0
- robosystems_client/api/query/execute_cypher_query.py +13 -11
- robosystems_client/api/service_offerings/get_service_offerings.py +13 -11
- robosystems_client/models/__init__.py +66 -8
- robosystems_client/models/agent_response.py +1 -1
- robosystems_client/models/available_graph_tiers_response.py +74 -0
- robosystems_client/models/backup_download_url_response.py +92 -0
- robosystems_client/models/backup_limits.py +76 -0
- robosystems_client/models/batch_agent_request.py +1 -1
- robosystems_client/models/batch_agent_response.py +2 -2
- robosystems_client/models/copy_operation_limits.py +100 -0
- robosystems_client/models/create_graph_request.py +16 -17
- robosystems_client/models/credit_limits.py +84 -0
- robosystems_client/models/custom_schema_definition.py +14 -10
- robosystems_client/models/execute_cypher_query_response_200.py +135 -0
- robosystems_client/models/{get_graph_limits_response_getgraphlimits.py → execute_cypher_query_response_200_data_item.py} +5 -5
- robosystems_client/models/graph_limits_response.py +174 -0
- robosystems_client/models/graph_subscription_tier.py +220 -0
- robosystems_client/models/graph_subscriptions.py +100 -0
- robosystems_client/models/graph_tier_backup.py +76 -0
- robosystems_client/models/graph_tier_copy_operations.py +92 -0
- robosystems_client/models/graph_tier_info.py +192 -0
- robosystems_client/models/graph_tier_instance.py +76 -0
- robosystems_client/models/graph_tier_limits.py +106 -0
- robosystems_client/models/initial_entity_data.py +15 -12
- robosystems_client/models/offering_repository_plan.py +148 -0
- robosystems_client/models/offering_repository_plan_rate_limits_type_0.py +61 -0
- robosystems_client/models/operation_costs.py +100 -0
- robosystems_client/models/operation_costs_ai_operations.py +44 -0
- robosystems_client/models/operation_costs_token_pricing.py +59 -0
- robosystems_client/models/query_limits.py +84 -0
- robosystems_client/models/rate_limits.py +76 -0
- robosystems_client/models/repository_info.py +114 -0
- robosystems_client/models/repository_subscriptions.py +90 -0
- robosystems_client/models/service_offering_summary.py +84 -0
- robosystems_client/models/service_offerings_response.py +98 -0
- robosystems_client/models/storage_info.py +76 -0
- robosystems_client/models/{get_backup_download_url_response_getbackupdownloadurl.py → storage_info_included_per_tier.py} +9 -9
- robosystems_client/models/storage_info_overage_pricing.py +44 -0
- robosystems_client/models/storage_limits.py +90 -0
- robosystems_client/models/token_pricing.py +68 -0
- {robosystems_client-0.2.5.dist-info → robosystems_client-0.2.7.dist-info}/METADATA +1 -1
- {robosystems_client-0.2.5.dist-info → robosystems_client-0.2.7.dist-info}/RECORD +51 -21
- {robosystems_client-0.2.5.dist-info → robosystems_client-0.2.7.dist-info}/WHEEL +0 -0
- {robosystems_client-0.2.5.dist-info → robosystems_client-0.2.7.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,6 +6,7 @@ import httpx
|
|
|
6
6
|
from ... import errors
|
|
7
7
|
from ...client import AuthenticatedClient, Client
|
|
8
8
|
from ...models.cypher_query_request import CypherQueryRequest
|
|
9
|
+
from ...models.execute_cypher_query_response_200 import ExecuteCypherQueryResponse200
|
|
9
10
|
from ...models.http_validation_error import HTTPValidationError
|
|
10
11
|
from ...models.response_mode import ResponseMode
|
|
11
12
|
from ...types import UNSET, Response, Unset
|
|
@@ -59,7 +60,7 @@ def _get_kwargs(
|
|
|
59
60
|
|
|
60
61
|
def _parse_response(
|
|
61
62
|
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
62
|
-
) -> Optional[Union[Any, HTTPValidationError]]:
|
|
63
|
+
) -> Optional[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
|
|
63
64
|
if response.status_code == 200:
|
|
64
65
|
content_type = response.headers.get("content-type", "")
|
|
65
66
|
if (
|
|
@@ -67,7 +68,8 @@ def _parse_response(
|
|
|
67
68
|
or response.headers.get("x-stream-format") == "ndjson"
|
|
68
69
|
):
|
|
69
70
|
return None
|
|
70
|
-
response_200 = response.json()
|
|
71
|
+
response_200 = ExecuteCypherQueryResponse200.from_dict(response.json())
|
|
72
|
+
|
|
71
73
|
return response_200
|
|
72
74
|
|
|
73
75
|
if response.status_code == 202:
|
|
@@ -111,7 +113,7 @@ def _parse_response(
|
|
|
111
113
|
|
|
112
114
|
def _build_response(
|
|
113
115
|
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
114
|
-
) -> Response[Union[Any, HTTPValidationError]]:
|
|
116
|
+
) -> Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
|
|
115
117
|
return Response(
|
|
116
118
|
status_code=HTTPStatus(response.status_code),
|
|
117
119
|
content=response.content,
|
|
@@ -128,7 +130,7 @@ def sync_detailed(
|
|
|
128
130
|
mode: Union[None, ResponseMode, Unset] = UNSET,
|
|
129
131
|
chunk_size: Union[None, Unset, int] = UNSET,
|
|
130
132
|
test_mode: Union[Unset, bool] = False,
|
|
131
|
-
) -> Response[Union[Any, HTTPValidationError]]:
|
|
133
|
+
) -> Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
|
|
132
134
|
r"""Execute Cypher Query (Read-Only)
|
|
133
135
|
|
|
134
136
|
Execute a read-only Cypher query with intelligent response optimization.
|
|
@@ -207,7 +209,7 @@ def sync_detailed(
|
|
|
207
209
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
208
210
|
|
|
209
211
|
Returns:
|
|
210
|
-
Response[Union[Any, HTTPValidationError]]
|
|
212
|
+
Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]
|
|
211
213
|
"""
|
|
212
214
|
|
|
213
215
|
kwargs = _get_kwargs(
|
|
@@ -233,7 +235,7 @@ def sync(
|
|
|
233
235
|
mode: Union[None, ResponseMode, Unset] = UNSET,
|
|
234
236
|
chunk_size: Union[None, Unset, int] = UNSET,
|
|
235
237
|
test_mode: Union[Unset, bool] = False,
|
|
236
|
-
) -> Optional[Union[Any, HTTPValidationError]]:
|
|
238
|
+
) -> Optional[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
|
|
237
239
|
r"""Execute Cypher Query (Read-Only)
|
|
238
240
|
|
|
239
241
|
Execute a read-only Cypher query with intelligent response optimization.
|
|
@@ -312,7 +314,7 @@ def sync(
|
|
|
312
314
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
313
315
|
|
|
314
316
|
Returns:
|
|
315
|
-
Union[Any, HTTPValidationError]
|
|
317
|
+
Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]
|
|
316
318
|
"""
|
|
317
319
|
|
|
318
320
|
return sync_detailed(
|
|
@@ -333,7 +335,7 @@ async def asyncio_detailed(
|
|
|
333
335
|
mode: Union[None, ResponseMode, Unset] = UNSET,
|
|
334
336
|
chunk_size: Union[None, Unset, int] = UNSET,
|
|
335
337
|
test_mode: Union[Unset, bool] = False,
|
|
336
|
-
) -> Response[Union[Any, HTTPValidationError]]:
|
|
338
|
+
) -> Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
|
|
337
339
|
r"""Execute Cypher Query (Read-Only)
|
|
338
340
|
|
|
339
341
|
Execute a read-only Cypher query with intelligent response optimization.
|
|
@@ -412,7 +414,7 @@ async def asyncio_detailed(
|
|
|
412
414
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
413
415
|
|
|
414
416
|
Returns:
|
|
415
|
-
Response[Union[Any, HTTPValidationError]]
|
|
417
|
+
Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]
|
|
416
418
|
"""
|
|
417
419
|
|
|
418
420
|
kwargs = _get_kwargs(
|
|
@@ -436,7 +438,7 @@ async def asyncio(
|
|
|
436
438
|
mode: Union[None, ResponseMode, Unset] = UNSET,
|
|
437
439
|
chunk_size: Union[None, Unset, int] = UNSET,
|
|
438
440
|
test_mode: Union[Unset, bool] = False,
|
|
439
|
-
) -> Optional[Union[Any, HTTPValidationError]]:
|
|
441
|
+
) -> Optional[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
|
|
440
442
|
r"""Execute Cypher Query (Read-Only)
|
|
441
443
|
|
|
442
444
|
Execute a read-only Cypher query with intelligent response optimization.
|
|
@@ -515,7 +517,7 @@ async def asyncio(
|
|
|
515
517
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
516
518
|
|
|
517
519
|
Returns:
|
|
518
|
-
Union[Any, HTTPValidationError]
|
|
520
|
+
Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]
|
|
519
521
|
"""
|
|
520
522
|
|
|
521
523
|
return (
|
|
@@ -6,6 +6,7 @@ import httpx
|
|
|
6
6
|
from ... import errors
|
|
7
7
|
from ...client import AuthenticatedClient, Client
|
|
8
8
|
from ...models.error_response import ErrorResponse
|
|
9
|
+
from ...models.service_offerings_response import ServiceOfferingsResponse
|
|
9
10
|
from ...types import Response
|
|
10
11
|
|
|
11
12
|
|
|
@@ -20,9 +21,10 @@ def _get_kwargs() -> dict[str, Any]:
|
|
|
20
21
|
|
|
21
22
|
def _parse_response(
|
|
22
23
|
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
23
|
-
) -> Optional[Union[
|
|
24
|
+
) -> Optional[Union[ErrorResponse, ServiceOfferingsResponse]]:
|
|
24
25
|
if response.status_code == 200:
|
|
25
|
-
response_200 = response.json()
|
|
26
|
+
response_200 = ServiceOfferingsResponse.from_dict(response.json())
|
|
27
|
+
|
|
26
28
|
return response_200
|
|
27
29
|
|
|
28
30
|
if response.status_code == 500:
|
|
@@ -38,7 +40,7 @@ def _parse_response(
|
|
|
38
40
|
|
|
39
41
|
def _build_response(
|
|
40
42
|
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
41
|
-
) -> Response[Union[
|
|
43
|
+
) -> Response[Union[ErrorResponse, ServiceOfferingsResponse]]:
|
|
42
44
|
return Response(
|
|
43
45
|
status_code=HTTPStatus(response.status_code),
|
|
44
46
|
content=response.content,
|
|
@@ -50,7 +52,7 @@ def _build_response(
|
|
|
50
52
|
def sync_detailed(
|
|
51
53
|
*,
|
|
52
54
|
client: Union[AuthenticatedClient, Client],
|
|
53
|
-
) -> Response[Union[
|
|
55
|
+
) -> Response[Union[ErrorResponse, ServiceOfferingsResponse]]:
|
|
54
56
|
"""Get Service Offerings
|
|
55
57
|
|
|
56
58
|
Get comprehensive information about all subscription offerings.
|
|
@@ -75,7 +77,7 @@ def sync_detailed(
|
|
|
75
77
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
76
78
|
|
|
77
79
|
Returns:
|
|
78
|
-
Response[Union[
|
|
80
|
+
Response[Union[ErrorResponse, ServiceOfferingsResponse]]
|
|
79
81
|
"""
|
|
80
82
|
|
|
81
83
|
kwargs = _get_kwargs()
|
|
@@ -90,7 +92,7 @@ def sync_detailed(
|
|
|
90
92
|
def sync(
|
|
91
93
|
*,
|
|
92
94
|
client: Union[AuthenticatedClient, Client],
|
|
93
|
-
) -> Optional[Union[
|
|
95
|
+
) -> Optional[Union[ErrorResponse, ServiceOfferingsResponse]]:
|
|
94
96
|
"""Get Service Offerings
|
|
95
97
|
|
|
96
98
|
Get comprehensive information about all subscription offerings.
|
|
@@ -115,7 +117,7 @@ def sync(
|
|
|
115
117
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
116
118
|
|
|
117
119
|
Returns:
|
|
118
|
-
Union[
|
|
120
|
+
Union[ErrorResponse, ServiceOfferingsResponse]
|
|
119
121
|
"""
|
|
120
122
|
|
|
121
123
|
return sync_detailed(
|
|
@@ -126,7 +128,7 @@ def sync(
|
|
|
126
128
|
async def asyncio_detailed(
|
|
127
129
|
*,
|
|
128
130
|
client: Union[AuthenticatedClient, Client],
|
|
129
|
-
) -> Response[Union[
|
|
131
|
+
) -> Response[Union[ErrorResponse, ServiceOfferingsResponse]]:
|
|
130
132
|
"""Get Service Offerings
|
|
131
133
|
|
|
132
134
|
Get comprehensive information about all subscription offerings.
|
|
@@ -151,7 +153,7 @@ async def asyncio_detailed(
|
|
|
151
153
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
152
154
|
|
|
153
155
|
Returns:
|
|
154
|
-
Response[Union[
|
|
156
|
+
Response[Union[ErrorResponse, ServiceOfferingsResponse]]
|
|
155
157
|
"""
|
|
156
158
|
|
|
157
159
|
kwargs = _get_kwargs()
|
|
@@ -164,7 +166,7 @@ async def asyncio_detailed(
|
|
|
164
166
|
async def asyncio(
|
|
165
167
|
*,
|
|
166
168
|
client: Union[AuthenticatedClient, Client],
|
|
167
|
-
) -> Optional[Union[
|
|
169
|
+
) -> Optional[Union[ErrorResponse, ServiceOfferingsResponse]]:
|
|
168
170
|
"""Get Service Offerings
|
|
169
171
|
|
|
170
172
|
Get comprehensive information about all subscription offerings.
|
|
@@ -189,7 +191,7 @@ async def asyncio(
|
|
|
189
191
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
190
192
|
|
|
191
193
|
Returns:
|
|
192
|
-
Union[
|
|
194
|
+
Union[ErrorResponse, ServiceOfferingsResponse]
|
|
193
195
|
"""
|
|
194
196
|
|
|
195
197
|
return (
|
|
@@ -28,7 +28,10 @@ from .auth_response import AuthResponse
|
|
|
28
28
|
from .auth_response_user import AuthResponseUser
|
|
29
29
|
from .available_extension import AvailableExtension
|
|
30
30
|
from .available_extensions_response import AvailableExtensionsResponse
|
|
31
|
+
from .available_graph_tiers_response import AvailableGraphTiersResponse
|
|
31
32
|
from .backup_create_request import BackupCreateRequest
|
|
33
|
+
from .backup_download_url_response import BackupDownloadUrlResponse
|
|
34
|
+
from .backup_limits import BackupLimits
|
|
32
35
|
from .backup_list_response import BackupListResponse
|
|
33
36
|
from .backup_response import BackupResponse
|
|
34
37
|
from .backup_restore_request import BackupRestoreRequest
|
|
@@ -52,6 +55,7 @@ from .connection_provider_info_provider import ConnectionProviderInfoProvider
|
|
|
52
55
|
from .connection_response import ConnectionResponse
|
|
53
56
|
from .connection_response_metadata import ConnectionResponseMetadata
|
|
54
57
|
from .connection_response_provider import ConnectionResponseProvider
|
|
58
|
+
from .copy_operation_limits import CopyOperationLimits
|
|
55
59
|
from .create_api_key_request import CreateAPIKeyRequest
|
|
56
60
|
from .create_api_key_response import CreateAPIKeyResponse
|
|
57
61
|
from .create_connection_request import CreateConnectionRequest
|
|
@@ -59,6 +63,7 @@ from .create_connection_request_provider import CreateConnectionRequestProvider
|
|
|
59
63
|
from .create_graph_request import CreateGraphRequest
|
|
60
64
|
from .create_subgraph_request import CreateSubgraphRequest
|
|
61
65
|
from .create_subgraph_request_metadata_type_0 import CreateSubgraphRequestMetadataType0
|
|
66
|
+
from .credit_limits import CreditLimits
|
|
62
67
|
from .credit_summary import CreditSummary
|
|
63
68
|
from .credit_summary_response import CreditSummaryResponse
|
|
64
69
|
from .credits_summary_response import CreditsSummaryResponse
|
|
@@ -91,6 +96,10 @@ from .enhanced_credit_transaction_response_metadata import (
|
|
|
91
96
|
from .error_response import ErrorResponse
|
|
92
97
|
from .exchange_token_request import ExchangeTokenRequest
|
|
93
98
|
from .exchange_token_request_metadata_type_0 import ExchangeTokenRequestMetadataType0
|
|
99
|
+
from .execute_cypher_query_response_200 import ExecuteCypherQueryResponse200
|
|
100
|
+
from .execute_cypher_query_response_200_data_item import (
|
|
101
|
+
ExecuteCypherQueryResponse200DataItem,
|
|
102
|
+
)
|
|
94
103
|
from .file_info import FileInfo
|
|
95
104
|
from .file_status_update import FileStatusUpdate
|
|
96
105
|
from .file_upload_request import FileUploadRequest
|
|
@@ -105,9 +114,6 @@ from .get_all_credit_summaries_response_getallcreditsummaries import (
|
|
|
105
114
|
from .get_all_shared_repository_limits_response_getallsharedrepositorylimits import (
|
|
106
115
|
GetAllSharedRepositoryLimitsResponseGetallsharedrepositorylimits,
|
|
107
116
|
)
|
|
108
|
-
from .get_backup_download_url_response_getbackupdownloadurl import (
|
|
109
|
-
GetBackupDownloadUrlResponseGetbackupdownloadurl,
|
|
110
|
-
)
|
|
111
117
|
from .get_current_auth_user_response_getcurrentauthuser import (
|
|
112
118
|
GetCurrentAuthUserResponseGetcurrentauthuser,
|
|
113
119
|
)
|
|
@@ -118,9 +124,6 @@ from .get_file_info_response import GetFileInfoResponse
|
|
|
118
124
|
from .get_graph_billing_history_response_getgraphbillinghistory import (
|
|
119
125
|
GetGraphBillingHistoryResponseGetgraphbillinghistory,
|
|
120
126
|
)
|
|
121
|
-
from .get_graph_limits_response_getgraphlimits import (
|
|
122
|
-
GetGraphLimitsResponseGetgraphlimits,
|
|
123
|
-
)
|
|
124
127
|
from .get_graph_monthly_bill_response_getgraphmonthlybill import (
|
|
125
128
|
GetGraphMonthlyBillResponseGetgraphmonthlybill,
|
|
126
129
|
)
|
|
@@ -137,6 +140,7 @@ from .get_storage_usage_response_getstorageusage import (
|
|
|
137
140
|
GetStorageUsageResponseGetstorageusage,
|
|
138
141
|
)
|
|
139
142
|
from .graph_info import GraphInfo
|
|
143
|
+
from .graph_limits_response import GraphLimitsResponse
|
|
140
144
|
from .graph_metadata import GraphMetadata
|
|
141
145
|
from .graph_metrics_response import GraphMetricsResponse
|
|
142
146
|
from .graph_metrics_response_estimated_size import GraphMetricsResponseEstimatedSize
|
|
@@ -145,6 +149,13 @@ from .graph_metrics_response_node_counts import GraphMetricsResponseNodeCounts
|
|
|
145
149
|
from .graph_metrics_response_relationship_counts import (
|
|
146
150
|
GraphMetricsResponseRelationshipCounts,
|
|
147
151
|
)
|
|
152
|
+
from .graph_subscription_tier import GraphSubscriptionTier
|
|
153
|
+
from .graph_subscriptions import GraphSubscriptions
|
|
154
|
+
from .graph_tier_backup import GraphTierBackup
|
|
155
|
+
from .graph_tier_copy_operations import GraphTierCopyOperations
|
|
156
|
+
from .graph_tier_info import GraphTierInfo
|
|
157
|
+
from .graph_tier_instance import GraphTierInstance
|
|
158
|
+
from .graph_tier_limits import GraphTierLimits
|
|
148
159
|
from .graph_usage_response import GraphUsageResponse
|
|
149
160
|
from .graph_usage_response_query_statistics import GraphUsageResponseQueryStatistics
|
|
150
161
|
from .graph_usage_response_recent_activity import GraphUsageResponseRecentActivity
|
|
@@ -171,6 +182,13 @@ from .o_auth_init_request_additional_params_type_0 import (
|
|
|
171
182
|
OAuthInitRequestAdditionalParamsType0,
|
|
172
183
|
)
|
|
173
184
|
from .o_auth_init_response import OAuthInitResponse
|
|
185
|
+
from .offering_repository_plan import OfferingRepositoryPlan
|
|
186
|
+
from .offering_repository_plan_rate_limits_type_0 import (
|
|
187
|
+
OfferingRepositoryPlanRateLimitsType0,
|
|
188
|
+
)
|
|
189
|
+
from .operation_costs import OperationCosts
|
|
190
|
+
from .operation_costs_ai_operations import OperationCostsAiOperations
|
|
191
|
+
from .operation_costs_token_pricing import OperationCostsTokenPricing
|
|
174
192
|
from .password_check_request import PasswordCheckRequest
|
|
175
193
|
from .password_check_response import PasswordCheckResponse
|
|
176
194
|
from .password_check_response_character_types import PasswordCheckResponseCharacterTypes
|
|
@@ -183,10 +201,14 @@ from .plaid_connection_config_accounts_type_0_item import (
|
|
|
183
201
|
from .plaid_connection_config_institution_type_0 import (
|
|
184
202
|
PlaidConnectionConfigInstitutionType0,
|
|
185
203
|
)
|
|
204
|
+
from .query_limits import QueryLimits
|
|
186
205
|
from .quick_books_connection_config import QuickBooksConnectionConfig
|
|
206
|
+
from .rate_limits import RateLimits
|
|
187
207
|
from .register_request import RegisterRequest
|
|
188
208
|
from .repository_credits_response import RepositoryCreditsResponse
|
|
209
|
+
from .repository_info import RepositoryInfo
|
|
189
210
|
from .repository_plan import RepositoryPlan
|
|
211
|
+
from .repository_subscriptions import RepositorySubscriptions
|
|
190
212
|
from .repository_type import RepositoryType
|
|
191
213
|
from .resend_verification_email_response_resendverificationemail import (
|
|
192
214
|
ResendVerificationEmailResponseResendverificationemail,
|
|
@@ -212,11 +234,17 @@ from .schema_validation_response_compatibility_type_0 import (
|
|
|
212
234
|
from .schema_validation_response_stats_type_0 import SchemaValidationResponseStatsType0
|
|
213
235
|
from .sec_connection_config import SECConnectionConfig
|
|
214
236
|
from .selection_criteria import SelectionCriteria
|
|
237
|
+
from .service_offering_summary import ServiceOfferingSummary
|
|
238
|
+
from .service_offerings_response import ServiceOfferingsResponse
|
|
215
239
|
from .sso_complete_request import SSOCompleteRequest
|
|
216
240
|
from .sso_exchange_request import SSOExchangeRequest
|
|
217
241
|
from .sso_exchange_response import SSOExchangeResponse
|
|
218
242
|
from .sso_token_response import SSOTokenResponse
|
|
243
|
+
from .storage_info import StorageInfo
|
|
244
|
+
from .storage_info_included_per_tier import StorageInfoIncludedPerTier
|
|
245
|
+
from .storage_info_overage_pricing import StorageInfoOveragePricing
|
|
219
246
|
from .storage_limit_response import StorageLimitResponse
|
|
247
|
+
from .storage_limits import StorageLimits
|
|
220
248
|
from .subgraph_quota_response import SubgraphQuotaResponse
|
|
221
249
|
from .subgraph_response import SubgraphResponse
|
|
222
250
|
from .subgraph_response_metadata_type_0 import SubgraphResponseMetadataType0
|
|
@@ -241,6 +269,7 @@ from .table_list_response import TableListResponse
|
|
|
241
269
|
from .table_query_request import TableQueryRequest
|
|
242
270
|
from .table_query_response import TableQueryResponse
|
|
243
271
|
from .tier_upgrade_request import TierUpgradeRequest
|
|
272
|
+
from .token_pricing import TokenPricing
|
|
244
273
|
from .transaction_summary_response import TransactionSummaryResponse
|
|
245
274
|
from .update_api_key_request import UpdateAPIKeyRequest
|
|
246
275
|
from .update_file_status_response_updatefilestatus import (
|
|
@@ -294,7 +323,10 @@ __all__ = (
|
|
|
294
323
|
"AuthResponseUser",
|
|
295
324
|
"AvailableExtension",
|
|
296
325
|
"AvailableExtensionsResponse",
|
|
326
|
+
"AvailableGraphTiersResponse",
|
|
297
327
|
"BackupCreateRequest",
|
|
328
|
+
"BackupDownloadUrlResponse",
|
|
329
|
+
"BackupLimits",
|
|
298
330
|
"BackupListResponse",
|
|
299
331
|
"BackupResponse",
|
|
300
332
|
"BackupRestoreRequest",
|
|
@@ -314,6 +346,7 @@ __all__ = (
|
|
|
314
346
|
"ConnectionResponse",
|
|
315
347
|
"ConnectionResponseMetadata",
|
|
316
348
|
"ConnectionResponseProvider",
|
|
349
|
+
"CopyOperationLimits",
|
|
317
350
|
"CreateAPIKeyRequest",
|
|
318
351
|
"CreateAPIKeyResponse",
|
|
319
352
|
"CreateConnectionRequest",
|
|
@@ -321,6 +354,7 @@ __all__ = (
|
|
|
321
354
|
"CreateGraphRequest",
|
|
322
355
|
"CreateSubgraphRequest",
|
|
323
356
|
"CreateSubgraphRequestMetadataType0",
|
|
357
|
+
"CreditLimits",
|
|
324
358
|
"CreditsSummaryResponse",
|
|
325
359
|
"CreditsSummaryResponseCreditsByAddonType0Item",
|
|
326
360
|
"CreditSummary",
|
|
@@ -345,6 +379,8 @@ __all__ = (
|
|
|
345
379
|
"ErrorResponse",
|
|
346
380
|
"ExchangeTokenRequest",
|
|
347
381
|
"ExchangeTokenRequestMetadataType0",
|
|
382
|
+
"ExecuteCypherQueryResponse200",
|
|
383
|
+
"ExecuteCypherQueryResponse200DataItem",
|
|
348
384
|
"FileInfo",
|
|
349
385
|
"FileStatusUpdate",
|
|
350
386
|
"FileUploadRequest",
|
|
@@ -353,24 +389,30 @@ __all__ = (
|
|
|
353
389
|
"ForgotPasswordResponseForgotpassword",
|
|
354
390
|
"GetAllCreditSummariesResponseGetallcreditsummaries",
|
|
355
391
|
"GetAllSharedRepositoryLimitsResponseGetallsharedrepositorylimits",
|
|
356
|
-
"GetBackupDownloadUrlResponseGetbackupdownloadurl",
|
|
357
392
|
"GetCurrentAuthUserResponseGetcurrentauthuser",
|
|
358
393
|
"GetCurrentGraphBillResponseGetcurrentgraphbill",
|
|
359
394
|
"GetFileInfoResponse",
|
|
360
395
|
"GetGraphBillingHistoryResponseGetgraphbillinghistory",
|
|
361
|
-
"GetGraphLimitsResponseGetgraphlimits",
|
|
362
396
|
"GetGraphMonthlyBillResponseGetgraphmonthlybill",
|
|
363
397
|
"GetGraphUsageDetailsResponseGetgraphusagedetails",
|
|
364
398
|
"GetOperationStatusResponseGetoperationstatus",
|
|
365
399
|
"GetSharedRepositoryLimitsResponseGetsharedrepositorylimits",
|
|
366
400
|
"GetStorageUsageResponseGetstorageusage",
|
|
367
401
|
"GraphInfo",
|
|
402
|
+
"GraphLimitsResponse",
|
|
368
403
|
"GraphMetadata",
|
|
369
404
|
"GraphMetricsResponse",
|
|
370
405
|
"GraphMetricsResponseEstimatedSize",
|
|
371
406
|
"GraphMetricsResponseHealthStatus",
|
|
372
407
|
"GraphMetricsResponseNodeCounts",
|
|
373
408
|
"GraphMetricsResponseRelationshipCounts",
|
|
409
|
+
"GraphSubscriptions",
|
|
410
|
+
"GraphSubscriptionTier",
|
|
411
|
+
"GraphTierBackup",
|
|
412
|
+
"GraphTierCopyOperations",
|
|
413
|
+
"GraphTierInfo",
|
|
414
|
+
"GraphTierInstance",
|
|
415
|
+
"GraphTierLimits",
|
|
374
416
|
"GraphUsageResponse",
|
|
375
417
|
"GraphUsageResponseQueryStatistics",
|
|
376
418
|
"GraphUsageResponseRecentActivity",
|
|
@@ -395,6 +437,11 @@ __all__ = (
|
|
|
395
437
|
"OAuthInitRequest",
|
|
396
438
|
"OAuthInitRequestAdditionalParamsType0",
|
|
397
439
|
"OAuthInitResponse",
|
|
440
|
+
"OfferingRepositoryPlan",
|
|
441
|
+
"OfferingRepositoryPlanRateLimitsType0",
|
|
442
|
+
"OperationCosts",
|
|
443
|
+
"OperationCostsAiOperations",
|
|
444
|
+
"OperationCostsTokenPricing",
|
|
398
445
|
"PasswordCheckRequest",
|
|
399
446
|
"PasswordCheckResponse",
|
|
400
447
|
"PasswordCheckResponseCharacterTypes",
|
|
@@ -403,10 +450,14 @@ __all__ = (
|
|
|
403
450
|
"PlaidConnectionConfig",
|
|
404
451
|
"PlaidConnectionConfigAccountsType0Item",
|
|
405
452
|
"PlaidConnectionConfigInstitutionType0",
|
|
453
|
+
"QueryLimits",
|
|
406
454
|
"QuickBooksConnectionConfig",
|
|
455
|
+
"RateLimits",
|
|
407
456
|
"RegisterRequest",
|
|
408
457
|
"RepositoryCreditsResponse",
|
|
458
|
+
"RepositoryInfo",
|
|
409
459
|
"RepositoryPlan",
|
|
460
|
+
"RepositorySubscriptions",
|
|
410
461
|
"RepositoryType",
|
|
411
462
|
"ResendVerificationEmailResponseResendverificationemail",
|
|
412
463
|
"ResetPasswordRequest",
|
|
@@ -424,11 +475,17 @@ __all__ = (
|
|
|
424
475
|
"SchemaValidationResponseStatsType0",
|
|
425
476
|
"SECConnectionConfig",
|
|
426
477
|
"SelectionCriteria",
|
|
478
|
+
"ServiceOfferingsResponse",
|
|
479
|
+
"ServiceOfferingSummary",
|
|
427
480
|
"SSOCompleteRequest",
|
|
428
481
|
"SSOExchangeRequest",
|
|
429
482
|
"SSOExchangeResponse",
|
|
430
483
|
"SSOTokenResponse",
|
|
484
|
+
"StorageInfo",
|
|
485
|
+
"StorageInfoIncludedPerTier",
|
|
486
|
+
"StorageInfoOveragePricing",
|
|
431
487
|
"StorageLimitResponse",
|
|
488
|
+
"StorageLimits",
|
|
432
489
|
"SubgraphQuotaResponse",
|
|
433
490
|
"SubgraphResponse",
|
|
434
491
|
"SubgraphResponseMetadataType0",
|
|
@@ -449,6 +506,7 @@ __all__ = (
|
|
|
449
506
|
"TableQueryRequest",
|
|
450
507
|
"TableQueryResponse",
|
|
451
508
|
"TierUpgradeRequest",
|
|
509
|
+
"TokenPricing",
|
|
452
510
|
"TransactionSummaryResponse",
|
|
453
511
|
"UpdateAPIKeyRequest",
|
|
454
512
|
"UpdateFileStatusResponseUpdatefilestatus",
|
|
@@ -30,7 +30,7 @@ class AgentResponse:
|
|
|
30
30
|
mode_used (AgentMode): Agent execution modes.
|
|
31
31
|
metadata (Union['AgentResponseMetadataType0', None, Unset]): Response metadata including routing info
|
|
32
32
|
tokens_used (Union['AgentResponseTokensUsedType0', None, Unset]): Token usage statistics
|
|
33
|
-
confidence_score (Union[None, Unset, float]): Confidence score of the response
|
|
33
|
+
confidence_score (Union[None, Unset, float]): Confidence score of the response (0.0-1.0 scale)
|
|
34
34
|
operation_id (Union[None, Unset, str]): Operation ID for SSE monitoring
|
|
35
35
|
is_partial (Union[Unset, bool]): Whether this is a partial response Default: False.
|
|
36
36
|
error_details (Union['AgentResponseErrorDetailsType0', None, Unset]): Error details if any
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import TYPE_CHECKING, Any, TypeVar
|
|
3
|
+
|
|
4
|
+
from attrs import define as _attrs_define
|
|
5
|
+
from attrs import field as _attrs_field
|
|
6
|
+
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
from ..models.graph_tier_info import GraphTierInfo
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
T = TypeVar("T", bound="AvailableGraphTiersResponse")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@_attrs_define
|
|
15
|
+
class AvailableGraphTiersResponse:
|
|
16
|
+
"""Response containing available graph tiers.
|
|
17
|
+
|
|
18
|
+
Attributes:
|
|
19
|
+
tiers (list['GraphTierInfo']): List of available tiers
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
tiers: list["GraphTierInfo"]
|
|
23
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
24
|
+
|
|
25
|
+
def to_dict(self) -> dict[str, Any]:
|
|
26
|
+
tiers = []
|
|
27
|
+
for tiers_item_data in self.tiers:
|
|
28
|
+
tiers_item = tiers_item_data.to_dict()
|
|
29
|
+
tiers.append(tiers_item)
|
|
30
|
+
|
|
31
|
+
field_dict: dict[str, Any] = {}
|
|
32
|
+
field_dict.update(self.additional_properties)
|
|
33
|
+
field_dict.update(
|
|
34
|
+
{
|
|
35
|
+
"tiers": tiers,
|
|
36
|
+
}
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
return field_dict
|
|
40
|
+
|
|
41
|
+
@classmethod
|
|
42
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
43
|
+
from ..models.graph_tier_info import GraphTierInfo
|
|
44
|
+
|
|
45
|
+
d = dict(src_dict)
|
|
46
|
+
tiers = []
|
|
47
|
+
_tiers = d.pop("tiers")
|
|
48
|
+
for tiers_item_data in _tiers:
|
|
49
|
+
tiers_item = GraphTierInfo.from_dict(tiers_item_data)
|
|
50
|
+
|
|
51
|
+
tiers.append(tiers_item)
|
|
52
|
+
|
|
53
|
+
available_graph_tiers_response = cls(
|
|
54
|
+
tiers=tiers,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
available_graph_tiers_response.additional_properties = d
|
|
58
|
+
return available_graph_tiers_response
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def additional_keys(self) -> list[str]:
|
|
62
|
+
return list(self.additional_properties.keys())
|
|
63
|
+
|
|
64
|
+
def __getitem__(self, key: str) -> Any:
|
|
65
|
+
return self.additional_properties[key]
|
|
66
|
+
|
|
67
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
68
|
+
self.additional_properties[key] = value
|
|
69
|
+
|
|
70
|
+
def __delitem__(self, key: str) -> None:
|
|
71
|
+
del self.additional_properties[key]
|
|
72
|
+
|
|
73
|
+
def __contains__(self, key: str) -> bool:
|
|
74
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import Any, TypeVar
|
|
3
|
+
|
|
4
|
+
from attrs import define as _attrs_define
|
|
5
|
+
from attrs import field as _attrs_field
|
|
6
|
+
|
|
7
|
+
T = TypeVar("T", bound="BackupDownloadUrlResponse")
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
@_attrs_define
|
|
11
|
+
class BackupDownloadUrlResponse:
|
|
12
|
+
"""Response model for backup download URL generation.
|
|
13
|
+
|
|
14
|
+
Attributes:
|
|
15
|
+
download_url (str): Pre-signed S3 URL for downloading the backup file
|
|
16
|
+
expires_in (int): URL expiration time in seconds from now
|
|
17
|
+
expires_at (float): Unix timestamp when the URL expires
|
|
18
|
+
backup_id (str): Backup identifier
|
|
19
|
+
graph_id (str): Graph database identifier
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
download_url: str
|
|
23
|
+
expires_in: int
|
|
24
|
+
expires_at: float
|
|
25
|
+
backup_id: str
|
|
26
|
+
graph_id: str
|
|
27
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
28
|
+
|
|
29
|
+
def to_dict(self) -> dict[str, Any]:
|
|
30
|
+
download_url = self.download_url
|
|
31
|
+
|
|
32
|
+
expires_in = self.expires_in
|
|
33
|
+
|
|
34
|
+
expires_at = self.expires_at
|
|
35
|
+
|
|
36
|
+
backup_id = self.backup_id
|
|
37
|
+
|
|
38
|
+
graph_id = self.graph_id
|
|
39
|
+
|
|
40
|
+
field_dict: dict[str, Any] = {}
|
|
41
|
+
field_dict.update(self.additional_properties)
|
|
42
|
+
field_dict.update(
|
|
43
|
+
{
|
|
44
|
+
"download_url": download_url,
|
|
45
|
+
"expires_in": expires_in,
|
|
46
|
+
"expires_at": expires_at,
|
|
47
|
+
"backup_id": backup_id,
|
|
48
|
+
"graph_id": graph_id,
|
|
49
|
+
}
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
return field_dict
|
|
53
|
+
|
|
54
|
+
@classmethod
|
|
55
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
56
|
+
d = dict(src_dict)
|
|
57
|
+
download_url = d.pop("download_url")
|
|
58
|
+
|
|
59
|
+
expires_in = d.pop("expires_in")
|
|
60
|
+
|
|
61
|
+
expires_at = d.pop("expires_at")
|
|
62
|
+
|
|
63
|
+
backup_id = d.pop("backup_id")
|
|
64
|
+
|
|
65
|
+
graph_id = d.pop("graph_id")
|
|
66
|
+
|
|
67
|
+
backup_download_url_response = cls(
|
|
68
|
+
download_url=download_url,
|
|
69
|
+
expires_in=expires_in,
|
|
70
|
+
expires_at=expires_at,
|
|
71
|
+
backup_id=backup_id,
|
|
72
|
+
graph_id=graph_id,
|
|
73
|
+
)
|
|
74
|
+
|
|
75
|
+
backup_download_url_response.additional_properties = d
|
|
76
|
+
return backup_download_url_response
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
def additional_keys(self) -> list[str]:
|
|
80
|
+
return list(self.additional_properties.keys())
|
|
81
|
+
|
|
82
|
+
def __getitem__(self, key: str) -> Any:
|
|
83
|
+
return self.additional_properties[key]
|
|
84
|
+
|
|
85
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
86
|
+
self.additional_properties[key] = value
|
|
87
|
+
|
|
88
|
+
def __delitem__(self, key: str) -> None:
|
|
89
|
+
del self.additional_properties[key]
|
|
90
|
+
|
|
91
|
+
def __contains__(self, key: str) -> bool:
|
|
92
|
+
return key in self.additional_properties
|