robosystems-client 0.2.13__py3-none-any.whl → 0.2.15__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 +28 -0
- robosystems_client/api/billing/{update_org_payment_method.py → create_portal_session.py} +57 -47
- robosystems_client/api/graph_health/get_database_health.py +28 -0
- robosystems_client/api/graph_info/get_database_info.py +28 -0
- robosystems_client/api/graph_limits/get_graph_limits.py +4 -4
- robosystems_client/api/mcp/call_mcp_tool.py +28 -0
- robosystems_client/api/mcp/list_mcp_tools.py +28 -0
- robosystems_client/api/query/execute_cypher_query.py +24 -0
- robosystems_client/api/schema/get_graph_schema.py +32 -0
- robosystems_client/api/schema/validate_schema.py +28 -0
- robosystems_client/api/subgraphs/create_subgraph.py +28 -4
- robosystems_client/api/subgraphs/delete_subgraph.py +46 -22
- robosystems_client/api/subgraphs/get_subgraph_info.py +34 -14
- robosystems_client/api/tables/get_upload_url.py +28 -0
- robosystems_client/api/tables/ingest_tables.py +32 -4
- robosystems_client/api/tables/query_tables.py +24 -0
- robosystems_client/models/__init__.py +2 -6
- robosystems_client/models/create_subgraph_request.py +5 -26
- robosystems_client/models/graph_subscription_response.py +21 -0
- robosystems_client/models/list_subgraphs_response.py +9 -0
- robosystems_client/models/payment_method.py +3 -3
- robosystems_client/models/{update_payment_method_request.py → portal_session_response.py} +12 -12
- {robosystems_client-0.2.13.dist-info → robosystems_client-0.2.15.dist-info}/METADATA +1 -1
- {robosystems_client-0.2.13.dist-info → robosystems_client-0.2.15.dist-info}/RECORD +26 -29
- robosystems_client/api/subscriptions/cancel_subscription.py +0 -193
- robosystems_client/models/cancellation_response.py +0 -76
- robosystems_client/models/update_payment_method_response.py +0 -74
- {robosystems_client-0.2.13.dist-info → robosystems_client-0.2.15.dist-info}/WHEEL +0 -0
- {robosystems_client-0.2.13.dist-info → robosystems_client-0.2.15.dist-info}/licenses/LICENSE +0 -0
|
@@ -146,6 +146,12 @@ def sync_detailed(
|
|
|
146
146
|
- Read-only: No INSERT, UPDATE, DELETE
|
|
147
147
|
- User's tables only: Cannot query other users' data
|
|
148
148
|
|
|
149
|
+
**Subgraph Support:**
|
|
150
|
+
This endpoint accepts both parent graph IDs and subgraph IDs.
|
|
151
|
+
- Parent graph: Use `graph_id` like `kg0123456789abcdef`
|
|
152
|
+
- Subgraph: Use full subgraph ID like `kg0123456789abcdef_dev`
|
|
153
|
+
Each subgraph has its own independent staging tables.
|
|
154
|
+
|
|
149
155
|
**Shared Repositories:**
|
|
150
156
|
Shared repositories (SEC, etc.) do not allow direct SQL queries.
|
|
151
157
|
Use the graph query endpoint instead: `POST /v1/graphs/{graph_id}/query`
|
|
@@ -234,6 +240,12 @@ def sync(
|
|
|
234
240
|
- Read-only: No INSERT, UPDATE, DELETE
|
|
235
241
|
- User's tables only: Cannot query other users' data
|
|
236
242
|
|
|
243
|
+
**Subgraph Support:**
|
|
244
|
+
This endpoint accepts both parent graph IDs and subgraph IDs.
|
|
245
|
+
- Parent graph: Use `graph_id` like `kg0123456789abcdef`
|
|
246
|
+
- Subgraph: Use full subgraph ID like `kg0123456789abcdef_dev`
|
|
247
|
+
Each subgraph has its own independent staging tables.
|
|
248
|
+
|
|
237
249
|
**Shared Repositories:**
|
|
238
250
|
Shared repositories (SEC, etc.) do not allow direct SQL queries.
|
|
239
251
|
Use the graph query endpoint instead: `POST /v1/graphs/{graph_id}/query`
|
|
@@ -317,6 +329,12 @@ async def asyncio_detailed(
|
|
|
317
329
|
- Read-only: No INSERT, UPDATE, DELETE
|
|
318
330
|
- User's tables only: Cannot query other users' data
|
|
319
331
|
|
|
332
|
+
**Subgraph Support:**
|
|
333
|
+
This endpoint accepts both parent graph IDs and subgraph IDs.
|
|
334
|
+
- Parent graph: Use `graph_id` like `kg0123456789abcdef`
|
|
335
|
+
- Subgraph: Use full subgraph ID like `kg0123456789abcdef_dev`
|
|
336
|
+
Each subgraph has its own independent staging tables.
|
|
337
|
+
|
|
320
338
|
**Shared Repositories:**
|
|
321
339
|
Shared repositories (SEC, etc.) do not allow direct SQL queries.
|
|
322
340
|
Use the graph query endpoint instead: `POST /v1/graphs/{graph_id}/query`
|
|
@@ -403,6 +421,12 @@ async def asyncio(
|
|
|
403
421
|
- Read-only: No INSERT, UPDATE, DELETE
|
|
404
422
|
- User's tables only: Cannot query other users' data
|
|
405
423
|
|
|
424
|
+
**Subgraph Support:**
|
|
425
|
+
This endpoint accepts both parent graph IDs and subgraph IDs.
|
|
426
|
+
- Parent graph: Use `graph_id` like `kg0123456789abcdef`
|
|
427
|
+
- Subgraph: Use full subgraph ID like `kg0123456789abcdef_dev`
|
|
428
|
+
Each subgraph has its own independent staging tables.
|
|
429
|
+
|
|
406
430
|
**Shared Repositories:**
|
|
407
431
|
Shared repositories (SEC, etc.) do not allow direct SQL queries.
|
|
408
432
|
Use the graph query endpoint instead: `POST /v1/graphs/{graph_id}/query`
|
|
@@ -45,7 +45,6 @@ from .bulk_ingest_response import BulkIngestResponse
|
|
|
45
45
|
from .cancel_operation_response_canceloperation import (
|
|
46
46
|
CancelOperationResponseCanceloperation,
|
|
47
47
|
)
|
|
48
|
-
from .cancellation_response import CancellationResponse
|
|
49
48
|
from .check_credit_balance_response_checkcreditbalance import (
|
|
50
49
|
CheckCreditBalanceResponseCheckcreditbalance,
|
|
51
50
|
)
|
|
@@ -208,6 +207,7 @@ from .plaid_connection_config_accounts_type_0_item import (
|
|
|
208
207
|
from .plaid_connection_config_institution_type_0 import (
|
|
209
208
|
PlaidConnectionConfigInstitutionType0,
|
|
210
209
|
)
|
|
210
|
+
from .portal_session_response import PortalSessionResponse
|
|
211
211
|
from .query_limits import QueryLimits
|
|
212
212
|
from .quick_books_connection_config import QuickBooksConnectionConfig
|
|
213
213
|
from .rate_limits import RateLimits
|
|
@@ -279,8 +279,6 @@ from .update_file_status_response_updatefilestatus import (
|
|
|
279
279
|
from .update_member_role_request import UpdateMemberRoleRequest
|
|
280
280
|
from .update_org_request import UpdateOrgRequest
|
|
281
281
|
from .update_password_request import UpdatePasswordRequest
|
|
282
|
-
from .update_payment_method_request import UpdatePaymentMethodRequest
|
|
283
|
-
from .update_payment_method_response import UpdatePaymentMethodResponse
|
|
284
282
|
from .update_user_request import UpdateUserRequest
|
|
285
283
|
from .upgrade_subscription_request import UpgradeSubscriptionRequest
|
|
286
284
|
from .user_graphs_response import UserGraphsResponse
|
|
@@ -326,7 +324,6 @@ __all__ = (
|
|
|
326
324
|
"BillingCustomer",
|
|
327
325
|
"BulkIngestRequest",
|
|
328
326
|
"BulkIngestResponse",
|
|
329
|
-
"CancellationResponse",
|
|
330
327
|
"CancelOperationResponseCanceloperation",
|
|
331
328
|
"CheckCreditBalanceResponseCheckcreditbalance",
|
|
332
329
|
"CheckoutResponse",
|
|
@@ -462,6 +459,7 @@ __all__ = (
|
|
|
462
459
|
"PlaidConnectionConfig",
|
|
463
460
|
"PlaidConnectionConfigAccountsType0Item",
|
|
464
461
|
"PlaidConnectionConfigInstitutionType0",
|
|
462
|
+
"PortalSessionResponse",
|
|
465
463
|
"QueryLimits",
|
|
466
464
|
"QuickBooksConnectionConfig",
|
|
467
465
|
"RateLimits",
|
|
@@ -519,8 +517,6 @@ __all__ = (
|
|
|
519
517
|
"UpdateMemberRoleRequest",
|
|
520
518
|
"UpdateOrgRequest",
|
|
521
519
|
"UpdatePasswordRequest",
|
|
522
|
-
"UpdatePaymentMethodRequest",
|
|
523
|
-
"UpdatePaymentMethodResponse",
|
|
524
520
|
"UpdateUserRequest",
|
|
525
521
|
"UpgradeSubscriptionRequest",
|
|
526
522
|
"UserGraphsResponse",
|
|
@@ -24,8 +24,7 @@ class CreateSubgraphRequest:
|
|
|
24
24
|
name (str): Alphanumeric name for the subgraph (e.g., dev, staging, prod1)
|
|
25
25
|
display_name (str): Human-readable display name for the subgraph
|
|
26
26
|
description (Union[None, Unset, str]): Optional description of the subgraph's purpose
|
|
27
|
-
schema_extensions (Union[
|
|
28
|
-
default)
|
|
27
|
+
schema_extensions (Union[Unset, list[str]]): Schema extensions to include (inherits from parent by default)
|
|
29
28
|
subgraph_type (Union[Unset, SubgraphType]): Types of subgraphs.
|
|
30
29
|
metadata (Union['CreateSubgraphRequestMetadataType0', None, Unset]): Additional metadata for the subgraph
|
|
31
30
|
"""
|
|
@@ -33,7 +32,7 @@ class CreateSubgraphRequest:
|
|
|
33
32
|
name: str
|
|
34
33
|
display_name: str
|
|
35
34
|
description: Union[None, Unset, str] = UNSET
|
|
36
|
-
schema_extensions: Union[
|
|
35
|
+
schema_extensions: Union[Unset, list[str]] = UNSET
|
|
37
36
|
subgraph_type: Union[Unset, SubgraphType] = UNSET
|
|
38
37
|
metadata: Union["CreateSubgraphRequestMetadataType0", None, Unset] = UNSET
|
|
39
38
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -53,13 +52,8 @@ class CreateSubgraphRequest:
|
|
|
53
52
|
else:
|
|
54
53
|
description = self.description
|
|
55
54
|
|
|
56
|
-
schema_extensions: Union[
|
|
57
|
-
if isinstance(self.schema_extensions, Unset):
|
|
58
|
-
schema_extensions = UNSET
|
|
59
|
-
elif isinstance(self.schema_extensions, list):
|
|
60
|
-
schema_extensions = self.schema_extensions
|
|
61
|
-
|
|
62
|
-
else:
|
|
55
|
+
schema_extensions: Union[Unset, list[str]] = UNSET
|
|
56
|
+
if not isinstance(self.schema_extensions, Unset):
|
|
63
57
|
schema_extensions = self.schema_extensions
|
|
64
58
|
|
|
65
59
|
subgraph_type: Union[Unset, str] = UNSET
|
|
@@ -113,22 +107,7 @@ class CreateSubgraphRequest:
|
|
|
113
107
|
|
|
114
108
|
description = _parse_description(d.pop("description", UNSET))
|
|
115
109
|
|
|
116
|
-
|
|
117
|
-
if data is None:
|
|
118
|
-
return data
|
|
119
|
-
if isinstance(data, Unset):
|
|
120
|
-
return data
|
|
121
|
-
try:
|
|
122
|
-
if not isinstance(data, list):
|
|
123
|
-
raise TypeError()
|
|
124
|
-
schema_extensions_type_0 = cast(list[str], data)
|
|
125
|
-
|
|
126
|
-
return schema_extensions_type_0
|
|
127
|
-
except: # noqa: E722
|
|
128
|
-
pass
|
|
129
|
-
return cast(Union[None, Unset, list[str]], data)
|
|
130
|
-
|
|
131
|
-
schema_extensions = _parse_schema_extensions(d.pop("schema_extensions", UNSET))
|
|
110
|
+
schema_extensions = cast(list[str], d.pop("schema_extensions", UNSET))
|
|
132
111
|
|
|
133
112
|
_subgraph_type = d.pop("subgraph_type", UNSET)
|
|
134
113
|
subgraph_type: Union[Unset, SubgraphType]
|
|
@@ -26,6 +26,8 @@ class GraphSubscriptionResponse:
|
|
|
26
26
|
current_period_end (Union[None, Unset, str]): Current billing period end
|
|
27
27
|
started_at (Union[None, Unset, str]): Subscription start date
|
|
28
28
|
canceled_at (Union[None, Unset, str]): Cancellation date
|
|
29
|
+
ends_at (Union[None, Unset, str]): Subscription end date (when access will be revoked, especially relevant for
|
|
30
|
+
cancelled subscriptions)
|
|
29
31
|
"""
|
|
30
32
|
|
|
31
33
|
id: str
|
|
@@ -40,6 +42,7 @@ class GraphSubscriptionResponse:
|
|
|
40
42
|
current_period_end: Union[None, Unset, str] = UNSET
|
|
41
43
|
started_at: Union[None, Unset, str] = UNSET
|
|
42
44
|
canceled_at: Union[None, Unset, str] = UNSET
|
|
45
|
+
ends_at: Union[None, Unset, str] = UNSET
|
|
43
46
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
44
47
|
|
|
45
48
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -83,6 +86,12 @@ class GraphSubscriptionResponse:
|
|
|
83
86
|
else:
|
|
84
87
|
canceled_at = self.canceled_at
|
|
85
88
|
|
|
89
|
+
ends_at: Union[None, Unset, str]
|
|
90
|
+
if isinstance(self.ends_at, Unset):
|
|
91
|
+
ends_at = UNSET
|
|
92
|
+
else:
|
|
93
|
+
ends_at = self.ends_at
|
|
94
|
+
|
|
86
95
|
field_dict: dict[str, Any] = {}
|
|
87
96
|
field_dict.update(self.additional_properties)
|
|
88
97
|
field_dict.update(
|
|
@@ -105,6 +114,8 @@ class GraphSubscriptionResponse:
|
|
|
105
114
|
field_dict["started_at"] = started_at
|
|
106
115
|
if canceled_at is not UNSET:
|
|
107
116
|
field_dict["canceled_at"] = canceled_at
|
|
117
|
+
if ends_at is not UNSET:
|
|
118
|
+
field_dict["ends_at"] = ends_at
|
|
108
119
|
|
|
109
120
|
return field_dict
|
|
110
121
|
|
|
@@ -165,6 +176,15 @@ class GraphSubscriptionResponse:
|
|
|
165
176
|
|
|
166
177
|
canceled_at = _parse_canceled_at(d.pop("canceled_at", UNSET))
|
|
167
178
|
|
|
179
|
+
def _parse_ends_at(data: object) -> Union[None, Unset, str]:
|
|
180
|
+
if data is None:
|
|
181
|
+
return data
|
|
182
|
+
if isinstance(data, Unset):
|
|
183
|
+
return data
|
|
184
|
+
return cast(Union[None, Unset, str], data)
|
|
185
|
+
|
|
186
|
+
ends_at = _parse_ends_at(d.pop("ends_at", UNSET))
|
|
187
|
+
|
|
168
188
|
graph_subscription_response = cls(
|
|
169
189
|
id=id,
|
|
170
190
|
resource_type=resource_type,
|
|
@@ -178,6 +198,7 @@ class GraphSubscriptionResponse:
|
|
|
178
198
|
current_period_end=current_period_end,
|
|
179
199
|
started_at=started_at,
|
|
180
200
|
canceled_at=canceled_at,
|
|
201
|
+
ends_at=ends_at,
|
|
181
202
|
)
|
|
182
203
|
|
|
183
204
|
graph_subscription_response.additional_properties = d
|
|
@@ -21,6 +21,8 @@ class ListSubgraphsResponse:
|
|
|
21
21
|
parent_graph_id (str): Parent graph identifier
|
|
22
22
|
parent_graph_name (str): Parent graph name
|
|
23
23
|
parent_graph_tier (str): Parent graph tier
|
|
24
|
+
subgraphs_enabled (bool): Whether subgraphs are enabled for this tier (requires Kuzu Large/XLarge or Neo4j
|
|
25
|
+
Enterprise XLarge)
|
|
24
26
|
subgraph_count (int): Total number of subgraphs
|
|
25
27
|
subgraphs (list['SubgraphSummary']): List of subgraphs
|
|
26
28
|
max_subgraphs (Union[None, Unset, int]): Maximum allowed subgraphs for this tier (None = unlimited)
|
|
@@ -30,6 +32,7 @@ class ListSubgraphsResponse:
|
|
|
30
32
|
parent_graph_id: str
|
|
31
33
|
parent_graph_name: str
|
|
32
34
|
parent_graph_tier: str
|
|
35
|
+
subgraphs_enabled: bool
|
|
33
36
|
subgraph_count: int
|
|
34
37
|
subgraphs: list["SubgraphSummary"]
|
|
35
38
|
max_subgraphs: Union[None, Unset, int] = UNSET
|
|
@@ -43,6 +46,8 @@ class ListSubgraphsResponse:
|
|
|
43
46
|
|
|
44
47
|
parent_graph_tier = self.parent_graph_tier
|
|
45
48
|
|
|
49
|
+
subgraphs_enabled = self.subgraphs_enabled
|
|
50
|
+
|
|
46
51
|
subgraph_count = self.subgraph_count
|
|
47
52
|
|
|
48
53
|
subgraphs = []
|
|
@@ -69,6 +74,7 @@ class ListSubgraphsResponse:
|
|
|
69
74
|
"parent_graph_id": parent_graph_id,
|
|
70
75
|
"parent_graph_name": parent_graph_name,
|
|
71
76
|
"parent_graph_tier": parent_graph_tier,
|
|
77
|
+
"subgraphs_enabled": subgraphs_enabled,
|
|
72
78
|
"subgraph_count": subgraph_count,
|
|
73
79
|
"subgraphs": subgraphs,
|
|
74
80
|
}
|
|
@@ -91,6 +97,8 @@ class ListSubgraphsResponse:
|
|
|
91
97
|
|
|
92
98
|
parent_graph_tier = d.pop("parent_graph_tier")
|
|
93
99
|
|
|
100
|
+
subgraphs_enabled = d.pop("subgraphs_enabled")
|
|
101
|
+
|
|
94
102
|
subgraph_count = d.pop("subgraph_count")
|
|
95
103
|
|
|
96
104
|
subgraphs = []
|
|
@@ -122,6 +130,7 @@ class ListSubgraphsResponse:
|
|
|
122
130
|
parent_graph_id=parent_graph_id,
|
|
123
131
|
parent_graph_name=parent_graph_name,
|
|
124
132
|
parent_graph_tier=parent_graph_tier,
|
|
133
|
+
subgraphs_enabled=subgraphs_enabled,
|
|
125
134
|
subgraph_count=subgraph_count,
|
|
126
135
|
subgraphs=subgraphs,
|
|
127
136
|
max_subgraphs=max_subgraphs,
|
|
@@ -18,9 +18,9 @@ class PaymentMethod:
|
|
|
18
18
|
type_ (str): Payment method type (card, bank_account, etc.)
|
|
19
19
|
is_default (bool): Whether this is the default payment method
|
|
20
20
|
brand (Union[None, Unset, str]): Card brand (visa, mastercard, etc.)
|
|
21
|
-
last4 (Union[None, Unset, str]): Last 4 digits
|
|
22
|
-
exp_month (Union[None, Unset, int]): Expiration month
|
|
23
|
-
exp_year (Union[None, Unset, int]): Expiration year
|
|
21
|
+
last4 (Union[None, Unset, str]): Last 4 digits of the card or account number
|
|
22
|
+
exp_month (Union[None, Unset, int]): Expiration month of the card
|
|
23
|
+
exp_year (Union[None, Unset, int]): Expiration year of the card
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
26
|
id: str
|
|
@@ -4,28 +4,28 @@ from typing import Any, TypeVar
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
6
6
|
|
|
7
|
-
T = TypeVar("T", bound="
|
|
7
|
+
T = TypeVar("T", bound="PortalSessionResponse")
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
@_attrs_define
|
|
11
|
-
class
|
|
12
|
-
"""
|
|
11
|
+
class PortalSessionResponse:
|
|
12
|
+
"""Response for customer portal session creation.
|
|
13
13
|
|
|
14
14
|
Attributes:
|
|
15
|
-
|
|
15
|
+
portal_url (str): Stripe Customer Portal URL where user can manage payment methods
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
portal_url: str
|
|
19
19
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
20
20
|
|
|
21
21
|
def to_dict(self) -> dict[str, Any]:
|
|
22
|
-
|
|
22
|
+
portal_url = self.portal_url
|
|
23
23
|
|
|
24
24
|
field_dict: dict[str, Any] = {}
|
|
25
25
|
field_dict.update(self.additional_properties)
|
|
26
26
|
field_dict.update(
|
|
27
27
|
{
|
|
28
|
-
"
|
|
28
|
+
"portal_url": portal_url,
|
|
29
29
|
}
|
|
30
30
|
)
|
|
31
31
|
|
|
@@ -34,14 +34,14 @@ class UpdatePaymentMethodRequest:
|
|
|
34
34
|
@classmethod
|
|
35
35
|
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
36
36
|
d = dict(src_dict)
|
|
37
|
-
|
|
37
|
+
portal_url = d.pop("portal_url")
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
portal_session_response = cls(
|
|
40
|
+
portal_url=portal_url,
|
|
41
41
|
)
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
return
|
|
43
|
+
portal_session_response.additional_properties = d
|
|
44
|
+
return portal_session_response
|
|
45
45
|
|
|
46
46
|
@property
|
|
47
47
|
def additional_keys(self) -> list[str]:
|
|
@@ -6,7 +6,7 @@ robosystems_client/sdk-config.yaml,sha256=Y_A8qSC2zHLYy6d443Rlgdkw2GleOSFjYvq_Qm
|
|
|
6
6
|
robosystems_client/types.py,sha256=l5mTsR9GphXnb6qHvveUHNZ_GpiRMqweGNjgKmn6qXE,1349
|
|
7
7
|
robosystems_client/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-YtdA,45
|
|
8
8
|
robosystems_client/api/agent/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
9
|
-
robosystems_client/api/agent/auto_select_agent.py,sha256=
|
|
9
|
+
robosystems_client/api/agent/auto_select_agent.py,sha256=5dSWO6S-sNsXItiAGzQFWOklLTN99kApZRYhwF8LSRo,16576
|
|
10
10
|
robosystems_client/api/agent/batch_process_queries.py,sha256=t_CSO2XTbKAFOWR-Ac8ALxu6ZmCL7ZnYOeDvTonwu2k,6785
|
|
11
11
|
robosystems_client/api/agent/execute_specific_agent.py,sha256=IqP08Vq-mpT_66i6XqRumVlGVfw4FzZzFJxdfyQkTSc,9608
|
|
12
12
|
robosystems_client/api/agent/get_agent_metadata.py,sha256=CsAMH3vzVXo7KJ95zlf1oT5juLmjIWahsEmFkpG_9Kk,5818
|
|
@@ -38,13 +38,13 @@ robosystems_client/api/backup/restore_backup.py,sha256=ePw-qemDo4ouX5YV2xnDq089H
|
|
|
38
38
|
robosystems_client/api/billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
39
39
|
robosystems_client/api/billing/cancel_org_subscription.py,sha256=FB3ZUI4Z3PjTOFUy9oSgo8wYiFLKYCBi1gBmOrqXU0U,5188
|
|
40
40
|
robosystems_client/api/billing/create_checkout_session.py,sha256=2ynG-CzYn9n9AjoDgGff-D5pipApd8xiBbF07dRDGAk,7591
|
|
41
|
+
robosystems_client/api/billing/create_portal_session.py,sha256=guy2AvBlW5gFWJcBPEffAmN8_zl3EHW93xuxAaNwXRY,5934
|
|
41
42
|
robosystems_client/api/billing/get_checkout_status.py,sha256=YHHjkRWCNgF1s7JBMSUPywl-kn9VpFsY6SzUv7jKNnw,6686
|
|
42
43
|
robosystems_client/api/billing/get_org_billing_customer.py,sha256=2oj6UDG6zIYzxOhv6k2i-n17SitCQdPaiSdsO7VCTJs,5059
|
|
43
44
|
robosystems_client/api/billing/get_org_subscription.py,sha256=wfFMOAPXqL_W8MpkYsvR3bsnsxoJbOYyNmJ48VkRisE,4940
|
|
44
45
|
robosystems_client/api/billing/get_org_upcoming_invoice.py,sha256=-WmGrzKFHK58za9k7Ny4SsbsliB33PDsXWaN69EpytU,5397
|
|
45
46
|
robosystems_client/api/billing/list_org_invoices.py,sha256=Rv4MQO68R7j3_Jm4kzZKLAvzK80mMWjgddAdSSeHXuk,5604
|
|
46
47
|
robosystems_client/api/billing/list_org_subscriptions.py,sha256=G69LYSEzqHvkweTVbcSs1quPKy0XbeD3A2Lbg7i7I7c,5190
|
|
47
|
-
robosystems_client/api/billing/update_org_payment_method.py,sha256=1oo0ZKx2qlvTVpzmlrPr0XPIzZjphMKm9AB01La0Ryc,5718
|
|
48
48
|
robosystems_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
49
49
|
robosystems_client/api/connections/create_connection.py,sha256=qBoFyjcaMR3Ug7ZqpF--m7hUWvGuu3XMlXGNTM40NdQ,7789
|
|
50
50
|
robosystems_client/api/connections/create_link_token.py,sha256=UAJeuZVi5N4ZCAiEyBa9GaQIvAJOIu_XsDtqwnv-l8U,6849
|
|
@@ -63,11 +63,11 @@ robosystems_client/api/credits_/get_credit_summary.py,sha256=-uvETiHAuFBDtzeIAc8
|
|
|
63
63
|
robosystems_client/api/credits_/get_storage_usage.py,sha256=oFlj7Ziiopk9vXRWAtHHDCy_vtvufCNoOrtD9mkFMR0,6770
|
|
64
64
|
robosystems_client/api/credits_/list_credit_transactions.py,sha256=9Ny3tqu2nFTEa7jB8XHABxJjLL8dLPZu4ILRHcjMv9M,12322
|
|
65
65
|
robosystems_client/api/graph_health/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
66
|
-
robosystems_client/api/graph_health/get_database_health.py,sha256=
|
|
66
|
+
robosystems_client/api/graph_health/get_database_health.py,sha256=7ev2oIEDvqMbJkk8eK5-bW7hWNOHtJMdrpZqJXRn6xE,8826
|
|
67
67
|
robosystems_client/api/graph_info/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
68
|
-
robosystems_client/api/graph_info/get_database_info.py,sha256=
|
|
68
|
+
robosystems_client/api/graph_info/get_database_info.py,sha256=G9Cgjq5XyKResc8WQYX2w-UG0yBhQeDHqcLySyNrjgE,9086
|
|
69
69
|
robosystems_client/api/graph_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
70
|
-
robosystems_client/api/graph_limits/get_graph_limits.py,sha256=
|
|
70
|
+
robosystems_client/api/graph_limits/get_graph_limits.py,sha256=K2pxSuVAESa6y6gw7HwL70VcgLkqKOZ-FcyuKI4W4Ac,7019
|
|
71
71
|
robosystems_client/api/graphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
72
72
|
robosystems_client/api/graphs/create_graph.py,sha256=LpklD_BG9EaBuuDmHif1RAK_86jVM1y57o0bP9_5nHA,16748
|
|
73
73
|
robosystems_client/api/graphs/get_available_extensions.py,sha256=A4gVvWGgSP1aCsyRqSxZp9n1c8Qq0fxuVHpFVhA6EsQ,8385
|
|
@@ -75,8 +75,8 @@ robosystems_client/api/graphs/get_available_graph_tiers.py,sha256=t9ikSV2pzp4tXM
|
|
|
75
75
|
robosystems_client/api/graphs/get_graphs.py,sha256=GS9rsZMtUBDwFQsu31bBHDOqz5vIqtem_0KOIRE3YPg,10989
|
|
76
76
|
robosystems_client/api/graphs/select_graph.py,sha256=OMl8lnKhKdFLK1iREbVSzNkaL7eQNmy88XrN4RiRELQ,9398
|
|
77
77
|
robosystems_client/api/mcp/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
78
|
-
robosystems_client/api/mcp/call_mcp_tool.py,sha256=
|
|
79
|
-
robosystems_client/api/mcp/list_mcp_tools.py,sha256=
|
|
78
|
+
robosystems_client/api/mcp/call_mcp_tool.py,sha256=qNyqdJ8FQJOMkRstOzrVSMZ0hx31xHytAey3MQs5MQs,15106
|
|
79
|
+
robosystems_client/api/mcp/list_mcp_tools.py,sha256=jfuhgmhlXmrHy78Ovm3CMX-VyfP-85lTbJjFsW1esvM,7914
|
|
80
80
|
robosystems_client/api/operations/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
81
81
|
robosystems_client/api/operations/cancel_operation.py,sha256=Vq0-RzmtCOuUtYYkIrMv4TamIeGAM5bp8JOaE7YGwlE,6140
|
|
82
82
|
robosystems_client/api/operations/get_operation_status.py,sha256=tawSEB1rC1csGB2tbwvGucCCZslw6sedskXeOZ0H5d0,6913
|
|
@@ -96,34 +96,33 @@ robosystems_client/api/org_usage/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12L
|
|
|
96
96
|
robosystems_client/api/org_usage/get_org_limits.py,sha256=t8m5-8xbCUqaHEE5SWL4iaXnU2jze00SwBTR-eCLLv8,4081
|
|
97
97
|
robosystems_client/api/org_usage/get_org_usage.py,sha256=tqHdLWZVx3uqVO-brbFm6WLRudNV77Z_j_rZJiSAoCk,4748
|
|
98
98
|
robosystems_client/api/query/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
99
|
-
robosystems_client/api/query/execute_cypher_query.py,sha256=
|
|
99
|
+
robosystems_client/api/query/execute_cypher_query.py,sha256=Uv1HX9I-SaVSzAvmwX41vgc8q4sS7O1oOxyAg8hmu7c,20556
|
|
100
100
|
robosystems_client/api/schema/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
101
101
|
robosystems_client/api/schema/export_graph_schema.py,sha256=4h01619pPXVRZlfI2rs5QD9Ne7AjmrENjjgp8Fa_d1g,12697
|
|
102
|
-
robosystems_client/api/schema/get_graph_schema.py,sha256=
|
|
103
|
-
robosystems_client/api/schema/validate_schema.py,sha256=
|
|
102
|
+
robosystems_client/api/schema/get_graph_schema.py,sha256=JvR_TF2oL9rCxoc4mNRVJ8EqL27DUCwLKe1wv_oAnO0,11598
|
|
103
|
+
robosystems_client/api/schema/validate_schema.py,sha256=zcd5crOfXQcz-OLR6Mzg02hXzT9FED5y112fP2kHlaI,9608
|
|
104
104
|
robosystems_client/api/service_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
105
105
|
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=dxoReNzU1gBRTIAi7MYq2nLrFHN_ygtTNUdKdHBviN8,7868
|
|
106
106
|
robosystems_client/api/status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
107
107
|
robosystems_client/api/status/get_service_status.py,sha256=eRAk7piCdm3R9A0MfmMardMEhFmzjydFo9SDLjAbQKA,3306
|
|
108
108
|
robosystems_client/api/subgraphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
109
|
-
robosystems_client/api/subgraphs/create_subgraph.py,sha256=
|
|
110
|
-
robosystems_client/api/subgraphs/delete_subgraph.py,sha256=
|
|
111
|
-
robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=
|
|
109
|
+
robosystems_client/api/subgraphs/create_subgraph.py,sha256=B1GcOorDTQwb3HalqOXYeu-Uj-4WAps4YfmUSNLUGzs,7514
|
|
110
|
+
robosystems_client/api/subgraphs/delete_subgraph.py,sha256=WKvRhnZQfMctztZZGyP085VGtBJ2Z5CXPefqmv6PpFQ,9263
|
|
111
|
+
robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=qfTx80KfZiTcS_PnA7AGh7C9jrivEe3d6v8jPyfyC-c,7707
|
|
112
112
|
robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=Wk1BTXoe6HhRFgB75gtnnMecFSNqT7J_CVo1-QnJMRs,6512
|
|
113
113
|
robosystems_client/api/subgraphs/list_subgraphs.py,sha256=d9exlLZsr9_jqhwaGUMK8mKPSbiHGLCjTNQy7uc7HkE,5350
|
|
114
114
|
robosystems_client/api/subscriptions/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
115
|
-
robosystems_client/api/subscriptions/cancel_subscription.py,sha256=IuV-tJ_1cmv-6X7VAMjbximjmUZKX7BMXrtwexkBjVQ,5255
|
|
116
115
|
robosystems_client/api/subscriptions/create_repository_subscription.py,sha256=KOKk6_yyUGA6JtSzDiJHJ0zyaxCaQdC96LhhN-fB9ME,6598
|
|
117
116
|
robosystems_client/api/subscriptions/get_graph_subscription.py,sha256=3f7gykA-26Ed_6EXoiLGdKkScNhy95fuo9N1Sku4mZU,5680
|
|
118
117
|
robosystems_client/api/subscriptions/upgrade_subscription.py,sha256=b8415k-Gv59aFK1wlKN5NJZRmvcnwYXeXJUhfIVSeKo,5744
|
|
119
118
|
robosystems_client/api/tables/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
120
119
|
robosystems_client/api/tables/delete_file.py,sha256=wYdL3mwebNcZnFfQPIIvpR_Lqj8Qj2ToeqPQiZs8wZo,9438
|
|
121
120
|
robosystems_client/api/tables/get_file_info.py,sha256=v1tqq_bE6SgEpH6FijffrOrB6Tb-UlXHcohUlx-Qx3w,6675
|
|
122
|
-
robosystems_client/api/tables/get_upload_url.py,sha256=
|
|
123
|
-
robosystems_client/api/tables/ingest_tables.py,sha256=
|
|
121
|
+
robosystems_client/api/tables/get_upload_url.py,sha256=DnxbLn_-Nv-CqXIakd5cwqBUTBV60GcuYxa08DzR0cQ,12115
|
|
122
|
+
robosystems_client/api/tables/ingest_tables.py,sha256=w4UD_b1Z7bGPVWscfCkzI1fKrwP8PXA5kfEWCK2MpKk,15892
|
|
124
123
|
robosystems_client/api/tables/list_table_files.py,sha256=f-cS57XzOAA7jn73JllIGZjrrbjNr0r5eCOFfA86O-8,9994
|
|
125
124
|
robosystems_client/api/tables/list_tables.py,sha256=U02yJ95-bGESXv5VI2WntMseaEfEkMVabVVGCE-8qDQ,9128
|
|
126
|
-
robosystems_client/api/tables/query_tables.py,sha256=
|
|
125
|
+
robosystems_client/api/tables/query_tables.py,sha256=a1-BRxN20iIxd1qDIif6mZ4F26QsYLGYyqJiOSWtwx0,15547
|
|
127
126
|
robosystems_client/api/tables/update_file_status.py,sha256=d5ZiueuguE5nK8vQw-q16CAyoZoBy8zu3zMpobdoO-o,11298
|
|
128
127
|
robosystems_client/api/usage/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
129
128
|
robosystems_client/api/usage/get_graph_metrics.py,sha256=26W8ynBfLEyNbI_OXhEkJ5NbFnPMmDBtlza7d6mbbeU,7050
|
|
@@ -154,7 +153,7 @@ robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6
|
|
|
154
153
|
robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
|
|
155
154
|
robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
|
|
156
155
|
robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
|
|
157
|
-
robosystems_client/models/__init__.py,sha256=
|
|
156
|
+
robosystems_client/models/__init__.py,sha256=7CoZyapgm_JmRWoLLepRpvpt0qFGaXvbEg4XQak-27I,21772
|
|
158
157
|
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
159
158
|
robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
|
|
160
159
|
robosystems_client/models/agent_list_response_agents.py,sha256=RQMc6dTphBjFeLD4pt2RhQyd1AedF5GW5ujHYdyZMCg,1987
|
|
@@ -194,7 +193,6 @@ robosystems_client/models/billing_customer.py,sha256=TB6zvV0IyKtgpSEHKC1cpbUyaWY
|
|
|
194
193
|
robosystems_client/models/bulk_ingest_request.py,sha256=eRHk_mG5Zfok66-sPlgx7dKfs-L_76P8PaBOrf7dHr0,1306
|
|
195
194
|
robosystems_client/models/bulk_ingest_response.py,sha256=jR-Yxs5TWaMwM0auN4BrzvU7jXVF4pFlbbOzWCErjag,3899
|
|
196
195
|
robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
|
|
197
|
-
robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
|
|
198
196
|
robosystems_client/models/check_credit_balance_response_checkcreditbalance.py,sha256=izJJIZJaZkfJY7pqYg7nBPEv9IgRpJ5WSw6hu7VUZEk,1304
|
|
199
197
|
robosystems_client/models/checkout_response.py,sha256=NxmvkrjQrSGzhf3qCUILxw6KLezt_pS4TSGo8IyfRpM,4162
|
|
200
198
|
robosystems_client/models/checkout_status_response.py,sha256=_XDA5ahmEwYyQJ7YDs253fp5U6g_RKkfBkk6K3F5osA,3877
|
|
@@ -215,7 +213,7 @@ robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK3
|
|
|
215
213
|
robosystems_client/models/create_graph_request.py,sha256=THs5EEB8-cpfkyDUu0XzwuWMnScboE_ir3vrQ44mPJY,6174
|
|
216
214
|
robosystems_client/models/create_org_request.py,sha256=Nivb6_9yP5v0_3Jo4mAm1aQusW98FPNIneVuzNbRGKk,1939
|
|
217
215
|
robosystems_client/models/create_repository_subscription_request.py,sha256=zDv9qNOG2K7t0j6zE85vrQ0F_QzHryRMr3dxZpLQIZM,1576
|
|
218
|
-
robosystems_client/models/create_subgraph_request.py,sha256=
|
|
216
|
+
robosystems_client/models/create_subgraph_request.py,sha256=Yg-xQQqIV6ihuWCAJHImcZnOLTGrnkZC7JdspcSNg0s,5158
|
|
219
217
|
robosystems_client/models/create_subgraph_request_metadata_type_0.py,sha256=dqVIzDSjIeTsKLCC7pmJAik2eJPIyi_6uTHzkspU37M,1257
|
|
220
218
|
robosystems_client/models/credit_limits.py,sha256=_JEbHjXndOlnkwC43Xl8ZGGXpEX7MWvfbT96e8sC4tY,2494
|
|
221
219
|
robosystems_client/models/credit_summary.py,sha256=nN_3hkXoOWhr6VzYGn6SvgWiZ-384K4y_xcV2i4-hAA,3527
|
|
@@ -261,7 +259,7 @@ robosystems_client/models/graph_metrics_response_estimated_size.py,sha256=Dfe4zb
|
|
|
261
259
|
robosystems_client/models/graph_metrics_response_health_status.py,sha256=IpwCxU4V5fHNP-2sVQW4uV9iAl_b0KA4ECEsEggfeb4,1270
|
|
262
260
|
robosystems_client/models/graph_metrics_response_node_counts.py,sha256=slKDmoKGV5HfUs8CuAvgYyDS-6VkyBjZ3IUJ2Dl5Acw,1253
|
|
263
261
|
robosystems_client/models/graph_metrics_response_relationship_counts.py,sha256=-MPyWBhmOX3w-2Xj5d0ED42ewyWzS9r0ruE6mgdZ98I,1300
|
|
264
|
-
robosystems_client/models/graph_subscription_response.py,sha256=
|
|
262
|
+
robosystems_client/models/graph_subscription_response.py,sha256=Q3J4j8LcpArP25JRFSVkotrg6aFlrJGGVsqz3egFcag,6600
|
|
265
263
|
robosystems_client/models/graph_subscription_tier.py,sha256=uaG2qDZfN7bh_0o5zttg8lkYv-V0ft7RdWGaXsmfS3U,6803
|
|
266
264
|
robosystems_client/models/graph_subscriptions.py,sha256=NNJl4-wxBPdE3109ybjRZgUGKc3KHNOny3MNwo4q-kU,3105
|
|
267
265
|
robosystems_client/models/graph_tier_backup.py,sha256=cwHk3S3Zcu_5owIRzP2c0wzE58Q84vfDoS0719SclcE,2145
|
|
@@ -284,7 +282,7 @@ robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0
|
|
|
284
282
|
robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
|
|
285
283
|
robosystems_client/models/list_connections_provider_type_0.py,sha256=Mmteiaom76sOnidak7Y1zY4UemEbnM_3BnfbkFUUVv0,187
|
|
286
284
|
robosystems_client/models/list_org_graphs_response_200_item.py,sha256=Njoy62MQLAQivfldzi9s0oXzQxn3e9vsAWlfSmaUc2Q,1227
|
|
287
|
-
robosystems_client/models/list_subgraphs_response.py,sha256=
|
|
285
|
+
robosystems_client/models/list_subgraphs_response.py,sha256=lYdhU9nQIqpyMZvvlokbE0hXW_Ye8FhZ7es_A5NGsMY,4857
|
|
288
286
|
robosystems_client/models/list_table_files_response.py,sha256=3ozQqPez4EFBm2T1mrPu0dCpGck0zuthTdg8wmeeSms,2654
|
|
289
287
|
robosystems_client/models/login_request.py,sha256=bWvQYg7jPbtE__tVOqPKqGYx7Yzex2hPfOm2fJZjvLU,1543
|
|
290
288
|
robosystems_client/models/logout_user_response_logoutuser.py,sha256=UGr9RnAP7Db-T5JLbH6R6CZjZaENzIX6iW31nxBAIBI,1221
|
|
@@ -322,13 +320,14 @@ robosystems_client/models/password_check_response.py,sha256=QkGKrAFrU2zpGUDxo1ki
|
|
|
322
320
|
robosystems_client/models/password_check_response_character_types.py,sha256=fM4WuPV_L8vHGOTEFx7oV8_1w49GIBOKrupFMuSooYY,1284
|
|
323
321
|
robosystems_client/models/password_policy_response.py,sha256=q-DI_QW6Jaui9VAvp1aCnhqUV9vZlp0jaOnTeGyO17o,1768
|
|
324
322
|
robosystems_client/models/password_policy_response_policy.py,sha256=_v_cVOIsaHSDNt5wzP2xMPT3AueojHBkP4qK-c1AuCU,1256
|
|
325
|
-
robosystems_client/models/payment_method.py,sha256=
|
|
323
|
+
robosystems_client/models/payment_method.py,sha256=lUu5Co0t6TevWuR8g2kKqeT1vDGn6KZ6gQWnJ3e3xEM,4231
|
|
326
324
|
robosystems_client/models/performance_insights.py,sha256=4o2Z5O8QfrX8Rj-_jAOy70UrJO58EP3XwUp-0WQA5ZM,3642
|
|
327
325
|
robosystems_client/models/performance_insights_operation_stats.py,sha256=jOazO4odLlpOf0uPzwszAz1-SHrWO4AZK4g0N2q4Hlw,1280
|
|
328
326
|
robosystems_client/models/performance_insights_slow_queries_item.py,sha256=b6KqRqrbOMd9s2X7WHjpMDrFCsPMHVkWHEwX7XOIdgc,1254
|
|
329
327
|
robosystems_client/models/plaid_connection_config.py,sha256=ddmVo8hWnXVbJF3kfHpSIGa6CaDqvWbX5a2al39T7JE,6662
|
|
330
328
|
robosystems_client/models/plaid_connection_config_accounts_type_0_item.py,sha256=udIb0Qbzilz_ko6_D8w9NC8hbRqOslg92zbB24wYEvs,1280
|
|
331
329
|
robosystems_client/models/plaid_connection_config_institution_type_0.py,sha256=bNd_czT5nU9yTWcKJih3ft71IGL-DTgT5ot1WeitrZg,1272
|
|
330
|
+
robosystems_client/models/portal_session_response.py,sha256=YNZ_LVxJ9CS3LNK3DBKrPKzPOejgCSC9di6O6Kv7Zl0,1538
|
|
332
331
|
robosystems_client/models/query_limits.py,sha256=GtLiyNSpkjoqDyEDs3VouLEm9Sg9b6kyIXsiO0IvDEI,2318
|
|
333
332
|
robosystems_client/models/quick_books_connection_config.py,sha256=ohhOvNp3k8XVz-8-xGr1NygPgDdU3ELqJVteo0iTe9I,2664
|
|
334
333
|
robosystems_client/models/rate_limits.py,sha256=vnsqixRLz4T5SRfWN9ZYyn8SOiH8WJ2qtv83QY16ivU,2021
|
|
@@ -386,14 +385,12 @@ robosystems_client/models/update_file_status_response_updatefilestatus.py,sha256
|
|
|
386
385
|
robosystems_client/models/update_member_role_request.py,sha256=4C7XrnYvtCgxnFXIVjz1c3xRlTGHwARZECUBhv1uf-M,1476
|
|
387
386
|
robosystems_client/models/update_org_request.py,sha256=UTJO_qIFkMxLgiNvalcj46E4FkgaQySkP8Jq88nIF64,2747
|
|
388
387
|
robosystems_client/models/update_password_request.py,sha256=3YwCzOJwE3WYpv05JwVBpwL71GCsj1fMLngxuEsXtpE,2013
|
|
389
|
-
robosystems_client/models/update_payment_method_request.py,sha256=7NGlBKoScTLLWnnq4wjsokXJLMdJ1RA34I6-bXcPh5E,1602
|
|
390
|
-
robosystems_client/models/update_payment_method_response.py,sha256=vzIBMD_XU78UrKa3rfT7uKCJFdYvuruTTzKe53bIvis,1925
|
|
391
388
|
robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
|
|
392
389
|
robosystems_client/models/upgrade_subscription_request.py,sha256=Ph-Wu1pA6zOEi6jSOuqrQRJ3xImOVy-T2g-xLHrYaic,1544
|
|
393
390
|
robosystems_client/models/user_graphs_response.py,sha256=k4zDipn-9HqwiJHUq8Si1XSemCDJv_t9SfTtJxc6w_k,2648
|
|
394
391
|
robosystems_client/models/user_response.py,sha256=uMYsvPKLo5YUwsT-PV8Tu5qrFG81X8-ODBllFyX2C6E,3650
|
|
395
392
|
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
396
|
-
robosystems_client-0.2.
|
|
397
|
-
robosystems_client-0.2.
|
|
398
|
-
robosystems_client-0.2.
|
|
399
|
-
robosystems_client-0.2.
|
|
393
|
+
robosystems_client-0.2.15.dist-info/METADATA,sha256=wvjXVxYz961-lELQAm3V-gV7SfzrDznwMbDirbtru_c,3904
|
|
394
|
+
robosystems_client-0.2.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
395
|
+
robosystems_client-0.2.15.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
|
|
396
|
+
robosystems_client-0.2.15.dist-info/RECORD,,
|