robosystems-client 0.2.2__py3-none-any.whl → 0.2.4__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 +1 -41
- robosystems_client/api/agent/batch_process_queries.py +1 -41
- robosystems_client/api/agent/execute_specific_agent.py +1 -41
- robosystems_client/api/agent/get_agent_metadata.py +5 -49
- robosystems_client/api/agent/list_agents.py +4 -42
- robosystems_client/api/agent/recommend_agent.py +5 -45
- robosystems_client/api/auth/generate_sso_token.py +0 -18
- robosystems_client/api/auth/get_current_auth_user.py +14 -74
- robosystems_client/api/auth/logout_user.py +14 -50
- robosystems_client/api/auth/refresh_auth_session.py +14 -50
- robosystems_client/api/auth/resend_verification_email.py +14 -74
- robosystems_client/api/backup/create_backup.py +5 -45
- robosystems_client/api/backup/get_backup_download_url.py +4 -42
- robosystems_client/api/backup/get_backup_stats.py +5 -49
- robosystems_client/api/backup/list_backups.py +4 -42
- robosystems_client/api/backup/restore_backup.py +5 -45
- robosystems_client/api/connections/create_connection.py +5 -45
- robosystems_client/api/connections/create_link_token.py +5 -45
- robosystems_client/api/connections/delete_connection.py +5 -49
- robosystems_client/api/connections/exchange_link_token.py +5 -45
- robosystems_client/api/connections/get_connection.py +5 -49
- robosystems_client/api/connections/get_connection_options.py +5 -49
- robosystems_client/api/connections/init_o_auth.py +5 -45
- robosystems_client/api/connections/list_connections.py +4 -42
- robosystems_client/api/connections/oauth_callback.py +5 -45
- robosystems_client/api/connections/sync_connection.py +5 -45
- robosystems_client/api/graph_analytics/get_graph_metrics.py +5 -49
- robosystems_client/api/graph_analytics/get_graph_usage_stats.py +4 -42
- robosystems_client/api/graph_billing/get_current_graph_bill.py +5 -49
- robosystems_client/api/graph_billing/get_graph_billing_history.py +4 -42
- robosystems_client/api/graph_billing/get_graph_monthly_bill.py +5 -49
- robosystems_client/api/graph_billing/get_graph_usage_details.py +4 -42
- robosystems_client/api/graph_credits/check_credit_balance.py +0 -38
- robosystems_client/api/graph_credits/check_storage_limits.py +1 -45
- robosystems_client/api/graph_credits/get_credit_summary.py +1 -45
- robosystems_client/api/graph_credits/get_storage_usage.py +0 -38
- robosystems_client/api/graph_credits/list_credit_transactions.py +4 -42
- robosystems_client/api/graph_health/get_database_health.py +5 -49
- robosystems_client/api/graph_info/get_database_info.py +5 -49
- robosystems_client/api/graph_limits/get_graph_limits.py +5 -49
- robosystems_client/api/graphs/create_graph.py +21 -57
- robosystems_client/api/graphs/get_available_extensions.py +131 -15
- robosystems_client/api/graphs/get_graphs.py +154 -79
- robosystems_client/api/graphs/select_graph.py +117 -49
- robosystems_client/api/mcp/call_mcp_tool.py +24 -47
- robosystems_client/api/mcp/list_mcp_tools.py +13 -61
- robosystems_client/api/operations/cancel_operation.py +1 -45
- robosystems_client/api/operations/get_operation_status.py +1 -45
- robosystems_client/api/query/execute_cypher_query.py +68 -57
- robosystems_client/api/schema/export_graph_schema.py +223 -65
- robosystems_client/api/schema/get_graph_schema.py +137 -79
- robosystems_client/api/schema/validate_schema.py +5 -45
- robosystems_client/api/subgraphs/create_subgraph.py +5 -45
- robosystems_client/api/subgraphs/delete_subgraph.py +5 -45
- robosystems_client/api/subgraphs/get_subgraph_info.py +5 -49
- robosystems_client/api/subgraphs/get_subgraph_quota.py +5 -49
- robosystems_client/api/subgraphs/list_subgraphs.py +5 -49
- robosystems_client/api/tables/delete_file.py +317 -0
- robosystems_client/api/tables/get_file_info.py +249 -0
- robosystems_client/api/tables/get_upload_url.py +352 -0
- robosystems_client/api/tables/ingest_tables.py +428 -0
- robosystems_client/api/tables/list_table_files.py +329 -0
- robosystems_client/api/tables/list_tables.py +316 -0
- robosystems_client/api/tables/query_tables.py +431 -0
- robosystems_client/api/tables/update_file_status.py +395 -0
- robosystems_client/api/user/create_user_api_key.py +1 -41
- robosystems_client/api/user/get_all_credit_summaries.py +14 -111
- robosystems_client/api/user/get_current_user.py +14 -75
- robosystems_client/api/user/list_user_api_keys.py +14 -75
- robosystems_client/api/user/revoke_user_api_key.py +1 -45
- robosystems_client/api/user/update_user.py +1 -41
- robosystems_client/api/user/update_user_api_key.py +1 -41
- robosystems_client/api/user/update_user_password.py +1 -41
- robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -38
- robosystems_client/api/user_analytics/get_user_usage_overview.py +14 -75
- robosystems_client/api/user_limits/get_all_shared_repository_limits.py +14 -105
- robosystems_client/api/user_limits/get_shared_repository_limits.py +1 -45
- robosystems_client/api/user_limits/get_user_limits.py +14 -75
- robosystems_client/api/user_limits/get_user_usage.py +14 -75
- robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +1 -45
- robosystems_client/api/user_subscriptions/get_repository_credits.py +1 -45
- robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +14 -75
- robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -38
- robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +1 -41
- robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +1 -41
- robosystems_client/extensions/__init__.py +8 -1
- robosystems_client/extensions/auth_integration.py +1 -2
- robosystems_client/extensions/graph_client.py +5 -0
- robosystems_client/extensions/query_client.py +3 -2
- robosystems_client/extensions/sse_client.py +1 -1
- robosystems_client/extensions/table_ingest_client.py +36 -40
- robosystems_client/extensions/utils.py +2 -2
- robosystems_client/models/__init__.py +17 -21
- robosystems_client/models/create_graph_request.py +15 -3
- robosystems_client/models/cypher_query_request.py +5 -22
- 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 → delete_file_response.py} +45 -9
- robosystems_client/models/file_info.py +169 -0
- robosystems_client/models/file_status_update.py +41 -0
- robosystems_client/models/get_file_info_response.py +205 -0
- robosystems_client/models/list_table_files_response.py +105 -0
- robosystems_client/models/schema_export_response.py +4 -2
- robosystems_client/models/schema_info_response.py +77 -0
- robosystems_client/models/{get_graph_schema_response_getgraphschema.py → schema_info_response_schema.py} +6 -6
- robosystems_client/models/schema_validation_response.py +7 -6
- robosystems_client/models/table_query_request.py +37 -2
- 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 → update_file_status_response_updatefilestatus.py} +5 -8
- {robosystems_client-0.2.2.dist-info → robosystems_client-0.2.4.dist-info}/METADATA +2 -4
- {robosystems_client-0.2.2.dist-info → robosystems_client-0.2.4.dist-info}/RECORD +110 -108
- robosystems_client/api/tables/delete_file_v1_graphs_graph_id_tables_files_file_id_delete.py +0 -287
- robosystems_client/api/tables/get_file_info_v1_graphs_graph_id_tables_files_file_id_get.py +0 -283
- robosystems_client/api/tables/get_upload_url_v1_graphs_graph_id_tables_table_name_files_post.py +0 -260
- robosystems_client/api/tables/ingest_tables_v1_graphs_graph_id_tables_ingest_post.py +0 -251
- robosystems_client/api/tables/list_table_files_v1_graphs_graph_id_tables_table_name_files_get.py +0 -283
- robosystems_client/api/tables/list_tables_v1_graphs_graph_id_tables_get.py +0 -224
- robosystems_client/api/tables/query_tables_v1_graphs_graph_id_tables_query_post.py +0 -247
- robosystems_client/api/tables/update_file_v1_graphs_graph_id_tables_files_file_id_patch.py +0 -306
- robosystems_client/models/file_update_request.py +0 -62
- 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 +0 -47
- 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 +0 -47
- {robosystems_client-0.2.2.dist-info → robosystems_client-0.2.4.dist-info}/WHEEL +0 -0
- {robosystems_client-0.2.2.dist-info → robosystems_client-0.2.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,145 +6,145 @@ 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=B2wwiUE7GukGB9vF9QAX9x76mXGbUPLh8mMmHgSaHVg,6494
|
|
10
|
+
robosystems_client/api/agent/batch_process_queries.py,sha256=t_CSO2XTbKAFOWR-Ac8ALxu6ZmCL7ZnYOeDvTonwu2k,6785
|
|
11
|
+
robosystems_client/api/agent/execute_specific_agent.py,sha256=HtwtHjYErWGRZjqnWeRGArX34Mcg-_dWgzk8onzlyQ4,6794
|
|
12
|
+
robosystems_client/api/agent/get_agent_metadata.py,sha256=ZQi4EHiEDgYQRZ1-B6UGM7rlGRo7o5fY8zDhkhjkwlc,5827
|
|
13
|
+
robosystems_client/api/agent/list_agents.py,sha256=w_9vFSwkGfboT0xLU2LmaU4cHuML7VoWEaWG588hv8U,6326
|
|
14
|
+
robosystems_client/api/agent/recommend_agent.py,sha256=WK1826OQeGbLGPQX-xTzSHHVBVKLf-QtQ9gVP0ZjK7c,6689
|
|
15
15
|
robosystems_client/api/auth/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
16
16
|
robosystems_client/api/auth/check_password_strength.py,sha256=4oVo056LpbSGHVH733tjRdZFt0uJ_fJR7IFz1nvxB0E,4673
|
|
17
17
|
robosystems_client/api/auth/complete_sso_auth.py,sha256=z_-ss36X6HjAGKfon5t2yzlQTWSc7VemffwjUaX010s,4888
|
|
18
18
|
robosystems_client/api/auth/forgot_password.py,sha256=-fwDX6_cL3388FQGhXrxBkZzJTTVVB4ACW1lcTOrU1M,5293
|
|
19
|
-
robosystems_client/api/auth/generate_sso_token.py,sha256=
|
|
19
|
+
robosystems_client/api/auth/generate_sso_token.py,sha256=uWnZgLubb4du2nIqmpB80AR4WtuC2N5UBDGNW0DEvB4,4863
|
|
20
20
|
robosystems_client/api/auth/get_captcha_config.py,sha256=hmeeSdhX7G89bJb8fr5i9JVImd3r02KomroO5GVgFC8,2194
|
|
21
|
-
robosystems_client/api/auth/get_current_auth_user.py,sha256=
|
|
21
|
+
robosystems_client/api/auth/get_current_auth_user.py,sha256=mw7-R-Sj0mtyidlr3zx423qGHbuMV8JZ0e1nb-2tRPE,4049
|
|
22
22
|
robosystems_client/api/auth/get_password_policy.py,sha256=Fg495FDhWM3N799lPJ5y2cTROouWcN3lCQxJG0El6kY,3483
|
|
23
23
|
robosystems_client/api/auth/login_user.py,sha256=f1YsrLnFS3VHApyW0g1DZEm6L8D13OyoSfTVVkDXwvE,4738
|
|
24
|
-
robosystems_client/api/auth/logout_user.py,sha256=
|
|
25
|
-
robosystems_client/api/auth/refresh_auth_session.py,sha256=
|
|
24
|
+
robosystems_client/api/auth/logout_user.py,sha256=935KLFQ4Uelk44JEUNsnQGXyU3G40XJm4lcwhg4FyC0,3406
|
|
25
|
+
robosystems_client/api/auth/refresh_auth_session.py,sha256=UXWYbQZmw1nqwTlnMjjwqp5s3Hkd4MtURZ2hr7yse5E,3672
|
|
26
26
|
robosystems_client/api/auth/register_user.py,sha256=o4pbS0DFYZncYhRK3PPLMHWhSiy0wU1qEtaSIdoX9FE,5570
|
|
27
|
-
robosystems_client/api/auth/resend_verification_email.py,sha256=
|
|
27
|
+
robosystems_client/api/auth/resend_verification_email.py,sha256=TpaDvygiiHlZ-_J79G1NS0aoKP1aW2ymss-SnA6h24o,4661
|
|
28
28
|
robosystems_client/api/auth/reset_password.py,sha256=XmN977sF98BAPXhFPd4t_4BGV2WMcjdGeQAeRO22yGA,4860
|
|
29
29
|
robosystems_client/api/auth/sso_token_exchange.py,sha256=re4MjtkrSctn5PC7kPAR7p8Zg3lnjiw3BHwFUIEu31Y,5092
|
|
30
30
|
robosystems_client/api/auth/validate_reset_token.py,sha256=9_iAB156LsApX_DEM750wyb1hZ9aTSxTBld1l8Swn54,4566
|
|
31
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/get_backup_download_url.py,sha256=
|
|
35
|
-
robosystems_client/api/backup/get_backup_stats.py,sha256=
|
|
36
|
-
robosystems_client/api/backup/list_backups.py,sha256=
|
|
37
|
-
robosystems_client/api/backup/restore_backup.py,sha256=
|
|
33
|
+
robosystems_client/api/backup/create_backup.py,sha256=sUcmvu5P-ZBtxnOkgQfj5K25stM3r2cwVXblO4nOYgo,11543
|
|
34
|
+
robosystems_client/api/backup/get_backup_download_url.py,sha256=tpjuOkEzgoRBEs0gTR4Ntr8Izbm-q-tcfOTJJsEnbjg,6317
|
|
35
|
+
robosystems_client/api/backup/get_backup_stats.py,sha256=7OszLrTT6Y2-qRIOUhzwuifSW76g0cP_jnCW7tecYiE,4200
|
|
36
|
+
robosystems_client/api/backup/list_backups.py,sha256=zd6Mk0fm6bmcyO1P6Hz3XbeDUU9XXqzZgD2ugZWY0vY,5433
|
|
37
|
+
robosystems_client/api/backup/restore_backup.py,sha256=fLXCvavOjzxVfCPiYS0MhvQhHnDyHgcIdWoKnM0R_wU,12354
|
|
38
38
|
robosystems_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
39
|
-
robosystems_client/api/connections/create_connection.py,sha256=
|
|
40
|
-
robosystems_client/api/connections/create_link_token.py,sha256=
|
|
41
|
-
robosystems_client/api/connections/delete_connection.py,sha256=
|
|
42
|
-
robosystems_client/api/connections/exchange_link_token.py,sha256=
|
|
43
|
-
robosystems_client/api/connections/get_connection.py,sha256=
|
|
44
|
-
robosystems_client/api/connections/get_connection_options.py,sha256=
|
|
45
|
-
robosystems_client/api/connections/init_o_auth.py,sha256=
|
|
46
|
-
robosystems_client/api/connections/list_connections.py,sha256=
|
|
47
|
-
robosystems_client/api/connections/oauth_callback.py,sha256=
|
|
48
|
-
robosystems_client/api/connections/sync_connection.py,sha256=
|
|
39
|
+
robosystems_client/api/connections/create_connection.py,sha256=qBoFyjcaMR3Ug7ZqpF--m7hUWvGuu3XMlXGNTM40NdQ,7789
|
|
40
|
+
robosystems_client/api/connections/create_link_token.py,sha256=UAJeuZVi5N4ZCAiEyBa9GaQIvAJOIu_XsDtqwnv-l8U,6849
|
|
41
|
+
robosystems_client/api/connections/delete_connection.py,sha256=1hHOSEo7tft0lKSqWJuchTXADbY94kRG1HAdYXSrnnE,6305
|
|
42
|
+
robosystems_client/api/connections/exchange_link_token.py,sha256=rAhSwVsYPP3Jp3dMdhmv2R1Qw0t1h3IFricPWSdtrX4,7484
|
|
43
|
+
robosystems_client/api/connections/get_connection.py,sha256=zwa5Ai5Efun4QPjgl23yMTo4wVx6iCIQxTmo9vJwSNU,6213
|
|
44
|
+
robosystems_client/api/connections/get_connection_options.py,sha256=HpDt56sdOejZF0YhXinjYRk6EvwPlfp5i1xOYROpDBw,7269
|
|
45
|
+
robosystems_client/api/connections/init_o_auth.py,sha256=5D3eNB2DtKPtxEWsVXlFap-z3PJa8VS_FIXk5mYO4aw,5156
|
|
46
|
+
robosystems_client/api/connections/list_connections.py,sha256=c2xmy0ARnL0IGK9kEsp797PXa2CxtBEtn0o-YULaGzQ,8535
|
|
47
|
+
robosystems_client/api/connections/oauth_callback.py,sha256=AR2L8G_QSL8frNuSZV1vjc_v9QCAkUUqD42eCXlPKGA,7728
|
|
48
|
+
robosystems_client/api/connections/sync_connection.py,sha256=nVQDBSmIGkdh7LCNZCDzcMAC6l83n_2LLgrQ7YZQ_Kk,8459
|
|
49
49
|
robosystems_client/api/graph_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
50
|
-
robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=
|
|
51
|
-
robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=
|
|
50
|
+
robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=26W8ynBfLEyNbI_OXhEkJ5NbFnPMmDBtlza7d6mbbeU,7050
|
|
51
|
+
robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=kB4xHeZG6KJXEm8nL5U-TABzVuIFaoJ9tIirAVI8go0,8128
|
|
52
52
|
robosystems_client/api/graph_billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
53
|
-
robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256=
|
|
54
|
-
robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=
|
|
55
|
-
robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=
|
|
56
|
-
robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256
|
|
53
|
+
robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256=FROZZvKvRzpCmKI66zVBmfrl5oFfHuoMktMM3kS3UZA,6980
|
|
54
|
+
robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=1yy-z_z1jju74lvxL4wZ0D_UBAEUttvZcq_6EytP5uY,7362
|
|
55
|
+
robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=auCFUe2-06jF4oTGVlgdsyxzc3e1vpG6AaHMJIwshp0,6990
|
|
56
|
+
robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=o2euRYBuJzHuAb1RBO815B344equN5_loNbQd6HpAAo,8812
|
|
57
57
|
robosystems_client/api/graph_credits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
58
|
-
robosystems_client/api/graph_credits/check_credit_balance.py,sha256=
|
|
59
|
-
robosystems_client/api/graph_credits/check_storage_limits.py,sha256=
|
|
60
|
-
robosystems_client/api/graph_credits/get_credit_summary.py,sha256
|
|
61
|
-
robosystems_client/api/graph_credits/get_storage_usage.py,sha256=
|
|
62
|
-
robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=
|
|
58
|
+
robosystems_client/api/graph_credits/check_credit_balance.py,sha256=0iPXBgsEQs_nWsZKwdTXvAn3ueXg6P6KYCjMkzmmBtU,8184
|
|
59
|
+
robosystems_client/api/graph_credits/check_storage_limits.py,sha256=mo0PRFLmwcVGjdlLBq2r02QcoVrmcH8EozV2RcFesA8,6187
|
|
60
|
+
robosystems_client/api/graph_credits/get_credit_summary.py,sha256=-uvETiHAuFBDtzeIAc8KnRnf6irV74MnsKAWWOltZwo,6041
|
|
61
|
+
robosystems_client/api/graph_credits/get_storage_usage.py,sha256=oFlj7Ziiopk9vXRWAtHHDCy_vtvufCNoOrtD9mkFMR0,6770
|
|
62
|
+
robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=QV4W9SMxgN24wlniCTskwamOkIJR_cIwUJK-4hPDGJ0,12218
|
|
63
63
|
robosystems_client/api/graph_health/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
64
|
-
robosystems_client/api/graph_health/get_database_health.py,sha256=
|
|
64
|
+
robosystems_client/api/graph_health/get_database_health.py,sha256=aEUYDiUMQ-paxRrABb9xY3dgs_mW7loyTuz5Y4oX790,7318
|
|
65
65
|
robosystems_client/api/graph_info/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
66
|
-
robosystems_client/api/graph_info/get_database_info.py,sha256=
|
|
66
|
+
robosystems_client/api/graph_info/get_database_info.py,sha256=u1pUs1PCxFS6g9NSg07K-B6qSo9Csx7Df9WNyV-rLdI,7654
|
|
67
67
|
robosystems_client/api/graph_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
68
|
-
robosystems_client/api/graph_limits/get_graph_limits.py,sha256=
|
|
68
|
+
robosystems_client/api/graph_limits/get_graph_limits.py,sha256=DxSTlzZI7pk3QqJK0wUqJ2M7J5f3-bRlpRq7VqVlc-I,7213
|
|
69
69
|
robosystems_client/api/graphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
70
|
-
robosystems_client/api/graphs/create_graph.py,sha256=
|
|
71
|
-
robosystems_client/api/graphs/get_available_extensions.py,sha256=
|
|
72
|
-
robosystems_client/api/graphs/get_graphs.py,sha256=
|
|
73
|
-
robosystems_client/api/graphs/select_graph.py,sha256=
|
|
70
|
+
robosystems_client/api/graphs/create_graph.py,sha256=9akSz7LGaqolVOnMT4vkSBw0LzimbiERQqW5HOPegA4,12224
|
|
71
|
+
robosystems_client/api/graphs/get_available_extensions.py,sha256=A4gVvWGgSP1aCsyRqSxZp9n1c8Qq0fxuVHpFVhA6EsQ,8385
|
|
72
|
+
robosystems_client/api/graphs/get_graphs.py,sha256=TRE2mTJs2XCqRfsiQ4cRIsTtnQ4G3tRwqUddGw7L_Ws,9069
|
|
73
|
+
robosystems_client/api/graphs/select_graph.py,sha256=OMl8lnKhKdFLK1iREbVSzNkaL7eQNmy88XrN4RiRELQ,9398
|
|
74
74
|
robosystems_client/api/mcp/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
75
|
-
robosystems_client/api/mcp/call_mcp_tool.py,sha256=
|
|
76
|
-
robosystems_client/api/mcp/list_mcp_tools.py,sha256=
|
|
75
|
+
robosystems_client/api/mcp/call_mcp_tool.py,sha256=oG2S_iwneUhe6A14xk0yVFs9x5v8IoubIA5ABsEKV7U,13662
|
|
76
|
+
robosystems_client/api/mcp/list_mcp_tools.py,sha256=aB5ezh-ENrXxdSaGi8ZJB_012qv0sb7JL-1L4za3Q0k,6542
|
|
77
77
|
robosystems_client/api/operations/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
78
|
-
robosystems_client/api/operations/cancel_operation.py,sha256=
|
|
79
|
-
robosystems_client/api/operations/get_operation_status.py,sha256=
|
|
78
|
+
robosystems_client/api/operations/cancel_operation.py,sha256=Vq0-RzmtCOuUtYYkIrMv4TamIeGAM5bp8JOaE7YGwlE,6140
|
|
79
|
+
robosystems_client/api/operations/get_operation_status.py,sha256=tawSEB1rC1csGB2tbwvGucCCZslw6sedskXeOZ0H5d0,6913
|
|
80
80
|
robosystems_client/api/operations/stream_operation_events.py,sha256=1pl-BNZSaNynIKwaT03U8WXEbL_B5KOPSZuEb1vS4CM,14042
|
|
81
81
|
robosystems_client/api/query/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
82
|
-
robosystems_client/api/query/execute_cypher_query.py,sha256=
|
|
82
|
+
robosystems_client/api/query/execute_cypher_query.py,sha256=8kinH84ebMzWOASu5sq51C7gczILRza1afGEWu1Fcy8,18926
|
|
83
83
|
robosystems_client/api/schema/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
84
|
-
robosystems_client/api/schema/export_graph_schema.py,sha256=
|
|
85
|
-
robosystems_client/api/schema/get_graph_schema.py,sha256=
|
|
86
|
-
robosystems_client/api/schema/validate_schema.py,sha256=
|
|
84
|
+
robosystems_client/api/schema/export_graph_schema.py,sha256=4h01619pPXVRZlfI2rs5QD9Ne7AjmrENjjgp8Fa_d1g,12697
|
|
85
|
+
robosystems_client/api/schema/get_graph_schema.py,sha256=EedSj2Ao2-5kqspViJLKz6tpb6lS3A--5lpFc-311YM,10214
|
|
86
|
+
robosystems_client/api/schema/validate_schema.py,sha256=MMMphsRcRPTHp2wfLP8ujsaO_Xe3muYTNdflmJa7EYM,8320
|
|
87
87
|
robosystems_client/api/service_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
88
88
|
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=dKTfYCTekTmZsJby8r6y88qIcu57uWrMJ_R2-uTNzL8,6159
|
|
89
89
|
robosystems_client/api/status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
90
90
|
robosystems_client/api/status/get_service_status.py,sha256=eRAk7piCdm3R9A0MfmMardMEhFmzjydFo9SDLjAbQKA,3306
|
|
91
91
|
robosystems_client/api/subgraphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
92
|
-
robosystems_client/api/subgraphs/create_subgraph.py,sha256=
|
|
93
|
-
robosystems_client/api/subgraphs/delete_subgraph.py,sha256=
|
|
94
|
-
robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=
|
|
95
|
-
robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=
|
|
96
|
-
robosystems_client/api/subgraphs/list_subgraphs.py,sha256=
|
|
92
|
+
robosystems_client/api/subgraphs/create_subgraph.py,sha256=Gp1MTMv7FwDSMhkLK5NbE0gWXG2jxNztqI0W7zZA59A,6386
|
|
93
|
+
robosystems_client/api/subgraphs/delete_subgraph.py,sha256=2zq8kbBUdQXHYXUQt_dyfUqE-MaQKuxZtuMpod4tPZ8,7935
|
|
94
|
+
robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=fW8mLkHKhsEIUIIT-ErITGs-9hy51h9S6gjoutrfBx0,6711
|
|
95
|
+
robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=Wk1BTXoe6HhRFgB75gtnnMecFSNqT7J_CVo1-QnJMRs,6512
|
|
96
|
+
robosystems_client/api/subgraphs/list_subgraphs.py,sha256=d9exlLZsr9_jqhwaGUMK8mKPSbiHGLCjTNQy7uc7HkE,5350
|
|
97
97
|
robosystems_client/api/tables/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
98
|
-
robosystems_client/api/tables/
|
|
99
|
-
robosystems_client/api/tables/
|
|
100
|
-
robosystems_client/api/tables/
|
|
101
|
-
robosystems_client/api/tables/
|
|
102
|
-
robosystems_client/api/tables/
|
|
103
|
-
robosystems_client/api/tables/
|
|
104
|
-
robosystems_client/api/tables/
|
|
105
|
-
robosystems_client/api/tables/
|
|
98
|
+
robosystems_client/api/tables/delete_file.py,sha256=wYdL3mwebNcZnFfQPIIvpR_Lqj8Qj2ToeqPQiZs8wZo,9438
|
|
99
|
+
robosystems_client/api/tables/get_file_info.py,sha256=v1tqq_bE6SgEpH6FijffrOrB6Tb-UlXHcohUlx-Qx3w,6675
|
|
100
|
+
robosystems_client/api/tables/get_upload_url.py,sha256=ySHPi2DtlU2Nq7Ee1jg2ceWnjrXwIaNWOv6RoaD9FRI,10719
|
|
101
|
+
robosystems_client/api/tables/ingest_tables.py,sha256=7_wm6cPQVyF7LJu04IRIOxBaSfKVTr4oPOTkoxLcj1g,14452
|
|
102
|
+
robosystems_client/api/tables/list_table_files.py,sha256=f-cS57XzOAA7jn73JllIGZjrrbjNr0r5eCOFfA86O-8,9994
|
|
103
|
+
robosystems_client/api/tables/list_tables.py,sha256=U02yJ95-bGESXv5VI2WntMseaEfEkMVabVVGCE-8qDQ,9128
|
|
104
|
+
robosystems_client/api/tables/query_tables.py,sha256=DHva2m319Z54RziiVRiPb54eZHi1P_Nscli3qN4B3Z0,14471
|
|
105
|
+
robosystems_client/api/tables/update_file_status.py,sha256=d5ZiueuguE5nK8vQw-q16CAyoZoBy8zu3zMpobdoO-o,11298
|
|
106
106
|
robosystems_client/api/user/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
107
|
-
robosystems_client/api/user/create_user_api_key.py,sha256=
|
|
108
|
-
robosystems_client/api/user/get_all_credit_summaries.py,sha256=
|
|
109
|
-
robosystems_client/api/user/get_current_user.py,sha256=
|
|
110
|
-
robosystems_client/api/user/list_user_api_keys.py,sha256=
|
|
111
|
-
robosystems_client/api/user/revoke_user_api_key.py,sha256=
|
|
112
|
-
robosystems_client/api/user/update_user.py,sha256=
|
|
113
|
-
robosystems_client/api/user/update_user_api_key.py,sha256=
|
|
114
|
-
robosystems_client/api/user/update_user_password.py,sha256=
|
|
107
|
+
robosystems_client/api/user/create_user_api_key.py,sha256=dfWRIqzWlesW7lehuskdnQ2TV6Ga_iGlZSAvArkLvnE,4525
|
|
108
|
+
robosystems_client/api/user/get_all_credit_summaries.py,sha256=qP2Bj9G1hqT0fl-OG2V2OTvHlEPpuhKHuviCJ2wn1I4,5064
|
|
109
|
+
robosystems_client/api/user/get_current_user.py,sha256=o2UQhqgFKUMdkZc9rgX9663w2_ySY9u145PmpaLaVYE,3244
|
|
110
|
+
robosystems_client/api/user/list_user_api_keys.py,sha256=W--PqFZ9rRRJm0J96wD4EITPx7PLDZWJyVBjwvKmd8M,3197
|
|
111
|
+
robosystems_client/api/user/revoke_user_api_key.py,sha256=yiz6lIOE_ne2Mebj4zvUMqri-Z5v0GKa0hbmPJCfTZo,4444
|
|
112
|
+
robosystems_client/api/user/update_user.py,sha256=nSr6ZRKD_Wu1I_QwHWd9GGH1TLYluMm_2GHgl1c_Yvc,4418
|
|
113
|
+
robosystems_client/api/user/update_user_api_key.py,sha256=kIccWO3m6t7S6MNCQNndASq533nou-zhF9qg9sNrrZM,4688
|
|
114
|
+
robosystems_client/api/user/update_user_password.py,sha256=djtS4Aqc0B2efYlqYhAwLyaQ8R1sTIkSP5XPMas5va0,5015
|
|
115
115
|
robosystems_client/api/user_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
116
|
-
robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=
|
|
117
|
-
robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=
|
|
116
|
+
robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=gTdtLFXw2xIRuf9BTsgAB9aYX_j_VMbqofrlLxGUV2A,5940
|
|
117
|
+
robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=X_MuDiDpis1mIC7lBHblRb-TFbmwT73s7vc1PWJ30Kw,3481
|
|
118
118
|
robosystems_client/api/user_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
119
|
-
robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=
|
|
120
|
-
robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=
|
|
121
|
-
robosystems_client/api/user_limits/get_user_limits.py,sha256=
|
|
122
|
-
robosystems_client/api/user_limits/get_user_usage.py,sha256=
|
|
119
|
+
robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=sOH5XQR73eVlB0rOt-tv2S1upoXOjgX5YI-ozmovWcA,4117
|
|
120
|
+
robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=ik43-TkgMNhob2Scx4BKIPVWhb2Mph-V3Jj22AwD4xQ,5912
|
|
121
|
+
robosystems_client/api/user_limits/get_user_limits.py,sha256=M14x16NCGr6o2r2JUXY4g7PPPAlF6_Vo5H-7OsQRjsg,3578
|
|
122
|
+
robosystems_client/api/user_limits/get_user_usage.py,sha256=5NK8YSUqgegd1ecvSZVym-nwZKvTlH5W6LhPwXqvoaY,3447
|
|
123
123
|
robosystems_client/api/user_subscriptions/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
124
|
-
robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=
|
|
125
|
-
robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=
|
|
126
|
-
robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=
|
|
127
|
-
robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=
|
|
128
|
-
robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=
|
|
129
|
-
robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256
|
|
124
|
+
robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=I_-YpB7infwwbde-fhzSu9mrnKeDfKYJVimPpv4orGw,4713
|
|
125
|
+
robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=mkjUsjD6C0Kt9pwzGI1izwmLUyJi69X9a98-tGg7cfU,4520
|
|
126
|
+
robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=HYV8b5W8LYZCTEFR6KC27kg5EbInBjzti2p4zbX6CuM,3763
|
|
127
|
+
robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=kSLrtrZGjvDk3SC98rPlPdk7k7-FcM8A2dKKGucd0uM,5190
|
|
128
|
+
robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=HtmypqCE3hveALCjrI8CM7StWiTi9F9IJwDGZ4HXPd0,5074
|
|
129
|
+
robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=xgVIaOeXekdTy4zW5vrftpaxSqMutRzuTdJjCFl-DZM,5210
|
|
130
130
|
robosystems_client/extensions/README.md,sha256=qfHFjdgA_J-zNXziNZE6M1MKJiwVkocBi01w_HhvzEk,16136
|
|
131
|
-
robosystems_client/extensions/__init__.py,sha256=
|
|
132
|
-
robosystems_client/extensions/auth_integration.py,sha256=
|
|
131
|
+
robosystems_client/extensions/__init__.py,sha256=izFk2oW08XUKLAulpMwQS_4PrbhL_zsjVdXBiPx-XiU,5210
|
|
132
|
+
robosystems_client/extensions/auth_integration.py,sha256=ABOJ8aVjfHehNGNzim1iR9-Cdh7Mr22ce-WgWWeqJt0,6535
|
|
133
133
|
robosystems_client/extensions/dataframe_utils.py,sha256=gK1bgkVqBF0TvWVdGQvqWrt-ur_Rw11j8uNtMoulLWE,12312
|
|
134
134
|
robosystems_client/extensions/extensions.py,sha256=ROnCobUek4Dke9dVx2sTzNKhz309NOG40EDSYHtNmWs,6257
|
|
135
|
-
robosystems_client/extensions/graph_client.py,sha256=
|
|
135
|
+
robosystems_client/extensions/graph_client.py,sha256=OBi0xj0SLIRKLeSu_DiGt2ZakCmhggvNrMP3jdRfEgQ,10326
|
|
136
136
|
robosystems_client/extensions/operation_client.py,sha256=B1qju-wWQrnrnVJixKGgsA_KEInviwJwdlJxzm_i7P0,13359
|
|
137
|
-
robosystems_client/extensions/query_client.py,sha256
|
|
138
|
-
robosystems_client/extensions/sse_client.py,sha256=
|
|
139
|
-
robosystems_client/extensions/table_ingest_client.py,sha256=
|
|
137
|
+
robosystems_client/extensions/query_client.py,sha256=-4g1tE3QMM6WggV01W8U9jTJV6hL-00V1T_tvcKb3d0,16949
|
|
138
|
+
robosystems_client/extensions/sse_client.py,sha256=XvQIq3JQ0Yiax11E7cwclhupShYOpEMURM2cYQodiz8,15058
|
|
139
|
+
robosystems_client/extensions/table_ingest_client.py,sha256=H-gJBsYshEfiJ3KTIE3yjspUjQWLIYFKuttrmfRjFdk,12873
|
|
140
140
|
robosystems_client/extensions/token_utils.py,sha256=qCK_s1vBzRnSYwtgncPZRLJVIw3WXmzqNTWjdEEpdgs,10899
|
|
141
|
-
robosystems_client/extensions/utils.py,sha256=
|
|
141
|
+
robosystems_client/extensions/utils.py,sha256=vhmUnEsq-UEAMgNhmkqlbJg4oJj096QPiHALEHJ-y4A,16207
|
|
142
142
|
robosystems_client/extensions/tests/__init__.py,sha256=S61GPbL-2pgLVe11uHwHLenpIpzyywWXzXqJypr0T3Q,46
|
|
143
143
|
robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6awUBu8p_w6nJLgcHByXQ1uBuECq7Uk,9436
|
|
144
144
|
robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
|
|
145
145
|
robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
|
|
146
146
|
robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
|
|
147
|
-
robosystems_client/models/__init__.py,sha256=
|
|
147
|
+
robosystems_client/models/__init__.py,sha256=eMg0GF4CXIFMGezXlFPd742RtaPCGuRsq4yTznaU6r8,19918
|
|
148
148
|
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
149
149
|
robosystems_client/models/add_on_credit_info.py,sha256=h65KAb8yZP_SGpsB2Ref4IaBCthEDYJgFGTd9PjUpfs,3221
|
|
150
150
|
robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
|
|
@@ -193,7 +193,7 @@ robosystems_client/models/create_api_key_request.py,sha256=aP-X8CtffeRUXDqG-WzM4
|
|
|
193
193
|
robosystems_client/models/create_api_key_response.py,sha256=9cqlZDogqxdSXxxHT6PnfClTP-Q35CvfQjNIvPEe1Pw,1797
|
|
194
194
|
robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
|
|
195
195
|
robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
|
|
196
|
-
robosystems_client/models/create_graph_request.py,sha256=
|
|
196
|
+
robosystems_client/models/create_graph_request.py,sha256=qbtHY9GOdmsAYkQ705LGlh2VGp6n4VpDiTqkWzCOVro,6216
|
|
197
197
|
robosystems_client/models/create_subgraph_request.py,sha256=upBIPF4MIrawR_fAodpo4ts9sinq7FyDT2VyfR_uCp8,5777
|
|
198
198
|
robosystems_client/models/create_subgraph_request_metadata_type_0.py,sha256=dqVIzDSjIeTsKLCC7pmJAik2eJPIyi_6uTHzkspU37M,1257
|
|
199
199
|
robosystems_client/models/credit_summary.py,sha256=TaK9e6Jp7yqWMtBDVfB2bL7mlTw87Qwf1_foausmQwI,4802
|
|
@@ -204,11 +204,11 @@ robosystems_client/models/custom_schema_definition.py,sha256=2W0UNq6tdPQ-IlKMA9Y
|
|
|
204
204
|
robosystems_client/models/custom_schema_definition_metadata.py,sha256=VNy6EY4n0N5P4tirf1UsT9-z-pYvI6FN-iOPTG7zuwY,1256
|
|
205
205
|
robosystems_client/models/custom_schema_definition_nodes_item.py,sha256=0hg2ctntwlXkP43NdtAa2gRFMogKU80Mwg_JmSUb4h4,1239
|
|
206
206
|
robosystems_client/models/custom_schema_definition_relationships_item.py,sha256=lJZACnh463SpmX2ncTV9Xi6NcHIejEn-SKQ81PZN654,1279
|
|
207
|
-
robosystems_client/models/cypher_query_request.py,sha256=
|
|
207
|
+
robosystems_client/models/cypher_query_request.py,sha256=9xjD9ts5KbjXeAgY5cWyMtzz9a03GdC47Cvgz6FL-hw,3117
|
|
208
208
|
robosystems_client/models/cypher_query_request_parameters_type_0.py,sha256=I8QFYojTUqvgSeiS2uP79PQQfqulTB89OyXXgYbl3Cc,1252
|
|
209
209
|
robosystems_client/models/database_health_response.py,sha256=LdvO6aVSUiEej3vyshiu6zoP_FcgbJmpCll0g-aNci0,5631
|
|
210
210
|
robosystems_client/models/database_info_response.py,sha256=lj1MUSUzLq5WNJyxXU6g5M7RrPOBPSffR25WUp0EjXc,5652
|
|
211
|
-
robosystems_client/models/
|
|
211
|
+
robosystems_client/models/delete_file_response.py,sha256=YjE5V88BcMdFXlMEeCJzUJC1Q5TCdJZgXTmeIopJjuA,1900
|
|
212
212
|
robosystems_client/models/delete_subgraph_request.py,sha256=F0UVznC5pUnwhX2zZWyPdSxpwtrj-jZIVmnTKCgjDNI,2682
|
|
213
213
|
robosystems_client/models/delete_subgraph_response.py,sha256=zPgaUcaqzwmaxEFwok2c3OLCEe1YT4-mnckD_Lr-Nd4,3340
|
|
214
214
|
robosystems_client/models/detailed_transactions_response.py,sha256=gNvssogFCR4cK54swZMpHhUOHhRLTwiUlI0oZpVwj9g,3660
|
|
@@ -220,7 +220,8 @@ robosystems_client/models/enhanced_credit_transaction_response_metadata.py,sha25
|
|
|
220
220
|
robosystems_client/models/error_response.py,sha256=Kc97dTQxR9jANL-MOPwnE4voKA1O0X3qkx_jeY9k-BU,4111
|
|
221
221
|
robosystems_client/models/exchange_token_request.py,sha256=76zVpSXbbuJpMAnf_rRT0EjpxH1PZD9nFLJK8i6cn6E,3290
|
|
222
222
|
robosystems_client/models/exchange_token_request_metadata_type_0.py,sha256=4ndzrJRefnYO_ikDiySWS2aHBNFCG5Y2SF-bHF_jPYw,1252
|
|
223
|
-
robosystems_client/models/
|
|
223
|
+
robosystems_client/models/file_info.py,sha256=sFj_D2OkQI0-OMQBTc_73xTSw6D2BCChkgz1j41r-0k,4567
|
|
224
|
+
robosystems_client/models/file_status_update.py,sha256=QMdnB_657PCnWwW1nO5VHCmW2e30mIdF-myTAazak3k,790
|
|
224
225
|
robosystems_client/models/file_upload_request.py,sha256=7loA-BBy69IKVIcyeTDhnFrBx_sibNfnHXthaJpnL0M,1122
|
|
225
226
|
robosystems_client/models/file_upload_response.py,sha256=_qgC8LcVEjpDA4S2_zCbi9BedS2a0uobB5VbNKEnpyc,1958
|
|
226
227
|
robosystems_client/models/forgot_password_request.py,sha256=jgJf6E-4cun0vbm1LFPN-bC8HejoeJq6NVgWhGVn7Lg,1440
|
|
@@ -230,11 +231,10 @@ robosystems_client/models/get_all_shared_repository_limits_response_getallshared
|
|
|
230
231
|
robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py,sha256=dDqOgolFduHyRXl5y5q9zH0_y4GuDGq-wwQUA9pl0X0,1327
|
|
231
232
|
robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py,sha256=QbLg6o9w0UQs2npB27r2lLfWi9uAe4cjmN0srszTKDE,1307
|
|
232
233
|
robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py,sha256=PjfVnVwWG6BEBWEjb5kvN5XYtC2uTc5h4OIKPmZv-Gc,1317
|
|
233
|
-
robosystems_client/models/
|
|
234
|
+
robosystems_client/models/get_file_info_response.py,sha256=b9EWhA-zVBlbaw3lChETnNiLpCmGecv_RVjUb3ZF8Ig,5624
|
|
234
235
|
robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py,sha256=IyBAkkk8vtqQx9Twif1J7iG-9iaeuMm1W_75E7pzM-A,1347
|
|
235
236
|
robosystems_client/models/get_graph_limits_response_getgraphlimits.py,sha256=ekkBGt3Pybn7-xZIhth_uBGhyiTvWRxHbXRPBSX0ms0,1264
|
|
236
237
|
robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py,sha256=q1k4zEtQmcBpgz_vz9B26Deu4qT4evEsAiRoTpmcw0w,1317
|
|
237
|
-
robosystems_client/models/get_graph_schema_response_getgraphschema.py,sha256=2xiLHFOzd9ywuJY5MKI7lmK3ZQ3Ii0iCd6tzhQIm7Ak,1264
|
|
238
238
|
robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py,sha256=OfsWqXgc6O0v21jbL8Z1NquZg5eKhNQUEiTl_Vs7I7w,1327
|
|
239
239
|
robosystems_client/models/get_operation_status_response_getoperationstatus.py,sha256=dhCc_dZpSo-h9210m5MShVde1sGHmMhkBanqt_6xt_A,1304
|
|
240
240
|
robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py,sha256=0-_y-77YHmK-tFdt7rQbC5j9VK4pfiE_V756EmglpaU,1377
|
|
@@ -259,7 +259,7 @@ robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0
|
|
|
259
259
|
robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
|
|
260
260
|
robosystems_client/models/list_connections_provider_type_0.py,sha256=Mmteiaom76sOnidak7Y1zY4UemEbnM_3BnfbkFUUVv0,187
|
|
261
261
|
robosystems_client/models/list_subgraphs_response.py,sha256=PsavKzFwdPfM_4ZeX5-NcWo8K-x0KaFT7y4y_Zf7J98,4498
|
|
262
|
-
robosystems_client/models/
|
|
262
|
+
robosystems_client/models/list_table_files_response.py,sha256=3ozQqPez4EFBm2T1mrPu0dCpGck0zuthTdg8wmeeSms,2654
|
|
263
263
|
robosystems_client/models/login_request.py,sha256=bWvQYg7jPbtE__tVOqPKqGYx7Yzex2hPfOm2fJZjvLU,1543
|
|
264
264
|
robosystems_client/models/logout_user_response_logoutuser.py,sha256=UGr9RnAP7Db-T5JLbH6R6CZjZaENzIX6iW31nxBAIBI,1221
|
|
265
265
|
robosystems_client/models/mcp_tool_call.py,sha256=--2c-SyQb1XxZNMTcb8VWZ_ldomBp3zefuirUybIwWQ,2212
|
|
@@ -287,12 +287,14 @@ robosystems_client/models/resend_verification_email_response_resendverificatione
|
|
|
287
287
|
robosystems_client/models/reset_password_request.py,sha256=14kn__5re5UkWEfjqz25RZeoQBh7z9fOKu_a01X9zi4,1682
|
|
288
288
|
robosystems_client/models/reset_password_validate_response.py,sha256=7FV8Gfhirst9UWl0_P3XGnn5i_uGtneTTTeA7y_13Dc,2130
|
|
289
289
|
robosystems_client/models/response_mode.py,sha256=0tm3YUxAKHNYS1jn-zdR_88xn6E_bsQl85DwHZM_kkM,181
|
|
290
|
-
robosystems_client/models/schema_export_response.py,sha256=
|
|
290
|
+
robosystems_client/models/schema_export_response.py,sha256=7dTLkgQ9EzK8R_3nRRjCck3SKff9qfghgb_KNC8Q20w,4967
|
|
291
291
|
robosystems_client/models/schema_export_response_data_stats_type_0.py,sha256=QRzVNkX-1Er8oppABqj79HRGKtcMk3YNG2DFkdqdFSQ,1260
|
|
292
292
|
robosystems_client/models/schema_export_response_schema_definition_type_0.py,sha256=iYwrxPZsEttzkaDySeVyUdwF5yvhvNgALiMEqTMJTpo,1295
|
|
293
|
+
robosystems_client/models/schema_info_response.py,sha256=5QlzABkDS1sbwaj3G3YOr62n3w-Y9VHyuZ1smIXxMHA,2109
|
|
294
|
+
robosystems_client/models/schema_info_response_schema.py,sha256=zU2B5uxMgO9EA_6HxZX5-uWmCHSXlwrnmxj_BYG4Yd4,1260
|
|
293
295
|
robosystems_client/models/schema_validation_request.py,sha256=AoKX22RxBlntR5dQdLAaUmgLeMqj3AAVhRYFuMDE8QA,4418
|
|
294
296
|
robosystems_client/models/schema_validation_request_schema_definition_type_0.py,sha256=cA1Xq01d4UDuPAzuGMcoFTwzQx0ax1bk2v0au070ano,1310
|
|
295
|
-
robosystems_client/models/schema_validation_response.py,sha256=
|
|
297
|
+
robosystems_client/models/schema_validation_response.py,sha256=uP02zljuzpA1a_KHLpiFLGYOwK63zY8dZ3BIRlWo4eM,6797
|
|
296
298
|
robosystems_client/models/schema_validation_response_compatibility_type_0.py,sha256=Kc-94bQYdIk1giTAmVNdGyxqLeBS7vPfLUcqUy6iZFQ,1297
|
|
297
299
|
robosystems_client/models/schema_validation_response_stats_type_0.py,sha256=H2ZmFmyJSBfupYJniiU643PfHvwc5CCwRrOP8hj6fug,1257
|
|
298
300
|
robosystems_client/models/sec_connection_config.py,sha256=ZIcENfOIhGJnnAfboyVD_V9TFOkrS-dhLbVqfMBE1gw,2117
|
|
@@ -319,12 +321,12 @@ robosystems_client/models/sync_connection_response_syncconnection.py,sha256=U9wH
|
|
|
319
321
|
robosystems_client/models/table_info.py,sha256=sd9a_AAVH1n0aAXMK4xH45NzlZyupi76N2sMP7i-X44,2928
|
|
320
322
|
robosystems_client/models/table_ingest_result.py,sha256=6nwBXfiXGhl89LDKUx5REgSi16KgsA24fVObwEdiJtU,2928
|
|
321
323
|
robosystems_client/models/table_list_response.py,sha256=wmlmFs6jw_qjrc9N9iQG2Un1469xSscgUbCYRb4B0kg,2003
|
|
322
|
-
robosystems_client/models/table_query_request.py,sha256=
|
|
324
|
+
robosystems_client/models/table_query_request.py,sha256=bZITK2e2KdPZ7cVvi0arZpCfqDnT9yl8yv7Cd_jJWgw,1878
|
|
323
325
|
robosystems_client/models/table_query_response.py,sha256=Y9zUSm1BPRfJEN_SP6lIZIQs75TcYPu1M8bxpWNp7PI,2268
|
|
324
326
|
robosystems_client/models/tier_upgrade_request.py,sha256=uSF_CpTLwlj6jTO7a9yCbboBGvuzJOIgyVjJYVNc6t4,1567
|
|
325
327
|
robosystems_client/models/transaction_summary_response.py,sha256=MSQYuOharoRpBilqmpKo_Dxv39QLjJ0g5oY9NYsCQNA,3714
|
|
326
328
|
robosystems_client/models/update_api_key_request.py,sha256=fQVFQnUSIRDcBkCZP6ObAdVjIReaYuqSS3eliNSt59c,2527
|
|
327
|
-
robosystems_client/models/
|
|
329
|
+
robosystems_client/models/update_file_status_response_updatefilestatus.py,sha256=CnUPFGrufD3EMGXpqCX9Xa8dyY0ZZfb6B5Ke2Ktqiuk,1284
|
|
328
330
|
robosystems_client/models/update_password_request.py,sha256=3YwCzOJwE3WYpv05JwVBpwL71GCsj1fMLngxuEsXtpE,2013
|
|
329
331
|
robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
|
|
330
332
|
robosystems_client/models/user_analytics_response.py,sha256=M89LNcZ6x2p0WY1NTKs9mu2o1ql-ubdr5RFZnQVCXnM,4423
|
|
@@ -343,7 +345,7 @@ robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZ
|
|
|
343
345
|
robosystems_client/models/user_usage_summary_response.py,sha256=4hthwTH7bXyzdYlHoekDYOgDLI-stGRH507Bl2rUjYA,3655
|
|
344
346
|
robosystems_client/models/user_usage_summary_response_usage_vs_limits.py,sha256=XrZnRcy1nD3xtKX4svbww7QfEHrN7_XIfeL9j5ZMbyQ,1298
|
|
345
347
|
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
346
|
-
robosystems_client-0.2.
|
|
347
|
-
robosystems_client-0.2.
|
|
348
|
-
robosystems_client-0.2.
|
|
349
|
-
robosystems_client-0.2.
|
|
348
|
+
robosystems_client-0.2.4.dist-info/METADATA,sha256=Jo15nycBSPdoUjMKMuAD8ryjHQ9PbZWxa_Z2K7zNuPI,3903
|
|
349
|
+
robosystems_client-0.2.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
350
|
+
robosystems_client-0.2.4.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
|
|
351
|
+
robosystems_client-0.2.4.dist-info/RECORD,,
|