robosystems-client 0.1.17__py3-none-any.whl → 0.1.19__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/__init__.py +15 -4
- robosystems_client/api/agent/auto_select_agent.py +26 -1
- robosystems_client/api/agent/batch_process_queries.py +26 -1
- robosystems_client/api/agent/execute_specific_agent.py +26 -1
- robosystems_client/api/agent/get_agent_metadata.py +26 -1
- robosystems_client/api/agent/list_agents.py +21 -1
- robosystems_client/api/agent/recommend_agent.py +26 -1
- robosystems_client/api/backup/create_backup.py +26 -1
- robosystems_client/api/backup/export_backup.py +26 -1
- robosystems_client/api/backup/get_backup_download_url.py +21 -1
- robosystems_client/api/backup/get_backup_stats.py +26 -1
- robosystems_client/api/backup/list_backups.py +21 -1
- robosystems_client/api/backup/restore_backup.py +26 -1
- robosystems_client/api/connections/create_connection.py +26 -1
- robosystems_client/api/connections/create_link_token.py +26 -1
- robosystems_client/api/connections/delete_connection.py +26 -1
- robosystems_client/api/connections/exchange_link_token.py +26 -1
- robosystems_client/api/connections/get_connection.py +26 -1
- robosystems_client/api/connections/get_connection_options.py +26 -1
- robosystems_client/api/connections/init_o_auth.py +26 -1
- robosystems_client/api/connections/list_connections.py +21 -1
- robosystems_client/api/connections/oauth_callback.py +26 -1
- robosystems_client/api/connections/sync_connection.py +26 -1
- robosystems_client/api/copy/copy_data_to_graph.py +26 -1
- robosystems_client/api/graph_analytics/get_graph_metrics.py +26 -1
- robosystems_client/api/graph_analytics/get_graph_usage_stats.py +21 -1
- robosystems_client/api/graph_billing/get_current_graph_bill.py +26 -1
- robosystems_client/api/graph_billing/get_graph_billing_history.py +21 -1
- robosystems_client/api/graph_billing/get_graph_monthly_bill.py +26 -1
- robosystems_client/api/graph_billing/get_graph_usage_details.py +21 -1
- robosystems_client/api/graph_credits/check_credit_balance.py +21 -1
- robosystems_client/api/graph_credits/check_storage_limits.py +26 -1
- robosystems_client/api/graph_credits/get_credit_summary.py +26 -1
- robosystems_client/api/graph_credits/get_storage_usage.py +21 -1
- robosystems_client/api/graph_credits/list_credit_transactions.py +21 -1
- robosystems_client/api/graph_health/get_database_health.py +26 -1
- robosystems_client/api/graph_info/get_database_info.py +26 -1
- robosystems_client/api/graph_limits/get_graph_limits.py +26 -1
- robosystems_client/api/{create → graphs}/create_graph.py +26 -1
- robosystems_client/api/{create → graphs}/get_available_extensions.py +1 -1
- robosystems_client/api/{user/get_user_graphs.py → graphs/get_graphs.py} +26 -1
- robosystems_client/api/{user/select_user_graph.py → graphs/select_graph.py} +30 -5
- robosystems_client/api/mcp/call_mcp_tool.py +21 -1
- robosystems_client/api/mcp/list_mcp_tools.py +26 -1
- robosystems_client/api/operations/cancel_operation.py +25 -0
- robosystems_client/api/operations/get_operation_status.py +25 -0
- robosystems_client/api/operations/stream_operation_events.py +20 -0
- robosystems_client/api/query/execute_cypher_query.py +21 -1
- robosystems_client/api/schema/export_graph_schema.py +21 -1
- robosystems_client/api/schema/get_graph_schema_info.py +26 -1
- robosystems_client/api/schema/list_schema_extensions.py +26 -1
- robosystems_client/api/schema/validate_schema.py +26 -1
- robosystems_client/api/subgraphs/create_subgraph.py +26 -1
- robosystems_client/api/subgraphs/delete_subgraph.py +26 -1
- robosystems_client/api/subgraphs/get_subgraph_info.py +26 -1
- robosystems_client/api/subgraphs/get_subgraph_quota.py +26 -1
- robosystems_client/api/subgraphs/list_subgraphs.py +26 -1
- robosystems_client/api/user/create_user_api_key.py +25 -0
- robosystems_client/api/user/get_all_credit_summaries.py +25 -0
- robosystems_client/api/user/get_current_user.py +25 -0
- robosystems_client/api/user/list_user_api_keys.py +25 -0
- robosystems_client/api/user/revoke_user_api_key.py +25 -0
- robosystems_client/api/user/update_user.py +25 -0
- robosystems_client/api/user/update_user_api_key.py +25 -0
- robosystems_client/api/user/update_user_password.py +25 -0
- robosystems_client/api/user_analytics/get_detailed_user_analytics.py +20 -0
- robosystems_client/api/user_analytics/get_user_usage_overview.py +25 -0
- robosystems_client/api/user_limits/get_all_shared_repository_limits.py +25 -0
- robosystems_client/api/user_limits/get_shared_repository_limits.py +25 -0
- robosystems_client/api/user_limits/get_user_limits.py +25 -0
- robosystems_client/api/user_limits/get_user_usage.py +25 -0
- robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +25 -0
- robosystems_client/api/user_subscriptions/get_repository_credits.py +25 -0
- robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +25 -0
- robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +20 -0
- robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +25 -0
- robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +25 -0
- robosystems_client/extensions/__init__.py +70 -0
- robosystems_client/extensions/auth_integration.py +14 -1
- robosystems_client/extensions/copy_client.py +32 -22
- robosystems_client/extensions/dataframe_utils.py +455 -0
- robosystems_client/extensions/extensions.py +16 -0
- robosystems_client/extensions/operation_client.py +43 -21
- robosystems_client/extensions/query_client.py +109 -12
- robosystems_client/extensions/tests/test_dataframe_utils.py +334 -0
- robosystems_client/extensions/tests/test_integration.py +1 -1
- robosystems_client/extensions/tests/test_token_utils.py +274 -0
- robosystems_client/extensions/token_utils.py +417 -0
- robosystems_client/extensions/utils.py +32 -2
- robosystems_client/models/__init__.py +0 -2
- robosystems_client/models/api_key_info.py +20 -0
- robosystems_client/models/create_api_key_request.py +20 -0
- {robosystems_client-0.1.17.dist-info → robosystems_client-0.1.19.dist-info}/METADATA +1 -1
- {robosystems_client-0.1.17.dist-info → robosystems_client-0.1.19.dist-info}/RECORD +97 -95
- robosystems_client/api/auth/sso_login.py +0 -177
- robosystems_client/models/sso_login_request.py +0 -60
- /robosystems_client/api/{create → graphs}/__init__.py +0 -0
- {robosystems_client-0.1.17.dist-info → robosystems_client-0.1.19.dist-info}/WHEEL +0 -0
- {robosystems_client-0.1.17.dist-info → robosystems_client-0.1.19.dist-info}/licenses/LICENSE +0 -0
|
@@ -294,15 +294,31 @@ class ProgressTracker:
|
|
|
294
294
|
|
|
295
295
|
def get_estimated_completion(self) -> Optional[datetime]:
|
|
296
296
|
"""Estimate completion time based on progress"""
|
|
297
|
-
if not self.progress_history
|
|
297
|
+
if not self.progress_history:
|
|
298
298
|
return None
|
|
299
299
|
|
|
300
300
|
latest = self.progress_history[-1]
|
|
301
|
-
|
|
301
|
+
|
|
302
|
+
# If we have a percentage, use it for estimation
|
|
303
|
+
if (
|
|
304
|
+
latest.get("percentage")
|
|
305
|
+
and latest["percentage"] > 0
|
|
306
|
+
and latest["percentage"] < 100
|
|
307
|
+
):
|
|
302
308
|
elapsed = self.get_elapsed_time()
|
|
303
309
|
estimated_total = elapsed.total_seconds() / (latest["percentage"] / 100)
|
|
304
310
|
return self.started_at + timedelta(seconds=estimated_total)
|
|
305
311
|
|
|
312
|
+
# If we have steps, use them for estimation
|
|
313
|
+
if (
|
|
314
|
+
self.total_steps
|
|
315
|
+
and self.current_step > 0
|
|
316
|
+
and self.current_step < self.total_steps
|
|
317
|
+
):
|
|
318
|
+
elapsed = self.get_elapsed_time()
|
|
319
|
+
estimated_total = elapsed.total_seconds() * (self.total_steps / self.current_step)
|
|
320
|
+
return self.started_at + timedelta(seconds=estimated_total)
|
|
321
|
+
|
|
306
322
|
return None
|
|
307
323
|
|
|
308
324
|
def get_summary(self) -> Dict[str, Any]:
|
|
@@ -494,6 +510,20 @@ def validate_cypher_query(query: str) -> Dict[str, Any]:
|
|
|
494
510
|
if query.count("{") != query.count("}"):
|
|
495
511
|
issues.append("Unbalanced curly braces")
|
|
496
512
|
|
|
513
|
+
# Check for invalid Cypher patterns
|
|
514
|
+
import re
|
|
515
|
+
|
|
516
|
+
# In Cypher, nodes use parentheses (), not square brackets []
|
|
517
|
+
# MATCH [n] is invalid, should be MATCH (n)
|
|
518
|
+
if re.search(r"\b(match|create|merge)\s+\[", query_lower):
|
|
519
|
+
issues.append(
|
|
520
|
+
"Invalid syntax: Nodes must use parentheses (), not square brackets []"
|
|
521
|
+
)
|
|
522
|
+
|
|
523
|
+
# Check for relationship patterns without nodes
|
|
524
|
+
if re.search(r"^\s*\[.*?\]\s*return", query_lower):
|
|
525
|
+
issues.append("Invalid syntax: Square brackets are for relationships, not nodes")
|
|
526
|
+
|
|
497
527
|
# Basic keyword checks
|
|
498
528
|
if not any(
|
|
499
529
|
keyword in query_lower
|
|
@@ -218,7 +218,6 @@ from .selection_criteria import SelectionCriteria
|
|
|
218
218
|
from .sso_complete_request import SSOCompleteRequest
|
|
219
219
|
from .sso_exchange_request import SSOExchangeRequest
|
|
220
220
|
from .sso_exchange_response import SSOExchangeResponse
|
|
221
|
-
from .sso_login_request import SSOLoginRequest
|
|
222
221
|
from .sso_token_response import SSOTokenResponse
|
|
223
222
|
from .storage_limit_response import StorageLimitResponse
|
|
224
223
|
from .subgraph_quota_response import SubgraphQuotaResponse
|
|
@@ -425,7 +424,6 @@ __all__ = (
|
|
|
425
424
|
"SSOCompleteRequest",
|
|
426
425
|
"SSOExchangeRequest",
|
|
427
426
|
"SSOExchangeResponse",
|
|
428
|
-
"SSOLoginRequest",
|
|
429
427
|
"SSOTokenResponse",
|
|
430
428
|
"StorageLimitResponse",
|
|
431
429
|
"SubgraphQuotaResponse",
|
|
@@ -21,6 +21,7 @@ class APIKeyInfo:
|
|
|
21
21
|
created_at (str): Creation timestamp
|
|
22
22
|
description (Union[None, Unset, str]): API key description
|
|
23
23
|
last_used_at (Union[None, Unset, str]): Last used timestamp
|
|
24
|
+
expires_at (Union[None, Unset, str]): Expiration timestamp
|
|
24
25
|
"""
|
|
25
26
|
|
|
26
27
|
id: str
|
|
@@ -30,6 +31,7 @@ class APIKeyInfo:
|
|
|
30
31
|
created_at: str
|
|
31
32
|
description: Union[None, Unset, str] = UNSET
|
|
32
33
|
last_used_at: Union[None, Unset, str] = UNSET
|
|
34
|
+
expires_at: Union[None, Unset, str] = UNSET
|
|
33
35
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
34
36
|
|
|
35
37
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -55,6 +57,12 @@ class APIKeyInfo:
|
|
|
55
57
|
else:
|
|
56
58
|
last_used_at = self.last_used_at
|
|
57
59
|
|
|
60
|
+
expires_at: Union[None, Unset, str]
|
|
61
|
+
if isinstance(self.expires_at, Unset):
|
|
62
|
+
expires_at = UNSET
|
|
63
|
+
else:
|
|
64
|
+
expires_at = self.expires_at
|
|
65
|
+
|
|
58
66
|
field_dict: dict[str, Any] = {}
|
|
59
67
|
field_dict.update(self.additional_properties)
|
|
60
68
|
field_dict.update(
|
|
@@ -70,6 +78,8 @@ class APIKeyInfo:
|
|
|
70
78
|
field_dict["description"] = description
|
|
71
79
|
if last_used_at is not UNSET:
|
|
72
80
|
field_dict["last_used_at"] = last_used_at
|
|
81
|
+
if expires_at is not UNSET:
|
|
82
|
+
field_dict["expires_at"] = expires_at
|
|
73
83
|
|
|
74
84
|
return field_dict
|
|
75
85
|
|
|
@@ -104,6 +114,15 @@ class APIKeyInfo:
|
|
|
104
114
|
|
|
105
115
|
last_used_at = _parse_last_used_at(d.pop("last_used_at", UNSET))
|
|
106
116
|
|
|
117
|
+
def _parse_expires_at(data: object) -> Union[None, Unset, str]:
|
|
118
|
+
if data is None:
|
|
119
|
+
return data
|
|
120
|
+
if isinstance(data, Unset):
|
|
121
|
+
return data
|
|
122
|
+
return cast(Union[None, Unset, str], data)
|
|
123
|
+
|
|
124
|
+
expires_at = _parse_expires_at(d.pop("expires_at", UNSET))
|
|
125
|
+
|
|
107
126
|
api_key_info = cls(
|
|
108
127
|
id=id,
|
|
109
128
|
name=name,
|
|
@@ -112,6 +131,7 @@ class APIKeyInfo:
|
|
|
112
131
|
created_at=created_at,
|
|
113
132
|
description=description,
|
|
114
133
|
last_used_at=last_used_at,
|
|
134
|
+
expires_at=expires_at,
|
|
115
135
|
)
|
|
116
136
|
|
|
117
137
|
api_key_info.additional_properties = d
|
|
@@ -16,10 +16,12 @@ class CreateAPIKeyRequest:
|
|
|
16
16
|
Attributes:
|
|
17
17
|
name (str): Name for the API key
|
|
18
18
|
description (Union[None, Unset, str]): Optional description
|
|
19
|
+
expires_at (Union[None, Unset, str]): Optional expiration date in ISO format (e.g. 2024-12-31T23:59:59Z)
|
|
19
20
|
"""
|
|
20
21
|
|
|
21
22
|
name: str
|
|
22
23
|
description: Union[None, Unset, str] = UNSET
|
|
24
|
+
expires_at: Union[None, Unset, str] = UNSET
|
|
23
25
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
24
26
|
|
|
25
27
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -31,6 +33,12 @@ class CreateAPIKeyRequest:
|
|
|
31
33
|
else:
|
|
32
34
|
description = self.description
|
|
33
35
|
|
|
36
|
+
expires_at: Union[None, Unset, str]
|
|
37
|
+
if isinstance(self.expires_at, Unset):
|
|
38
|
+
expires_at = UNSET
|
|
39
|
+
else:
|
|
40
|
+
expires_at = self.expires_at
|
|
41
|
+
|
|
34
42
|
field_dict: dict[str, Any] = {}
|
|
35
43
|
field_dict.update(self.additional_properties)
|
|
36
44
|
field_dict.update(
|
|
@@ -40,6 +48,8 @@ class CreateAPIKeyRequest:
|
|
|
40
48
|
)
|
|
41
49
|
if description is not UNSET:
|
|
42
50
|
field_dict["description"] = description
|
|
51
|
+
if expires_at is not UNSET:
|
|
52
|
+
field_dict["expires_at"] = expires_at
|
|
43
53
|
|
|
44
54
|
return field_dict
|
|
45
55
|
|
|
@@ -57,9 +67,19 @@ class CreateAPIKeyRequest:
|
|
|
57
67
|
|
|
58
68
|
description = _parse_description(d.pop("description", UNSET))
|
|
59
69
|
|
|
70
|
+
def _parse_expires_at(data: object) -> Union[None, Unset, str]:
|
|
71
|
+
if data is None:
|
|
72
|
+
return data
|
|
73
|
+
if isinstance(data, Unset):
|
|
74
|
+
return data
|
|
75
|
+
return cast(Union[None, Unset, str], data)
|
|
76
|
+
|
|
77
|
+
expires_at = _parse_expires_at(d.pop("expires_at", UNSET))
|
|
78
|
+
|
|
60
79
|
create_api_key_request = cls(
|
|
61
80
|
name=name,
|
|
62
81
|
description=description,
|
|
82
|
+
expires_at=expires_at,
|
|
63
83
|
)
|
|
64
84
|
|
|
65
85
|
create_api_key_request.additional_properties = d
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
robosystems_client/__init__.py,sha256=
|
|
1
|
+
robosystems_client/__init__.py,sha256=G0TAEXW2Z6-yXGiMLP1eQt8Ff-if8INNPxZ-9tD1Shw,475
|
|
2
2
|
robosystems_client/client.py,sha256=glsYxdE5nRr9XWJRs9GkPOTDw65iGrmRyMdkCSckbb8,11659
|
|
3
3
|
robosystems_client/errors.py,sha256=c3fwsvNmoncJLYqwn4a82LJZamXZGd09IXPmx-qubhQ,520
|
|
4
4
|
robosystems_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
@@ -6,12 +6,12 @@ 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=
|
|
10
|
-
robosystems_client/api/agent/batch_process_queries.py,sha256=
|
|
11
|
-
robosystems_client/api/agent/execute_specific_agent.py,sha256
|
|
12
|
-
robosystems_client/api/agent/get_agent_metadata.py,sha256=
|
|
13
|
-
robosystems_client/api/agent/list_agents.py,sha256=
|
|
14
|
-
robosystems_client/api/agent/recommend_agent.py,sha256=
|
|
9
|
+
robosystems_client/api/agent/auto_select_agent.py,sha256=PDm5ZJFqLxFomlSi3yehutugdz9BpsuZyUa6ilLvI7A,8020
|
|
10
|
+
robosystems_client/api/agent/batch_process_queries.py,sha256=W2oSBa043X6QFFwzwwaG-tA4oOmu2FcvSlMMfWuGu4s,8312
|
|
11
|
+
robosystems_client/api/agent/execute_specific_agent.py,sha256=-h5-7i2kOeJAGxQ3zXADGhTfEOrI9iPMiWxbJJPUPr0,8319
|
|
12
|
+
robosystems_client/api/agent/get_agent_metadata.py,sha256=nnT358_aAgMM-rOvuqXukzb1ePDxithlX-4iuAc3Kho,7528
|
|
13
|
+
robosystems_client/api/agent/list_agents.py,sha256=NsRnkz9oKDQRzVBhD6RdkjTv4fl6oBvmp-aRWf_uBTk,7873
|
|
14
|
+
robosystems_client/api/agent/recommend_agent.py,sha256=R44Mn-HXHwIzHuIoaDcVta2yTHNS8NOjRUF71d2OV2g,8322
|
|
15
15
|
robosystems_client/api/auth/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
16
16
|
robosystems_client/api/auth/check_password_strength.py,sha256=hukbrO7txh61gu2B4cX0ZPWV3XCF1O2Mr5US4acLOP4,4671
|
|
17
17
|
robosystems_client/api/auth/complete_sso_auth.py,sha256=9wj_oQBdzP7bzlst821sXwf7-MlZkQfaKlV5dUSeQSo,4885
|
|
@@ -26,116 +26,119 @@ robosystems_client/api/auth/refresh_auth_session.py,sha256=b5Xpa3QrIJfVYMUhlQn7H
|
|
|
26
26
|
robosystems_client/api/auth/register_user.py,sha256=xXgCceSaDH_oSQMT_L4_lBF3XUSVTFXWMrI8-I3M6xc,5565
|
|
27
27
|
robosystems_client/api/auth/resend_verification_email.py,sha256=aUXAN5iLTcbW5Wpipd4iyZjhQ906J0kSwCZGklTVBW8,5943
|
|
28
28
|
robosystems_client/api/auth/reset_password.py,sha256=QgXpvx80Ex9fccj4RXwXrV1QOhJv3ClNXBj9pLlTlEI,4857
|
|
29
|
-
robosystems_client/api/auth/sso_login.py,sha256=seSNkqyYjXPaSoRCxlwahiauH_BvqFbpExxkrYBXgi8,4717
|
|
30
29
|
robosystems_client/api/auth/sso_token_exchange.py,sha256=-rl28H-WCbO1gsw_kpzPe_t-WuA6mTfmcKcNzfzgY90,5088
|
|
31
30
|
robosystems_client/api/auth/validate_reset_token.py,sha256=kNxoCedKJHpF-bgxe9roPIjVAo22Tt2MA2j1bnEUPwI,4564
|
|
32
31
|
robosystems_client/api/auth/verify_email.py,sha256=0EKqUmfoRKsLCBnjS0u7MjKry3plrlTLlqYMLSFUCaQ,4951
|
|
33
32
|
robosystems_client/api/backup/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
34
|
-
robosystems_client/api/backup/create_backup.py,sha256=
|
|
35
|
-
robosystems_client/api/backup/export_backup.py,sha256=
|
|
36
|
-
robosystems_client/api/backup/get_backup_download_url.py,sha256=
|
|
37
|
-
robosystems_client/api/backup/get_backup_stats.py,sha256=
|
|
38
|
-
robosystems_client/api/backup/list_backups.py,sha256=
|
|
39
|
-
robosystems_client/api/backup/restore_backup.py,sha256=
|
|
33
|
+
robosystems_client/api/backup/create_backup.py,sha256=gnNZBoaGMOVNo8uA6AsS4SKiDRAEnfVYefdeCkdIXns,13169
|
|
34
|
+
robosystems_client/api/backup/export_backup.py,sha256=hpClddVtoNR1dlaMlanXNL9wsAKB45za9Aee4tHxeKo,6352
|
|
35
|
+
robosystems_client/api/backup/get_backup_download_url.py,sha256=mzCt9um6mt6fZ__e51Myt10jwNVKnCHa_kmS4pG-OXg,7862
|
|
36
|
+
robosystems_client/api/backup/get_backup_stats.py,sha256=iHYxmEu8GhUCXYNnOZpBPJaCxX5e8TIWLLqAPlKF1rk,5902
|
|
37
|
+
robosystems_client/api/backup/list_backups.py,sha256=zd0rbIt-NkrfJXuc4-KpjtqNdZDFWbN5zvwhN1XA2s4,6965
|
|
38
|
+
robosystems_client/api/backup/restore_backup.py,sha256=f5vfHZ6KsJv3cO3aJgtDjwYErVpwbO9eLVQCAm7vg64,13612
|
|
40
39
|
robosystems_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
41
|
-
robosystems_client/api/connections/create_connection.py,sha256=
|
|
42
|
-
robosystems_client/api/connections/create_link_token.py,sha256=
|
|
43
|
-
robosystems_client/api/connections/delete_connection.py,sha256=
|
|
44
|
-
robosystems_client/api/connections/exchange_link_token.py,sha256=
|
|
45
|
-
robosystems_client/api/connections/get_connection.py,sha256=
|
|
46
|
-
robosystems_client/api/connections/get_connection_options.py,sha256=
|
|
47
|
-
robosystems_client/api/connections/init_o_auth.py,sha256=
|
|
48
|
-
robosystems_client/api/connections/list_connections.py,sha256=
|
|
49
|
-
robosystems_client/api/connections/oauth_callback.py,sha256=
|
|
50
|
-
robosystems_client/api/connections/sync_connection.py,sha256=
|
|
40
|
+
robosystems_client/api/connections/create_connection.py,sha256=NIL8Howks2UTZlyVNHrcCA1auJNoHVXc0l7hLxOkggU,9403
|
|
41
|
+
robosystems_client/api/connections/create_link_token.py,sha256=qDTqs0tTYCuUaa3PjswOsiyC8_kxOtaz7lmgphkiRNM,8480
|
|
42
|
+
robosystems_client/api/connections/delete_connection.py,sha256=dw55bNpKq5Bif38t8lq0r6KHYD557eBvm-bMV0ZCuNE,7988
|
|
43
|
+
robosystems_client/api/connections/exchange_link_token.py,sha256=fPZpBSTSCxLtl9MWKveumiGXRbfIlTaZw-rvHa6khoM,9115
|
|
44
|
+
robosystems_client/api/connections/get_connection.py,sha256=u1l_wsK7toH9oOS9tndbItE7Xlc71TnbRLCqXqmqlfo,7912
|
|
45
|
+
robosystems_client/api/connections/get_connection_options.py,sha256=Lu8ximQgz2jbcTJPx5UovAbN0pQ5QL9IBNx4GfJVXbQ,8969
|
|
46
|
+
robosystems_client/api/connections/init_o_auth.py,sha256=LVRFB_-E11gXXwhMskzpOyTwhKnB1UcX5IJHVZB1qPI,6790
|
|
47
|
+
robosystems_client/api/connections/list_connections.py,sha256=ABLspmvfPnkT11uMXSwVkws_7za2fwgllu60trNemKY,10081
|
|
48
|
+
robosystems_client/api/connections/oauth_callback.py,sha256=83cQqPPKnu0BZZsfj0nqJGsuhFEsdmK1gqUX2O1gSp4,9358
|
|
49
|
+
robosystems_client/api/connections/sync_connection.py,sha256=H587C9p1VkQWhOtXmf1ShZWtP65X32UzzUAEIBjkDTw,10074
|
|
51
50
|
robosystems_client/api/copy/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
52
|
-
robosystems_client/api/copy/copy_data_to_graph.py,sha256=
|
|
53
|
-
robosystems_client/api/create/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
54
|
-
robosystems_client/api/create/create_graph.py,sha256=KIJcMg00FDO8W0M0NvcjiflYm2-JU6hj4VR-kq4Tp1k,12522
|
|
55
|
-
robosystems_client/api/create/get_available_extensions.py,sha256=sFf-YdbDy9VGOK8WZ4JBoxrcVe2PtYW6XLp-EkyMt7E,3502
|
|
51
|
+
robosystems_client/api/copy/copy_data_to_graph.py,sha256=HWJnASTgOttHv9_rqeQXlQ78JdgWnbsxf-lfLmtPk_w,17407
|
|
56
52
|
robosystems_client/api/graph_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
57
|
-
robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=
|
|
58
|
-
robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=
|
|
53
|
+
robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=0jFH_ZM5dkoX5ls-0zxWpYrpX7zds0ys_lkp1rUcpEA,8757
|
|
54
|
+
robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=VUDsPA_Qv77EKCxx2D8UGqVlotKex0-Io4GRL_XGmyY,9698
|
|
59
55
|
robosystems_client/api/graph_billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
60
|
-
robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256
|
|
61
|
-
robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=
|
|
62
|
-
robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=
|
|
63
|
-
robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=
|
|
56
|
+
robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256=-BpI2MoDckZDRJ4xOwXnCwngZIQSYXD_po4ePzPOcXQ,8679
|
|
57
|
+
robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=QWjCPjRwqibX1clcbtXt0P-xm0v5yRqDeX1spUonFVs,8907
|
|
58
|
+
robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=kUGqz-_pXXqHOyh1VXO2BImAjfSR-TyMCcMCvlkGpEs,8688
|
|
59
|
+
robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=ZZVs4TeP-ATupBQ4SCpiIzTZJTr7Dpi978xWIZDOhN4,10356
|
|
64
60
|
robosystems_client/api/graph_credits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
65
|
-
robosystems_client/api/graph_credits/check_credit_balance.py,sha256=
|
|
66
|
-
robosystems_client/api/graph_credits/check_storage_limits.py,sha256=
|
|
67
|
-
robosystems_client/api/graph_credits/get_credit_summary.py,sha256=
|
|
68
|
-
robosystems_client/api/graph_credits/get_storage_usage.py,sha256=
|
|
69
|
-
robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=
|
|
61
|
+
robosystems_client/api/graph_credits/check_credit_balance.py,sha256=Got4l06B3gV_uEakHA0Qj_ZDHBnvBPdgkHYy6ARif1I,9625
|
|
62
|
+
robosystems_client/api/graph_credits/check_storage_limits.py,sha256=WN9mwXOJguK9srbmaYmp1-_ULYxB1jcTGZLWBB-SEpg,7782
|
|
63
|
+
robosystems_client/api/graph_credits/get_credit_summary.py,sha256=mMuztU7mh69F6p8vDGPdkPdNDpO3az0lfelf5Belo38,7636
|
|
64
|
+
robosystems_client/api/graph_credits/get_storage_usage.py,sha256=S0GPSHd9lVa6pk5ta3c64_ZhJyQ0Z9VfZ80IcfyAyws,8212
|
|
65
|
+
robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=iAJXnmnyWYTc10e_GsUU-Dr2X4nUuX_IW6mBQ3TM5Wo,13763
|
|
70
66
|
robosystems_client/api/graph_health/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
71
|
-
robosystems_client/api/graph_health/get_database_health.py,sha256=
|
|
67
|
+
robosystems_client/api/graph_health/get_database_health.py,sha256=kh2dI4LxDBT5okU2gO465HS5iqhoR8S1RmH-KBwNCrg,9017
|
|
72
68
|
robosystems_client/api/graph_info/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
73
|
-
robosystems_client/api/graph_info/get_database_info.py,sha256=
|
|
69
|
+
robosystems_client/api/graph_info/get_database_info.py,sha256=jRM6e0b2ChKyqnJZoPmJfLiCcVt-ezABTUq8EyBrgxw,9353
|
|
74
70
|
robosystems_client/api/graph_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
75
|
-
robosystems_client/api/graph_limits/get_graph_limits.py,sha256=
|
|
71
|
+
robosystems_client/api/graph_limits/get_graph_limits.py,sha256=FTPzVNPk1saC5p-LyqfbidFC9DE5QU4HnnbyZEB158A,9048
|
|
72
|
+
robosystems_client/api/graphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
73
|
+
robosystems_client/api/graphs/create_graph.py,sha256=aq1VGmT7qyCjNyF0qhZ_1MXsoIfST_eB9Y101EMfYYw,13374
|
|
74
|
+
robosystems_client/api/graphs/get_available_extensions.py,sha256=eKJ6ObXbdIUkoR1-kDBvXbZdYqLdxfuOtyWwxfEnaic,3496
|
|
75
|
+
robosystems_client/api/graphs/get_graphs.py,sha256=uPzjB6o-Jca_P_u7bKJ_EO5wRreh0k180F85qAI_IVs,5416
|
|
76
|
+
robosystems_client/api/graphs/select_graph.py,sha256=-nZVpBFP01N2EB9nraRUWwEW2v6kvZxBn9EQaaub_Io,6217
|
|
76
77
|
robosystems_client/api/mcp/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
77
|
-
robosystems_client/api/mcp/call_mcp_tool.py,sha256=
|
|
78
|
-
robosystems_client/api/mcp/list_mcp_tools.py,sha256=
|
|
78
|
+
robosystems_client/api/mcp/call_mcp_tool.py,sha256=35VCW9P16BXUHF4kPfk48kLE2ONGmpeLC69gVyLHP4U,14211
|
|
79
|
+
robosystems_client/api/mcp/list_mcp_tools.py,sha256=IEgAE9Cm25tKZ4K0RPf46ETs8tztTHZa1MlSlMt1fKY,8442
|
|
79
80
|
robosystems_client/api/operations/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
80
|
-
robosystems_client/api/operations/cancel_operation.py,sha256=
|
|
81
|
-
robosystems_client/api/operations/get_operation_status.py,sha256=
|
|
82
|
-
robosystems_client/api/operations/stream_operation_events.py,sha256=
|
|
81
|
+
robosystems_client/api/operations/cancel_operation.py,sha256=uflJnjPWwNOy2B4wCHLN3m5wplKHmWy8PGU9MRdVQ5I,7734
|
|
82
|
+
robosystems_client/api/operations/get_operation_status.py,sha256=rWc45qA6zmAeoYdoUC5BGSjfOBT7G_7jEEt3PoqN728,8508
|
|
83
|
+
robosystems_client/api/operations/stream_operation_events.py,sha256=g1lBFi4Jq4CKuSLOXnZDRhfS8t-wpSvo_u324hlIF9I,14037
|
|
83
84
|
robosystems_client/api/query/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
84
|
-
robosystems_client/api/query/execute_cypher_query.py,sha256=
|
|
85
|
+
robosystems_client/api/query/execute_cypher_query.py,sha256=VuFzafJTZ3vc_1mYgkp9Fp4yJu2XL3DOfNymzpeF-Jw,16700
|
|
85
86
|
robosystems_client/api/schema/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
86
|
-
robosystems_client/api/schema/export_graph_schema.py,sha256=
|
|
87
|
-
robosystems_client/api/schema/get_graph_schema_info.py,sha256=
|
|
88
|
-
robosystems_client/api/schema/list_schema_extensions.py,sha256=
|
|
89
|
-
robosystems_client/api/schema/validate_schema.py,sha256=
|
|
87
|
+
robosystems_client/api/schema/export_graph_schema.py,sha256=P0aaDMS3IYUD9VRkjCLiaCyDa_oWjfT3tclVEXADpbw,7587
|
|
88
|
+
robosystems_client/api/schema/get_graph_schema_info.py,sha256=hxxkXH1On-s9WrrFqogw8CcEKRSFLOnOHtfk2U8EFpc,8785
|
|
89
|
+
robosystems_client/api/schema/list_schema_extensions.py,sha256=1AkSxLboynPTF-XZTz8cqYg3gUeciTxKfzqv5emYl3g,6396
|
|
90
|
+
robosystems_client/api/schema/validate_schema.py,sha256=woH7XvKxHzluCRYXvFnDATvTtStd5_8Jyu3NPbmSBrw,9935
|
|
90
91
|
robosystems_client/api/service_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
91
92
|
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=fsj86E8ml2O2HhmUMJOyte6E7qEFA5Nip30tO63kmyg,6157
|
|
92
93
|
robosystems_client/api/status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
93
94
|
robosystems_client/api/status/get_service_status.py,sha256=ORuAz31SqditB0mXVsQBSE_SJIghpwACxaJGgX5z1p8,3305
|
|
94
95
|
robosystems_client/api/subgraphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
95
|
-
robosystems_client/api/subgraphs/create_subgraph.py,sha256=
|
|
96
|
-
robosystems_client/api/subgraphs/delete_subgraph.py,sha256=
|
|
97
|
-
robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=
|
|
98
|
-
robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=
|
|
99
|
-
robosystems_client/api/subgraphs/list_subgraphs.py,sha256=
|
|
96
|
+
robosystems_client/api/subgraphs/create_subgraph.py,sha256=eY-nl7itLT0BcF2x0-sqTWp_e1sTMSi8oYYC6wwtQes,8068
|
|
97
|
+
robosystems_client/api/subgraphs/delete_subgraph.py,sha256=HNQjbddRDBWihgZiK4yl0IFBbOPwM3xLT2BWZ1g-OJE,9555
|
|
98
|
+
robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=plNLVc8Lv8_SEEl5itV0cvGPUm3qkPUv4nQv277yt_w,8400
|
|
99
|
+
robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=twONrqpUWrz6Lib3bWgC8_RVMO6i8jYMfdodIlOCMcU,8202
|
|
100
|
+
robosystems_client/api/subgraphs/list_subgraphs.py,sha256=jQhNH01hadlznhaPpxydeOurzy9eWu5TxmZh1WgWf04,7100
|
|
100
101
|
robosystems_client/api/user/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
101
|
-
robosystems_client/api/user/create_user_api_key.py,sha256=
|
|
102
|
-
robosystems_client/api/user/get_all_credit_summaries.py,sha256=
|
|
103
|
-
robosystems_client/api/user/get_current_user.py,sha256=
|
|
104
|
-
robosystems_client/api/user/
|
|
105
|
-
robosystems_client/api/user/
|
|
106
|
-
robosystems_client/api/user/
|
|
107
|
-
robosystems_client/api/user/
|
|
108
|
-
robosystems_client/api/user/
|
|
109
|
-
robosystems_client/api/user/update_user_api_key.py,sha256=kkWQLaA2iy7MRij6nhhVlzW8FanW0Md3Qc8-BIz3n8k,5360
|
|
110
|
-
robosystems_client/api/user/update_user_password.py,sha256=wO-K8NEuRBIp0qzn-UXcF2PtvnSzgDfmR8m9E8kyr1Q,5684
|
|
102
|
+
robosystems_client/api/user/create_user_api_key.py,sha256=AKmoAASeauALZPL3xn8pxS0TRpC4SNv_E7lSdYbZ82M,6055
|
|
103
|
+
robosystems_client/api/user/get_all_credit_summaries.py,sha256=hpSF0v8bSWSYXjXRAReef4ZMsR-2KzRgTNUVgWYwHso,7230
|
|
104
|
+
robosystems_client/api/user/get_current_user.py,sha256=yONl4aU_lx5M1Rw3Jw_wAOjufrL4adMh2zPMJ9lNGB4,5355
|
|
105
|
+
robosystems_client/api/user/list_user_api_keys.py,sha256=JW0s4B9eQRJNFKtxkZnQO0ABpkbnGIn38bWcMFhTNtg,5308
|
|
106
|
+
robosystems_client/api/user/revoke_user_api_key.py,sha256=CdEU3nCfL0QdLfNn_U2bDb2FgDpnv8QvKlLLlJTe8RQ,6040
|
|
107
|
+
robosystems_client/api/user/update_user.py,sha256=tRgbdsuLgL9Ytu7khe59BELtaSU4luCoTIiFB5908SU,5948
|
|
108
|
+
robosystems_client/api/user/update_user_api_key.py,sha256=DoNGgQts3KpLbvHYMtPI_NwrOu5Vq9IIVNqT2gROPg4,6218
|
|
109
|
+
robosystems_client/api/user/update_user_password.py,sha256=-UiYS4QOucuDCXoU66kSZmhvU4Q8rg8vN0vZywePi5E,6542
|
|
111
110
|
robosystems_client/api/user_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
112
|
-
robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=
|
|
113
|
-
robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256
|
|
111
|
+
robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=NXUxSCHD_7BSomi6bmmoqAW49H6lCZJKj0sFmiYuc-s,7384
|
|
112
|
+
robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=YmFaai9ftjfO7iDpnMuNdlVJlKJ4EMZF_0BbqU55gUg,5592
|
|
114
113
|
robosystems_client/api/user_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
115
|
-
robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=
|
|
116
|
-
robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=
|
|
117
|
-
robosystems_client/api/user_limits/get_user_limits.py,sha256=
|
|
118
|
-
robosystems_client/api/user_limits/get_user_usage.py,sha256=
|
|
114
|
+
robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=vTM2KPoaZMkcMrpsIzMjyxxSr2tsOmWOPoNT59LaIwE,6330
|
|
115
|
+
robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=W8knPsQv73LMOXTSadknZ6zmfZwXZK60oyI4ORUxynA,7494
|
|
116
|
+
robosystems_client/api/user_limits/get_user_limits.py,sha256=2QOkEyP52F4SKL9UkJhO8eqpM7Qyj5kc3KiIkY-dTRA,5618
|
|
117
|
+
robosystems_client/api/user_limits/get_user_usage.py,sha256=Pt4Srj1zjbZur1sn9gDNkiLbb0cnOI5iNxqRAHFnQuQ,5558
|
|
119
118
|
robosystems_client/api/user_subscriptions/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
120
|
-
robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=
|
|
121
|
-
robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=
|
|
122
|
-
robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=
|
|
123
|
-
robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=
|
|
124
|
-
robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=
|
|
125
|
-
robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=
|
|
119
|
+
robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=4tqpksQw0OQ8j5D1B39z6Lozb_eugvmxjrem0z3cCGs,6308
|
|
120
|
+
robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=7w4XKYIO50T0fZhZvj7jnm7TfFNvMymlGyIkndgNlNk,6116
|
|
121
|
+
robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=5VGs-TZbQrijQAnsVQ4v9JECJCduCafWS3soe4Kh-i0,5802
|
|
122
|
+
robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=pPDd5u8lA_kr8lDEUsZ8cxZrXbtZcfQP_9GZ7rCX7Bw,6632
|
|
123
|
+
robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=j32zEoiOpdVMZ4vD9PyPbw8LcJri73cGJ-etev2aT-s,6601
|
|
124
|
+
robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=YYsPxQjQMaOKHSBnvXFR3TUg33ZDALTSiscuhtuW_1M,6736
|
|
126
125
|
robosystems_client/extensions/README.md,sha256=YmiT_7yNt-7ca8kWF2nTBh7OzQXR0Ws2NugkhN_StMc,22381
|
|
127
|
-
robosystems_client/extensions/__init__.py,sha256=
|
|
128
|
-
robosystems_client/extensions/auth_integration.py,sha256=
|
|
129
|
-
robosystems_client/extensions/copy_client.py,sha256=
|
|
130
|
-
robosystems_client/extensions/
|
|
131
|
-
robosystems_client/extensions/
|
|
132
|
-
robosystems_client/extensions/
|
|
126
|
+
robosystems_client/extensions/__init__.py,sha256=RyNvMeVxj1caCE9te-7wsovmfKiSp3N_gz6wKU3rUkk,5135
|
|
127
|
+
robosystems_client/extensions/auth_integration.py,sha256=9dBuLP-dWeZecaf7hXZcJA-L6eiSCeTHIPFIUMmASkU,6610
|
|
128
|
+
robosystems_client/extensions/copy_client.py,sha256=WNXNAkR_55Np32t_FGYSDqJsElAHDltTFx-eXOUiaFY,15934
|
|
129
|
+
robosystems_client/extensions/dataframe_utils.py,sha256=gK1bgkVqBF0TvWVdGQvqWrt-ur_Rw11j8uNtMoulLWE,12312
|
|
130
|
+
robosystems_client/extensions/extensions.py,sha256=Ov7GKoNWn1x3TuF3oZIw-J3uIn0NOUDYPBuQQRdv5jk,6452
|
|
131
|
+
robosystems_client/extensions/operation_client.py,sha256=Ygm-e-Mph3JbEvIiaF0oAuRrg7MuK_Xij9LRrr3In5U,12898
|
|
132
|
+
robosystems_client/extensions/query_client.py,sha256=GSxz_zhuMZaLVrJE7Ud5jXfK3PCRAbytVUXBYjbtjUc,14367
|
|
133
133
|
robosystems_client/extensions/sse_client.py,sha256=LcEtbzbedPIfXvqfPOpJiQGm0Px65DeobbcKyi6VsEM,14457
|
|
134
|
-
robosystems_client/extensions/
|
|
134
|
+
robosystems_client/extensions/token_utils.py,sha256=qCK_s1vBzRnSYwtgncPZRLJVIw3WXmzqNTWjdEEpdgs,10899
|
|
135
|
+
robosystems_client/extensions/utils.py,sha256=t-vUeVSmus6tcSa6mpKWmtGyZqYB51_CqgUIYyTfqXw,16183
|
|
135
136
|
robosystems_client/extensions/tests/__init__.py,sha256=S61GPbL-2pgLVe11uHwHLenpIpzyywWXzXqJypr0T3Q,46
|
|
136
|
-
robosystems_client/extensions/tests/
|
|
137
|
+
robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6awUBu8p_w6nJLgcHByXQ1uBuECq7Uk,9436
|
|
138
|
+
robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
|
|
139
|
+
robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
|
|
137
140
|
robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
|
|
138
|
-
robosystems_client/models/__init__.py,sha256=
|
|
141
|
+
robosystems_client/models/__init__.py,sha256=IBt13btlQzNlHw2nQJHyb5RQ7cibJvfWtF4zT62H3as,19888
|
|
139
142
|
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
140
143
|
robosystems_client/models/add_on_credit_info.py,sha256=h65KAb8yZP_SGpsB2Ref4IaBCthEDYJgFGTd9PjUpfs,3221
|
|
141
144
|
robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
|
|
@@ -154,7 +157,7 @@ robosystems_client/models/agent_response.py,sha256=RKoVxmVdwpnWKDPpnjdCmYdTrTZ0i
|
|
|
154
157
|
robosystems_client/models/agent_response_error_details_type_0.py,sha256=sXLU3BcfMvvt8F0Hw_NhYXjxtUF-F-HAw785a63X5bA,1237
|
|
155
158
|
robosystems_client/models/agent_response_metadata_type_0.py,sha256=3Kn2zUDzbp49MXItEHWyA0ujGIpSvVHehfUIIc4KhP4,1214
|
|
156
159
|
robosystems_client/models/agent_response_tokens_used_type_0.py,sha256=IcDJbOww9ZMAHvS8R4Stk8OJnQ30TVHlp89HN7tGZzg,1227
|
|
157
|
-
robosystems_client/models/api_key_info.py,sha256=
|
|
160
|
+
robosystems_client/models/api_key_info.py,sha256=xXNLsbL4Z-bIRf8jWd7G48iXP4oboiPQTPgGjipylOo,4070
|
|
158
161
|
robosystems_client/models/api_keys_response.py,sha256=SaqZcuXOQkT4rVT4uc8SlKTu_F0NZT5T9WjRFpCIGu8,1882
|
|
159
162
|
robosystems_client/models/auth_response.py,sha256=AuXkzebfEcgIdR3allttnm9x_PYNdXNLfs3xshioqJo,2404
|
|
160
163
|
robosystems_client/models/auth_response_user.py,sha256=QSXztxSkwxAbCkUJBeKcN-_4d-NONtJnMB99cJHmuAw,1173
|
|
@@ -181,7 +184,7 @@ robosystems_client/models/connection_response_provider.py,sha256=th7b2inab-PZWaQ
|
|
|
181
184
|
robosystems_client/models/copy_response.py,sha256=fqmLbYl12xK_feDRJs1lM4_2ZGRvKPs0NIf3aDHfG-Y,8804
|
|
182
185
|
robosystems_client/models/copy_response_error_details_type_0.py,sha256=_Y_o8lWlPlQtQJxIX33URTGkzC4CDslBWloxpUgw4u4,1232
|
|
183
186
|
robosystems_client/models/copy_response_status.py,sha256=Q9U7d7AOb9Ff0G4k4ynqoMgC5MdKXmTKxfIZv4o-7mA,209
|
|
184
|
-
robosystems_client/models/create_api_key_request.py,sha256=
|
|
187
|
+
robosystems_client/models/create_api_key_request.py,sha256=aP-X8CtffeRUXDqG-WzM4gn8_DOwPt5CURmGYIbjgqY,2829
|
|
185
188
|
robosystems_client/models/create_api_key_response.py,sha256=9cqlZDogqxdSXxxHT6PnfClTP-Q35CvfQjNIvPEe1Pw,1797
|
|
186
189
|
robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
|
|
187
190
|
robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
|
|
@@ -292,7 +295,6 @@ robosystems_client/models/selection_criteria.py,sha256=h04f-YIVc6Ljq1Eo-l5buFNTZ
|
|
|
292
295
|
robosystems_client/models/sso_complete_request.py,sha256=_k4oKRh41Z3DVIrP8-bbFE3AenBbflLrY2tw6xg5G34,1482
|
|
293
296
|
robosystems_client/models/sso_exchange_request.py,sha256=b-XqNnBNLMviA6-rPmvfDLw6QELxs9-2tELSqjZJVQ4,2338
|
|
294
297
|
robosystems_client/models/sso_exchange_response.py,sha256=HmcvnafE-AQvzjvVBcGEft7FE6cxW2yJ1iiXtJbLe2A,2030
|
|
295
|
-
robosystems_client/models/sso_login_request.py,sha256=zFkukTRnhKLhmcuypwEI5781XV38wB-5AW32fB25MSE,1391
|
|
296
298
|
robosystems_client/models/sso_token_response.py,sha256=nZUjC2-uvY8kBxXRzf_XLw6Oh9T2jF24sy7tf2BsYZY,1909
|
|
297
299
|
robosystems_client/models/storage_limit_response.py,sha256=MARn28shb1eSTXx7ZoXdkWr_tKRh87bdl49Ois-aVow,4149
|
|
298
300
|
robosystems_client/models/subgraph_quota_response.py,sha256=pBHhUt2CXHR3UondX10XGkpmM7wlyxCqk39Te1LZXz8,4693
|
|
@@ -333,7 +335,7 @@ robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZ
|
|
|
333
335
|
robosystems_client/models/user_usage_summary_response.py,sha256=4hthwTH7bXyzdYlHoekDYOgDLI-stGRH507Bl2rUjYA,3655
|
|
334
336
|
robosystems_client/models/user_usage_summary_response_usage_vs_limits.py,sha256=XrZnRcy1nD3xtKX4svbww7QfEHrN7_XIfeL9j5ZMbyQ,1298
|
|
335
337
|
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
336
|
-
robosystems_client-0.1.
|
|
337
|
-
robosystems_client-0.1.
|
|
338
|
-
robosystems_client-0.1.
|
|
339
|
-
robosystems_client-0.1.
|
|
338
|
+
robosystems_client-0.1.19.dist-info/METADATA,sha256=viPCdM0fMCvj5WbxuPj4u_8DlP2EgiUWjStkC6KgpPs,3717
|
|
339
|
+
robosystems_client-0.1.19.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
340
|
+
robosystems_client-0.1.19.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
|
|
341
|
+
robosystems_client-0.1.19.dist-info/RECORD,,
|