robosystems-client 0.1.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of robosystems-client might be problematic. Click here for more details.
- robosystems_client/__init__.py +14 -0
- robosystems_client/api/__init__.py +1 -0
- robosystems_client/api/agent/__init__.py +1 -0
- robosystems_client/api/agent/query_financial_agent.py +423 -0
- robosystems_client/api/auth/__init__.py +1 -0
- robosystems_client/api/auth/check_password_strength.py +172 -0
- robosystems_client/api/auth/complete_sso_auth.py +177 -0
- robosystems_client/api/auth/generate_sso_token.py +174 -0
- robosystems_client/api/auth/get_captcha_config.py +87 -0
- robosystems_client/api/auth/get_current_auth_user.py +220 -0
- robosystems_client/api/auth/get_password_policy.py +134 -0
- robosystems_client/api/auth/login_user.py +181 -0
- robosystems_client/api/auth/logout_user.py +169 -0
- robosystems_client/api/auth/refresh_session.py +174 -0
- robosystems_client/api/auth/register_user.py +189 -0
- robosystems_client/api/auth/sso_login.py +177 -0
- robosystems_client/api/auth/sso_token_exchange.py +181 -0
- robosystems_client/api/backup/__init__.py +1 -0
- robosystems_client/api/backup/create_backup.py +401 -0
- robosystems_client/api/backup/export_backup.py +225 -0
- robosystems_client/api/backup/get_backup_download_url.py +258 -0
- robosystems_client/api/backup/get_backup_stats.py +182 -0
- robosystems_client/api/backup/kuzu_backup_health.py +202 -0
- robosystems_client/api/backup/list_backups.py +217 -0
- robosystems_client/api/backup/restore_backup.py +401 -0
- robosystems_client/api/billing/__init__.py +1 -0
- robosystems_client/api/billing/get_available_subscription_plans_v1_graph_id_billing_available_plans_get.py +198 -0
- robosystems_client/api/billing/get_credit_billing_info_v1_graph_id_billing_credits_get.py +210 -0
- robosystems_client/api/billing/get_current_graph_bill.py +285 -0
- robosystems_client/api/billing/get_graph_billing_history.py +329 -0
- robosystems_client/api/billing/get_graph_monthly_bill.py +315 -0
- robosystems_client/api/billing/get_graph_pricing_info_v1_graph_id_billing_pricing_get.py +198 -0
- robosystems_client/api/billing/get_graph_subscription_v1_graph_id_billing_subscription_get.py +198 -0
- robosystems_client/api/billing/get_graph_usage_details.py +350 -0
- robosystems_client/api/billing/upgrade_graph_subscription_v1_graph_id_billing_subscription_upgrade_post.py +216 -0
- robosystems_client/api/connections/__init__.py +1 -0
- robosystems_client/api/connections/create_connection.py +327 -0
- robosystems_client/api/connections/create_link_token.py +281 -0
- robosystems_client/api/connections/delete_connection.py +278 -0
- robosystems_client/api/connections/exchange_link_token.py +301 -0
- robosystems_client/api/connections/get_connection.py +262 -0
- robosystems_client/api/connections/get_connection_options.py +285 -0
- robosystems_client/api/connections/init_o_auth.py +230 -0
- robosystems_client/api/connections/list_connections.py +314 -0
- robosystems_client/api/connections/oauth_callback.py +318 -0
- robosystems_client/api/connections/sync_connection.py +362 -0
- robosystems_client/api/create/__init__.py +1 -0
- robosystems_client/api/create/create_graph.py +375 -0
- robosystems_client/api/create/get_available_extensions.py +134 -0
- robosystems_client/api/credits_/__init__.py +1 -0
- robosystems_client/api/credits_/check_credit_balance.py +299 -0
- robosystems_client/api/credits_/check_storage_limits.py +249 -0
- robosystems_client/api/credits_/get_credit_summary.py +245 -0
- robosystems_client/api/credits_/get_storage_usage.py +279 -0
- robosystems_client/api/credits_/list_credit_transactions.py +392 -0
- robosystems_client/api/graph_analytics/__init__.py +1 -0
- robosystems_client/api/graph_analytics/get_graph_metrics.py +285 -0
- robosystems_client/api/graph_analytics/get_graph_usage_stats.py +329 -0
- robosystems_client/api/graph_status/__init__.py +1 -0
- robosystems_client/api/graph_status/get_database_health.py +273 -0
- robosystems_client/api/graph_status/get_database_info.py +277 -0
- robosystems_client/api/mcp/__init__.py +1 -0
- robosystems_client/api/mcp/call_mcp_tool.py +432 -0
- robosystems_client/api/mcp/list_mcp_tools.py +265 -0
- robosystems_client/api/operations/__init__.py +1 -0
- robosystems_client/api/operations/cancel_operation.py +246 -0
- robosystems_client/api/operations/get_operation_status.py +273 -0
- robosystems_client/api/operations/stream_operation_events.py +415 -0
- robosystems_client/api/query/__init__.py +1 -0
- robosystems_client/api/query/execute_cypher_query.py +482 -0
- robosystems_client/api/schema/__init__.py +1 -0
- robosystems_client/api/schema/export_graph_schema.py +239 -0
- robosystems_client/api/schema/get_graph_schema_info.py +277 -0
- robosystems_client/api/schema/list_schema_extensions.py +216 -0
- robosystems_client/api/schema/validate_schema.py +326 -0
- robosystems_client/api/service_offerings/__init__.py +1 -0
- robosystems_client/api/service_offerings/get_service_offerings.py +197 -0
- robosystems_client/api/status/__init__.py +1 -0
- robosystems_client/api/status/get_mcp_health.py +136 -0
- robosystems_client/api/status/get_service_status.py +134 -0
- robosystems_client/api/user/__init__.py +1 -0
- robosystems_client/api/user/create_user_api_key.py +205 -0
- robosystems_client/api/user/get_all_credit_summaries.py +256 -0
- robosystems_client/api/user/get_current_user.py +187 -0
- robosystems_client/api/user/get_user_graphs.py +187 -0
- robosystems_client/api/user/list_user_api_keys.py +187 -0
- robosystems_client/api/user/revoke_user_api_key.py +209 -0
- robosystems_client/api/user/select_user_graph.py +213 -0
- robosystems_client/api/user/update_user.py +205 -0
- robosystems_client/api/user/update_user_api_key.py +218 -0
- robosystems_client/api/user/update_user_password.py +218 -0
- robosystems_client/api/user_analytics/__init__.py +1 -0
- robosystems_client/api/user_analytics/get_detailed_user_analytics.py +222 -0
- robosystems_client/api/user_analytics/get_user_usage_overview.py +187 -0
- robosystems_client/api/user_limits/__init__.py +1 -0
- robosystems_client/api/user_limits/get_user_limits.py +190 -0
- robosystems_client/api/user_limits/get_user_usage.py +187 -0
- robosystems_client/api/user_subscriptions/__init__.py +1 -0
- robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +209 -0
- robosystems_client/api/user_subscriptions/get_repository_credits.py +206 -0
- robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +193 -0
- robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +213 -0
- robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +214 -0
- robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +228 -0
- robosystems_client/client.py +278 -0
- robosystems_client/errors.py +16 -0
- robosystems_client/extensions/README.md +611 -0
- robosystems_client/extensions/__init__.py +108 -0
- robosystems_client/extensions/auth_integration.py +210 -0
- robosystems_client/extensions/extensions.py +170 -0
- robosystems_client/extensions/operation_client.py +368 -0
- robosystems_client/extensions/query_client.py +375 -0
- robosystems_client/extensions/sse_client.py +520 -0
- robosystems_client/extensions/tests/__init__.py +1 -0
- robosystems_client/extensions/tests/test_integration.py +490 -0
- robosystems_client/extensions/tests/test_unit.py +560 -0
- robosystems_client/extensions/utils.py +526 -0
- robosystems_client/models/__init__.py +379 -0
- robosystems_client/models/account_info.py +79 -0
- robosystems_client/models/add_on_credit_info.py +119 -0
- robosystems_client/models/agent_message.py +68 -0
- robosystems_client/models/agent_request.py +132 -0
- robosystems_client/models/agent_request_context_type_0.py +44 -0
- robosystems_client/models/agent_response.py +132 -0
- robosystems_client/models/agent_response_metadata_type_0.py +44 -0
- robosystems_client/models/api_key_info.py +134 -0
- robosystems_client/models/api_keys_response.py +74 -0
- robosystems_client/models/auth_response.py +82 -0
- robosystems_client/models/auth_response_user.py +44 -0
- robosystems_client/models/available_extension.py +78 -0
- robosystems_client/models/available_extensions_response.py +73 -0
- robosystems_client/models/backup_create_request.py +117 -0
- robosystems_client/models/backup_export_request.py +72 -0
- robosystems_client/models/backup_list_response.py +90 -0
- robosystems_client/models/backup_response.py +200 -0
- robosystems_client/models/backup_restore_request.py +81 -0
- robosystems_client/models/backup_stats_response.py +156 -0
- robosystems_client/models/backup_stats_response_backup_formats.py +44 -0
- robosystems_client/models/cancel_operation_response_canceloperation.py +44 -0
- robosystems_client/models/cancellation_response.py +76 -0
- robosystems_client/models/check_credit_balance_response_checkcreditbalance.py +44 -0
- robosystems_client/models/connection_options_response.py +82 -0
- robosystems_client/models/connection_provider_info.py +203 -0
- robosystems_client/models/connection_provider_info_auth_type.py +11 -0
- robosystems_client/models/connection_provider_info_provider.py +10 -0
- robosystems_client/models/connection_response.py +149 -0
- robosystems_client/models/connection_response_metadata.py +44 -0
- robosystems_client/models/connection_response_provider.py +10 -0
- robosystems_client/models/create_api_key_request.py +82 -0
- robosystems_client/models/create_api_key_response.py +74 -0
- robosystems_client/models/create_connection_request.py +179 -0
- robosystems_client/models/create_connection_request_provider.py +10 -0
- robosystems_client/models/create_graph_request.py +183 -0
- robosystems_client/models/credit_check_request.py +82 -0
- robosystems_client/models/credit_summary.py +128 -0
- robosystems_client/models/credit_summary_response.py +140 -0
- robosystems_client/models/credits_summary_response.py +122 -0
- robosystems_client/models/credits_summary_response_credits_by_addon_item.py +44 -0
- robosystems_client/models/custom_schema_definition.py +194 -0
- robosystems_client/models/custom_schema_definition_metadata.py +49 -0
- robosystems_client/models/custom_schema_definition_nodes_item.py +44 -0
- robosystems_client/models/custom_schema_definition_relationships_item.py +44 -0
- robosystems_client/models/cypher_query_request.py +128 -0
- robosystems_client/models/cypher_query_request_parameters_type_0.py +44 -0
- robosystems_client/models/database_health_response.py +181 -0
- robosystems_client/models/database_info_response.py +191 -0
- robosystems_client/models/detailed_transactions_response.py +124 -0
- robosystems_client/models/detailed_transactions_response_date_range.py +44 -0
- robosystems_client/models/detailed_transactions_response_summary.py +59 -0
- robosystems_client/models/enhanced_credit_transaction_response.py +192 -0
- robosystems_client/models/enhanced_credit_transaction_response_metadata.py +44 -0
- robosystems_client/models/error_response.py +145 -0
- robosystems_client/models/exchange_token_request.py +116 -0
- robosystems_client/models/exchange_token_request_metadata_type_0.py +44 -0
- robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py +44 -0
- robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py +44 -0
- robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py +44 -0
- robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py +44 -0
- robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py +44 -0
- robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py +44 -0
- robosystems_client/models/get_graph_schema_info_response_getgraphschemainfo.py +44 -0
- robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py +44 -0
- robosystems_client/models/get_mcp_health_response_getmcphealth.py +44 -0
- robosystems_client/models/get_operation_status_response_getoperationstatus.py +44 -0
- robosystems_client/models/get_storage_usage_response_getstorageusage.py +44 -0
- robosystems_client/models/graph_info.py +92 -0
- robosystems_client/models/graph_metadata.py +105 -0
- robosystems_client/models/graph_metrics_response.py +188 -0
- robosystems_client/models/graph_metrics_response_estimated_size.py +44 -0
- robosystems_client/models/graph_metrics_response_health_status.py +44 -0
- robosystems_client/models/graph_metrics_response_node_counts.py +44 -0
- robosystems_client/models/graph_metrics_response_relationship_counts.py +44 -0
- robosystems_client/models/graph_usage_response.py +116 -0
- robosystems_client/models/graph_usage_response_query_statistics.py +44 -0
- robosystems_client/models/graph_usage_response_recent_activity.py +44 -0
- robosystems_client/models/graph_usage_response_storage_usage.py +44 -0
- robosystems_client/models/health_status.py +110 -0
- robosystems_client/models/health_status_details_type_0.py +44 -0
- robosystems_client/models/http_validation_error.py +75 -0
- robosystems_client/models/initial_entity_data.py +212 -0
- robosystems_client/models/kuzu_backup_health_response_kuzubackuphealth.py +44 -0
- robosystems_client/models/link_token_request.py +174 -0
- robosystems_client/models/link_token_request_options_type_0.py +44 -0
- robosystems_client/models/link_token_request_provider_type_0.py +10 -0
- robosystems_client/models/list_connections_provider_type_0.py +10 -0
- robosystems_client/models/list_schema_extensions_response_listschemaextensions.py +44 -0
- robosystems_client/models/login_request.py +68 -0
- robosystems_client/models/logout_user_response_logoutuser.py +44 -0
- robosystems_client/models/mcp_tool_call.py +84 -0
- robosystems_client/models/mcp_tool_call_arguments.py +44 -0
- robosystems_client/models/mcp_tools_response.py +74 -0
- robosystems_client/models/mcp_tools_response_tools_item.py +44 -0
- robosystems_client/models/o_auth_callback_request.py +130 -0
- robosystems_client/models/o_auth_init_request.py +128 -0
- robosystems_client/models/o_auth_init_request_additional_params_type_0.py +44 -0
- robosystems_client/models/o_auth_init_response.py +78 -0
- robosystems_client/models/password_check_request.py +82 -0
- robosystems_client/models/password_check_response.py +112 -0
- robosystems_client/models/password_check_response_character_types.py +44 -0
- robosystems_client/models/password_policy_response.py +66 -0
- robosystems_client/models/password_policy_response_policy.py +44 -0
- robosystems_client/models/plaid_connection_config.py +209 -0
- robosystems_client/models/plaid_connection_config_accounts_type_0_item.py +44 -0
- robosystems_client/models/plaid_connection_config_institution_type_0.py +44 -0
- robosystems_client/models/quick_books_connection_config.py +92 -0
- robosystems_client/models/register_request.py +98 -0
- robosystems_client/models/repository_credits_response.py +101 -0
- robosystems_client/models/repository_plan.py +10 -0
- robosystems_client/models/repository_type.py +10 -0
- robosystems_client/models/response_mode.py +11 -0
- robosystems_client/models/schema_export_response.py +163 -0
- robosystems_client/models/schema_export_response_data_stats_type_0.py +44 -0
- robosystems_client/models/schema_export_response_schema_definition_type_0.py +44 -0
- robosystems_client/models/schema_validation_request.py +142 -0
- robosystems_client/models/schema_validation_request_schema_definition_type_0.py +44 -0
- robosystems_client/models/schema_validation_response.py +227 -0
- robosystems_client/models/schema_validation_response_compatibility_type_0.py +44 -0
- robosystems_client/models/schema_validation_response_stats_type_0.py +44 -0
- robosystems_client/models/sec_connection_config.py +82 -0
- robosystems_client/models/sso_complete_request.py +60 -0
- robosystems_client/models/sso_exchange_request.py +90 -0
- robosystems_client/models/sso_exchange_response.py +78 -0
- robosystems_client/models/sso_login_request.py +60 -0
- robosystems_client/models/sso_token_response.py +78 -0
- robosystems_client/models/storage_limit_response.py +149 -0
- robosystems_client/models/subscription_info.py +180 -0
- robosystems_client/models/subscription_info_metadata.py +44 -0
- robosystems_client/models/subscription_request.py +89 -0
- robosystems_client/models/subscription_response.py +82 -0
- robosystems_client/models/success_response.py +112 -0
- robosystems_client/models/success_response_data_type_0.py +44 -0
- robosystems_client/models/sync_connection_request.py +106 -0
- robosystems_client/models/sync_connection_request_sync_options_type_0.py +44 -0
- robosystems_client/models/sync_connection_response_syncconnection.py +44 -0
- robosystems_client/models/tier_upgrade_request.py +62 -0
- robosystems_client/models/transaction_summary_response.py +126 -0
- robosystems_client/models/update_api_key_request.py +92 -0
- robosystems_client/models/update_password_request.py +76 -0
- robosystems_client/models/update_user_request.py +92 -0
- robosystems_client/models/upgrade_subscription_request.py +82 -0
- robosystems_client/models/user_analytics_response.py +132 -0
- robosystems_client/models/user_analytics_response_api_usage.py +44 -0
- robosystems_client/models/user_analytics_response_graph_usage.py +44 -0
- robosystems_client/models/user_analytics_response_limits.py +44 -0
- robosystems_client/models/user_analytics_response_recent_activity_item.py +44 -0
- robosystems_client/models/user_analytics_response_user_info.py +44 -0
- robosystems_client/models/user_graph_summary.py +134 -0
- robosystems_client/models/user_graphs_response.py +96 -0
- robosystems_client/models/user_limits_response.py +95 -0
- robosystems_client/models/user_response.py +132 -0
- robosystems_client/models/user_subscriptions_response.py +90 -0
- robosystems_client/models/user_usage_response.py +90 -0
- robosystems_client/models/user_usage_response_graphs.py +44 -0
- robosystems_client/models/user_usage_summary_response.py +130 -0
- robosystems_client/models/user_usage_summary_response_usage_vs_limits.py +44 -0
- robosystems_client/models/validation_error.py +88 -0
- robosystems_client/py.typed +1 -0
- robosystems_client/sdk-config.yaml +5 -0
- robosystems_client/types.py +54 -0
- robosystems_client-0.1.9.dist-info/METADATA +302 -0
- robosystems_client-0.1.9.dist-info/RECORD +282 -0
- robosystems_client-0.1.9.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: robosystems-client
|
|
3
|
+
Version: 0.1.9
|
|
4
|
+
Summary: Python Client for RoboSystems financial graph database API
|
|
5
|
+
Author: Harbinger FinLab
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: api,client,financial,graph,kuzu,robosystems,sdk
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Framework :: AsyncIO
|
|
10
|
+
Classifier: Framework :: Pydantic
|
|
11
|
+
Classifier: Framework :: Pydantic :: 2
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: Database :: Front-Ends
|
|
22
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
23
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
24
|
+
Classifier: Topic :: Office/Business :: Financial :: Accounting
|
|
25
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
|
+
Classifier: Typing :: Typed
|
|
27
|
+
Requires-Python: >=3.10
|
|
28
|
+
Requires-Dist: attrs>=23.0.0
|
|
29
|
+
Requires-Dist: httpx>=0.28.1
|
|
30
|
+
Requires-Dist: pydantic>=2.11.7
|
|
31
|
+
Requires-Dist: python-dateutil>=2.8.0
|
|
32
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
33
|
+
Provides-Extra: all
|
|
34
|
+
Requires-Dist: httpx>=0.28.1; extra == 'all'
|
|
35
|
+
Requires-Dist: pandas>=1.5.0; extra == 'all'
|
|
36
|
+
Provides-Extra: dev
|
|
37
|
+
Requires-Dist: build>=1.0.0; extra == 'dev'
|
|
38
|
+
Requires-Dist: openapi-python-client>=0.21.8; extra == 'dev'
|
|
39
|
+
Requires-Dist: pyright>=1.1.402; extra == 'dev'
|
|
40
|
+
Requires-Dist: pytest-asyncio>=0.26.0; extra == 'dev'
|
|
41
|
+
Requires-Dist: pytest-httpx>=0.30.0; extra == 'dev'
|
|
42
|
+
Requires-Dist: pytest>=8.3.5; extra == 'dev'
|
|
43
|
+
Requires-Dist: ruff>=0.12; extra == 'dev'
|
|
44
|
+
Requires-Dist: twine>=5.0.0; extra == 'dev'
|
|
45
|
+
Provides-Extra: extensions
|
|
46
|
+
Requires-Dist: httpx>=0.28.1; extra == 'extensions'
|
|
47
|
+
Requires-Dist: pandas>=1.5.0; extra == 'extensions'
|
|
48
|
+
Description-Content-Type: text/markdown
|
|
49
|
+
|
|
50
|
+
# RoboSystems Python Client
|
|
51
|
+
|
|
52
|
+
[](https://pypi.org/project/robosystems-client/)
|
|
53
|
+
[](https://opensource.org/licenses/MIT)
|
|
54
|
+
|
|
55
|
+
Official Python Client for the RoboSystems Financial Knowledge Graph API. Access comprehensive financial data including accounting records, SEC filings, and advanced graph analytics through a type-safe, async-ready Python interface.
|
|
56
|
+
|
|
57
|
+
## Features
|
|
58
|
+
|
|
59
|
+
- **Type-safe API client** with full type hints and Pydantic models
|
|
60
|
+
- **Async/await support** for high-performance applications
|
|
61
|
+
- **Multi-tenant support** with graph-scoped operations
|
|
62
|
+
- **Authentication handling** with API key and SSO support
|
|
63
|
+
- **Comprehensive error handling** with custom exceptions
|
|
64
|
+
- **Pagination support** for large data sets
|
|
65
|
+
- **Streaming query support** for memory-efficient processing of large result sets
|
|
66
|
+
- **Financial AI Agent** integration for natural language queries
|
|
67
|
+
|
|
68
|
+
## Installation
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
pip install robosystems-client
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Quick Start
|
|
75
|
+
|
|
76
|
+
```python
|
|
77
|
+
from robosystems_client import RoboSystemsSDK
|
|
78
|
+
from robosystems_client.api.query import execute_cypher_query
|
|
79
|
+
from robosystems_client.models import CypherQueryRequest
|
|
80
|
+
|
|
81
|
+
# Initialize the SDK
|
|
82
|
+
sdk = RoboSystemsSDK(
|
|
83
|
+
base_url="https://api.robosystems.ai",
|
|
84
|
+
token="your-api-key",
|
|
85
|
+
auth_header_name="X-API-Key",
|
|
86
|
+
prefix="" # No prefix needed for API key
|
|
87
|
+
)
|
|
88
|
+
|
|
89
|
+
# Async usage (recommended)
|
|
90
|
+
import asyncio
|
|
91
|
+
|
|
92
|
+
async def main():
|
|
93
|
+
# Execute a Cypher query
|
|
94
|
+
query = CypherQueryRequest(
|
|
95
|
+
query="MATCH (c:Company)-[:HAS_FILING]->(f:Filing) RETURN c.name, f.form_type, f.filing_date LIMIT 10"
|
|
96
|
+
)
|
|
97
|
+
result = await execute_cypher_query.asyncio(graph_id="your-graph-id", client=sdk, body=query)
|
|
98
|
+
|
|
99
|
+
for row in result.data:
|
|
100
|
+
print(f"{row['c.name']} filed {row['f.form_type']} on {row['f.filing_date']}")
|
|
101
|
+
|
|
102
|
+
asyncio.run(main())
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## Key API Endpoints
|
|
106
|
+
|
|
107
|
+
### Graph Queries & Analytics
|
|
108
|
+
```python
|
|
109
|
+
from robosystems_client.api.query import execute_cypher_query
|
|
110
|
+
from robosystems_client.api.graph_analytics import get_graph_metrics
|
|
111
|
+
from robosystems_client.models import CypherQueryRequest
|
|
112
|
+
|
|
113
|
+
# Execute Cypher queries with parameters
|
|
114
|
+
query_request = CypherQueryRequest(
|
|
115
|
+
query="""MATCH (c:Company {ticker: $ticker})-[:HAS_METRIC]->(m:Metric)
|
|
116
|
+
WHERE m.fiscal_year >= $start_year
|
|
117
|
+
RETURN m.name, m.value, m.fiscal_year
|
|
118
|
+
ORDER BY m.fiscal_year DESC""",
|
|
119
|
+
parameters={"ticker": "AAPL", "start_year": 2020}
|
|
120
|
+
)
|
|
121
|
+
results = await execute_cypher_query.asyncio(
|
|
122
|
+
graph_id="your-graph-id",
|
|
123
|
+
client=sdk,
|
|
124
|
+
body=query_request
|
|
125
|
+
)
|
|
126
|
+
|
|
127
|
+
# Get graph analytics and metrics
|
|
128
|
+
metrics = await get_graph_metrics.asyncio(
|
|
129
|
+
graph_id="your-graph-id",
|
|
130
|
+
client=sdk
|
|
131
|
+
)
|
|
132
|
+
print(f"Total nodes: {metrics.total_nodes}")
|
|
133
|
+
print(f"Total relationships: {metrics.total_relationships}")
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### Financial AI Agent
|
|
137
|
+
```python
|
|
138
|
+
from robosystems_client.api.agent import query_financial_agent
|
|
139
|
+
from robosystems_client.models import AgentRequest
|
|
140
|
+
|
|
141
|
+
# Natural language financial queries
|
|
142
|
+
agent_request = AgentRequest(
|
|
143
|
+
message="What was Apple's revenue growth over the last 3 years?",
|
|
144
|
+
force_extended_analysis=True,
|
|
145
|
+
context={"include_schema": True}
|
|
146
|
+
)
|
|
147
|
+
agent_response = await query_financial_agent.asyncio(
|
|
148
|
+
graph_id="your-graph-id",
|
|
149
|
+
client=sdk,
|
|
150
|
+
body=agent_request
|
|
151
|
+
)
|
|
152
|
+
print(f"Response: {agent_response.message}")
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### Function Patterns
|
|
156
|
+
|
|
157
|
+
Every API endpoint provides multiple calling patterns:
|
|
158
|
+
|
|
159
|
+
- **`asyncio()`** - Async call, returns parsed response (recommended)
|
|
160
|
+
- **`asyncio_detailed()`** - Async call, returns full Response object
|
|
161
|
+
- **`sync()`** - Synchronous call, returns parsed response
|
|
162
|
+
- **`sync_detailed()`** - Synchronous call, returns full Response object
|
|
163
|
+
|
|
164
|
+
## Streaming Support with Extensions
|
|
165
|
+
|
|
166
|
+
The SDK includes an extensions module with SSE (Server-Sent Events) support for real-time streaming operations:
|
|
167
|
+
|
|
168
|
+
```python
|
|
169
|
+
from robosystems_client.extensions import (
|
|
170
|
+
SSEClient,
|
|
171
|
+
QueryClient,
|
|
172
|
+
OperationClient,
|
|
173
|
+
RoboSystemsExtensions
|
|
174
|
+
)
|
|
175
|
+
from robosystems_client.models import CypherQueryRequest
|
|
176
|
+
|
|
177
|
+
# Initialize extensions
|
|
178
|
+
extensions = RoboSystemsExtensions()
|
|
179
|
+
|
|
180
|
+
# Use QueryClient for advanced query operations
|
|
181
|
+
query_client = QueryClient(sdk)
|
|
182
|
+
|
|
183
|
+
# Execute queries with the query client
|
|
184
|
+
query = CypherQueryRequest(
|
|
185
|
+
query="""MATCH (c:Company)-[:HAS_METRIC]->(m:Metric)
|
|
186
|
+
WHERE m.fiscal_year >= 2020
|
|
187
|
+
RETURN c.name, m.name, m.value, m.fiscal_year
|
|
188
|
+
ORDER BY c.name, m.fiscal_year""",
|
|
189
|
+
parameters={}
|
|
190
|
+
)
|
|
191
|
+
|
|
192
|
+
# Monitor long-running operations with SSE
|
|
193
|
+
operation_client = OperationClient(sdk)
|
|
194
|
+
|
|
195
|
+
# Stream operation events
|
|
196
|
+
from robosystems_client.api.operations import stream_operation_events
|
|
197
|
+
await stream_operation_events.asyncio(
|
|
198
|
+
operation_id="op-123",
|
|
199
|
+
client=sdk
|
|
200
|
+
)
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
The extensions module provides:
|
|
204
|
+
- SSE client for real-time event streaming
|
|
205
|
+
- Query client with advanced query management
|
|
206
|
+
- Operation client for monitoring long-running tasks
|
|
207
|
+
- Utilities for result processing and caching
|
|
208
|
+
|
|
209
|
+
## Error Handling
|
|
210
|
+
|
|
211
|
+
```python
|
|
212
|
+
from robosystems_client.types import Response
|
|
213
|
+
from robosystems_client.errors import UnexpectedStatus
|
|
214
|
+
import httpx
|
|
215
|
+
|
|
216
|
+
try:
|
|
217
|
+
# API calls that might fail
|
|
218
|
+
result = await execute_cypher_query.asyncio(
|
|
219
|
+
graph_id="your-graph-id",
|
|
220
|
+
client=sdk,
|
|
221
|
+
body=query_request
|
|
222
|
+
)
|
|
223
|
+
except UnexpectedStatus as e:
|
|
224
|
+
# Handle API errors (4xx, 5xx)
|
|
225
|
+
print(f"API error: {e.status_code}")
|
|
226
|
+
print(f"Error details: {e.content}")
|
|
227
|
+
|
|
228
|
+
# Parse error response if JSON
|
|
229
|
+
if e.status_code == 400:
|
|
230
|
+
error_detail = e.content.decode('utf-8')
|
|
231
|
+
print(f"Validation error: {error_detail}")
|
|
232
|
+
elif e.status_code == 401:
|
|
233
|
+
print("Authentication failed - check your API key")
|
|
234
|
+
elif e.status_code == 403:
|
|
235
|
+
print("Permission denied - check graph access")
|
|
236
|
+
elif e.status_code == 429:
|
|
237
|
+
print("Rate limit exceeded - retry later")
|
|
238
|
+
except httpx.TimeoutException:
|
|
239
|
+
print("Request timed out - try again")
|
|
240
|
+
except httpx.NetworkError as e:
|
|
241
|
+
print(f"Network error: {e}")
|
|
242
|
+
except Exception as e:
|
|
243
|
+
print(f"Unexpected error: {type(e).__name__}: {e}")
|
|
244
|
+
|
|
245
|
+
# Using detailed responses for better error handling
|
|
246
|
+
from robosystems_client.api.query import execute_cypher_query
|
|
247
|
+
|
|
248
|
+
response = await execute_cypher_query.asyncio_detailed(
|
|
249
|
+
graph_id="your-graph-id",
|
|
250
|
+
client=sdk,
|
|
251
|
+
body=query_request
|
|
252
|
+
)
|
|
253
|
+
|
|
254
|
+
if response.status_code == 200:
|
|
255
|
+
result = response.parsed
|
|
256
|
+
print(f"Success: Query executed successfully")
|
|
257
|
+
else:
|
|
258
|
+
print(f"Failed with status {response.status_code}")
|
|
259
|
+
print(f"Headers: {response.headers}")
|
|
260
|
+
print(f"Content: {response.content}")
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
## Development
|
|
264
|
+
|
|
265
|
+
This Client is auto-generated from the RoboSystems OpenAPI specification to ensure it stays in sync with the latest API changes.
|
|
266
|
+
|
|
267
|
+
### Setup
|
|
268
|
+
|
|
269
|
+
```bash
|
|
270
|
+
just venv
|
|
271
|
+
just install
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
### Regenerating the Client
|
|
275
|
+
|
|
276
|
+
When the API changes, regenerate the Client from the OpenAPI spec:
|
|
277
|
+
|
|
278
|
+
```bash
|
|
279
|
+
# From localhost (development)
|
|
280
|
+
just generate-client http://localhost:8000/openapi.json
|
|
281
|
+
|
|
282
|
+
# From staging
|
|
283
|
+
just generate-client https://staging.api.robosystems.ai/openapi.json
|
|
284
|
+
|
|
285
|
+
# From production
|
|
286
|
+
just generate-client https://api.robosystems.ai/openapi.json
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
### Testing
|
|
290
|
+
|
|
291
|
+
```bash
|
|
292
|
+
just test
|
|
293
|
+
just test-cov
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
### Code Quality
|
|
297
|
+
|
|
298
|
+
```bash
|
|
299
|
+
just lint
|
|
300
|
+
just format
|
|
301
|
+
just typecheck
|
|
302
|
+
```
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
robosystems_client/__init__.py,sha256=dN-OfGzTR_q_TNPqncBFjg5Dnkp_hgmzLq2pZERZ-ZY,252
|
|
2
|
+
robosystems_client/client.py,sha256=glsYxdE5nRr9XWJRs9GkPOTDw65iGrmRyMdkCSckbb8,11659
|
|
3
|
+
robosystems_client/errors.py,sha256=c3fwsvNmoncJLYqwn4a82LJZamXZGd09IXPmx-qubhQ,520
|
|
4
|
+
robosystems_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5
|
+
robosystems_client/sdk-config.yaml,sha256=b60QZaX8RmfvKoukJlVmYZrDpZsB4E7QDA22ysU28yw,196
|
|
6
|
+
robosystems_client/types.py,sha256=l5mTsR9GphXnb6qHvveUHNZ_GpiRMqweGNjgKmn6qXE,1349
|
|
7
|
+
robosystems_client/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-YtdA,45
|
|
8
|
+
robosystems_client/api/agent/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
9
|
+
robosystems_client/api/agent/query_financial_agent.py,sha256=rXl1eXhLIuhLFsSAtuMS6MYL-8o6kU5qhfIDyeq9mZk,14367
|
|
10
|
+
robosystems_client/api/auth/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
11
|
+
robosystems_client/api/auth/check_password_strength.py,sha256=hukbrO7txh61gu2B4cX0ZPWV3XCF1O2Mr5US4acLOP4,4671
|
|
12
|
+
robosystems_client/api/auth/complete_sso_auth.py,sha256=9wj_oQBdzP7bzlst821sXwf7-MlZkQfaKlV5dUSeQSo,4885
|
|
13
|
+
robosystems_client/api/auth/generate_sso_token.py,sha256=d_LlodwLPT402hrj8l_NqRqwCUcUcNfKnCxCly37oTs,4860
|
|
14
|
+
robosystems_client/api/auth/get_captcha_config.py,sha256=bTEjCwGUUaPeEU-bd6JrO2fDITXBWvDb4v8l4eniTDA,2193
|
|
15
|
+
robosystems_client/api/auth/get_current_auth_user.py,sha256=SU2oT7CcxxW7W_zvlqC0FrG485E_BmseKlLn_igUq7E,5961
|
|
16
|
+
robosystems_client/api/auth/get_password_policy.py,sha256=QJ-9GVaYPNRYXV9TlNHtdTS-JX9-kCPMcm0gbDcGiCw,3482
|
|
17
|
+
robosystems_client/api/auth/login_user.py,sha256=m35Ak9lzc9PoE1z_aVqrnrwoUzoQsgcK74EAuRvMp3Y,4734
|
|
18
|
+
robosystems_client/api/auth/logout_user.py,sha256=qqisYyIsZkTT19TuQsGBsyc4L-Tfk3KmdYtl0NmjlHw,4566
|
|
19
|
+
robosystems_client/api/auth/refresh_session.py,sha256=6Mlvv8anwup97trQZfBpTyxp4fhXbkHcwGpr0rG34Xs,4765
|
|
20
|
+
robosystems_client/api/auth/register_user.py,sha256=xXgCceSaDH_oSQMT_L4_lBF3XUSVTFXWMrI8-I3M6xc,5565
|
|
21
|
+
robosystems_client/api/auth/sso_login.py,sha256=seSNkqyYjXPaSoRCxlwahiauH_BvqFbpExxkrYBXgi8,4717
|
|
22
|
+
robosystems_client/api/auth/sso_token_exchange.py,sha256=-rl28H-WCbO1gsw_kpzPe_t-WuA6mTfmcKcNzfzgY90,5088
|
|
23
|
+
robosystems_client/api/backup/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
24
|
+
robosystems_client/api/backup/create_backup.py,sha256=0Lv3uofS2AaxQ1uGO31tKSPeyGROIpgSgNIW2uV3x-A,13059
|
|
25
|
+
robosystems_client/api/backup/export_backup.py,sha256=CGdIk_D5OdeLm2KgWLk6NDCpnXNPQrz2eDfph_XY--k,6484
|
|
26
|
+
robosystems_client/api/backup/get_backup_download_url.py,sha256=5BDB8roiFnSlpKOoEjeQdi4Y2SOBqpLVi3ToJHzUOCw,7765
|
|
27
|
+
robosystems_client/api/backup/get_backup_stats.py,sha256=hicAwLZmjMyR5FHOAw4AcL3w9WjXggkWo0re7daug0U,4943
|
|
28
|
+
robosystems_client/api/backup/kuzu_backup_health.py,sha256=jtFf1-Tqu0Tzr8yBJkDk8gdJMdn7ATO1WtWgxE-kIk0,5913
|
|
29
|
+
robosystems_client/api/backup/list_backups.py,sha256=QD5s_i8dh8JcIijQ5I88-kRY_NlSpth6n0xH-Cu9BCM,6146
|
|
30
|
+
robosystems_client/api/backup/restore_backup.py,sha256=ptXrWkOjktO-KqPq6jK7QowxHF9dvqd4Gt2X2UuMA84,13495
|
|
31
|
+
robosystems_client/api/billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
32
|
+
robosystems_client/api/billing/get_available_subscription_plans_v1_graph_id_billing_available_plans_get.py,sha256=DamWckGXnY41VKY3siWDOjqL7EpwD3hO6q31i7aofNc,5341
|
|
33
|
+
robosystems_client/api/billing/get_credit_billing_info_v1_graph_id_billing_credits_get.py,sha256=gsCfJx9OJpXyGi4vYqYS3jNZxymQIAW7a5AnBrNHncQ,5881
|
|
34
|
+
robosystems_client/api/billing/get_current_graph_bill.py,sha256=j6l4Hc-rIsce6VGJvsbq6dElUXcqKrP0U4j0oRnDdSU,8444
|
|
35
|
+
robosystems_client/api/billing/get_graph_billing_history.py,sha256=hi28XqYyNg3CcsJrkQ4EauaZGlWYyJGBBnNssdr99rI,8807
|
|
36
|
+
robosystems_client/api/billing/get_graph_monthly_bill.py,sha256=vMrhCkZ-JaG20lSOEM36iCezT8tsxSSTvWRfDJLdCWI,8453
|
|
37
|
+
robosystems_client/api/billing/get_graph_pricing_info_v1_graph_id_billing_pricing_get.py,sha256=490AAeMwPHLMMvGqUocLytDCxozjCteOCnchHdImSZc,5329
|
|
38
|
+
robosystems_client/api/billing/get_graph_subscription_v1_graph_id_billing_subscription_get.py,sha256=_Z26_Ul1A8CiLN_BJ8Pvq3qXM5uCJG757WKDOYQo2r8,5302
|
|
39
|
+
robosystems_client/api/billing/get_graph_usage_details.py,sha256=3tVcKKbu4dkwM1KEZgIs7s606XYtQK0Eme1vHbzid34,10256
|
|
40
|
+
robosystems_client/api/billing/upgrade_graph_subscription_v1_graph_id_billing_subscription_upgrade_post.py,sha256=d9qZiVaVujmlsV7_NYVdci9mmGcGoyhlM3AP5l-YrGo,6115
|
|
41
|
+
robosystems_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
42
|
+
robosystems_client/api/connections/create_connection.py,sha256=oscfBaDKCI-CaBbuNWfVyJvHcN-95ROvGm_7HdN2okU,9527
|
|
43
|
+
robosystems_client/api/connections/create_link_token.py,sha256=AMjy9unsMxMi0yqFAw8ehM05OVrVRM-RTObIorPPB7w,8245
|
|
44
|
+
robosystems_client/api/connections/delete_connection.py,sha256=Y-_ebUlbShbcac6Y855jEw58QtXqBvzs0VmGD0QoqNg,7916
|
|
45
|
+
robosystems_client/api/connections/exchange_link_token.py,sha256=kPJVnOdPqS1ahG7h0ODrPThHHFZSlrHC8exoBbxmJrI,8880
|
|
46
|
+
robosystems_client/api/connections/get_connection.py,sha256=vm6iGQRqsQvNwFTZe_V53VHNAtBnBXJp0raU-Trz5-A,7677
|
|
47
|
+
robosystems_client/api/connections/get_connection_options.py,sha256=qGac2D8vBOn1gs53vLl3ATeDOYk4SvVkLGrTvP_iv-s,8734
|
|
48
|
+
robosystems_client/api/connections/init_o_auth.py,sha256=jjKE6pboyw2ugg_m7WV7vAKIWwnIAh7Z7idyImiRszw,6555
|
|
49
|
+
robosystems_client/api/connections/list_connections.py,sha256=hLDqUAeeaMrCym0Onh6I0qd51e_CR9XH62aKV8PjbQ8,9981
|
|
50
|
+
robosystems_client/api/connections/oauth_callback.py,sha256=9zX9fA7V_nJTBAi6crXQweS2VJSYvYq0Y7pMzefID0E,9103
|
|
51
|
+
robosystems_client/api/connections/sync_connection.py,sha256=9EOfZFr8FlpXC3xEpm8IJAJi3isuZLowh0XllQv62l0,10234
|
|
52
|
+
robosystems_client/api/create/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
53
|
+
robosystems_client/api/create/create_graph.py,sha256=dwzKgdBkLd9QithUt0ERPeh3shOdsIQ8b6Xvgc_hAQo,13152
|
|
54
|
+
robosystems_client/api/create/get_available_extensions.py,sha256=GDhN_iZ6anhXKJZ7fFBi84NuyyOkh1VFmll3tCTELIY,3512
|
|
55
|
+
robosystems_client/api/credits_/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
56
|
+
robosystems_client/api/credits_/check_credit_balance.py,sha256=Dg4RDy5p09VpqznewuGl-KENjybD-GJ2NYpKlea-s7A,8484
|
|
57
|
+
robosystems_client/api/credits_/check_storage_limits.py,sha256=Gq6_8dyCb05BPGVOR4qe-nJbFIfxrGu8XF--imfGnXU,7547
|
|
58
|
+
robosystems_client/api/credits_/get_credit_summary.py,sha256=X2yFM3ybAh15SDLE6l1wl8ElhIVKr9mu1DPORlsKPyk,7401
|
|
59
|
+
robosystems_client/api/credits_/get_storage_usage.py,sha256=pE3x94H_83rLY_OtY47XNn3lxAvdwMg847hM1U1f6hA,8112
|
|
60
|
+
robosystems_client/api/credits_/list_credit_transactions.py,sha256=OciMR4KODrYQSIPNbA6WW_Zsx2V81YV1W6P9nI6w8Xo,13663
|
|
61
|
+
robosystems_client/api/graph_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
62
|
+
robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=Zua1TuHaAJfhjXIpUYSmlJ-3mFV08Unhl-i5kJLX4os,8853
|
|
63
|
+
robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=UmILq6eWQb4R0ZcvPcO8ury-SK0OdjtXjxkfIEmNrlw,9765
|
|
64
|
+
robosystems_client/api/graph_status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
65
|
+
robosystems_client/api/graph_status/get_database_health.py,sha256=vresy2eiaelkTwAgp4M95LgNiWDxCP885HSIofjvFI4,8789
|
|
66
|
+
robosystems_client/api/graph_status/get_database_info.py,sha256=_DUHYBcb1ydB3Ly9G1JiZquPNfk3tIWCkEbN5sX7D0E,9125
|
|
67
|
+
robosystems_client/api/mcp/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
68
|
+
robosystems_client/api/mcp/call_mcp_tool.py,sha256=Tnt0oFk9stju2Anfq11_jcP-hFJQT79w8JUtlHutSfE,14483
|
|
69
|
+
robosystems_client/api/mcp/list_mcp_tools.py,sha256=yGVpB8ELAX9XMA1KqguwAT6JL16uVab6wFyHW1B9JYI,8207
|
|
70
|
+
robosystems_client/api/operations/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
71
|
+
robosystems_client/api/operations/cancel_operation.py,sha256=4qEm2tSrpX4xr0tiWA8nIfXFhJO9Dzqb6ScfmDACqYI,7506
|
|
72
|
+
robosystems_client/api/operations/get_operation_status.py,sha256=DhtRKF4v0Ggbw7Uj7WztL70fvLo_QODo7sWoU9TkP5w,8280
|
|
73
|
+
robosystems_client/api/operations/stream_operation_events.py,sha256=HjOepMeBeOjuJBFKYDoUyM5T7t3eRaLBqFj2Y_zCKsA,13944
|
|
74
|
+
robosystems_client/api/query/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
75
|
+
robosystems_client/api/query/execute_cypher_query.py,sha256=1J0wdJvKK6KidpNZZeoSwXJZtWQm4-wPI7xFwr6UYwE,16317
|
|
76
|
+
robosystems_client/api/schema/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
77
|
+
robosystems_client/api/schema/export_graph_schema.py,sha256=CCvl6D-NhkR5GzLWgrEJ3ltU8rpi2tYcchUCM-4BgK4,7487
|
|
78
|
+
robosystems_client/api/schema/get_graph_schema_info.py,sha256=3lI25ahXoB5jzRiJp68CammaE0_GvgGeF8YYSEijb4Y,9079
|
|
79
|
+
robosystems_client/api/schema/list_schema_extensions.py,sha256=kBcaBdtqnz_kHJ_C5yduJKic72pP0Mv8eyWyncM9Y8I,6161
|
|
80
|
+
robosystems_client/api/schema/validate_schema.py,sha256=AVNHCAOHSE6PofcxOEpUIRuIpdMDnqzfuAo5RLBGDn0,9895
|
|
81
|
+
robosystems_client/api/service_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
82
|
+
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=2ccICJL6g-QoFVIkZ4a916BIY_HtI0CxwSqcAWfUWlE,6185
|
|
83
|
+
robosystems_client/api/status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
84
|
+
robosystems_client/api/status/get_mcp_health.py,sha256=9N50gjKyStNUUaQGRAlpUauQ9orN4V2Tdv0lIt2eACQ,3487
|
|
85
|
+
robosystems_client/api/status/get_service_status.py,sha256=ORuAz31SqditB0mXVsQBSE_SJIghpwACxaJGgX5z1p8,3305
|
|
86
|
+
robosystems_client/api/user/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
87
|
+
robosystems_client/api/user/create_user_api_key.py,sha256=ccWvKxXXrHXRpQ1kwlBNymuqOvAgvwh_3j-CoL6gaH8,5827
|
|
88
|
+
robosystems_client/api/user/get_all_credit_summaries.py,sha256=fzAfUSWxkJo5OPJ1DPQBR69Wcd3_XOM0TgUssVM0T84,7010
|
|
89
|
+
robosystems_client/api/user/get_current_user.py,sha256=S3tE_P4PPpIpFl9UuuJ7-FQRQTe4AC4vq1eET1TWG6s,5127
|
|
90
|
+
robosystems_client/api/user/get_user_graphs.py,sha256=zmdnRRNk4BB5KTsKimimO1gOVRYdeQAbGKz671lDt0Q,5193
|
|
91
|
+
robosystems_client/api/user/list_user_api_keys.py,sha256=J5WdvUdA1bZMEAsV0OPcsV9wsMDwhZkINqYkn3ufH20,5080
|
|
92
|
+
robosystems_client/api/user/revoke_user_api_key.py,sha256=DETv0GaWH-DGb4e3ZgJhqUB-iqi9EVfsFF9zG0w9aC8,5812
|
|
93
|
+
robosystems_client/api/user/select_user_graph.py,sha256=gWSm1-Beevax2tqyu82LKoyFmlQ08qaGqXWCtblg2N8,6014
|
|
94
|
+
robosystems_client/api/user/update_user.py,sha256=Jj_ptsj0co6ZyKto-9giq9lHN52yamHZaCKuu5URCO8,5720
|
|
95
|
+
robosystems_client/api/user/update_user_api_key.py,sha256=b1iW0eF3BVyQ37Utp3zMqyUg014qnUNWBqZW4vXHeN8,5990
|
|
96
|
+
robosystems_client/api/user/update_user_password.py,sha256=L-WNZMGOjJe8E6r0KWvcpOnpQKn4rGJlvIvd8YzseKU,6314
|
|
97
|
+
robosystems_client/api/user_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
98
|
+
robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=IwnFYHVCTiMaS0XGiUgKdZcQie8__lfSsUs9bwb1zzM,7291
|
|
99
|
+
robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=le0c7AhyPOInv0uqgGcCaNJHOgTZl96_QdUsgaSq8tU,5364
|
|
100
|
+
robosystems_client/api/user_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
101
|
+
robosystems_client/api/user_limits/get_user_limits.py,sha256=D6FQtUVqR9KkjYmwaHvLfCwc13-3KWnqAQ6GoZF1iNI,5390
|
|
102
|
+
robosystems_client/api/user_limits/get_user_usage.py,sha256=V4jYSxb4wIyJxx3Yw9pZ1tzygvoi40fMzMR2VXC8Pqg,5330
|
|
103
|
+
robosystems_client/api/user_subscriptions/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
104
|
+
robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=fV1iVkpH5ZZ678FqXbXSrkA-aGX8Ii-aP2bFzj5BN54,6080
|
|
105
|
+
robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=VZ5LyOvVf52J-FFKpc8AUcWHql_mlHXCVJW78awshrE,5998
|
|
106
|
+
robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=vk6GZ_xvWIweL7kGPJU5ucdsqSnLn__CfZF24lajlaA,5574
|
|
107
|
+
robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=i-XEy5qLdQB1TSYYO7pM0e4OlhPnEpyV8p9Je18cj1c,6539
|
|
108
|
+
robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=bc7hUPHm_FQ_us30SLAtKSZzz6hOAysSET-DlnylsoE,6373
|
|
109
|
+
robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=ihMRdD_fbKoBuS4YAiFXAbN4UUM0bod9eS2Zpb5UtJw,6508
|
|
110
|
+
robosystems_client/extensions/README.md,sha256=SKwTdWExwSYhG6QzAwuNKNWMO-9TYPcHHhIMom0kAqY,16282
|
|
111
|
+
robosystems_client/extensions/__init__.py,sha256=Em_8OkPi7OUdMJn1e1l_XxsfNyuCOTNnQOkhahKaZQ4,2614
|
|
112
|
+
robosystems_client/extensions/auth_integration.py,sha256=Kgqmx59X8In-7vKBXLtVhQBj7doLco0R9zZwqaaEwvo,6245
|
|
113
|
+
robosystems_client/extensions/extensions.py,sha256=POkS_M7_qEm99vw7CsVJrt6unLnErBKEPRkTFH3Q3eM,5461
|
|
114
|
+
robosystems_client/extensions/operation_client.py,sha256=INCGhAciIBeLK4sPrG5j2qCNbyITk-Q8DhVqJdr5DxA,11983
|
|
115
|
+
robosystems_client/extensions/query_client.py,sha256=Zo408qxHV7dhwjf_d_bqnGKL5O1k9WPFANTQLk2Nlyk,11471
|
|
116
|
+
robosystems_client/extensions/sse_client.py,sha256=LcEtbzbedPIfXvqfPOpJiQGm0Px65DeobbcKyi6VsEM,14457
|
|
117
|
+
robosystems_client/extensions/utils.py,sha256=MX-skoxp-5SPp-dgz7nyhAhkYrvHlWsltf6bR07EDUM,15214
|
|
118
|
+
robosystems_client/extensions/tests/__init__.py,sha256=kNwQLXfKTfPn0A9o9lAhXkpDOUVORkXvRxfPfzRmcjI,43
|
|
119
|
+
robosystems_client/extensions/tests/test_integration.py,sha256=ahSQyzxwhVwKP70rWu7VCRgjRnzKM8PfdolK4uL6Pj4,15434
|
|
120
|
+
robosystems_client/extensions/tests/test_unit.py,sha256=qPRmfHQj0QurRz3hC53dMLxIW5Z3HYBfXLo_YB_dgp4,16701
|
|
121
|
+
robosystems_client/models/__init__.py,sha256=AId6ZvW1n8wplwiL2Gmq4NpX5g33dHL8lu1aUSm3NwA,16013
|
|
122
|
+
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
123
|
+
robosystems_client/models/add_on_credit_info.py,sha256=h65KAb8yZP_SGpsB2Ref4IaBCthEDYJgFGTd9PjUpfs,3221
|
|
124
|
+
robosystems_client/models/agent_message.py,sha256=arwhQ2jiLsZLX7_3xjWxH5AA7LcLuDzLCA8dtHF7mG0,1544
|
|
125
|
+
robosystems_client/models/agent_request.py,sha256=X4RSrAEc2yHnFw48CC4cB7y6KxnW6fCxJD1yQv04Vbw,4120
|
|
126
|
+
robosystems_client/models/agent_request_context_type_0.py,sha256=ejbTwiXYLwaXvtUGuxeNwej4YSEoQ6WzhLdeRKLS8zE,1204
|
|
127
|
+
robosystems_client/models/agent_response.py,sha256=Y74-yTuSIy73vpPY0wnQjp6B8yVrFcTQY7w4pAQ7Mt4,3968
|
|
128
|
+
robosystems_client/models/agent_response_metadata_type_0.py,sha256=3Kn2zUDzbp49MXItEHWyA0ujGIpSvVHehfUIIc4KhP4,1214
|
|
129
|
+
robosystems_client/models/api_key_info.py,sha256=7B-BRKFsLHC-3VsvT3xuWu49Flo3ruaI-MywB5699SE,3421
|
|
130
|
+
robosystems_client/models/api_keys_response.py,sha256=SaqZcuXOQkT4rVT4uc8SlKTu_F0NZT5T9WjRFpCIGu8,1882
|
|
131
|
+
robosystems_client/models/auth_response.py,sha256=3LJDYXcswDJ58CsZrQV5tiTSQh3H-NjHvtO6sg3OVxU,1903
|
|
132
|
+
robosystems_client/models/auth_response_user.py,sha256=QSXztxSkwxAbCkUJBeKcN-_4d-NONtJnMB99cJHmuAw,1173
|
|
133
|
+
robosystems_client/models/available_extension.py,sha256=YKL7EfIcYfSdBFzpmlMXp0GQqCdab8CiRtapIpO6UOc,1824
|
|
134
|
+
robosystems_client/models/available_extensions_response.py,sha256=zt9ggowoErKKoqxle5sa10XCx5wh-j71xw-Rq4Ya16c,1979
|
|
135
|
+
robosystems_client/models/backup_create_request.py,sha256=51DBMilcgEu0GDXwuPnFm3gSAOWYYbkq2PsDCXAgQ2A,3710
|
|
136
|
+
robosystems_client/models/backup_export_request.py,sha256=M_3awrPYz8pEGaNh6gdGKoC7EsKJVK7prTugdsaxR38,1908
|
|
137
|
+
robosystems_client/models/backup_list_response.py,sha256=0hXeW9J2UzHZtESAjOKNMK5ETt-Juc2OiY4svNLVB8A,2216
|
|
138
|
+
robosystems_client/models/backup_response.py,sha256=LCJgvjSDK6KMOXGJm9coTiU7VSQ9fd549Q2xsGzM8qY,5402
|
|
139
|
+
robosystems_client/models/backup_restore_request.py,sha256=52Y1XfaSzu5dN54OyQlcOxPyxnCJi2m-rpOnGrhPhpg,2409
|
|
140
|
+
robosystems_client/models/backup_stats_response.py,sha256=_CLWy2wrczlIae_Li6NDSLSSG-Vt53ePx37az64siBg,4688
|
|
141
|
+
robosystems_client/models/backup_stats_response_backup_formats.py,sha256=dtxMpx0q6t5MZ1s37lQ-wttexoz7MkD8bAbaZ7SzDZ0,1244
|
|
142
|
+
robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
|
|
143
|
+
robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
|
|
144
|
+
robosystems_client/models/check_credit_balance_response_checkcreditbalance.py,sha256=izJJIZJaZkfJY7pqYg7nBPEv9IgRpJ5WSw6hu7VUZEk,1304
|
|
145
|
+
robosystems_client/models/connection_options_response.py,sha256=J-VjmGYJn_BOhuExZBlJIHXedyf_CXcoRf2XfklOnrk,2309
|
|
146
|
+
robosystems_client/models/connection_provider_info.py,sha256=Im0k56k1USElC9G5m2g7elOJ5CHZ08lDOLg5vOmx_AA,6600
|
|
147
|
+
robosystems_client/models/connection_provider_info_auth_type.py,sha256=cSRUkd90osfbj2MP5Hl8dinEoIXBPrCOIFGYYrk-4D0,201
|
|
148
|
+
robosystems_client/models/connection_provider_info_provider.py,sha256=-IsFtqa7tdaPU-AegHiwL6A3nQaH5HURICToP4LIhBc,189
|
|
149
|
+
robosystems_client/models/connection_response.py,sha256=VCOxkvvpwBwZz-TU4FHsmcuvwn3me-2AQyAB_hknCio,4174
|
|
150
|
+
robosystems_client/models/connection_response_metadata.py,sha256=xp9LNJHpuXrfLKSQFLVHwhAF4Ieu26rbSe-odVFWBcM,1233
|
|
151
|
+
robosystems_client/models/connection_response_provider.py,sha256=th7b2inab-PZWaQ9kjsYoM81Xo4coJGJ1kqYh7txnYE,185
|
|
152
|
+
robosystems_client/models/create_api_key_request.py,sha256=yPeQwvtQtcVET6dxfbLjkCDv8UL4Ox_L3D6gXAVhnjM,2134
|
|
153
|
+
robosystems_client/models/create_api_key_response.py,sha256=9cqlZDogqxdSXxxHT6PnfClTP-Q35CvfQjNIvPEe1Pw,1797
|
|
154
|
+
robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
|
|
155
|
+
robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
|
|
156
|
+
robosystems_client/models/create_graph_request.py,sha256=gHNUmzHR7rzCtpVDdN2F90DPuTn2WdT6hZz8xvejQq4,6011
|
|
157
|
+
robosystems_client/models/credit_check_request.py,sha256=35hhuBVdYYtLD4YL_ij0zWqJGRDKhb3AAKREZys_CPs,2228
|
|
158
|
+
robosystems_client/models/credit_summary.py,sha256=rBh9GRUUWV48P8ojRY1BXhBInikUQF3erbRSCnSx6jc,3940
|
|
159
|
+
robosystems_client/models/credit_summary_response.py,sha256=YuRmbDtF9YTh7beu56ZqOaNRd86gKYDP16wTCDPunVg,3963
|
|
160
|
+
robosystems_client/models/credits_summary_response.py,sha256=QAqJMJ2WtzNiqg2comgAfLxw155kgq1V3ql_CjLbYhs,3730
|
|
161
|
+
robosystems_client/models/credits_summary_response_credits_by_addon_item.py,sha256=bIs0s1LNwAs9H1KmIy3pUUyaM6bEB7fLqCB6MvVK7zs,1290
|
|
162
|
+
robosystems_client/models/custom_schema_definition.py,sha256=YDqYamVHCv-9UW6bCrucdaVk1EaSaVU9c2OZle8yEX0,6715
|
|
163
|
+
robosystems_client/models/custom_schema_definition_metadata.py,sha256=Em3kBLoXLJ32PwAVsfE5mlSprBLZx6EHLPdQ0a51KCs,1333
|
|
164
|
+
robosystems_client/models/custom_schema_definition_nodes_item.py,sha256=0hg2ctntwlXkP43NdtAa2gRFMogKU80Mwg_JmSUb4h4,1239
|
|
165
|
+
robosystems_client/models/custom_schema_definition_relationships_item.py,sha256=lJZACnh463SpmX2ncTV9Xi6NcHIejEn-SKQ81PZN654,1279
|
|
166
|
+
robosystems_client/models/cypher_query_request.py,sha256=Y40qJmtFszBPkKw1VhezR0G4Nys1HyQHFyFJMhRY2ew,3641
|
|
167
|
+
robosystems_client/models/cypher_query_request_parameters_type_0.py,sha256=I8QFYojTUqvgSeiS2uP79PQQfqulTB89OyXXgYbl3Cc,1252
|
|
168
|
+
robosystems_client/models/database_health_response.py,sha256=Kf-rdIbnPOPpkNOHqrOstxI-lLilshccO8H34o6MjTo,5857
|
|
169
|
+
robosystems_client/models/database_info_response.py,sha256=ldAP-BbMwkGmzV5DA3gl5QbcPHhNMIiv8MJG3UU2qQ0,5985
|
|
170
|
+
robosystems_client/models/detailed_transactions_response.py,sha256=gNvssogFCR4cK54swZMpHhUOHhRLTwiUlI0oZpVwj9g,3660
|
|
171
|
+
robosystems_client/models/detailed_transactions_response_date_range.py,sha256=Ky1tjKrTW8i3ZPxv2_vIDZF8guyEilgX4r01gEKnaE4,1269
|
|
172
|
+
robosystems_client/models/detailed_transactions_response_summary.py,sha256=oPH6-HWWOLb9zmhFow3DWaxo5Y4YcfIll8RtQtPfLMA,1826
|
|
173
|
+
robosystems_client/models/enhanced_credit_transaction_response.py,sha256=LXGkDvL0Sia6nMNDAxxfCtCNcVAIsnPSPbaYO80Z7hI,5302
|
|
174
|
+
robosystems_client/models/enhanced_credit_transaction_response_metadata.py,sha256=UaLqPb6t9UXZYwq9mWaK6Oh7zpyGmzU-geJ6o_kjLT8,1289
|
|
175
|
+
robosystems_client/models/error_response.py,sha256=ZUVGSKgQ7fG3B7IwGCVSE3FDcv6smGz5KnF69BtdLsg,4305
|
|
176
|
+
robosystems_client/models/exchange_token_request.py,sha256=76zVpSXbbuJpMAnf_rRT0EjpxH1PZD9nFLJK8i6cn6E,3290
|
|
177
|
+
robosystems_client/models/exchange_token_request_metadata_type_0.py,sha256=4ndzrJRefnYO_ikDiySWS2aHBNFCG5Y2SF-bHF_jPYw,1252
|
|
178
|
+
robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py,sha256=Z-PEihC2i7G8QLlmQ1PgyLJIlETUrXyNF9j4HXt3B90,1337
|
|
179
|
+
robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py,sha256=dDqOgolFduHyRXl5y5q9zH0_y4GuDGq-wwQUA9pl0X0,1327
|
|
180
|
+
robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py,sha256=QbLg6o9w0UQs2npB27r2lLfWi9uAe4cjmN0srszTKDE,1307
|
|
181
|
+
robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py,sha256=PjfVnVwWG6BEBWEjb5kvN5XYtC2uTc5h4OIKPmZv-Gc,1317
|
|
182
|
+
robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py,sha256=IyBAkkk8vtqQx9Twif1J7iG-9iaeuMm1W_75E7pzM-A,1347
|
|
183
|
+
robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py,sha256=q1k4zEtQmcBpgz_vz9B26Deu4qT4evEsAiRoTpmcw0w,1317
|
|
184
|
+
robosystems_client/models/get_graph_schema_info_response_getgraphschemainfo.py,sha256=XlkB4KEi46O-VxGBM3jgZZ5XWlqX3YOCCGCZv_KiahU,1307
|
|
185
|
+
robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py,sha256=OfsWqXgc6O0v21jbL8Z1NquZg5eKhNQUEiTl_Vs7I7w,1327
|
|
186
|
+
robosystems_client/models/get_mcp_health_response_getmcphealth.py,sha256=pPJHhwTDqGp1K6CzjVDaejWV5Dw-27tZZvXvPucOs7c,1244
|
|
187
|
+
robosystems_client/models/get_operation_status_response_getoperationstatus.py,sha256=dhCc_dZpSo-h9210m5MShVde1sGHmMhkBanqt_6xt_A,1304
|
|
188
|
+
robosystems_client/models/get_storage_usage_response_getstorageusage.py,sha256=5ZpeVOQNa8FLcI82C3-CCnYbtgUPXqIUa7d6cHr0Ddo,1274
|
|
189
|
+
robosystems_client/models/graph_info.py,sha256=5roDVOk3Y0sWsIS6468vHFcw2J6LFX7xK44c3L0Yvqs,2166
|
|
190
|
+
robosystems_client/models/graph_metadata.py,sha256=3JEpk0pgPrH26zTHzHkiDmHYPtZLOR2BaurGkNLuAVg,3177
|
|
191
|
+
robosystems_client/models/graph_metrics_response.py,sha256=vKPF6Jqu17dsPNfTr5saUFro-hnAiCyh3Me1DA3BsuQ,5878
|
|
192
|
+
robosystems_client/models/graph_metrics_response_estimated_size.py,sha256=Dfe4zb_nW37PFlfO2YvgN5o3kSeMjW3284-Oay0qfxw,1271
|
|
193
|
+
robosystems_client/models/graph_metrics_response_health_status.py,sha256=IpwCxU4V5fHNP-2sVQW4uV9iAl_b0KA4ECEsEggfeb4,1270
|
|
194
|
+
robosystems_client/models/graph_metrics_response_node_counts.py,sha256=slKDmoKGV5HfUs8CuAvgYyDS-6VkyBjZ3IUJ2Dl5Acw,1253
|
|
195
|
+
robosystems_client/models/graph_metrics_response_relationship_counts.py,sha256=-MPyWBhmOX3w-2Xj5d0ED42ewyWzS9r0ruE6mgdZ98I,1300
|
|
196
|
+
robosystems_client/models/graph_usage_response.py,sha256=zdtgINU0tQw4eEgRtOUAwdU0hM_nNuHWDpsoxOsRgsc,3418
|
|
197
|
+
robosystems_client/models/graph_usage_response_query_statistics.py,sha256=YjUU3AcJ9TAYHbsLncm2u497J3M8DVacnZwiQOzkIYY,1264
|
|
198
|
+
robosystems_client/models/graph_usage_response_recent_activity.py,sha256=zuhLvyEIn7kpx1Xxi32EVcNmCzHlR-9xeSQ_sCDf_DE,1266
|
|
199
|
+
robosystems_client/models/graph_usage_response_storage_usage.py,sha256=_ZVpNzUmkQcANrqfe8v7uSs3jd_rBD7k7vT4NY0Os-8,1258
|
|
200
|
+
robosystems_client/models/health_status.py,sha256=YzvlAez-PycBKR_u4xNqj0TXAIlvHNz2mlyeLxj-3ZE,3083
|
|
201
|
+
robosystems_client/models/health_status_details_type_0.py,sha256=ORS2NbiOWUJZvxa1dYdngpphzj_5lj7fLhmKqxyiVNU,1204
|
|
202
|
+
robosystems_client/models/http_validation_error.py,sha256=LXy3nhf_7F-tawZB7Rd6lqwi5FDtNtX58oil3X5hxLI,2045
|
|
203
|
+
robosystems_client/models/initial_entity_data.py,sha256=P6lP81w0G72OMuRxV3r7Q_hALiP93bKDWGXldCJSbmE,6113
|
|
204
|
+
robosystems_client/models/kuzu_backup_health_response_kuzubackuphealth.py,sha256=jkWdC4OcMUxuCPfYignYCIX1LZpwCPHTUxd5g6tjW0k,1284
|
|
205
|
+
robosystems_client/models/link_token_request.py,sha256=smOO4eebeImqNM9j7pOmbVeJXK0oEuqRYuvvMeZP0Sc,5144
|
|
206
|
+
robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0LijMFwGAtSIpNAFBLFHayZ8T1NZ2SaQJ8,1227
|
|
207
|
+
robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
|
|
208
|
+
robosystems_client/models/list_connections_provider_type_0.py,sha256=Mmteiaom76sOnidak7Y1zY4UemEbnM_3BnfbkFUUVv0,187
|
|
209
|
+
robosystems_client/models/list_schema_extensions_response_listschemaextensions.py,sha256=ywzRLGbL2PuMdC1td41i0KYm_O3sKzagXZqXS4c49KM,1324
|
|
210
|
+
robosystems_client/models/login_request.py,sha256=bWvQYg7jPbtE__tVOqPKqGYx7Yzex2hPfOm2fJZjvLU,1543
|
|
211
|
+
robosystems_client/models/logout_user_response_logoutuser.py,sha256=UGr9RnAP7Db-T5JLbH6R6CZjZaENzIX6iW31nxBAIBI,1221
|
|
212
|
+
robosystems_client/models/mcp_tool_call.py,sha256=--2c-SyQb1XxZNMTcb8VWZ_ldomBp3zefuirUybIwWQ,2212
|
|
213
|
+
robosystems_client/models/mcp_tool_call_arguments.py,sha256=ccgoV_qgvOt9uh0uSXP3UaATSlWDY2WXoTqUCRXh4N4,1209
|
|
214
|
+
robosystems_client/models/mcp_tools_response.py,sha256=NMXqyI1IOO1cguVxDFQfqx_5Xul3IiF7_nNETOi1ydE,1954
|
|
215
|
+
robosystems_client/models/mcp_tools_response_tools_item.py,sha256=nsRmhG6vgl3u2GcKVw9AkABHjGgYzwx6uyJGqSUi_p0,1209
|
|
216
|
+
robosystems_client/models/o_auth_callback_request.py,sha256=qZ2SHHQ9rjJwJk0cUjSZelZIlsdGEg9qBeolYRG0g5M,3602
|
|
217
|
+
robosystems_client/models/o_auth_init_request.py,sha256=lLX0Cs1s0B977cUhRLYPtqep_8AV3qD1bhytH5QrvYs,3963
|
|
218
|
+
robosystems_client/models/o_auth_init_request_additional_params_type_0.py,sha256=UERw3SmOK4UE4Om2_sZl-2a4C2qD0Ai8myH7Dh6ANlg,1278
|
|
219
|
+
robosystems_client/models/o_auth_init_response.py,sha256=kBJn6x9T1R9b45GFm6sY3_p0uZsM_zhlCfG3goO99L0,1931
|
|
220
|
+
robosystems_client/models/password_check_request.py,sha256=ht66MwakiQAc8FB_sDS5qmI2FuHSM_-TNcupE9lhz1g,2091
|
|
221
|
+
robosystems_client/models/password_check_response.py,sha256=QkGKrAFrU2zpGUDxo1kisyJK1mr7-g1hzZf5OR3hFvA,2902
|
|
222
|
+
robosystems_client/models/password_check_response_character_types.py,sha256=fM4WuPV_L8vHGOTEFx7oV8_1w49GIBOKrupFMuSooYY,1284
|
|
223
|
+
robosystems_client/models/password_policy_response.py,sha256=q-DI_QW6Jaui9VAvp1aCnhqUV9vZlp0jaOnTeGyO17o,1768
|
|
224
|
+
robosystems_client/models/password_policy_response_policy.py,sha256=_v_cVOIsaHSDNt5wzP2xMPT3AueojHBkP4qK-c1AuCU,1256
|
|
225
|
+
robosystems_client/models/plaid_connection_config.py,sha256=ddmVo8hWnXVbJF3kfHpSIGa6CaDqvWbX5a2al39T7JE,6662
|
|
226
|
+
robosystems_client/models/plaid_connection_config_accounts_type_0_item.py,sha256=udIb0Qbzilz_ko6_D8w9NC8hbRqOslg92zbB24wYEvs,1280
|
|
227
|
+
robosystems_client/models/plaid_connection_config_institution_type_0.py,sha256=bNd_czT5nU9yTWcKJih3ft71IGL-DTgT5ot1WeitrZg,1272
|
|
228
|
+
robosystems_client/models/quick_books_connection_config.py,sha256=ohhOvNp3k8XVz-8-xGr1NygPgDdU3ELqJVteo0iTe9I,2664
|
|
229
|
+
robosystems_client/models/register_request.py,sha256=9pHjAsopUT4IJ-pWPny7VSZ5MfSq2tALCt2nTM1vRZc,2511
|
|
230
|
+
robosystems_client/models/repository_credits_response.py,sha256=pMPU06jwl_6WXYZ_onut8G-IF9nNe_Rhq9ItIGr1feA,2741
|
|
231
|
+
robosystems_client/models/repository_plan.py,sha256=BEdbh0FPIrsomZU_Aq27EAk-ppOqlJxuwNRVCZlNLKo,185
|
|
232
|
+
robosystems_client/models/repository_type.py,sha256=Mw4q6l82iVgalXxOiWCpmtGZAf4MawNxCsIW2QoPd0I,175
|
|
233
|
+
robosystems_client/models/response_mode.py,sha256=0tm3YUxAKHNYS1jn-zdR_88xn6E_bsQl85DwHZM_kkM,181
|
|
234
|
+
robosystems_client/models/schema_export_response.py,sha256=1cvYh2AkzkM96vPKHDKiWrFOEZp0FztAPW_IbMR8y5o,5177
|
|
235
|
+
robosystems_client/models/schema_export_response_data_stats_type_0.py,sha256=QRzVNkX-1Er8oppABqj79HRGKtcMk3YNG2DFkdqdFSQ,1260
|
|
236
|
+
robosystems_client/models/schema_export_response_schema_definition_type_0.py,sha256=iYwrxPZsEttzkaDySeVyUdwF5yvhvNgALiMEqTMJTpo,1295
|
|
237
|
+
robosystems_client/models/schema_validation_request.py,sha256=-pKg_IWAo-5jIUZaLGIW6cup4OIUy9HLozsDuHtNqgY,4724
|
|
238
|
+
robosystems_client/models/schema_validation_request_schema_definition_type_0.py,sha256=cA1Xq01d4UDuPAzuGMcoFTwzQx0ax1bk2v0au070ano,1310
|
|
239
|
+
robosystems_client/models/schema_validation_response.py,sha256=yOcpHpkl7HbmnhibsS7d9h8_mvB8eZo579if-sbdw6w,6950
|
|
240
|
+
robosystems_client/models/schema_validation_response_compatibility_type_0.py,sha256=Kc-94bQYdIk1giTAmVNdGyxqLeBS7vPfLUcqUy6iZFQ,1297
|
|
241
|
+
robosystems_client/models/schema_validation_response_stats_type_0.py,sha256=H2ZmFmyJSBfupYJniiU643PfHvwc5CCwRrOP8hj6fug,1257
|
|
242
|
+
robosystems_client/models/sec_connection_config.py,sha256=ZIcENfOIhGJnnAfboyVD_V9TFOkrS-dhLbVqfMBE1gw,2117
|
|
243
|
+
robosystems_client/models/sso_complete_request.py,sha256=_k4oKRh41Z3DVIrP8-bbFE3AenBbflLrY2tw6xg5G34,1482
|
|
244
|
+
robosystems_client/models/sso_exchange_request.py,sha256=b-XqNnBNLMviA6-rPmvfDLw6QELxs9-2tELSqjZJVQ4,2338
|
|
245
|
+
robosystems_client/models/sso_exchange_response.py,sha256=HmcvnafE-AQvzjvVBcGEft7FE6cxW2yJ1iiXtJbLe2A,2030
|
|
246
|
+
robosystems_client/models/sso_login_request.py,sha256=zFkukTRnhKLhmcuypwEI5781XV38wB-5AW32fB25MSE,1391
|
|
247
|
+
robosystems_client/models/sso_token_response.py,sha256=nZUjC2-uvY8kBxXRzf_XLw6Oh9T2jF24sy7tf2BsYZY,1909
|
|
248
|
+
robosystems_client/models/storage_limit_response.py,sha256=MARn28shb1eSTXx7ZoXdkWr_tKRh87bdl49Ois-aVow,4149
|
|
249
|
+
robosystems_client/models/subscription_info.py,sha256=cjDtNCC0Og44KMZFehTPBM5BjrgJU6ffbN4_WUoIzRM,4889
|
|
250
|
+
robosystems_client/models/subscription_info_metadata.py,sha256=5RZRthVzH5VloERrIXm9dHSJBntmdd_0vPYaVeEOvCo,1216
|
|
251
|
+
robosystems_client/models/subscription_request.py,sha256=9CGRH2CXjv2CmJPVTrz1QPQSh2OP4hz82DG7hjjv9Zk,2681
|
|
252
|
+
robosystems_client/models/subscription_response.py,sha256=Rd_MPNc_iSp-gJfJaceEF0LWYL_-6RTfTHjTOCVjFUU,2106
|
|
253
|
+
robosystems_client/models/success_response.py,sha256=FveugtqyuMe0kolqWrcKV4b4LlI28BqCxISORqSS2Dw,3215
|
|
254
|
+
robosystems_client/models/success_response_data_type_0.py,sha256=tirQFpgZO8Lpge7WDBGfILrLz0HZQVXXG6fu6b2-eSU,1204
|
|
255
|
+
robosystems_client/models/sync_connection_request.py,sha256=qyOzmAJ0khdwAZb-Hlf8jbzfqGBjMalqkQsua08vEnc,3232
|
|
256
|
+
robosystems_client/models/sync_connection_request_sync_options_type_0.py,sha256=5lckaZAs1S-F_WAtLtaJPXca2DucqCfcKNmf25p5UIY,1275
|
|
257
|
+
robosystems_client/models/sync_connection_response_syncconnection.py,sha256=U9wHtybnX6Bn4i_7Vwm9sPWPRBwbLoDgGiT2-c0pqJ0,1261
|
|
258
|
+
robosystems_client/models/tier_upgrade_request.py,sha256=uSF_CpTLwlj6jTO7a9yCbboBGvuzJOIgyVjJYVNc6t4,1567
|
|
259
|
+
robosystems_client/models/transaction_summary_response.py,sha256=MSQYuOharoRpBilqmpKo_Dxv39QLjJ0g5oY9NYsCQNA,3714
|
|
260
|
+
robosystems_client/models/update_api_key_request.py,sha256=fQVFQnUSIRDcBkCZP6ObAdVjIReaYuqSS3eliNSt59c,2527
|
|
261
|
+
robosystems_client/models/update_password_request.py,sha256=3YwCzOJwE3WYpv05JwVBpwL71GCsj1fMLngxuEsXtpE,2013
|
|
262
|
+
robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
|
|
263
|
+
robosystems_client/models/upgrade_subscription_request.py,sha256=ZCdLWYJSFSKVv4Rb2HMTtKVwEqHI97p5BrXJxfNH_cQ,2278
|
|
264
|
+
robosystems_client/models/user_analytics_response.py,sha256=M89LNcZ6x2p0WY1NTKs9mu2o1ql-ubdr5RFZnQVCXnM,4423
|
|
265
|
+
robosystems_client/models/user_analytics_response_api_usage.py,sha256=rCzeBaCp40iOhr784WJ5pBnBnVFFkrf7Uy-TuUKyxwQ,1248
|
|
266
|
+
robosystems_client/models/user_analytics_response_graph_usage.py,sha256=i71sukhzKuhTQ_luiqbe0gWvsruRmUlvqsuBPZU3XwM,1260
|
|
267
|
+
robosystems_client/models/user_analytics_response_limits.py,sha256=SNPMfjwzX0p5WgyN28tQTuWa3vR2iyeJh6ySyuhftr0,1246
|
|
268
|
+
robosystems_client/models/user_analytics_response_recent_activity_item.py,sha256=2fdWobH0DzAEVRP6swlRqJq5hmTYYJre1wrO_FCfhr8,1282
|
|
269
|
+
robosystems_client/models/user_analytics_response_user_info.py,sha256=R25GyPfXmCJ2g19RVGy6tyRP8jWRKiGdUFjj5TbAgss,1244
|
|
270
|
+
robosystems_client/models/user_graph_summary.py,sha256=qtG1p4m2GSD12vFgkyJ5GeWPiLY3B3DeoSkcvmdqfGc,3783
|
|
271
|
+
robosystems_client/models/user_graphs_response.py,sha256=k4zDipn-9HqwiJHUq8Si1XSemCDJv_t9SfTtJxc6w_k,2648
|
|
272
|
+
robosystems_client/models/user_limits_response.py,sha256=HyGQMqqX_U66B3vKIknQJTK35LAFfjEA_VTQgm_a_QM,2419
|
|
273
|
+
robosystems_client/models/user_response.py,sha256=uMYsvPKLo5YUwsT-PV8Tu5qrFG81X8-ODBllFyX2C6E,3650
|
|
274
|
+
robosystems_client/models/user_subscriptions_response.py,sha256=vQx876KIEQ6-0Db3O0CbXHaaMAhk_BBqCBNiJvf-npE,2526
|
|
275
|
+
robosystems_client/models/user_usage_response.py,sha256=xsKYfbSoHWbuE9Y-yBvaLkaUeBfgJ7s184JUtP75wT4,2612
|
|
276
|
+
robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZQ1grZWBRA0hMfW5eukyQr9lIk8,1243
|
|
277
|
+
robosystems_client/models/user_usage_summary_response.py,sha256=4hthwTH7bXyzdYlHoekDYOgDLI-stGRH507Bl2rUjYA,3655
|
|
278
|
+
robosystems_client/models/user_usage_summary_response_usage_vs_limits.py,sha256=XrZnRcy1nD3xtKX4svbww7QfEHrN7_XIfeL9j5ZMbyQ,1298
|
|
279
|
+
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
280
|
+
robosystems_client-0.1.9.dist-info/METADATA,sha256=htpuWGlDsFWUpEmvyIQrXhuQ83tfSfWxAhmSD2UC_Tg,9350
|
|
281
|
+
robosystems_client-0.1.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
282
|
+
robosystems_client-0.1.9.dist-info/RECORD,,
|