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.

Files changed (99) hide show
  1. robosystems_client/__init__.py +15 -4
  2. robosystems_client/api/agent/auto_select_agent.py +26 -1
  3. robosystems_client/api/agent/batch_process_queries.py +26 -1
  4. robosystems_client/api/agent/execute_specific_agent.py +26 -1
  5. robosystems_client/api/agent/get_agent_metadata.py +26 -1
  6. robosystems_client/api/agent/list_agents.py +21 -1
  7. robosystems_client/api/agent/recommend_agent.py +26 -1
  8. robosystems_client/api/backup/create_backup.py +26 -1
  9. robosystems_client/api/backup/export_backup.py +26 -1
  10. robosystems_client/api/backup/get_backup_download_url.py +21 -1
  11. robosystems_client/api/backup/get_backup_stats.py +26 -1
  12. robosystems_client/api/backup/list_backups.py +21 -1
  13. robosystems_client/api/backup/restore_backup.py +26 -1
  14. robosystems_client/api/connections/create_connection.py +26 -1
  15. robosystems_client/api/connections/create_link_token.py +26 -1
  16. robosystems_client/api/connections/delete_connection.py +26 -1
  17. robosystems_client/api/connections/exchange_link_token.py +26 -1
  18. robosystems_client/api/connections/get_connection.py +26 -1
  19. robosystems_client/api/connections/get_connection_options.py +26 -1
  20. robosystems_client/api/connections/init_o_auth.py +26 -1
  21. robosystems_client/api/connections/list_connections.py +21 -1
  22. robosystems_client/api/connections/oauth_callback.py +26 -1
  23. robosystems_client/api/connections/sync_connection.py +26 -1
  24. robosystems_client/api/copy/copy_data_to_graph.py +26 -1
  25. robosystems_client/api/graph_analytics/get_graph_metrics.py +26 -1
  26. robosystems_client/api/graph_analytics/get_graph_usage_stats.py +21 -1
  27. robosystems_client/api/graph_billing/get_current_graph_bill.py +26 -1
  28. robosystems_client/api/graph_billing/get_graph_billing_history.py +21 -1
  29. robosystems_client/api/graph_billing/get_graph_monthly_bill.py +26 -1
  30. robosystems_client/api/graph_billing/get_graph_usage_details.py +21 -1
  31. robosystems_client/api/graph_credits/check_credit_balance.py +21 -1
  32. robosystems_client/api/graph_credits/check_storage_limits.py +26 -1
  33. robosystems_client/api/graph_credits/get_credit_summary.py +26 -1
  34. robosystems_client/api/graph_credits/get_storage_usage.py +21 -1
  35. robosystems_client/api/graph_credits/list_credit_transactions.py +21 -1
  36. robosystems_client/api/graph_health/get_database_health.py +26 -1
  37. robosystems_client/api/graph_info/get_database_info.py +26 -1
  38. robosystems_client/api/graph_limits/get_graph_limits.py +26 -1
  39. robosystems_client/api/{create → graphs}/create_graph.py +26 -1
  40. robosystems_client/api/{create → graphs}/get_available_extensions.py +1 -1
  41. robosystems_client/api/{user/get_user_graphs.py → graphs/get_graphs.py} +26 -1
  42. robosystems_client/api/{user/select_user_graph.py → graphs/select_graph.py} +30 -5
  43. robosystems_client/api/mcp/call_mcp_tool.py +21 -1
  44. robosystems_client/api/mcp/list_mcp_tools.py +26 -1
  45. robosystems_client/api/operations/cancel_operation.py +25 -0
  46. robosystems_client/api/operations/get_operation_status.py +25 -0
  47. robosystems_client/api/operations/stream_operation_events.py +20 -0
  48. robosystems_client/api/query/execute_cypher_query.py +21 -1
  49. robosystems_client/api/schema/export_graph_schema.py +21 -1
  50. robosystems_client/api/schema/get_graph_schema_info.py +26 -1
  51. robosystems_client/api/schema/list_schema_extensions.py +26 -1
  52. robosystems_client/api/schema/validate_schema.py +26 -1
  53. robosystems_client/api/subgraphs/create_subgraph.py +26 -1
  54. robosystems_client/api/subgraphs/delete_subgraph.py +26 -1
  55. robosystems_client/api/subgraphs/get_subgraph_info.py +26 -1
  56. robosystems_client/api/subgraphs/get_subgraph_quota.py +26 -1
  57. robosystems_client/api/subgraphs/list_subgraphs.py +26 -1
  58. robosystems_client/api/user/create_user_api_key.py +25 -0
  59. robosystems_client/api/user/get_all_credit_summaries.py +25 -0
  60. robosystems_client/api/user/get_current_user.py +25 -0
  61. robosystems_client/api/user/list_user_api_keys.py +25 -0
  62. robosystems_client/api/user/revoke_user_api_key.py +25 -0
  63. robosystems_client/api/user/update_user.py +25 -0
  64. robosystems_client/api/user/update_user_api_key.py +25 -0
  65. robosystems_client/api/user/update_user_password.py +25 -0
  66. robosystems_client/api/user_analytics/get_detailed_user_analytics.py +20 -0
  67. robosystems_client/api/user_analytics/get_user_usage_overview.py +25 -0
  68. robosystems_client/api/user_limits/get_all_shared_repository_limits.py +25 -0
  69. robosystems_client/api/user_limits/get_shared_repository_limits.py +25 -0
  70. robosystems_client/api/user_limits/get_user_limits.py +25 -0
  71. robosystems_client/api/user_limits/get_user_usage.py +25 -0
  72. robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +25 -0
  73. robosystems_client/api/user_subscriptions/get_repository_credits.py +25 -0
  74. robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +25 -0
  75. robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +20 -0
  76. robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +25 -0
  77. robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +25 -0
  78. robosystems_client/extensions/__init__.py +70 -0
  79. robosystems_client/extensions/auth_integration.py +14 -1
  80. robosystems_client/extensions/copy_client.py +32 -22
  81. robosystems_client/extensions/dataframe_utils.py +455 -0
  82. robosystems_client/extensions/extensions.py +16 -0
  83. robosystems_client/extensions/operation_client.py +43 -21
  84. robosystems_client/extensions/query_client.py +109 -12
  85. robosystems_client/extensions/tests/test_dataframe_utils.py +334 -0
  86. robosystems_client/extensions/tests/test_integration.py +1 -1
  87. robosystems_client/extensions/tests/test_token_utils.py +274 -0
  88. robosystems_client/extensions/token_utils.py +417 -0
  89. robosystems_client/extensions/utils.py +32 -2
  90. robosystems_client/models/__init__.py +0 -2
  91. robosystems_client/models/api_key_info.py +20 -0
  92. robosystems_client/models/create_api_key_request.py +20 -0
  93. {robosystems_client-0.1.17.dist-info → robosystems_client-0.1.19.dist-info}/METADATA +1 -1
  94. {robosystems_client-0.1.17.dist-info → robosystems_client-0.1.19.dist-info}/RECORD +97 -95
  95. robosystems_client/api/auth/sso_login.py +0 -177
  96. robosystems_client/models/sso_login_request.py +0 -60
  97. /robosystems_client/api/{create → graphs}/__init__.py +0 -0
  98. {robosystems_client-0.1.17.dist-info → robosystems_client-0.1.19.dist-info}/WHEEL +0 -0
  99. {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 or self.total_steps is None:
297
+ if not self.progress_history:
298
298
  return None
299
299
 
300
300
  latest = self.progress_history[-1]
301
- if latest["percentage"] and latest["percentage"] > 0:
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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robosystems-client
3
- Version: 0.1.17
3
+ Version: 0.1.19
4
4
  Summary: Python Client for RoboSystems financial graph database API
5
5
  Author: RFS LLC
6
6
  License: MIT
@@ -1,4 +1,4 @@
1
- robosystems_client/__init__.py,sha256=dN-OfGzTR_q_TNPqncBFjg5Dnkp_hgmzLq2pZERZ-ZY,252
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=Pi1RYYQLXsTxaiuMIYbZ2o6lWq1z4fYYdu-S3vVywTE,7155
10
- robosystems_client/api/agent/batch_process_queries.py,sha256=d2jqe7zhgbyp8SCMAfZw91IlcsvTNJU3BC5UpGDIte4,7447
11
- robosystems_client/api/agent/execute_specific_agent.py,sha256=BYFgaizbxFSgTX5VkZgbJ4VLPGkaOi4J-FcM1Xo9FdE,7454
12
- robosystems_client/api/agent/get_agent_metadata.py,sha256=8QVI_K8P_xnpajTAUjcayk8ABwc2TI9BnG1KwfI2Jiw,6663
13
- robosystems_client/api/agent/list_agents.py,sha256=RYDjAYYWAkzLtj3Lctfgkb6AgCR4ehbACCqyAIxKlUw,7143
14
- robosystems_client/api/agent/recommend_agent.py,sha256=gyhvH3mReVnVg7AXdzOKxAoKK3BtcdwaV0moJDNoUrs,7457
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=e2aiRlZkKnfUQ-FBIA2uuVcbSQtf_YYqoQmdwA3nu6w,12304
35
- robosystems_client/api/backup/export_backup.py,sha256=MwfkGZCrBmfjkF2cNFUqpD1yZ9aiY6ZbmxYnLkMdsmY,5487
36
- robosystems_client/api/backup/get_backup_download_url.py,sha256=70XSGivIy7hTaa2dVYGUyVWg6oPVsVzZ7eyuyYuGN6Y,7132
37
- robosystems_client/api/backup/get_backup_stats.py,sha256=g2zpu3rJiKJFW4t5ZesMlGBMefhVUuds1ffQ6iKFF58,5037
38
- robosystems_client/api/backup/list_backups.py,sha256=7J4SVT9NcPeOrNP28W_Fz6-JcPCauRRNuXgNIkbfgis,6235
39
- robosystems_client/api/backup/restore_backup.py,sha256=4RLmRtLxQRgL7iYY3BpfaDdyEOeW7tLHQkvuGSMT5Q4,12747
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=F2oXNRL0IFtgnbxPXiO1SLlmHR9KJd8sDWpI8-v65MM,8538
42
- robosystems_client/api/connections/create_link_token.py,sha256=x4U_zXHX-eXaicQY0ICyb1Kt9pjxDIX5jNgtNKhLh6U,7615
43
- robosystems_client/api/connections/delete_connection.py,sha256=t8o3wyV61B4a5NrSrssRsVNhAeHH8keyuTKXvKrfACI,7123
44
- robosystems_client/api/connections/exchange_link_token.py,sha256=QRGgGjhIlhWUANF3lV7rW5JMGypzRmepMIe1TsuOiIE,8250
45
- robosystems_client/api/connections/get_connection.py,sha256=SVP3RrZRknmwbYF2sqLGsssU9CsBGuRH85r16cZ6Ji0,7047
46
- robosystems_client/api/connections/get_connection_options.py,sha256=NBUPB7VV5l702iyPVSdYaBlOpRpjk5QyBZuXUpdFrMU,8104
47
- robosystems_client/api/connections/init_o_auth.py,sha256=4wXDvqlzYQEoDk4xLdjYZV4PLRKfxCwGk71GdDBBWUI,5925
48
- robosystems_client/api/connections/list_connections.py,sha256=UFbgdQiIWNVyWFG6A-MdjCYcRonSYRYPtTfNJAFs8Kg,9351
49
- robosystems_client/api/connections/oauth_callback.py,sha256=3dWdyaoeuzOTRSBO49rwRTwHT0fe08SJ6obQjTEftqI,8493
50
- robosystems_client/api/connections/sync_connection.py,sha256=2ndn5ef3KpZR-AauPtZgf7pPAVH10hYePXhSfn4uzfQ,9209
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=1PW01kjSv8hbl3v3hxHiTUYdaNn74CN3-ltCvIFDtLI,16542
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=OfLl-DvPVB78CJ4TsX7Iei52uj9AVtxdOCWG55SqMx4,7892
58
- robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=IKLhXqVMlqwMq69Xa8VM_AeqhAmGmCwBGPOcZsPGfnY,8968
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=Xx00Lv5mGk04y-LtjsPsAEsKGkP5FOrr_9S_jGoGkLA,7814
61
- robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=pbyVVlKMkNjsM448RSf0RM39xMipxDnm7flLvWI24fI,8177
62
- robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=cu-_yBXQRz8daNZ3ugClZN7cHqNv7DwnztNFsYgzPXU,7823
63
- robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=vtU1z8FPenggeuz3EaX3LRCM1n1L7CWyRv2LR2V6jGc,9626
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=RahxBuqL3A3c-dI9wstvxhyh2gdBQFHhEtaKElVlHSc,8895
66
- robosystems_client/api/graph_credits/check_storage_limits.py,sha256=D1VH-cye9F0ifFtyErpW4GYQIXb0yqrvrUHXN3Qj8K8,6917
67
- robosystems_client/api/graph_credits/get_credit_summary.py,sha256=EnBjOWJVu7yztfDKS8MfXglfQ9EtdXIDwBuVfbVy4Tw,6771
68
- robosystems_client/api/graph_credits/get_storage_usage.py,sha256=Q8_zqHSHJJeWL2YAXQqLzCrmrs9dX8rI6xDEJHF0nyg,7482
69
- robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=GvE4J11OcuNuufrrOZBN6AIYTe8kJcl4zjfNDHWjZX0,13033
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=1nMm8A1yLZGexvz_9QOaLH7Pb-qR3E1vnMP2LX3wPAI,8152
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=DzmIlps11yISx2BIXwgwTPScN7f6jvGcvfKoy7AFrRA,8488
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=GcjyKIWjx68c0N4Om6PLsOHdGx3S0C3yU7fMKUvFUw4,8183
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=41YWugX97bMxhEzGhNxhdp_RskDqXnGVXicA3f-miDA,13481
78
- robosystems_client/api/mcp/list_mcp_tools.py,sha256=e8SjrHegS82T7ZC4Sg1L75LeDQU4i67tPbRJe6vpxTw,7577
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=hZGvnCqzj4JtHPqE6J3kmaUttemAXT7eeeCjgooqJz8,6876
81
- robosystems_client/api/operations/get_operation_status.py,sha256=kzIr_TLxAspGjvrCdxQLHO2X4am7uYe-DK7vn09r99I,7650
82
- robosystems_client/api/operations/stream_operation_events.py,sha256=sLpQOuW_dhYKs7NjyB4rS6R19BAsU_s6qIES5ekYelo,13314
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=5vH6aznIGD1We7nPc7ni72f2HBp3EuS81PHkE9sW-8k,15970
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=TGSnQCylnpY9Km8KnwiogfX3OXnGlEKi2IA4R7mdU_o,6857
87
- robosystems_client/api/schema/get_graph_schema_info.py,sha256=3y5RZEDVv5KbULctcklAjDfzzXG7X9brJcfRv-LQqi8,7920
88
- robosystems_client/api/schema/list_schema_extensions.py,sha256=fk7e3WRBHBvct45I-t1je6uez4psyS_oc8DGl0iPIaE,5531
89
- robosystems_client/api/schema/validate_schema.py,sha256=PRQ26kHS0M-KjtjYxquZo1H-x9vR63KEejSjH5mu4bc,9070
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=Z-Sbsel8_BjU3OkItG6iZsXvZgrG1dgfmut3nbx-uQg,7203
96
- robosystems_client/api/subgraphs/delete_subgraph.py,sha256=42WmJLIKDzP4k0VydfPIAl9hvO8dlQt4OfbJTO3Wmxk,8690
97
- robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=GpGJNUHZKXodjPn9I9dy6hM-zOHjJkgh9cO15UP-q30,7535
98
- robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=QgNYRqPKYl4X5JWOd0N6058pdDNhJ6T1WsQbyQcH4t0,7337
99
- robosystems_client/api/subgraphs/list_subgraphs.py,sha256=MuSWpXj5KZExlHH6GlSADYj1-4C4n0RMeky4XOK0vVM,6235
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=47wJaeD2FXeBOnLBB89-z6BOZUFt1TJiL-zEQ-6kJWA,5197
102
- robosystems_client/api/user/get_all_credit_summaries.py,sha256=qZmm_F33phM2VTcwkSVb9LDF86QyikB4S-CZswsb3qo,6372
103
- robosystems_client/api/user/get_current_user.py,sha256=As4Etks6Eu8hKrLjV8_4KISAHvKQs0mqwNjzKY-X14k,4497
104
- robosystems_client/api/user/get_user_graphs.py,sha256=JK99i4YcRDB-CvolnekQYujnUn9CNqVFBKIbuYE067Q,4563
105
- robosystems_client/api/user/list_user_api_keys.py,sha256=FWndiFjnA9qWi_GqDIkKqbeA9YO1xL3pJuvxrdO2r_4,4450
106
- robosystems_client/api/user/revoke_user_api_key.py,sha256=Nx9LrbAHTcZ8rFAu3VyK3gOFtY8E0IhMzN5cYMP_Zp8,5182
107
- robosystems_client/api/user/select_user_graph.py,sha256=o9Hv8n97FuSxMlb9Fut4syImtjGBcY9_lZ7lc_9F8Y8,5384
108
- robosystems_client/api/user/update_user.py,sha256=lWFTiK980wcSR_K3RXrfJ4z6OvUOf-NzPR1aio0VvlI,5090
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=Nr1z_IyFhRl8XRg8GgBmGZkru-Oq1ngA7WAyhPEbl6c,6661
113
- robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=-wuiyz1q38i-_0BiBhDAvVtQqVYzj_tiWTiD34t0VzI,4734
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=jFYWdzQN4x3Cg3-OxFitg118ptp1xUO05fHDyQbOAZ8,5472
116
- robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=xU2firn7gaNHOcp_ToYivVOzC-xyN7EEzE8BwyljSn8,6636
117
- robosystems_client/api/user_limits/get_user_limits.py,sha256=7seW1GfM8ftc5LTyrr1D14bfSC6pbg3rIuskz8l31DY,4760
118
- robosystems_client/api/user_limits/get_user_usage.py,sha256=WaNVVG1WbSFdjWIC0YSYf7CMWytjl5IxSw98071TJM0,4700
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=F2q79Eijy6OZ7G0WBtO3DgbkOs3lXHYOMcGhatBtVng,5450
121
- robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=a72dgITPPA_-O-Gd85QRTi-C-ljnPt-A4J_7RTzukT8,5258
122
- robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=t4kiHgaUwJ9QGjUtCVdP0oyXtIl7QdcVciQEWSoMngk,4944
123
- robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=eIAzR9rvEl-CVF3ntsFc6nHdtYGzPRkieEGxciNQdn0,5909
124
- robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=JWCz9XTCXidXodJCo72X3Wxq3TGKeYjxFG7OrtxSBeA,5743
125
- robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=rItPqdgQc3oSJickOL0ayfUPfF-k-LoJlYFwFebUSyY,5878
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=FwFIMcDad4jAHHyBxWee7HMd_fMPSL0FVgJM8GSl5V8,3185
128
- robosystems_client/extensions/auth_integration.py,sha256=Nlc40PaTGsPcDzLUVDU9IhSAQWYj3Bi-bsbxMAfNo3E,6251
129
- robosystems_client/extensions/copy_client.py,sha256=7ikmMkWhymmzuA2vSBuiEX4quIYCdeK48gNfoM-7ODM,15377
130
- robosystems_client/extensions/extensions.py,sha256=6ZkNacR2k4V2scTg2MjDy50W85DDO7BjQ8o6nLsPO8E,5888
131
- robosystems_client/extensions/operation_client.py,sha256=INCGhAciIBeLK4sPrG5j2qCNbyITk-Q8DhVqJdr5DxA,11983
132
- robosystems_client/extensions/query_client.py,sha256=Zo408qxHV7dhwjf_d_bqnGKL5O1k9WPFANTQLk2Nlyk,11471
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/utils.py,sha256=6yQJFg6---nbD26IS_JxGiFr3lkVlIsSjlDXSvlIxAw,15217
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/test_integration.py,sha256=gYhttWufERNmlY7j-CnWzQhFCDF70rBFVw7JDzgT1-M,15443
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=KTNSDUvysC4jB_NwXTjT1rHJgrhVfpY1xG8aISzS_uA,19956
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=7B-BRKFsLHC-3VsvT3xuWu49Flo3ruaI-MywB5699SE,3421
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=yPeQwvtQtcVET6dxfbLjkCDv8UL4Ox_L3D6gXAVhnjM,2134
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.17.dist-info/METADATA,sha256=52Ocd14U0XfY3a9fw1jADc67ib3llHi339dLPSojbIU,3717
337
- robosystems_client-0.1.17.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
338
- robosystems_client-0.1.17.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
339
- robosystems_client-0.1.17.dist-info/RECORD,,
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,,