robosystems-client 0.1.19__py3-none-any.whl → 0.2.1__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 +9 -3
- robosystems_client/api/agent/batch_process_queries.py +8 -3
- robosystems_client/api/agent/execute_specific_agent.py +10 -3
- robosystems_client/api/agent/get_agent_metadata.py +3 -0
- robosystems_client/api/agent/list_agents.py +3 -0
- robosystems_client/api/agent/recommend_agent.py +3 -0
- robosystems_client/api/auth/check_password_strength.py +2 -0
- robosystems_client/api/auth/complete_sso_auth.py +3 -0
- robosystems_client/api/auth/forgot_password.py +6 -3
- robosystems_client/api/auth/generate_sso_token.py +3 -0
- robosystems_client/api/auth/get_captcha_config.py +1 -0
- robosystems_client/api/auth/get_current_auth_user.py +3 -0
- robosystems_client/api/auth/get_password_policy.py +1 -0
- robosystems_client/api/auth/login_user.py +7 -3
- robosystems_client/api/auth/logout_user.py +2 -0
- robosystems_client/api/auth/refresh_auth_session.py +3 -0
- robosystems_client/api/auth/register_user.py +11 -6
- robosystems_client/api/auth/resend_verification_email.py +8 -3
- robosystems_client/api/auth/reset_password.py +3 -0
- robosystems_client/api/auth/sso_token_exchange.py +7 -3
- robosystems_client/api/auth/validate_reset_token.py +2 -0
- robosystems_client/api/auth/verify_email.py +3 -0
- robosystems_client/api/backup/create_backup.py +13 -7
- robosystems_client/api/backup/get_backup_download_url.py +8 -3
- robosystems_client/api/backup/get_backup_stats.py +2 -0
- robosystems_client/api/backup/list_backups.py +6 -4
- robosystems_client/api/backup/restore_backup.py +27 -8
- robosystems_client/api/connections/create_connection.py +13 -7
- robosystems_client/api/connections/create_link_token.py +8 -3
- robosystems_client/api/connections/delete_connection.py +12 -7
- robosystems_client/api/connections/exchange_link_token.py +8 -3
- robosystems_client/api/connections/get_connection.py +8 -3
- robosystems_client/api/connections/get_connection_options.py +7 -3
- robosystems_client/api/connections/init_o_auth.py +2 -0
- robosystems_client/api/connections/list_connections.py +7 -3
- robosystems_client/api/connections/oauth_callback.py +9 -3
- robosystems_client/api/connections/sync_connection.py +12 -7
- robosystems_client/api/graph_analytics/get_graph_metrics.py +12 -7
- robosystems_client/api/graph_analytics/get_graph_usage_stats.py +11 -7
- robosystems_client/api/graph_billing/get_current_graph_bill.py +8 -3
- robosystems_client/api/graph_billing/get_graph_billing_history.py +8 -3
- robosystems_client/api/graph_billing/get_graph_monthly_bill.py +9 -3
- robosystems_client/api/graph_billing/get_graph_usage_details.py +9 -3
- robosystems_client/api/graph_credits/check_credit_balance.py +8 -3
- robosystems_client/api/graph_credits/check_storage_limits.py +8 -3
- robosystems_client/api/graph_credits/get_credit_summary.py +8 -3
- robosystems_client/api/graph_credits/get_storage_usage.py +7 -3
- robosystems_client/api/graph_credits/list_credit_transactions.py +8 -3
- robosystems_client/api/graph_health/get_database_health.py +8 -3
- robosystems_client/api/graph_info/get_database_info.py +8 -3
- robosystems_client/api/graph_limits/get_graph_limits.py +8 -3
- robosystems_client/api/graphs/create_graph.py +6 -4
- robosystems_client/api/graphs/get_available_extensions.py +1 -0
- robosystems_client/api/graphs/get_graphs.py +2 -0
- robosystems_client/api/graphs/select_graph.py +8 -3
- robosystems_client/api/mcp/call_mcp_tool.py +17 -7
- robosystems_client/api/mcp/list_mcp_tools.py +11 -7
- robosystems_client/api/operations/cancel_operation.py +9 -3
- robosystems_client/api/operations/get_operation_status.py +8 -3
- robosystems_client/api/operations/stream_operation_events.py +8 -3
- robosystems_client/api/query/execute_cypher_query.py +48 -15
- robosystems_client/api/schema/export_graph_schema.py +2 -0
- robosystems_client/api/schema/{get_graph_schema_info.py → get_graph_schema.py} +37 -47
- robosystems_client/api/schema/validate_schema.py +9 -4
- robosystems_client/api/service_offerings/get_service_offerings.py +2 -0
- robosystems_client/api/status/get_service_status.py +1 -0
- robosystems_client/api/subgraphs/create_subgraph.py +2 -0
- robosystems_client/api/subgraphs/delete_subgraph.py +14 -6
- robosystems_client/api/subgraphs/get_subgraph_info.py +13 -6
- robosystems_client/api/subgraphs/get_subgraph_quota.py +9 -3
- robosystems_client/api/subgraphs/list_subgraphs.py +2 -0
- robosystems_client/api/tables/delete_file_v1_graphs_graph_id_tables_files_file_id_delete.py +287 -0
- robosystems_client/api/tables/get_file_info_v1_graphs_graph_id_tables_files_file_id_get.py +283 -0
- robosystems_client/api/tables/get_upload_url_v1_graphs_graph_id_tables_table_name_files_post.py +260 -0
- robosystems_client/api/tables/ingest_tables_v1_graphs_graph_id_tables_ingest_post.py +251 -0
- robosystems_client/api/tables/list_table_files_v1_graphs_graph_id_tables_table_name_files_get.py +283 -0
- robosystems_client/api/{backup/export_backup.py → tables/list_tables_v1_graphs_graph_id_tables_get.py} +36 -36
- robosystems_client/api/{schema/list_schema_extensions.py → tables/query_tables_v1_graphs_graph_id_tables_query_post.py} +67 -43
- robosystems_client/api/tables/update_file_v1_graphs_graph_id_tables_files_file_id_patch.py +306 -0
- robosystems_client/api/user/create_user_api_key.py +2 -0
- robosystems_client/api/user/get_all_credit_summaries.py +6 -3
- robosystems_client/api/user/get_current_user.py +2 -0
- robosystems_client/api/user/list_user_api_keys.py +2 -0
- robosystems_client/api/user/revoke_user_api_key.py +7 -3
- robosystems_client/api/user/update_user.py +2 -0
- robosystems_client/api/user/update_user_api_key.py +2 -0
- robosystems_client/api/user/update_user_password.py +8 -3
- robosystems_client/api/user_analytics/get_detailed_user_analytics.py +2 -0
- robosystems_client/api/user_analytics/get_user_usage_overview.py +2 -0
- robosystems_client/api/user_limits/get_all_shared_repository_limits.py +2 -0
- robosystems_client/api/user_limits/get_shared_repository_limits.py +6 -4
- robosystems_client/api/user_limits/get_user_limits.py +3 -0
- robosystems_client/api/user_limits/get_user_usage.py +2 -0
- robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +11 -6
- robosystems_client/api/user_subscriptions/get_repository_credits.py +7 -3
- robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +7 -3
- robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +7 -3
- robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +8 -3
- robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +12 -6
- robosystems_client/extensions/README.md +1 -212
- robosystems_client/extensions/__init__.py +12 -28
- robosystems_client/extensions/extensions.py +3 -17
- robosystems_client/extensions/operation_client.py +12 -4
- robosystems_client/extensions/query_client.py +38 -24
- robosystems_client/extensions/sse_client.py +11 -0
- robosystems_client/extensions/table_ingest_client.py +466 -0
- robosystems_client/models/__init__.py +39 -29
- robosystems_client/models/backup_restore_request.py +1 -12
- robosystems_client/models/bulk_ingest_request.py +50 -0
- robosystems_client/models/bulk_ingest_response.py +137 -0
- robosystems_client/models/create_graph_request.py +4 -3
- robosystems_client/models/delete_file_v1_graphs_graph_id_tables_files_file_id_delete_response_delete_file_v1_graphs_graph_id_tables_files_file_id_delete.py +47 -0
- robosystems_client/models/file_update_request.py +62 -0
- robosystems_client/models/file_upload_request.py +51 -0
- robosystems_client/models/file_upload_response.py +83 -0
- robosystems_client/models/{get_graph_schema_info_response_getgraphschemainfo.py → get_file_info_v1_graphs_graph_id_tables_files_file_id_get_response_get_file_info_v1_graphs_graph_id_tables_files_file_id_get.py} +8 -5
- robosystems_client/models/{copy_response_error_details_type_0.py → get_graph_schema_response_getgraphschema.py} +5 -5
- robosystems_client/models/list_table_files_v1_graphs_graph_id_tables_table_name_files_get_response_list_table_files_v1_graphs_graph_id_tables_table_name_files_get.py +47 -0
- robosystems_client/models/table_info.py +107 -0
- robosystems_client/models/table_ingest_result.py +107 -0
- robosystems_client/models/table_list_response.py +81 -0
- robosystems_client/models/table_query_request.py +40 -0
- robosystems_client/models/table_query_response.py +92 -0
- robosystems_client/models/{list_schema_extensions_response_listschemaextensions.py → update_file_v1_graphs_graph_id_tables_files_file_id_patch_response_update_file_v1_graphs_graph_id_tables_files_file_id_patch.py} +8 -5
- {robosystems_client-0.1.19.dist-info → robosystems_client-0.2.1.dist-info}/METADATA +25 -12
- {robosystems_client-0.1.19.dist-info → robosystems_client-0.2.1.dist-info}/RECORD +129 -122
- robosystems_client/api/copy/copy_data_to_graph.py +0 -486
- robosystems_client/extensions/copy_client.py +0 -479
- robosystems_client/models/copy_response.py +0 -275
- robosystems_client/models/copy_response_status.py +0 -11
- robosystems_client/models/data_frame_copy_request.py +0 -125
- robosystems_client/models/data_frame_copy_request_format.py +0 -10
- robosystems_client/models/s3_copy_request.py +0 -378
- robosystems_client/models/s3_copy_request_file_format.py +0 -12
- robosystems_client/models/s3_copy_request_s3_url_style_type_0.py +0 -9
- robosystems_client/models/url_copy_request.py +0 -157
- robosystems_client/models/url_copy_request_file_format.py +0 -10
- robosystems_client/models/url_copy_request_headers_type_0.py +0 -44
- /robosystems_client/api/{copy → tables}/__init__.py +0 -0
- {robosystems_client-0.1.19.dist-info → robosystems_client-0.2.1.dist-info}/WHEEL +0 -0
- {robosystems_client-0.1.19.dist-info → robosystems_client-0.2.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robosystems-client
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Python Client for RoboSystems financial graph database API
|
|
5
5
|
Author: RFS LLC
|
|
6
6
|
License: MIT
|
|
@@ -32,8 +32,8 @@ Requires-Dist: pydantic>=2.11.7
|
|
|
32
32
|
Requires-Dist: python-dateutil>=2.8.0
|
|
33
33
|
Requires-Dist: typing-extensions>=4.0.0
|
|
34
34
|
Provides-Extra: all
|
|
35
|
-
Requires-Dist: httpx>=0.28.1; extra == 'all'
|
|
36
35
|
Requires-Dist: pandas>=1.5.0; extra == 'all'
|
|
36
|
+
Requires-Dist: pyarrow>=10.0.0; extra == 'all'
|
|
37
37
|
Provides-Extra: dev
|
|
38
38
|
Requires-Dist: build>=1.0.0; extra == 'dev'
|
|
39
39
|
Requires-Dist: openapi-python-client>=0.21.8; extra == 'dev'
|
|
@@ -44,8 +44,11 @@ Requires-Dist: pytest>=8.3.5; extra == 'dev'
|
|
|
44
44
|
Requires-Dist: ruff>=0.12; extra == 'dev'
|
|
45
45
|
Requires-Dist: twine>=5.0.0; extra == 'dev'
|
|
46
46
|
Provides-Extra: extensions
|
|
47
|
-
Requires-Dist: httpx>=0.28.1; extra == 'extensions'
|
|
48
47
|
Requires-Dist: pandas>=1.5.0; extra == 'extensions'
|
|
48
|
+
Requires-Dist: pyarrow>=10.0.0; extra == 'extensions'
|
|
49
|
+
Provides-Extra: tables
|
|
50
|
+
Requires-Dist: pandas>=1.5.0; extra == 'tables'
|
|
51
|
+
Requires-Dist: pyarrow>=10.0.0; extra == 'tables'
|
|
49
52
|
Description-Content-Type: text/markdown
|
|
50
53
|
|
|
51
54
|
# RoboSystems Python Client
|
|
@@ -58,29 +61,39 @@ Official Python Client for the RoboSystems Financial Knowledge Graph API. Access
|
|
|
58
61
|
## Features
|
|
59
62
|
|
|
60
63
|
- **Type-safe API client** with full type hints and Pydantic models
|
|
61
|
-
- **Async/await support** for high-performance applications
|
|
64
|
+
- **Async/await support** for high-performance applications
|
|
65
|
+
- **Table ingestion** with simplified Parquet file uploads
|
|
62
66
|
- **Streaming support** for memory-efficient processing of large result sets
|
|
63
67
|
- **Financial AI Agent** integration for natural language queries
|
|
64
|
-
- **Comprehensive error handling** with
|
|
68
|
+
- **Comprehensive error handling** with typed exceptions
|
|
65
69
|
|
|
66
70
|
## Installation
|
|
67
71
|
|
|
68
72
|
```bash
|
|
73
|
+
# Basic installation
|
|
69
74
|
pip install robosystems-client
|
|
75
|
+
|
|
76
|
+
# With table ingestion support (for uploading Parquet files)
|
|
77
|
+
pip install robosystems-client[tables]
|
|
78
|
+
|
|
79
|
+
# All optional features
|
|
80
|
+
pip install robosystems-client[all]
|
|
70
81
|
```
|
|
71
82
|
|
|
83
|
+
See the [examples](./examples) directory for usage guides.
|
|
84
|
+
|
|
72
85
|
## API Reference
|
|
73
86
|
|
|
74
|
-
- API reference
|
|
75
|
-
- API documentation
|
|
76
|
-
- OpenAPI specification
|
|
87
|
+
- [API reference](https://api.robosystems.ai)
|
|
88
|
+
- [API documentation](https://api.robosystems.ai/docs)
|
|
89
|
+
- [OpenAPI specification](https://api.robosystems.ai/openapi.json)
|
|
77
90
|
|
|
78
91
|
## Support
|
|
79
92
|
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
93
|
+
- [Issues](https://github.com/RoboFinSystems/robosystems-python-client/issues)
|
|
94
|
+
- [Discussions](https://github.com/RoboFinSystems/robosystems/discussions)
|
|
95
|
+
- [Projects](https://github.com/RoboFinSystems/robosystems/projects)
|
|
96
|
+
- [Wiki](https://github.com/RoboFinSystems/robosystems/wiki)
|
|
84
97
|
|
|
85
98
|
## License
|
|
86
99
|
|
|
@@ -6,131 +6,136 @@ 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=Ll7ljJCN0XhlR9cb98WpnqTCAdnRSh0U8umch_y_dFU,8026
|
|
10
|
+
robosystems_client/api/agent/batch_process_queries.py,sha256=4dpNMNC_wiflyLrTstBBTpxeVr_I6rrrLeYOvd2PhdI,8317
|
|
11
|
+
robosystems_client/api/agent/execute_specific_agent.py,sha256=8d1Qzvj3QK_3N_9Vqq2HhHVBIyIsvqPwk9cepqttFIU,8326
|
|
12
|
+
robosystems_client/api/agent/get_agent_metadata.py,sha256=CWuNdc7RFCh5nNCxcB4_NQ7_zJLc43gHase3y4y5uYE,7531
|
|
13
|
+
robosystems_client/api/agent/list_agents.py,sha256=yyJW3x5tncXdz3ixUYP7RRo4tyk3r4bo4XJYg--4Jg8,7876
|
|
14
|
+
robosystems_client/api/agent/recommend_agent.py,sha256=8wuomMI6wE_HIslMChMUre1ukHHvBz7S1K8vAFC0wPQ,8325
|
|
15
15
|
robosystems_client/api/auth/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
16
|
-
robosystems_client/api/auth/check_password_strength.py,sha256=
|
|
17
|
-
robosystems_client/api/auth/complete_sso_auth.py,sha256=
|
|
18
|
-
robosystems_client/api/auth/forgot_password.py,sha256
|
|
19
|
-
robosystems_client/api/auth/generate_sso_token.py,sha256
|
|
20
|
-
robosystems_client/api/auth/get_captcha_config.py,sha256=
|
|
21
|
-
robosystems_client/api/auth/get_current_auth_user.py,sha256=
|
|
22
|
-
robosystems_client/api/auth/get_password_policy.py,sha256=
|
|
23
|
-
robosystems_client/api/auth/login_user.py,sha256=
|
|
24
|
-
robosystems_client/api/auth/logout_user.py,sha256=
|
|
25
|
-
robosystems_client/api/auth/refresh_auth_session.py,sha256=
|
|
26
|
-
robosystems_client/api/auth/register_user.py,sha256=
|
|
27
|
-
robosystems_client/api/auth/resend_verification_email.py,sha256=
|
|
28
|
-
robosystems_client/api/auth/reset_password.py,sha256=
|
|
29
|
-
robosystems_client/api/auth/sso_token_exchange.py,sha256
|
|
30
|
-
robosystems_client/api/auth/validate_reset_token.py,sha256=
|
|
31
|
-
robosystems_client/api/auth/verify_email.py,sha256=
|
|
16
|
+
robosystems_client/api/auth/check_password_strength.py,sha256=4oVo056LpbSGHVH733tjRdZFt0uJ_fJR7IFz1nvxB0E,4673
|
|
17
|
+
robosystems_client/api/auth/complete_sso_auth.py,sha256=z_-ss36X6HjAGKfon5t2yzlQTWSc7VemffwjUaX010s,4888
|
|
18
|
+
robosystems_client/api/auth/forgot_password.py,sha256=-fwDX6_cL3388FQGhXrxBkZzJTTVVB4ACW1lcTOrU1M,5293
|
|
19
|
+
robosystems_client/api/auth/generate_sso_token.py,sha256=Tc4T8sTrQvG_9dGbkffkQiC63rZrcZaQxp-G_FNvut8,5586
|
|
20
|
+
robosystems_client/api/auth/get_captcha_config.py,sha256=hmeeSdhX7G89bJb8fr5i9JVImd3r02KomroO5GVgFC8,2194
|
|
21
|
+
robosystems_client/api/auth/get_current_auth_user.py,sha256=LjsV-d7ioMrpZr_6pQvqBnJS90fNgXb648ahttZoVoA,5306
|
|
22
|
+
robosystems_client/api/auth/get_password_policy.py,sha256=Fg495FDhWM3N799lPJ5y2cTROouWcN3lCQxJG0El6kY,3483
|
|
23
|
+
robosystems_client/api/auth/login_user.py,sha256=f1YsrLnFS3VHApyW0g1DZEm6L8D13OyoSfTVVkDXwvE,4738
|
|
24
|
+
robosystems_client/api/auth/logout_user.py,sha256=yVWCHGjBD7Fz0WXSro6rkgV-Tgxy0l5H3Z53LxRKyJ8,4661
|
|
25
|
+
robosystems_client/api/auth/refresh_auth_session.py,sha256=qYTmne33gahniBJwqfITrYT12bcEYCcwEIEt5n12oOA,4857
|
|
26
|
+
robosystems_client/api/auth/register_user.py,sha256=o4pbS0DFYZncYhRK3PPLMHWhSiy0wU1qEtaSIdoX9FE,5570
|
|
27
|
+
robosystems_client/api/auth/resend_verification_email.py,sha256=TzzPsDR6l1G6UZMxH-vh0FbX5FjQPkxxOfQfKbl9z28,5948
|
|
28
|
+
robosystems_client/api/auth/reset_password.py,sha256=XmN977sF98BAPXhFPd4t_4BGV2WMcjdGeQAeRO22yGA,4860
|
|
29
|
+
robosystems_client/api/auth/sso_token_exchange.py,sha256=re4MjtkrSctn5PC7kPAR7p8Zg3lnjiw3BHwFUIEu31Y,5092
|
|
30
|
+
robosystems_client/api/auth/validate_reset_token.py,sha256=9_iAB156LsApX_DEM750wyb1hZ9aTSxTBld1l8Swn54,4566
|
|
31
|
+
robosystems_client/api/auth/verify_email.py,sha256=UmSdXbyioHf2WuEAIaSa0d9cZyTS0Md3vs2n9OqWa6w,4954
|
|
32
32
|
robosystems_client/api/backup/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
33
|
-
robosystems_client/api/backup/create_backup.py,sha256=
|
|
34
|
-
robosystems_client/api/backup/
|
|
35
|
-
robosystems_client/api/backup/
|
|
36
|
-
robosystems_client/api/backup/
|
|
37
|
-
robosystems_client/api/backup/
|
|
38
|
-
robosystems_client/api/backup/restore_backup.py,sha256=f5vfHZ6KsJv3cO3aJgtDjwYErVpwbO9eLVQCAm7vg64,13612
|
|
33
|
+
robosystems_client/api/backup/create_backup.py,sha256=5WQ7-VwBH4ahfPjWsEHhtOPdNa4E9n1eh0LbM1HDsvE,13179
|
|
34
|
+
robosystems_client/api/backup/get_backup_download_url.py,sha256=0tSBx-yTJ5hCozp8RLirI-DwEUmedBsKVlrrc9nuxPY,7867
|
|
35
|
+
robosystems_client/api/backup/get_backup_stats.py,sha256=FL4wGCT3RZOSbOrAG2S72hNhzPM7XGhzoTGpRU6qak0,5904
|
|
36
|
+
robosystems_client/api/backup/list_backups.py,sha256=k74V2kWTk2SUwMe5FDxflDOKnmRLvYkpj3qxbwl7ru4,6983
|
|
37
|
+
robosystems_client/api/backup/restore_backup.py,sha256=M5_3Y0OxlPdgyQeEsMin4l37r4UjPO00vydhJPMR4DM,13990
|
|
39
38
|
robosystems_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
40
|
-
robosystems_client/api/connections/create_connection.py,sha256=
|
|
41
|
-
robosystems_client/api/connections/create_link_token.py,sha256=
|
|
42
|
-
robosystems_client/api/connections/delete_connection.py,sha256=
|
|
43
|
-
robosystems_client/api/connections/exchange_link_token.py,sha256=
|
|
44
|
-
robosystems_client/api/connections/get_connection.py,sha256=
|
|
45
|
-
robosystems_client/api/connections/get_connection_options.py,sha256=
|
|
46
|
-
robosystems_client/api/connections/init_o_auth.py,sha256=
|
|
47
|
-
robosystems_client/api/connections/list_connections.py,sha256=
|
|
48
|
-
robosystems_client/api/connections/oauth_callback.py,sha256=
|
|
49
|
-
robosystems_client/api/connections/sync_connection.py,sha256=
|
|
50
|
-
robosystems_client/api/copy/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
51
|
-
robosystems_client/api/copy/copy_data_to_graph.py,sha256=HWJnASTgOttHv9_rqeQXlQ78JdgWnbsxf-lfLmtPk_w,17407
|
|
39
|
+
robosystems_client/api/connections/create_connection.py,sha256=qG7s8UT90gZaEmqYfJRXUif3COG77qArsolnC13xnDg,9425
|
|
40
|
+
robosystems_client/api/connections/create_link_token.py,sha256=bCKdJz2rQcrYOLeOfHO-gv76l4gZUUWYOEj2ytfGFFU,8485
|
|
41
|
+
robosystems_client/api/connections/delete_connection.py,sha256=0FI-ywyA7Sk7aEZan91eSW42lYOlg8FhmuUSoOaUD_0,8009
|
|
42
|
+
robosystems_client/api/connections/exchange_link_token.py,sha256=mK1iFpCQ_zs0RehSOWqG560zDL1tQIANPmfonR-K42k,9120
|
|
43
|
+
robosystems_client/api/connections/get_connection.py,sha256=dny4gPLJOgH6w101plRedtmdyro9yf3SI5D2d7ekLzY,7917
|
|
44
|
+
robosystems_client/api/connections/get_connection_options.py,sha256=U2OdCa9-44c9cNuN5M8hYZj2qecHnAgZZYELuVJarRU,8973
|
|
45
|
+
robosystems_client/api/connections/init_o_auth.py,sha256=oW62gjl2ZxIaOVCc6Gwwjjnzvchyqr0I8RW6ahCLo7g,6792
|
|
46
|
+
robosystems_client/api/connections/list_connections.py,sha256=KBH-Wqlnz23vvrtXddnKpRD0cWl6c5eoVuYNRZ79WJc,10085
|
|
47
|
+
robosystems_client/api/connections/oauth_callback.py,sha256=49T3eseUb0_Xo-pV7isN4Zw0fRjl2AYeJFoP7ClBKUc,9364
|
|
48
|
+
robosystems_client/api/connections/sync_connection.py,sha256=c1kQ_Bo02FMxCyJJ4o2e-RjhiHAV5Pr-mGvuib6mlVU,10095
|
|
52
49
|
robosystems_client/api/graph_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
53
|
-
robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=
|
|
54
|
-
robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=
|
|
50
|
+
robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=Pn62WTi7E28gkCpjOE9uTbfh_GxD2iLiwtmkV0qfITE,8778
|
|
51
|
+
robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=SgJZJ9S4R8nkhVlar0wWAs_teZofulVdnb2ZxZblum4,9718
|
|
55
52
|
robosystems_client/api/graph_billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
56
|
-
robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256
|
|
57
|
-
robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=
|
|
58
|
-
robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=
|
|
59
|
-
robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256
|
|
53
|
+
robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256=X2qTNePS4coFMvUA9hMcCrgPAw_jCBQHyU6NPcp5xFM,8684
|
|
54
|
+
robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=ooRo1Gz5PXJACBX1YnwgOZ1ertDr0qvqdTATqzRXcy8,8912
|
|
55
|
+
robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=iJWc4eH4R2xoqZHOD2uhXpbCTMeTaLF7uzHrLivZHWI,8694
|
|
56
|
+
robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=-6AzKUPoY7B4ZCrqJq1sP5XnneA3wA8D1asrVKTXr1k,10362
|
|
60
57
|
robosystems_client/api/graph_credits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
61
|
-
robosystems_client/api/graph_credits/check_credit_balance.py,sha256=
|
|
62
|
-
robosystems_client/api/graph_credits/check_storage_limits.py,sha256=
|
|
63
|
-
robosystems_client/api/graph_credits/get_credit_summary.py,sha256=
|
|
64
|
-
robosystems_client/api/graph_credits/get_storage_usage.py,sha256=
|
|
65
|
-
robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=
|
|
58
|
+
robosystems_client/api/graph_credits/check_credit_balance.py,sha256=Kif02wUkqlSmBZa5vhrJXXHWrtU90vfSRRe_qXyw7ak,9630
|
|
59
|
+
robosystems_client/api/graph_credits/check_storage_limits.py,sha256=4LJQzavrH6pATxM-fwjZ-e2VhWUAmT62F2v138kXUVo,7787
|
|
60
|
+
robosystems_client/api/graph_credits/get_credit_summary.py,sha256=PecXXoaJqbtF4Tl0NwCTzhcTRvWP_qiggybPR40lSfo,7641
|
|
61
|
+
robosystems_client/api/graph_credits/get_storage_usage.py,sha256=mUDDS1qJgN4KskGNizsFghs_HVOtphUjzI43-64Oj6c,8216
|
|
62
|
+
robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=oTEzB1VjzXY36TdsmEaQu9Frwp6DvJrk6zaL07ow9jg,13768
|
|
66
63
|
robosystems_client/api/graph_health/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
67
|
-
robosystems_client/api/graph_health/get_database_health.py,sha256=
|
|
64
|
+
robosystems_client/api/graph_health/get_database_health.py,sha256=ERa2_lYZAGfFrsTdmx9zBbK7t5xSXxhrh083jZ3BE6Y,9022
|
|
68
65
|
robosystems_client/api/graph_info/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
69
|
-
robosystems_client/api/graph_info/get_database_info.py,sha256=
|
|
66
|
+
robosystems_client/api/graph_info/get_database_info.py,sha256=6ud1V185vgIGL3z7b64Y9VK5vqaHrck2Io_JFAl4X1s,9358
|
|
70
67
|
robosystems_client/api/graph_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
71
|
-
robosystems_client/api/graph_limits/get_graph_limits.py,sha256=
|
|
68
|
+
robosystems_client/api/graph_limits/get_graph_limits.py,sha256=JFNdgsKYUCVNutRYDXkFhQDbnU99lam-9I2Bgjte0IQ,9053
|
|
72
69
|
robosystems_client/api/graphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
73
|
-
robosystems_client/api/graphs/create_graph.py,sha256=
|
|
74
|
-
robosystems_client/api/graphs/get_available_extensions.py,sha256=
|
|
75
|
-
robosystems_client/api/graphs/get_graphs.py,sha256=
|
|
76
|
-
robosystems_client/api/graphs/select_graph.py,sha256
|
|
70
|
+
robosystems_client/api/graphs/create_graph.py,sha256=wQdtf8tNQyGss1wrttqQqZrBV7IcviP1XpVZhmw4vWM,13396
|
|
71
|
+
robosystems_client/api/graphs/get_available_extensions.py,sha256=l0a-ObNY4jDojc7lm5s0JiEXyNHgE5tk1A7hrD-xGwo,3497
|
|
72
|
+
robosystems_client/api/graphs/get_graphs.py,sha256=qaQXjv3TNeZJ22T4jpfsdfuPISynXX6pJ_mKBcd6Y80,5418
|
|
73
|
+
robosystems_client/api/graphs/select_graph.py,sha256=ux75T_I6dS788xBydv_XPjbOzf9NtDlAHa5LivRSnqY,6222
|
|
77
74
|
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=
|
|
75
|
+
robosystems_client/api/mcp/call_mcp_tool.py,sha256=XYmOt4LCu4ar2NCBxALmzOMSzRQboa67M-a6oM1q62c,14197
|
|
76
|
+
robosystems_client/api/mcp/list_mcp_tools.py,sha256=r5VgLvoyh4u9q1gJpzN2uTZnt7u1h58GwtPxND22UYc,8462
|
|
80
77
|
robosystems_client/api/operations/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
81
|
-
robosystems_client/api/operations/cancel_operation.py,sha256=
|
|
82
|
-
robosystems_client/api/operations/get_operation_status.py,sha256=
|
|
83
|
-
robosystems_client/api/operations/stream_operation_events.py,sha256=
|
|
78
|
+
robosystems_client/api/operations/cancel_operation.py,sha256=3IiKfMfSANQS_inSg9aZb7x8sUHW5E6jPl7-MP3xOvI,7740
|
|
79
|
+
robosystems_client/api/operations/get_operation_status.py,sha256=r77igqYIVW9x34tlNFiWrueXGYzfTrNJ3Bsb-qb7urI,8513
|
|
80
|
+
robosystems_client/api/operations/stream_operation_events.py,sha256=1pl-BNZSaNynIKwaT03U8WXEbL_B5KOPSZuEb1vS4CM,14042
|
|
84
81
|
robosystems_client/api/query/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
85
|
-
robosystems_client/api/query/execute_cypher_query.py,sha256=
|
|
82
|
+
robosystems_client/api/query/execute_cypher_query.py,sha256=CZrjL8jYsd_OCYF8zDJfZlI_5ERD13mhXtIrW1reEOY,18069
|
|
86
83
|
robosystems_client/api/schema/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
87
|
-
robosystems_client/api/schema/export_graph_schema.py,sha256=
|
|
88
|
-
robosystems_client/api/schema/
|
|
89
|
-
robosystems_client/api/schema/
|
|
90
|
-
robosystems_client/api/schema/validate_schema.py,sha256=woH7XvKxHzluCRYXvFnDATvTtStd5_8Jyu3NPbmSBrw,9935
|
|
84
|
+
robosystems_client/api/schema/export_graph_schema.py,sha256=rcx9UzQHTaTQCUEUI2HIqJ5fj_n8L096-8awrt4qfa8,7589
|
|
85
|
+
robosystems_client/api/schema/get_graph_schema.py,sha256=a86EAFzysQdjowI4eJF25MeRVicc3IEQSZi-3Dl16jA,8503
|
|
86
|
+
robosystems_client/api/schema/validate_schema.py,sha256=HrpuuE1PbIp6n38SZ2kdnic4nUoArxPCgYdeIDJFjm0,9956
|
|
91
87
|
robosystems_client/api/service_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
92
|
-
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=
|
|
88
|
+
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=dKTfYCTekTmZsJby8r6y88qIcu57uWrMJ_R2-uTNzL8,6159
|
|
93
89
|
robosystems_client/api/status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
94
|
-
robosystems_client/api/status/get_service_status.py,sha256=
|
|
90
|
+
robosystems_client/api/status/get_service_status.py,sha256=eRAk7piCdm3R9A0MfmMardMEhFmzjydFo9SDLjAbQKA,3306
|
|
95
91
|
robosystems_client/api/subgraphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
96
|
-
robosystems_client/api/subgraphs/create_subgraph.py,sha256=
|
|
97
|
-
robosystems_client/api/subgraphs/delete_subgraph.py,sha256=
|
|
98
|
-
robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=
|
|
99
|
-
robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=
|
|
100
|
-
robosystems_client/api/subgraphs/list_subgraphs.py,sha256=
|
|
92
|
+
robosystems_client/api/subgraphs/create_subgraph.py,sha256=LYfM-u8zvzqky_xXDt-QQLWP1r3RdJFj2ARIN0taHLU,8070
|
|
93
|
+
robosystems_client/api/subgraphs/delete_subgraph.py,sha256=rygOmTSlMDaY1RmwXNieclLWs9lbBDh7ud_YFKdA2Ww,9563
|
|
94
|
+
robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=n3AZhGq3ei6RGwPFmQ4DiUTg20l2iL6-YnVcrDCgGbI,8407
|
|
95
|
+
robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=6xjVR7W1ABbDdWsm8EWCqZhLQgZUHeom2tD0xZkwVKI,8208
|
|
96
|
+
robosystems_client/api/subgraphs/list_subgraphs.py,sha256=ztBgsRPYvmCNXyMae_9sfS-TtQaONR-CXr4DbaJDF7M,7102
|
|
97
|
+
robosystems_client/api/tables/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
98
|
+
robosystems_client/api/tables/delete_file_v1_graphs_graph_id_tables_files_file_id_delete.py,sha256=MtyV3J_U90BN-pMNHv1yZmQXOaO-men-ska9RkG6gX4,8195
|
|
99
|
+
robosystems_client/api/tables/get_file_info_v1_graphs_graph_id_tables_files_file_id_get.py,sha256=j1rKg9ScjGIi6ko04XasBj2AE8rVzLdnrXswcLEfmMQ,7910
|
|
100
|
+
robosystems_client/api/tables/get_upload_url_v1_graphs_graph_id_tables_table_name_files_post.py,sha256=tbd2QbXoPzElEPzV6cgbEErSG8lWrh6dnXnEfMvp52E,7397
|
|
101
|
+
robosystems_client/api/tables/ingest_tables_v1_graphs_graph_id_tables_ingest_post.py,sha256=sESnVCSV9Dm4nSlP0FL7OW1Iw6WxRmkb0np6dWfsg3c,7568
|
|
102
|
+
robosystems_client/api/tables/list_table_files_v1_graphs_graph_id_tables_table_name_files_get.py,sha256=tupt_CSSW0NAVECrusqQ1LfWqBuVYMca-LqAuBe0KCI,8140
|
|
103
|
+
robosystems_client/api/tables/list_tables_v1_graphs_graph_id_tables_get.py,sha256=IqMMJNZvmSGjiXF-pjnfVqqg0qvXZlt4sMbyReqyHUY,6350
|
|
104
|
+
robosystems_client/api/tables/query_tables_v1_graphs_graph_id_tables_query_post.py,sha256=3VKKgiqYoRtS3y8J4gZ-UD5pgRGDF0k6Ma8VQa4Jeec,7007
|
|
105
|
+
robosystems_client/api/tables/update_file_v1_graphs_graph_id_tables_files_file_id_patch.py,sha256=D9PFdnAn1VCdDGINdGJmUynvyJOtANYSewK9N9QcjRs,8673
|
|
101
106
|
robosystems_client/api/user/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
102
|
-
robosystems_client/api/user/create_user_api_key.py,sha256=
|
|
103
|
-
robosystems_client/api/user/get_all_credit_summaries.py,sha256=
|
|
104
|
-
robosystems_client/api/user/get_current_user.py,sha256=
|
|
105
|
-
robosystems_client/api/user/list_user_api_keys.py,sha256=
|
|
106
|
-
robosystems_client/api/user/revoke_user_api_key.py,sha256=
|
|
107
|
-
robosystems_client/api/user/update_user.py,sha256=
|
|
108
|
-
robosystems_client/api/user/update_user_api_key.py,sha256=
|
|
109
|
-
robosystems_client/api/user/update_user_password.py,sha256
|
|
107
|
+
robosystems_client/api/user/create_user_api_key.py,sha256=sC7Hq7JPEihkP6pXvRCfqupG0c6aYkRsEiqVu5uxODI,6057
|
|
108
|
+
robosystems_client/api/user/get_all_credit_summaries.py,sha256=uYOOF4ROLvx2uqMs_MoaTo0crk6VZb8JsS1cGszaKYg,7233
|
|
109
|
+
robosystems_client/api/user/get_current_user.py,sha256=PNcK2m7HgRFaxxTRUPD6kfGjIfIEIXoXEyYpwkidkTI,5357
|
|
110
|
+
robosystems_client/api/user/list_user_api_keys.py,sha256=8id0XsEF2GqICTYNGn-81ZdTOaFiOr3rrV9SXEOOVlQ,5310
|
|
111
|
+
robosystems_client/api/user/revoke_user_api_key.py,sha256=U-M2dFgu4Fzg_prQNxVwx9xcADrfs4Z5OFesXNyX3eQ,6044
|
|
112
|
+
robosystems_client/api/user/update_user.py,sha256=1q9D_Mme-WRsHnwycinsxsdcksyMsN_cGmU0ajVwUaw,5950
|
|
113
|
+
robosystems_client/api/user/update_user_api_key.py,sha256=yIyjJYw1Oxds5F9K6CavIBu3vLlNZGok72NnWd6fm8I,6220
|
|
114
|
+
robosystems_client/api/user/update_user_password.py,sha256=Yyu5GqgR1n3NjVOs3bfuVnwxsfFspTZEmidtZRaN-MI,6547
|
|
110
115
|
robosystems_client/api/user_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
111
|
-
robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=
|
|
112
|
-
robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=
|
|
116
|
+
robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=SjDKuJUWpNCSpguW0CcEJs-tq0Ua_cCVeb59yp9Qh-w,7386
|
|
117
|
+
robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=C-men7sgHDoIx0nn7CsAk60sINg_alJP412rSmsRYS0,5594
|
|
113
118
|
robosystems_client/api/user_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
114
|
-
robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=
|
|
115
|
-
robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=
|
|
116
|
-
robosystems_client/api/user_limits/get_user_limits.py,sha256=
|
|
117
|
-
robosystems_client/api/user_limits/get_user_usage.py,sha256=
|
|
119
|
+
robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=RL5fm7r-twkHfCe9bXYsqEIi1ZXAoCgj_egXgdvQ5wk,6332
|
|
120
|
+
robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=f8mkT33yxeh60KaQs7PwXmOSOifMLn6fLATiaBG3C00,7512
|
|
121
|
+
robosystems_client/api/user_limits/get_user_limits.py,sha256=7Xx7ui8S7kLxXNI_0W5uXGMm9zPVbLtev1IFxT8HW8Q,5621
|
|
122
|
+
robosystems_client/api/user_limits/get_user_usage.py,sha256=iDwrkylQFIIWeoiiBQhOtWEgGA_NYALRXSkn3gbhoW0,5560
|
|
118
123
|
robosystems_client/api/user_subscriptions/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
119
|
-
robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=
|
|
120
|
-
robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=
|
|
121
|
-
robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=
|
|
122
|
-
robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=
|
|
123
|
-
robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=
|
|
124
|
-
robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256
|
|
125
|
-
robosystems_client/extensions/README.md,sha256=
|
|
126
|
-
robosystems_client/extensions/__init__.py,sha256=
|
|
124
|
+
robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=xBmaxnvfeezBp8HA37NeBkjPTEr0Mr4m-AQoiMzYrtk,6313
|
|
125
|
+
robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=xTE-JnbTyTU1EgSa8LlBbzJU0ypI1io-T4xqLn95pIw,6120
|
|
126
|
+
robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=TNqMORTHQpngOi9R-bSNq1XWDqwrYzqQzLtGbs-Nk1Y,5806
|
|
127
|
+
robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=SocECVQH7QkExTlGfmlpAxucyzudUefD216teIloEvw,6636
|
|
128
|
+
robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=GBr_AahYctNKUVg5O-wqju3sdL-DYFZLPtYnjfR9c5c,6606
|
|
129
|
+
robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=-kfP0zkXo9-OojY8-EvxK-hFiJBCdR-MV4puqCcHtrA,6742
|
|
130
|
+
robosystems_client/extensions/README.md,sha256=qfHFjdgA_J-zNXziNZE6M1MKJiwVkocBi01w_HhvzEk,16136
|
|
131
|
+
robosystems_client/extensions/__init__.py,sha256=Jj2K6iNTkymAXuQAEhWAOFc0Y54lBXx2orfm83x5TpE,4806
|
|
127
132
|
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
133
|
robosystems_client/extensions/dataframe_utils.py,sha256=gK1bgkVqBF0TvWVdGQvqWrt-ur_Rw11j8uNtMoulLWE,12312
|
|
130
|
-
robosystems_client/extensions/extensions.py,sha256=
|
|
131
|
-
robosystems_client/extensions/operation_client.py,sha256=
|
|
132
|
-
robosystems_client/extensions/query_client.py,sha256=
|
|
133
|
-
robosystems_client/extensions/sse_client.py,sha256=
|
|
134
|
+
robosystems_client/extensions/extensions.py,sha256=JPxy154A_NZLZBB3iB5BUmh59MUuXg0jp0e6sX69JKU,6152
|
|
135
|
+
robosystems_client/extensions/operation_client.py,sha256=B1qju-wWQrnrnVJixKGgsA_KEInviwJwdlJxzm_i7P0,13359
|
|
136
|
+
robosystems_client/extensions/query_client.py,sha256=lwkv1ySm6kiVgnke_K9BulXRx4WXU4EFQZb_UJAxx_M,14630
|
|
137
|
+
robosystems_client/extensions/sse_client.py,sha256=fWO6EPiLmS3LJ8iph5wup57ldtHSLBkDoiAPfBNNCyk,15048
|
|
138
|
+
robosystems_client/extensions/table_ingest_client.py,sha256=MyCnBAijFlkWY88dY4CJkouY0w5d4D3cxftw_wmSt60,12790
|
|
134
139
|
robosystems_client/extensions/token_utils.py,sha256=qCK_s1vBzRnSYwtgncPZRLJVIw3WXmzqNTWjdEEpdgs,10899
|
|
135
140
|
robosystems_client/extensions/utils.py,sha256=t-vUeVSmus6tcSa6mpKWmtGyZqYB51_CqgUIYyTfqXw,16183
|
|
136
141
|
robosystems_client/extensions/tests/__init__.py,sha256=S61GPbL-2pgLVe11uHwHLenpIpzyywWXzXqJypr0T3Q,46
|
|
@@ -138,7 +143,7 @@ robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6
|
|
|
138
143
|
robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
|
|
139
144
|
robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
|
|
140
145
|
robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
|
|
141
|
-
robosystems_client/models/__init__.py,sha256=
|
|
146
|
+
robosystems_client/models/__init__.py,sha256=sTG9PHZSM2EKXNcbwtWbKoZyg0El_fvVaV73bKDIzsw,20900
|
|
142
147
|
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
143
148
|
robosystems_client/models/add_on_credit_info.py,sha256=h65KAb8yZP_SGpsB2Ref4IaBCthEDYJgFGTd9PjUpfs,3221
|
|
144
149
|
robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
|
|
@@ -166,11 +171,13 @@ robosystems_client/models/available_extensions_response.py,sha256=zt9ggowoErKKoq
|
|
|
166
171
|
robosystems_client/models/backup_create_request.py,sha256=51DBMilcgEu0GDXwuPnFm3gSAOWYYbkq2PsDCXAgQ2A,3710
|
|
167
172
|
robosystems_client/models/backup_list_response.py,sha256=0hXeW9J2UzHZtESAjOKNMK5ETt-Juc2OiY4svNLVB8A,2216
|
|
168
173
|
robosystems_client/models/backup_response.py,sha256=LCJgvjSDK6KMOXGJm9coTiU7VSQ9fd549Q2xsGzM8qY,5402
|
|
169
|
-
robosystems_client/models/backup_restore_request.py,sha256=
|
|
174
|
+
robosystems_client/models/backup_restore_request.py,sha256=ViLlhFiggJWS-XV19Tpi-qqCq3pY4bqcF0gMC9v8mac,2194
|
|
170
175
|
robosystems_client/models/backup_stats_response.py,sha256=_CLWy2wrczlIae_Li6NDSLSSG-Vt53ePx37az64siBg,4688
|
|
171
176
|
robosystems_client/models/backup_stats_response_backup_formats.py,sha256=dtxMpx0q6t5MZ1s37lQ-wttexoz7MkD8bAbaZ7SzDZ0,1244
|
|
172
177
|
robosystems_client/models/batch_agent_request.py,sha256=uVZ56TdrULFqNCc-KpC0AW99lMV0fW9udpB8ANoOmH0,2222
|
|
173
178
|
robosystems_client/models/batch_agent_response.py,sha256=UI2dI317RBvgtpHgTF3j--W33wZr76lFdd8gSTee4Ro,2492
|
|
179
|
+
robosystems_client/models/bulk_ingest_request.py,sha256=eRHk_mG5Zfok66-sPlgx7dKfs-L_76P8PaBOrf7dHr0,1306
|
|
180
|
+
robosystems_client/models/bulk_ingest_response.py,sha256=jR-Yxs5TWaMwM0auN4BrzvU7jXVF4pFlbbOzWCErjag,3899
|
|
174
181
|
robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
|
|
175
182
|
robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
|
|
176
183
|
robosystems_client/models/check_credit_balance_response_checkcreditbalance.py,sha256=izJJIZJaZkfJY7pqYg7nBPEv9IgRpJ5WSw6hu7VUZEk,1304
|
|
@@ -181,14 +188,11 @@ robosystems_client/models/connection_provider_info_provider.py,sha256=-IsFtqa7td
|
|
|
181
188
|
robosystems_client/models/connection_response.py,sha256=VCOxkvvpwBwZz-TU4FHsmcuvwn3me-2AQyAB_hknCio,4174
|
|
182
189
|
robosystems_client/models/connection_response_metadata.py,sha256=xp9LNJHpuXrfLKSQFLVHwhAF4Ieu26rbSe-odVFWBcM,1233
|
|
183
190
|
robosystems_client/models/connection_response_provider.py,sha256=th7b2inab-PZWaQ9kjsYoM81Xo4coJGJ1kqYh7txnYE,185
|
|
184
|
-
robosystems_client/models/copy_response.py,sha256=fqmLbYl12xK_feDRJs1lM4_2ZGRvKPs0NIf3aDHfG-Y,8804
|
|
185
|
-
robosystems_client/models/copy_response_error_details_type_0.py,sha256=_Y_o8lWlPlQtQJxIX33URTGkzC4CDslBWloxpUgw4u4,1232
|
|
186
|
-
robosystems_client/models/copy_response_status.py,sha256=Q9U7d7AOb9Ff0G4k4ynqoMgC5MdKXmTKxfIZv4o-7mA,209
|
|
187
191
|
robosystems_client/models/create_api_key_request.py,sha256=aP-X8CtffeRUXDqG-WzM4gn8_DOwPt5CURmGYIbjgqY,2829
|
|
188
192
|
robosystems_client/models/create_api_key_response.py,sha256=9cqlZDogqxdSXxxHT6PnfClTP-Q35CvfQjNIvPEe1Pw,1797
|
|
189
193
|
robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
|
|
190
194
|
robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
|
|
191
|
-
robosystems_client/models/create_graph_request.py,sha256=
|
|
195
|
+
robosystems_client/models/create_graph_request.py,sha256=u6bpRJYaYOCgSGKRM6yp-DEV4O27O1pvE3QvsWH2aX8,5585
|
|
192
196
|
robosystems_client/models/create_subgraph_request.py,sha256=upBIPF4MIrawR_fAodpo4ts9sinq7FyDT2VyfR_uCp8,5777
|
|
193
197
|
robosystems_client/models/create_subgraph_request_metadata_type_0.py,sha256=dqVIzDSjIeTsKLCC7pmJAik2eJPIyi_6uTHzkspU37M,1257
|
|
194
198
|
robosystems_client/models/credit_summary.py,sha256=TaK9e6Jp7yqWMtBDVfB2bL7mlTw87Qwf1_foausmQwI,4802
|
|
@@ -201,10 +205,9 @@ robosystems_client/models/custom_schema_definition_nodes_item.py,sha256=0hg2ctnt
|
|
|
201
205
|
robosystems_client/models/custom_schema_definition_relationships_item.py,sha256=lJZACnh463SpmX2ncTV9Xi6NcHIejEn-SKQ81PZN654,1279
|
|
202
206
|
robosystems_client/models/cypher_query_request.py,sha256=Y40qJmtFszBPkKw1VhezR0G4Nys1HyQHFyFJMhRY2ew,3641
|
|
203
207
|
robosystems_client/models/cypher_query_request_parameters_type_0.py,sha256=I8QFYojTUqvgSeiS2uP79PQQfqulTB89OyXXgYbl3Cc,1252
|
|
204
|
-
robosystems_client/models/data_frame_copy_request.py,sha256=kooobSAmts4dyjgKmird_taE_dabWqUY6k-ekGtj_Pw,4215
|
|
205
|
-
robosystems_client/models/data_frame_copy_request_format.py,sha256=FdD8grwEoNlP7BMpFoFrHcZjYmhxvk_CHT-0qNQShI4,183
|
|
206
208
|
robosystems_client/models/database_health_response.py,sha256=LdvO6aVSUiEej3vyshiu6zoP_FcgbJmpCll0g-aNci0,5631
|
|
207
209
|
robosystems_client/models/database_info_response.py,sha256=lj1MUSUzLq5WNJyxXU6g5M7RrPOBPSffR25WUp0EjXc,5652
|
|
210
|
+
robosystems_client/models/delete_file_v1_graphs_graph_id_tables_files_file_id_delete_response_delete_file_v1_graphs_graph_id_tables_files_file_id_delete.py,sha256=9pi7uDQ5TKS60FO2guKX053lSw-IvHIJ4Sz4oM3NpA8,1665
|
|
208
211
|
robosystems_client/models/delete_subgraph_request.py,sha256=F0UVznC5pUnwhX2zZWyPdSxpwtrj-jZIVmnTKCgjDNI,2682
|
|
209
212
|
robosystems_client/models/delete_subgraph_response.py,sha256=zPgaUcaqzwmaxEFwok2c3OLCEe1YT4-mnckD_Lr-Nd4,3340
|
|
210
213
|
robosystems_client/models/detailed_transactions_response.py,sha256=gNvssogFCR4cK54swZMpHhUOHhRLTwiUlI0oZpVwj9g,3660
|
|
@@ -216,6 +219,9 @@ robosystems_client/models/enhanced_credit_transaction_response_metadata.py,sha25
|
|
|
216
219
|
robosystems_client/models/error_response.py,sha256=Kc97dTQxR9jANL-MOPwnE4voKA1O0X3qkx_jeY9k-BU,4111
|
|
217
220
|
robosystems_client/models/exchange_token_request.py,sha256=76zVpSXbbuJpMAnf_rRT0EjpxH1PZD9nFLJK8i6cn6E,3290
|
|
218
221
|
robosystems_client/models/exchange_token_request_metadata_type_0.py,sha256=4ndzrJRefnYO_ikDiySWS2aHBNFCG5Y2SF-bHF_jPYw,1252
|
|
222
|
+
robosystems_client/models/file_update_request.py,sha256=U6gy_LsTAXk0QUAA2hShjlBnqU9vV4Hea3YZ5ZousGg,1491
|
|
223
|
+
robosystems_client/models/file_upload_request.py,sha256=7loA-BBy69IKVIcyeTDhnFrBx_sibNfnHXthaJpnL0M,1122
|
|
224
|
+
robosystems_client/models/file_upload_response.py,sha256=_qgC8LcVEjpDA4S2_zCbi9BedS2a0uobB5VbNKEnpyc,1958
|
|
219
225
|
robosystems_client/models/forgot_password_request.py,sha256=jgJf6E-4cun0vbm1LFPN-bC8HejoeJq6NVgWhGVn7Lg,1440
|
|
220
226
|
robosystems_client/models/forgot_password_response_forgotpassword.py,sha256=-NbTmjmMKiGHUGAAjnggyrxg5TlN-6HIu1YTCl8Enkw,1261
|
|
221
227
|
robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py,sha256=Z-PEihC2i7G8QLlmQ1PgyLJIlETUrXyNF9j4HXt3B90,1337
|
|
@@ -223,10 +229,11 @@ robosystems_client/models/get_all_shared_repository_limits_response_getallshared
|
|
|
223
229
|
robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py,sha256=dDqOgolFduHyRXl5y5q9zH0_y4GuDGq-wwQUA9pl0X0,1327
|
|
224
230
|
robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py,sha256=QbLg6o9w0UQs2npB27r2lLfWi9uAe4cjmN0srszTKDE,1307
|
|
225
231
|
robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py,sha256=PjfVnVwWG6BEBWEjb5kvN5XYtC2uTc5h4OIKPmZv-Gc,1317
|
|
232
|
+
robosystems_client/models/get_file_info_v1_graphs_graph_id_tables_files_file_id_get_response_get_file_info_v1_graphs_graph_id_tables_files_file_id_get.py,sha256=wd9pMhbggeYTeIfqpJ89hjvV33NNr_B8p_yMDaiSsKA,1651
|
|
226
233
|
robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py,sha256=IyBAkkk8vtqQx9Twif1J7iG-9iaeuMm1W_75E7pzM-A,1347
|
|
227
234
|
robosystems_client/models/get_graph_limits_response_getgraphlimits.py,sha256=ekkBGt3Pybn7-xZIhth_uBGhyiTvWRxHbXRPBSX0ms0,1264
|
|
228
235
|
robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py,sha256=q1k4zEtQmcBpgz_vz9B26Deu4qT4evEsAiRoTpmcw0w,1317
|
|
229
|
-
robosystems_client/models/
|
|
236
|
+
robosystems_client/models/get_graph_schema_response_getgraphschema.py,sha256=2xiLHFOzd9ywuJY5MKI7lmK3ZQ3Ii0iCd6tzhQIm7Ak,1264
|
|
230
237
|
robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py,sha256=OfsWqXgc6O0v21jbL8Z1NquZg5eKhNQUEiTl_Vs7I7w,1327
|
|
231
238
|
robosystems_client/models/get_operation_status_response_getoperationstatus.py,sha256=dhCc_dZpSo-h9210m5MShVde1sGHmMhkBanqt_6xt_A,1304
|
|
232
239
|
robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py,sha256=0-_y-77YHmK-tFdt7rQbC5j9VK4pfiE_V756EmglpaU,1377
|
|
@@ -250,8 +257,8 @@ robosystems_client/models/link_token_request.py,sha256=smOO4eebeImqNM9j7pOmbVeJX
|
|
|
250
257
|
robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0LijMFwGAtSIpNAFBLFHayZ8T1NZ2SaQJ8,1227
|
|
251
258
|
robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
|
|
252
259
|
robosystems_client/models/list_connections_provider_type_0.py,sha256=Mmteiaom76sOnidak7Y1zY4UemEbnM_3BnfbkFUUVv0,187
|
|
253
|
-
robosystems_client/models/list_schema_extensions_response_listschemaextensions.py,sha256=ywzRLGbL2PuMdC1td41i0KYm_O3sKzagXZqXS4c49KM,1324
|
|
254
260
|
robosystems_client/models/list_subgraphs_response.py,sha256=PsavKzFwdPfM_4ZeX5-NcWo8K-x0KaFT7y4y_Zf7J98,4498
|
|
261
|
+
robosystems_client/models/list_table_files_v1_graphs_graph_id_tables_table_name_files_get_response_list_table_files_v1_graphs_graph_id_tables_table_name_files_get.py,sha256=Sv3v_W0CnBNYEKUK3LtCM_4hgxDObG5Nvcu9vhMUAgg,1711
|
|
255
262
|
robosystems_client/models/login_request.py,sha256=bWvQYg7jPbtE__tVOqPKqGYx7Yzex2hPfOm2fJZjvLU,1543
|
|
256
263
|
robosystems_client/models/logout_user_response_logoutuser.py,sha256=UGr9RnAP7Db-T5JLbH6R6CZjZaENzIX6iW31nxBAIBI,1221
|
|
257
264
|
robosystems_client/models/mcp_tool_call.py,sha256=--2c-SyQb1XxZNMTcb8VWZ_ldomBp3zefuirUybIwWQ,2212
|
|
@@ -279,9 +286,6 @@ robosystems_client/models/resend_verification_email_response_resendverificatione
|
|
|
279
286
|
robosystems_client/models/reset_password_request.py,sha256=14kn__5re5UkWEfjqz25RZeoQBh7z9fOKu_a01X9zi4,1682
|
|
280
287
|
robosystems_client/models/reset_password_validate_response.py,sha256=7FV8Gfhirst9UWl0_P3XGnn5i_uGtneTTTeA7y_13Dc,2130
|
|
281
288
|
robosystems_client/models/response_mode.py,sha256=0tm3YUxAKHNYS1jn-zdR_88xn6E_bsQl85DwHZM_kkM,181
|
|
282
|
-
robosystems_client/models/s3_copy_request.py,sha256=0XqKZ6vL46aJozlvIHwGRGqCL2OPBGfOBFZ-AMmg2xo,13171
|
|
283
|
-
robosystems_client/models/s3_copy_request_file_format.py,sha256=VfyvnQl7Mcl3mytceCFHUsYuwZqdD_RTFTi47TpW6l8,214
|
|
284
|
-
robosystems_client/models/s3_copy_request_s3_url_style_type_0.py,sha256=Rwj6q4HT0178ogoLSSAme0QwoFBpWYU9bDoPWqJnMaQ,161
|
|
285
289
|
robosystems_client/models/schema_export_response.py,sha256=feGJQkAYNeHoGSVcdAyTVQxR6KR1ks3Nfc2LNbUap4w,4872
|
|
286
290
|
robosystems_client/models/schema_export_response_data_stats_type_0.py,sha256=QRzVNkX-1Er8oppABqj79HRGKtcMk3YNG2DFkdqdFSQ,1260
|
|
287
291
|
robosystems_client/models/schema_export_response_schema_definition_type_0.py,sha256=iYwrxPZsEttzkaDySeVyUdwF5yvhvNgALiMEqTMJTpo,1295
|
|
@@ -311,14 +315,17 @@ robosystems_client/models/success_response_data_type_0.py,sha256=tirQFpgZO8Lpge7
|
|
|
311
315
|
robosystems_client/models/sync_connection_request.py,sha256=qyOzmAJ0khdwAZb-Hlf8jbzfqGBjMalqkQsua08vEnc,3232
|
|
312
316
|
robosystems_client/models/sync_connection_request_sync_options_type_0.py,sha256=5lckaZAs1S-F_WAtLtaJPXca2DucqCfcKNmf25p5UIY,1275
|
|
313
317
|
robosystems_client/models/sync_connection_response_syncconnection.py,sha256=U9wHtybnX6Bn4i_7Vwm9sPWPRBwbLoDgGiT2-c0pqJ0,1261
|
|
318
|
+
robosystems_client/models/table_info.py,sha256=sd9a_AAVH1n0aAXMK4xH45NzlZyupi76N2sMP7i-X44,2928
|
|
319
|
+
robosystems_client/models/table_ingest_result.py,sha256=6nwBXfiXGhl89LDKUx5REgSi16KgsA24fVObwEdiJtU,2928
|
|
320
|
+
robosystems_client/models/table_list_response.py,sha256=wmlmFs6jw_qjrc9N9iQG2Un1469xSscgUbCYRb4B0kg,2003
|
|
321
|
+
robosystems_client/models/table_query_request.py,sha256=SGAgsMVviZxwyL_tnPYZK5i2z5V6AvZaj7fYrmc7nB4,689
|
|
322
|
+
robosystems_client/models/table_query_response.py,sha256=Y9zUSm1BPRfJEN_SP6lIZIQs75TcYPu1M8bxpWNp7PI,2268
|
|
314
323
|
robosystems_client/models/tier_upgrade_request.py,sha256=uSF_CpTLwlj6jTO7a9yCbboBGvuzJOIgyVjJYVNc6t4,1567
|
|
315
324
|
robosystems_client/models/transaction_summary_response.py,sha256=MSQYuOharoRpBilqmpKo_Dxv39QLjJ0g5oY9NYsCQNA,3714
|
|
316
325
|
robosystems_client/models/update_api_key_request.py,sha256=fQVFQnUSIRDcBkCZP6ObAdVjIReaYuqSS3eliNSt59c,2527
|
|
326
|
+
robosystems_client/models/update_file_v1_graphs_graph_id_tables_files_file_id_patch_response_update_file_v1_graphs_graph_id_tables_files_file_id_patch.py,sha256=cpo_4UL6Vnu7YtJy9OS_e2O9zvXkKvsknGlN3SVzjUM,1655
|
|
317
327
|
robosystems_client/models/update_password_request.py,sha256=3YwCzOJwE3WYpv05JwVBpwL71GCsj1fMLngxuEsXtpE,2013
|
|
318
328
|
robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
|
|
319
|
-
robosystems_client/models/url_copy_request.py,sha256=ZIW522f0Xu4EKnKChMOrtZQjxsGEw5fL8AktpSum6-w,5024
|
|
320
|
-
robosystems_client/models/url_copy_request_file_format.py,sha256=9YvyAICJanuX5V1ciJclpgx0T2GLzJxQ5OKmT4hufMM,175
|
|
321
|
-
robosystems_client/models/url_copy_request_headers_type_0.py,sha256=8bBG9jIbcQDsHaWG2ZUwV4XF9S5DLuZudTpTc8otD0E,1217
|
|
322
329
|
robosystems_client/models/user_analytics_response.py,sha256=M89LNcZ6x2p0WY1NTKs9mu2o1ql-ubdr5RFZnQVCXnM,4423
|
|
323
330
|
robosystems_client/models/user_analytics_response_api_usage.py,sha256=rCzeBaCp40iOhr784WJ5pBnBnVFFkrf7Uy-TuUKyxwQ,1248
|
|
324
331
|
robosystems_client/models/user_analytics_response_graph_usage.py,sha256=i71sukhzKuhTQ_luiqbe0gWvsruRmUlvqsuBPZU3XwM,1260
|
|
@@ -335,7 +342,7 @@ robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZ
|
|
|
335
342
|
robosystems_client/models/user_usage_summary_response.py,sha256=4hthwTH7bXyzdYlHoekDYOgDLI-stGRH507Bl2rUjYA,3655
|
|
336
343
|
robosystems_client/models/user_usage_summary_response_usage_vs_limits.py,sha256=XrZnRcy1nD3xtKX4svbww7QfEHrN7_XIfeL9j5ZMbyQ,1298
|
|
337
344
|
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
338
|
-
robosystems_client-0.1.
|
|
339
|
-
robosystems_client-0.1.
|
|
340
|
-
robosystems_client-0.1.
|
|
341
|
-
robosystems_client-0.1.
|
|
345
|
+
robosystems_client-0.2.1.dist-info/METADATA,sha256=Lz6GHnT549mGN8HpaOYLqfb_VGjXx1n4IEXHaYyA9Ic,3959
|
|
346
|
+
robosystems_client-0.2.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
347
|
+
robosystems_client-0.2.1.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
|
|
348
|
+
robosystems_client-0.2.1.dist-info/RECORD,,
|