robosystems-client 0.1.16__py3-none-any.whl → 0.1.17__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of robosystems-client might be problematic. Click here for more details.

Files changed (96) hide show
  1. robosystems_client/api/agent/auto_select_agent.py +0 -18
  2. robosystems_client/api/agent/batch_process_queries.py +0 -18
  3. robosystems_client/api/agent/execute_specific_agent.py +0 -18
  4. robosystems_client/api/agent/get_agent_metadata.py +0 -18
  5. robosystems_client/api/agent/list_agents.py +0 -18
  6. robosystems_client/api/agent/recommend_agent.py +0 -18
  7. robosystems_client/api/auth/forgot_password.py +191 -0
  8. robosystems_client/api/auth/generate_sso_token.py +18 -0
  9. robosystems_client/api/auth/get_current_auth_user.py +4 -22
  10. robosystems_client/api/auth/logout_user.py +17 -17
  11. robosystems_client/api/auth/{refresh_session.py → refresh_auth_session.py} +21 -21
  12. robosystems_client/api/auth/resend_verification_email.py +222 -0
  13. robosystems_client/api/auth/reset_password.py +177 -0
  14. robosystems_client/api/auth/validate_reset_token.py +171 -0
  15. robosystems_client/api/auth/verify_email.py +177 -0
  16. robosystems_client/api/backup/create_backup.py +0 -18
  17. robosystems_client/api/backup/export_backup.py +0 -18
  18. robosystems_client/api/backup/get_backup_download_url.py +0 -18
  19. robosystems_client/api/backup/get_backup_stats.py +0 -18
  20. robosystems_client/api/backup/list_backups.py +0 -18
  21. robosystems_client/api/backup/restore_backup.py +0 -18
  22. robosystems_client/api/connections/create_connection.py +0 -18
  23. robosystems_client/api/connections/create_link_token.py +0 -18
  24. robosystems_client/api/connections/delete_connection.py +0 -18
  25. robosystems_client/api/connections/exchange_link_token.py +0 -18
  26. robosystems_client/api/connections/get_connection.py +0 -18
  27. robosystems_client/api/connections/get_connection_options.py +0 -18
  28. robosystems_client/api/connections/init_o_auth.py +0 -18
  29. robosystems_client/api/connections/list_connections.py +0 -18
  30. robosystems_client/api/connections/oauth_callback.py +4 -22
  31. robosystems_client/api/connections/sync_connection.py +0 -18
  32. robosystems_client/api/copy/copy_data_to_graph.py +0 -18
  33. robosystems_client/api/create/create_graph.py +0 -18
  34. robosystems_client/api/graph_analytics/get_graph_metrics.py +0 -18
  35. robosystems_client/api/graph_analytics/get_graph_usage_stats.py +0 -18
  36. robosystems_client/api/graph_billing/get_current_graph_bill.py +0 -18
  37. robosystems_client/api/graph_billing/get_graph_billing_history.py +0 -18
  38. robosystems_client/api/graph_billing/get_graph_monthly_bill.py +0 -18
  39. robosystems_client/api/graph_billing/get_graph_usage_details.py +0 -18
  40. robosystems_client/api/graph_credits/check_credit_balance.py +0 -18
  41. robosystems_client/api/graph_credits/check_storage_limits.py +0 -18
  42. robosystems_client/api/graph_credits/get_credit_summary.py +0 -18
  43. robosystems_client/api/graph_credits/get_storage_usage.py +0 -18
  44. robosystems_client/api/graph_credits/list_credit_transactions.py +0 -18
  45. robosystems_client/api/graph_health/get_database_health.py +0 -18
  46. robosystems_client/api/graph_info/get_database_info.py +0 -18
  47. robosystems_client/api/graph_limits/get_graph_limits.py +0 -18
  48. robosystems_client/api/mcp/call_mcp_tool.py +0 -18
  49. robosystems_client/api/mcp/list_mcp_tools.py +0 -18
  50. robosystems_client/api/operations/cancel_operation.py +0 -18
  51. robosystems_client/api/operations/get_operation_status.py +0 -18
  52. robosystems_client/api/operations/stream_operation_events.py +0 -18
  53. robosystems_client/api/query/execute_cypher_query.py +0 -18
  54. robosystems_client/api/schema/export_graph_schema.py +0 -18
  55. robosystems_client/api/schema/get_graph_schema_info.py +0 -18
  56. robosystems_client/api/schema/list_schema_extensions.py +0 -18
  57. robosystems_client/api/schema/validate_schema.py +0 -18
  58. robosystems_client/api/subgraphs/create_subgraph.py +0 -18
  59. robosystems_client/api/subgraphs/delete_subgraph.py +0 -18
  60. robosystems_client/api/subgraphs/get_subgraph_info.py +0 -18
  61. robosystems_client/api/subgraphs/get_subgraph_quota.py +0 -18
  62. robosystems_client/api/subgraphs/list_subgraphs.py +0 -18
  63. robosystems_client/api/user/create_user_api_key.py +0 -18
  64. robosystems_client/api/user/get_all_credit_summaries.py +0 -18
  65. robosystems_client/api/user/get_current_user.py +0 -18
  66. robosystems_client/api/user/get_user_graphs.py +0 -18
  67. robosystems_client/api/user/list_user_api_keys.py +0 -18
  68. robosystems_client/api/user/revoke_user_api_key.py +0 -18
  69. robosystems_client/api/user/select_user_graph.py +0 -18
  70. robosystems_client/api/user/update_user.py +0 -18
  71. robosystems_client/api/user/update_user_api_key.py +0 -18
  72. robosystems_client/api/user/update_user_password.py +0 -18
  73. robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -18
  74. robosystems_client/api/user_analytics/get_user_usage_overview.py +0 -18
  75. robosystems_client/api/user_limits/get_all_shared_repository_limits.py +0 -18
  76. robosystems_client/api/user_limits/get_shared_repository_limits.py +0 -18
  77. robosystems_client/api/user_limits/get_user_limits.py +0 -18
  78. robosystems_client/api/user_limits/get_user_usage.py +0 -18
  79. robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +0 -18
  80. robosystems_client/api/user_subscriptions/get_repository_credits.py +0 -18
  81. robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +0 -18
  82. robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -18
  83. robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +0 -18
  84. robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +0 -18
  85. robosystems_client/models/__init__.py +16 -0
  86. robosystems_client/models/email_verification_request.py +60 -0
  87. robosystems_client/models/forgot_password_request.py +60 -0
  88. robosystems_client/models/forgot_password_response_forgotpassword.py +44 -0
  89. robosystems_client/models/resend_verification_email_response_resendverificationemail.py +44 -0
  90. robosystems_client/models/reset_password_request.py +68 -0
  91. robosystems_client/models/reset_password_validate_response.py +82 -0
  92. robosystems_client-0.1.17.dist-info/METADATA +89 -0
  93. {robosystems_client-0.1.16.dist-info → robosystems_client-0.1.17.dist-info}/RECORD +95 -83
  94. robosystems_client-0.1.17.dist-info/licenses/LICENSE +21 -0
  95. robosystems_client-0.1.16.dist-info/METADATA +0 -302
  96. {robosystems_client-0.1.16.dist-info → robosystems_client-0.1.17.dist-info}/WHEEL +0 -0
@@ -6,118 +6,123 @@ 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=mWcJ-JLm3Lrf4s9RQjGxOtgmudVf-8qSchB-tKUcyjw,7785
10
- robosystems_client/api/agent/batch_process_queries.py,sha256=-x-iNO8UZ_je7NZflRUzSZrlTp2kSMaAMyF1HmXy5k0,8077
11
- robosystems_client/api/agent/execute_specific_agent.py,sha256=X9NH0MhSph7VS-vbLCFfJlXqwi6R46lPmbS0hP-rod4,8084
12
- robosystems_client/api/agent/get_agent_metadata.py,sha256=gnMUR0fJhxHdjMC0xBOxx2stbvSCZqGMXVlZfXq97Sc,7293
13
- robosystems_client/api/agent/list_agents.py,sha256=0Vf3q0gIu6X-jQ5u87D1Qtl2xFjsuG21_5TvuAxwsO4,7773
14
- robosystems_client/api/agent/recommend_agent.py,sha256=yQkeEvRq8yRIHYo763XQWKMVGPYfuEf4OUuR1b4d89A,8087
9
+ robosystems_client/api/agent/auto_select_agent.py,sha256=Pi1RYYQLXsTxaiuMIYbZ2o6lWq1z4fYYdu-S3vVywTE,7155
10
+ robosystems_client/api/agent/batch_process_queries.py,sha256=d2jqe7zhgbyp8SCMAfZw91IlcsvTNJU3BC5UpGDIte4,7447
11
+ robosystems_client/api/agent/execute_specific_agent.py,sha256=BYFgaizbxFSgTX5VkZgbJ4VLPGkaOi4J-FcM1Xo9FdE,7454
12
+ robosystems_client/api/agent/get_agent_metadata.py,sha256=8QVI_K8P_xnpajTAUjcayk8ABwc2TI9BnG1KwfI2Jiw,6663
13
+ robosystems_client/api/agent/list_agents.py,sha256=RYDjAYYWAkzLtj3Lctfgkb6AgCR4ehbACCqyAIxKlUw,7143
14
+ robosystems_client/api/agent/recommend_agent.py,sha256=gyhvH3mReVnVg7AXdzOKxAoKK3BtcdwaV0moJDNoUrs,7457
15
15
  robosystems_client/api/auth/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
16
16
  robosystems_client/api/auth/check_password_strength.py,sha256=hukbrO7txh61gu2B4cX0ZPWV3XCF1O2Mr5US4acLOP4,4671
17
17
  robosystems_client/api/auth/complete_sso_auth.py,sha256=9wj_oQBdzP7bzlst821sXwf7-MlZkQfaKlV5dUSeQSo,4885
18
- robosystems_client/api/auth/generate_sso_token.py,sha256=d_LlodwLPT402hrj8l_NqRqwCUcUcNfKnCxCly37oTs,4860
18
+ robosystems_client/api/auth/forgot_password.py,sha256=NAv3OFZZz_GfmCoTFdSGcq9VUgfttjBIhyVOgoD8oCg,5290
19
+ robosystems_client/api/auth/generate_sso_token.py,sha256=-WHP5Z4eD9lE9KVdQ-x-jbuvH-89J3sQ9aG9ciUitzI,5583
19
20
  robosystems_client/api/auth/get_captcha_config.py,sha256=bTEjCwGUUaPeEU-bd6JrO2fDITXBWvDb4v8l4eniTDA,2193
20
- robosystems_client/api/auth/get_current_auth_user.py,sha256=SU2oT7CcxxW7W_zvlqC0FrG485E_BmseKlLn_igUq7E,5961
21
+ robosystems_client/api/auth/get_current_auth_user.py,sha256=3-AFoi6H69fSFLW5DoVv6rHc2R1GMGy4GP3E9VTHcNQ,5303
21
22
  robosystems_client/api/auth/get_password_policy.py,sha256=QJ-9GVaYPNRYXV9TlNHtdTS-JX9-kCPMcm0gbDcGiCw,3482
22
23
  robosystems_client/api/auth/login_user.py,sha256=m35Ak9lzc9PoE1z_aVqrnrwoUzoQsgcK74EAuRvMp3Y,4734
23
- robosystems_client/api/auth/logout_user.py,sha256=qqisYyIsZkTT19TuQsGBsyc4L-Tfk3KmdYtl0NmjlHw,4566
24
- robosystems_client/api/auth/refresh_session.py,sha256=6Mlvv8anwup97trQZfBpTyxp4fhXbkHcwGpr0rG34Xs,4765
24
+ robosystems_client/api/auth/logout_user.py,sha256=XezFESjmHIGeVRWXGdJm3clBtQ_jAOwPzQgt_6xLNR4,4659
25
+ robosystems_client/api/auth/refresh_auth_session.py,sha256=b5Xpa3QrIJfVYMUhlQn7HcALsIeI5SjRcIa8Jhoz4dY,4854
25
26
  robosystems_client/api/auth/register_user.py,sha256=xXgCceSaDH_oSQMT_L4_lBF3XUSVTFXWMrI8-I3M6xc,5565
27
+ robosystems_client/api/auth/resend_verification_email.py,sha256=aUXAN5iLTcbW5Wpipd4iyZjhQ906J0kSwCZGklTVBW8,5943
28
+ robosystems_client/api/auth/reset_password.py,sha256=QgXpvx80Ex9fccj4RXwXrV1QOhJv3ClNXBj9pLlTlEI,4857
26
29
  robosystems_client/api/auth/sso_login.py,sha256=seSNkqyYjXPaSoRCxlwahiauH_BvqFbpExxkrYBXgi8,4717
27
30
  robosystems_client/api/auth/sso_token_exchange.py,sha256=-rl28H-WCbO1gsw_kpzPe_t-WuA6mTfmcKcNzfzgY90,5088
31
+ robosystems_client/api/auth/validate_reset_token.py,sha256=kNxoCedKJHpF-bgxe9roPIjVAo22Tt2MA2j1bnEUPwI,4564
32
+ robosystems_client/api/auth/verify_email.py,sha256=0EKqUmfoRKsLCBnjS0u7MjKry3plrlTLlqYMLSFUCaQ,4951
28
33
  robosystems_client/api/backup/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
29
- robosystems_client/api/backup/create_backup.py,sha256=ipVHfFL1vvpt9sKDueoGRC3dL26_lbiDoSKhMkOIPbs,12934
30
- robosystems_client/api/backup/export_backup.py,sha256=oImZqYR06TH6e4xHuleAObhArjNfTHr8xF_A09Ug794,6117
31
- robosystems_client/api/backup/get_backup_download_url.py,sha256=KoQiA4aDEUChVLuGHbWeoiBV70or2UI8la9O9miA0HY,7762
32
- robosystems_client/api/backup/get_backup_stats.py,sha256=RB7kCf8Y-5MS0FwwA8pIEsQCLktSRJGHoORLnSvH01k,5667
33
- robosystems_client/api/backup/list_backups.py,sha256=F0DKzTY8NRTA5BWadHtL0y90FatEf2LI9xaUyYVKiHQ,6865
34
- robosystems_client/api/backup/restore_backup.py,sha256=Jg9kH5cpv7ahsqgzhDMpGZoYkGi60jrBm0Bkxgxj090,13377
34
+ robosystems_client/api/backup/create_backup.py,sha256=e2aiRlZkKnfUQ-FBIA2uuVcbSQtf_YYqoQmdwA3nu6w,12304
35
+ robosystems_client/api/backup/export_backup.py,sha256=MwfkGZCrBmfjkF2cNFUqpD1yZ9aiY6ZbmxYnLkMdsmY,5487
36
+ robosystems_client/api/backup/get_backup_download_url.py,sha256=70XSGivIy7hTaa2dVYGUyVWg6oPVsVzZ7eyuyYuGN6Y,7132
37
+ robosystems_client/api/backup/get_backup_stats.py,sha256=g2zpu3rJiKJFW4t5ZesMlGBMefhVUuds1ffQ6iKFF58,5037
38
+ robosystems_client/api/backup/list_backups.py,sha256=7J4SVT9NcPeOrNP28W_Fz6-JcPCauRRNuXgNIkbfgis,6235
39
+ robosystems_client/api/backup/restore_backup.py,sha256=4RLmRtLxQRgL7iYY3BpfaDdyEOeW7tLHQkvuGSMT5Q4,12747
35
40
  robosystems_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
36
- robosystems_client/api/connections/create_connection.py,sha256=-6lMjj57FiA0Rp3FcvqjGoQ6tP9iz33RvlR3AMhIa9s,9168
37
- robosystems_client/api/connections/create_link_token.py,sha256=AMjy9unsMxMi0yqFAw8ehM05OVrVRM-RTObIorPPB7w,8245
38
- robosystems_client/api/connections/delete_connection.py,sha256=O0BclSlQMoCfeZ36CQzm82cyrZ1s0cpEOOrsA7D1pNs,7753
39
- robosystems_client/api/connections/exchange_link_token.py,sha256=kPJVnOdPqS1ahG7h0ODrPThHHFZSlrHC8exoBbxmJrI,8880
40
- robosystems_client/api/connections/get_connection.py,sha256=vm6iGQRqsQvNwFTZe_V53VHNAtBnBXJp0raU-Trz5-A,7677
41
- robosystems_client/api/connections/get_connection_options.py,sha256=qGac2D8vBOn1gs53vLl3ATeDOYk4SvVkLGrTvP_iv-s,8734
42
- robosystems_client/api/connections/init_o_auth.py,sha256=jjKE6pboyw2ugg_m7WV7vAKIWwnIAh7Z7idyImiRszw,6555
43
- robosystems_client/api/connections/list_connections.py,sha256=hLDqUAeeaMrCym0Onh6I0qd51e_CR9XH62aKV8PjbQ8,9981
44
- robosystems_client/api/connections/oauth_callback.py,sha256=9zX9fA7V_nJTBAi6crXQweS2VJSYvYq0Y7pMzefID0E,9103
45
- robosystems_client/api/connections/sync_connection.py,sha256=9RvBM9zCqb4nGQCmVpK9JgzOoVbn83ojRnUzKaF8-AM,9839
41
+ robosystems_client/api/connections/create_connection.py,sha256=F2oXNRL0IFtgnbxPXiO1SLlmHR9KJd8sDWpI8-v65MM,8538
42
+ robosystems_client/api/connections/create_link_token.py,sha256=x4U_zXHX-eXaicQY0ICyb1Kt9pjxDIX5jNgtNKhLh6U,7615
43
+ robosystems_client/api/connections/delete_connection.py,sha256=t8o3wyV61B4a5NrSrssRsVNhAeHH8keyuTKXvKrfACI,7123
44
+ robosystems_client/api/connections/exchange_link_token.py,sha256=QRGgGjhIlhWUANF3lV7rW5JMGypzRmepMIe1TsuOiIE,8250
45
+ robosystems_client/api/connections/get_connection.py,sha256=SVP3RrZRknmwbYF2sqLGsssU9CsBGuRH85r16cZ6Ji0,7047
46
+ robosystems_client/api/connections/get_connection_options.py,sha256=NBUPB7VV5l702iyPVSdYaBlOpRpjk5QyBZuXUpdFrMU,8104
47
+ robosystems_client/api/connections/init_o_auth.py,sha256=4wXDvqlzYQEoDk4xLdjYZV4PLRKfxCwGk71GdDBBWUI,5925
48
+ robosystems_client/api/connections/list_connections.py,sha256=UFbgdQiIWNVyWFG6A-MdjCYcRonSYRYPtTfNJAFs8Kg,9351
49
+ robosystems_client/api/connections/oauth_callback.py,sha256=3dWdyaoeuzOTRSBO49rwRTwHT0fe08SJ6obQjTEftqI,8493
50
+ robosystems_client/api/connections/sync_connection.py,sha256=2ndn5ef3KpZR-AauPtZgf7pPAVH10hYePXhSfn4uzfQ,9209
46
51
  robosystems_client/api/copy/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
47
- robosystems_client/api/copy/copy_data_to_graph.py,sha256=d4hhuZVtNxddzoSS1tc6B4WzwbSfbK3tVBNjM3wQAwg,17172
52
+ robosystems_client/api/copy/copy_data_to_graph.py,sha256=1PW01kjSv8hbl3v3hxHiTUYdaNn74CN3-ltCvIFDtLI,16542
48
53
  robosystems_client/api/create/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
49
- robosystems_client/api/create/create_graph.py,sha256=dwzKgdBkLd9QithUt0ERPeh3shOdsIQ8b6Xvgc_hAQo,13152
54
+ robosystems_client/api/create/create_graph.py,sha256=KIJcMg00FDO8W0M0NvcjiflYm2-JU6hj4VR-kq4Tp1k,12522
50
55
  robosystems_client/api/create/get_available_extensions.py,sha256=sFf-YdbDy9VGOK8WZ4JBoxrcVe2PtYW6XLp-EkyMt7E,3502
51
56
  robosystems_client/api/graph_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
52
- robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=mCKfKQBLsg2UUOVVzUt7IqB7e6a1jDc-jnmf2Yv2OSc,8522
53
- robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=sZWr5xaiK5iP7PziH3Lve-FRB7ny0VwbxnCOFSpwwt4,9598
57
+ robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=OfLl-DvPVB78CJ4TsX7Iei52uj9AVtxdOCWG55SqMx4,7892
58
+ robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=IKLhXqVMlqwMq69Xa8VM_AeqhAmGmCwBGPOcZsPGfnY,8968
54
59
  robosystems_client/api/graph_billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
55
- robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256=j6l4Hc-rIsce6VGJvsbq6dElUXcqKrP0U4j0oRnDdSU,8444
56
- robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=hi28XqYyNg3CcsJrkQ4EauaZGlWYyJGBBnNssdr99rI,8807
57
- robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=vMrhCkZ-JaG20lSOEM36iCezT8tsxSSTvWRfDJLdCWI,8453
58
- robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=3tVcKKbu4dkwM1KEZgIs7s606XYtQK0Eme1vHbzid34,10256
60
+ robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256=Xx00Lv5mGk04y-LtjsPsAEsKGkP5FOrr_9S_jGoGkLA,7814
61
+ robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=pbyVVlKMkNjsM448RSf0RM39xMipxDnm7flLvWI24fI,8177
62
+ robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=cu-_yBXQRz8daNZ3ugClZN7cHqNv7DwnztNFsYgzPXU,7823
63
+ robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=vtU1z8FPenggeuz3EaX3LRCM1n1L7CWyRv2LR2V6jGc,9626
59
64
  robosystems_client/api/graph_credits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
60
- robosystems_client/api/graph_credits/check_credit_balance.py,sha256=rDVJFJ5Rp-OpPYfMU6zoNhxerD-v0hreKPEkwVlCK0A,9525
61
- robosystems_client/api/graph_credits/check_storage_limits.py,sha256=Gq6_8dyCb05BPGVOR4qe-nJbFIfxrGu8XF--imfGnXU,7547
62
- robosystems_client/api/graph_credits/get_credit_summary.py,sha256=X2yFM3ybAh15SDLE6l1wl8ElhIVKr9mu1DPORlsKPyk,7401
63
- robosystems_client/api/graph_credits/get_storage_usage.py,sha256=pE3x94H_83rLY_OtY47XNn3lxAvdwMg847hM1U1f6hA,8112
64
- robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=OciMR4KODrYQSIPNbA6WW_Zsx2V81YV1W6P9nI6w8Xo,13663
65
+ robosystems_client/api/graph_credits/check_credit_balance.py,sha256=RahxBuqL3A3c-dI9wstvxhyh2gdBQFHhEtaKElVlHSc,8895
66
+ robosystems_client/api/graph_credits/check_storage_limits.py,sha256=D1VH-cye9F0ifFtyErpW4GYQIXb0yqrvrUHXN3Qj8K8,6917
67
+ robosystems_client/api/graph_credits/get_credit_summary.py,sha256=EnBjOWJVu7yztfDKS8MfXglfQ9EtdXIDwBuVfbVy4Tw,6771
68
+ robosystems_client/api/graph_credits/get_storage_usage.py,sha256=Q8_zqHSHJJeWL2YAXQqLzCrmrs9dX8rI6xDEJHF0nyg,7482
69
+ robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=GvE4J11OcuNuufrrOZBN6AIYTe8kJcl4zjfNDHWjZX0,13033
65
70
  robosystems_client/api/graph_health/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
66
- robosystems_client/api/graph_health/get_database_health.py,sha256=iETRS9vX9dLOSw6pwF5x1gYw4DoPi1N515FIe-jtRTk,8782
71
+ robosystems_client/api/graph_health/get_database_health.py,sha256=1nMm8A1yLZGexvz_9QOaLH7Pb-qR3E1vnMP2LX3wPAI,8152
67
72
  robosystems_client/api/graph_info/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
68
- robosystems_client/api/graph_info/get_database_info.py,sha256=zQ1X-Md2e6sKa2KujRHNnptQE61bQLfU4NQvKHQdTRg,9118
73
+ robosystems_client/api/graph_info/get_database_info.py,sha256=DzmIlps11yISx2BIXwgwTPScN7f6jvGcvfKoy7AFrRA,8488
69
74
  robosystems_client/api/graph_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
70
- robosystems_client/api/graph_limits/get_graph_limits.py,sha256=Gag_WqLmKxhGY1z3tvopNayeSRl0ZBRcuV-_dUeeaOU,8813
75
+ robosystems_client/api/graph_limits/get_graph_limits.py,sha256=GcjyKIWjx68c0N4Om6PLsOHdGx3S0C3yU7fMKUvFUw4,8183
71
76
  robosystems_client/api/mcp/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
72
- robosystems_client/api/mcp/call_mcp_tool.py,sha256=SdMywHxFnz9ypJZCDIpIXRDmBXpEOoy3SsZb9lxIU1k,14111
73
- robosystems_client/api/mcp/list_mcp_tools.py,sha256=yGVpB8ELAX9XMA1KqguwAT6JL16uVab6wFyHW1B9JYI,8207
77
+ robosystems_client/api/mcp/call_mcp_tool.py,sha256=41YWugX97bMxhEzGhNxhdp_RskDqXnGVXicA3f-miDA,13481
78
+ robosystems_client/api/mcp/list_mcp_tools.py,sha256=e8SjrHegS82T7ZC4Sg1L75LeDQU4i67tPbRJe6vpxTw,7577
74
79
  robosystems_client/api/operations/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
75
- robosystems_client/api/operations/cancel_operation.py,sha256=4qEm2tSrpX4xr0tiWA8nIfXFhJO9Dzqb6ScfmDACqYI,7506
76
- robosystems_client/api/operations/get_operation_status.py,sha256=DhtRKF4v0Ggbw7Uj7WztL70fvLo_QODo7sWoU9TkP5w,8280
77
- robosystems_client/api/operations/stream_operation_events.py,sha256=HjOepMeBeOjuJBFKYDoUyM5T7t3eRaLBqFj2Y_zCKsA,13944
80
+ robosystems_client/api/operations/cancel_operation.py,sha256=hZGvnCqzj4JtHPqE6J3kmaUttemAXT7eeeCjgooqJz8,6876
81
+ robosystems_client/api/operations/get_operation_status.py,sha256=kzIr_TLxAspGjvrCdxQLHO2X4am7uYe-DK7vn09r99I,7650
82
+ robosystems_client/api/operations/stream_operation_events.py,sha256=sLpQOuW_dhYKs7NjyB4rS6R19BAsU_s6qIES5ekYelo,13314
78
83
  robosystems_client/api/query/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
79
- robosystems_client/api/query/execute_cypher_query.py,sha256=Xzhotj9M1NLfU6paZnFNjDa_16rTFyoLsPtAmk2kYtk,16600
84
+ robosystems_client/api/query/execute_cypher_query.py,sha256=5vH6aznIGD1We7nPc7ni72f2HBp3EuS81PHkE9sW-8k,15970
80
85
  robosystems_client/api/schema/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
81
- robosystems_client/api/schema/export_graph_schema.py,sha256=CCvl6D-NhkR5GzLWgrEJ3ltU8rpi2tYcchUCM-4BgK4,7487
82
- robosystems_client/api/schema/get_graph_schema_info.py,sha256=sl5sxYeQq6qzLo7KOqlIJwuYpvfPTSJfOzUgh3gukqc,8550
83
- robosystems_client/api/schema/list_schema_extensions.py,sha256=kBcaBdtqnz_kHJ_C5yduJKic72pP0Mv8eyWyncM9Y8I,6161
84
- robosystems_client/api/schema/validate_schema.py,sha256=Eox5iB2l3GllcRh_H-lRYeSWmWE-xeA305ZlPZPK7Cg,9700
86
+ robosystems_client/api/schema/export_graph_schema.py,sha256=TGSnQCylnpY9Km8KnwiogfX3OXnGlEKi2IA4R7mdU_o,6857
87
+ robosystems_client/api/schema/get_graph_schema_info.py,sha256=3y5RZEDVv5KbULctcklAjDfzzXG7X9brJcfRv-LQqi8,7920
88
+ robosystems_client/api/schema/list_schema_extensions.py,sha256=fk7e3WRBHBvct45I-t1je6uez4psyS_oc8DGl0iPIaE,5531
89
+ robosystems_client/api/schema/validate_schema.py,sha256=PRQ26kHS0M-KjtjYxquZo1H-x9vR63KEejSjH5mu4bc,9070
85
90
  robosystems_client/api/service_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
86
91
  robosystems_client/api/service_offerings/get_service_offerings.py,sha256=fsj86E8ml2O2HhmUMJOyte6E7qEFA5Nip30tO63kmyg,6157
87
92
  robosystems_client/api/status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
88
93
  robosystems_client/api/status/get_service_status.py,sha256=ORuAz31SqditB0mXVsQBSE_SJIghpwACxaJGgX5z1p8,3305
89
94
  robosystems_client/api/subgraphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
90
- robosystems_client/api/subgraphs/create_subgraph.py,sha256=RqPiXCGXR_tDANssITuO71KFVh6_5SC01a3P-rDoz7M,7833
91
- robosystems_client/api/subgraphs/delete_subgraph.py,sha256=10JYk6Aaq7ZRTOJmOOWFhFnVgre96q8EWFkS_6QPB4I,9320
92
- robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=M1kpjW0GA0miELKO-34GvKC4YMYR6KKUEAosGFLwAV0,8165
93
- robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=kvAqM8d2qmS6iXc2Z8irgh7_Ffmo8_Q5Lvn8QYJN5PQ,7967
94
- robosystems_client/api/subgraphs/list_subgraphs.py,sha256=uK92SCp12v_6_T8Gc4NAmRyJaYwCL7s1CR3igC_N5I4,6865
95
+ robosystems_client/api/subgraphs/create_subgraph.py,sha256=Z-Sbsel8_BjU3OkItG6iZsXvZgrG1dgfmut3nbx-uQg,7203
96
+ robosystems_client/api/subgraphs/delete_subgraph.py,sha256=42WmJLIKDzP4k0VydfPIAl9hvO8dlQt4OfbJTO3Wmxk,8690
97
+ robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=GpGJNUHZKXodjPn9I9dy6hM-zOHjJkgh9cO15UP-q30,7535
98
+ robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=QgNYRqPKYl4X5JWOd0N6058pdDNhJ6T1WsQbyQcH4t0,7337
99
+ robosystems_client/api/subgraphs/list_subgraphs.py,sha256=MuSWpXj5KZExlHH6GlSADYj1-4C4n0RMeky4XOK0vVM,6235
95
100
  robosystems_client/api/user/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
96
- robosystems_client/api/user/create_user_api_key.py,sha256=ccWvKxXXrHXRpQ1kwlBNymuqOvAgvwh_3j-CoL6gaH8,5827
97
- robosystems_client/api/user/get_all_credit_summaries.py,sha256=-P4TTC2eXyY-jztmQnVpP0Tg73fhxGdG_rlUzBENQbg,7002
98
- robosystems_client/api/user/get_current_user.py,sha256=S3tE_P4PPpIpFl9UuuJ7-FQRQTe4AC4vq1eET1TWG6s,5127
99
- robosystems_client/api/user/get_user_graphs.py,sha256=zmdnRRNk4BB5KTsKimimO1gOVRYdeQAbGKz671lDt0Q,5193
100
- robosystems_client/api/user/list_user_api_keys.py,sha256=J5WdvUdA1bZMEAsV0OPcsV9wsMDwhZkINqYkn3ufH20,5080
101
- robosystems_client/api/user/revoke_user_api_key.py,sha256=DETv0GaWH-DGb4e3ZgJhqUB-iqi9EVfsFF9zG0w9aC8,5812
102
- robosystems_client/api/user/select_user_graph.py,sha256=O8JzyTbCy6tZMlKoX8jaxTkCwu1lP_EYM_VbnLR0yTU,6014
103
- robosystems_client/api/user/update_user.py,sha256=Jj_ptsj0co6ZyKto-9giq9lHN52yamHZaCKuu5URCO8,5720
104
- robosystems_client/api/user/update_user_api_key.py,sha256=b1iW0eF3BVyQ37Utp3zMqyUg014qnUNWBqZW4vXHeN8,5990
105
- robosystems_client/api/user/update_user_password.py,sha256=L-WNZMGOjJe8E6r0KWvcpOnpQKn4rGJlvIvd8YzseKU,6314
101
+ robosystems_client/api/user/create_user_api_key.py,sha256=47wJaeD2FXeBOnLBB89-z6BOZUFt1TJiL-zEQ-6kJWA,5197
102
+ robosystems_client/api/user/get_all_credit_summaries.py,sha256=qZmm_F33phM2VTcwkSVb9LDF86QyikB4S-CZswsb3qo,6372
103
+ robosystems_client/api/user/get_current_user.py,sha256=As4Etks6Eu8hKrLjV8_4KISAHvKQs0mqwNjzKY-X14k,4497
104
+ robosystems_client/api/user/get_user_graphs.py,sha256=JK99i4YcRDB-CvolnekQYujnUn9CNqVFBKIbuYE067Q,4563
105
+ robosystems_client/api/user/list_user_api_keys.py,sha256=FWndiFjnA9qWi_GqDIkKqbeA9YO1xL3pJuvxrdO2r_4,4450
106
+ robosystems_client/api/user/revoke_user_api_key.py,sha256=Nx9LrbAHTcZ8rFAu3VyK3gOFtY8E0IhMzN5cYMP_Zp8,5182
107
+ robosystems_client/api/user/select_user_graph.py,sha256=o9Hv8n97FuSxMlb9Fut4syImtjGBcY9_lZ7lc_9F8Y8,5384
108
+ robosystems_client/api/user/update_user.py,sha256=lWFTiK980wcSR_K3RXrfJ4z6OvUOf-NzPR1aio0VvlI,5090
109
+ robosystems_client/api/user/update_user_api_key.py,sha256=kkWQLaA2iy7MRij6nhhVlzW8FanW0Md3Qc8-BIz3n8k,5360
110
+ robosystems_client/api/user/update_user_password.py,sha256=wO-K8NEuRBIp0qzn-UXcF2PtvnSzgDfmR8m9E8kyr1Q,5684
106
111
  robosystems_client/api/user_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
107
- robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=IwnFYHVCTiMaS0XGiUgKdZcQie8__lfSsUs9bwb1zzM,7291
108
- robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=le0c7AhyPOInv0uqgGcCaNJHOgTZl96_QdUsgaSq8tU,5364
112
+ robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=Nr1z_IyFhRl8XRg8GgBmGZkru-Oq1ngA7WAyhPEbl6c,6661
113
+ robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=-wuiyz1q38i-_0BiBhDAvVtQqVYzj_tiWTiD34t0VzI,4734
109
114
  robosystems_client/api/user_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
110
- robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=rvMBc_EOIlm7w7JnvvHc3j2f2L4v5LspxKNrvvVGaNQ,6102
111
- robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=RE8qRZBQqFNjAG8kVyy-SFvQqCX3EiqGZg0C2LFL-lU,7266
112
- robosystems_client/api/user_limits/get_user_limits.py,sha256=D6FQtUVqR9KkjYmwaHvLfCwc13-3KWnqAQ6GoZF1iNI,5390
113
- robosystems_client/api/user_limits/get_user_usage.py,sha256=V4jYSxb4wIyJxx3Yw9pZ1tzygvoi40fMzMR2VXC8Pqg,5330
115
+ robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=jFYWdzQN4x3Cg3-OxFitg118ptp1xUO05fHDyQbOAZ8,5472
116
+ robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=xU2firn7gaNHOcp_ToYivVOzC-xyN7EEzE8BwyljSn8,6636
117
+ robosystems_client/api/user_limits/get_user_limits.py,sha256=7seW1GfM8ftc5LTyrr1D14bfSC6pbg3rIuskz8l31DY,4760
118
+ robosystems_client/api/user_limits/get_user_usage.py,sha256=WaNVVG1WbSFdjWIC0YSYf7CMWytjl5IxSw98071TJM0,4700
114
119
  robosystems_client/api/user_subscriptions/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
115
- robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=fV1iVkpH5ZZ678FqXbXSrkA-aGX8Ii-aP2bFzj5BN54,6080
116
- robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=_6lsjxu7Z82o5gxGvZf63MCd1bURBe8CbEUOgUsI-9E,5888
117
- robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=vk6GZ_xvWIweL7kGPJU5ucdsqSnLn__CfZF24lajlaA,5574
118
- robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=i-XEy5qLdQB1TSYYO7pM0e4OlhPnEpyV8p9Je18cj1c,6539
119
- robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=bc7hUPHm_FQ_us30SLAtKSZzz6hOAysSET-DlnylsoE,6373
120
- robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=ihMRdD_fbKoBuS4YAiFXAbN4UUM0bod9eS2Zpb5UtJw,6508
120
+ robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=F2q79Eijy6OZ7G0WBtO3DgbkOs3lXHYOMcGhatBtVng,5450
121
+ robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=a72dgITPPA_-O-Gd85QRTi-C-ljnPt-A4J_7RTzukT8,5258
122
+ robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=t4kiHgaUwJ9QGjUtCVdP0oyXtIl7QdcVciQEWSoMngk,4944
123
+ robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=eIAzR9rvEl-CVF3ntsFc6nHdtYGzPRkieEGxciNQdn0,5909
124
+ robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=JWCz9XTCXidXodJCo72X3Wxq3TGKeYjxFG7OrtxSBeA,5743
125
+ robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=rItPqdgQc3oSJickOL0ayfUPfF-k-LoJlYFwFebUSyY,5878
121
126
  robosystems_client/extensions/README.md,sha256=YmiT_7yNt-7ca8kWF2nTBh7OzQXR0Ws2NugkhN_StMc,22381
122
127
  robosystems_client/extensions/__init__.py,sha256=FwFIMcDad4jAHHyBxWee7HMd_fMPSL0FVgJM8GSl5V8,3185
123
128
  robosystems_client/extensions/auth_integration.py,sha256=Nlc40PaTGsPcDzLUVDU9IhSAQWYj3Bi-bsbxMAfNo3E,6251
@@ -130,7 +135,7 @@ robosystems_client/extensions/utils.py,sha256=6yQJFg6---nbD26IS_JxGiFr3lkVlIsSjl
130
135
  robosystems_client/extensions/tests/__init__.py,sha256=S61GPbL-2pgLVe11uHwHLenpIpzyywWXzXqJypr0T3Q,46
131
136
  robosystems_client/extensions/tests/test_integration.py,sha256=gYhttWufERNmlY7j-CnWzQhFCDF70rBFVw7JDzgT1-M,15443
132
137
  robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
133
- robosystems_client/models/__init__.py,sha256=1h-5q1WyNqaPf4Znd1l_UWMXI49FJr9cHJS1q3B4eCw,19248
138
+ robosystems_client/models/__init__.py,sha256=KTNSDUvysC4jB_NwXTjT1rHJgrhVfpY1xG8aISzS_uA,19956
134
139
  robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
135
140
  robosystems_client/models/add_on_credit_info.py,sha256=h65KAb8yZP_SGpsB2Ref4IaBCthEDYJgFGTd9PjUpfs,3221
136
141
  robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
@@ -202,11 +207,14 @@ robosystems_client/models/delete_subgraph_response.py,sha256=zPgaUcaqzwmaxEFwok2
202
207
  robosystems_client/models/detailed_transactions_response.py,sha256=gNvssogFCR4cK54swZMpHhUOHhRLTwiUlI0oZpVwj9g,3660
203
208
  robosystems_client/models/detailed_transactions_response_date_range.py,sha256=Ky1tjKrTW8i3ZPxv2_vIDZF8guyEilgX4r01gEKnaE4,1269
204
209
  robosystems_client/models/detailed_transactions_response_summary.py,sha256=oPH6-HWWOLb9zmhFow3DWaxo5Y4YcfIll8RtQtPfLMA,1826
210
+ robosystems_client/models/email_verification_request.py,sha256=EV2mLTFbS7z4TN2ZwdIPBjEOrlkCM1k4dzSabGVExus,1466
205
211
  robosystems_client/models/enhanced_credit_transaction_response.py,sha256=LXGkDvL0Sia6nMNDAxxfCtCNcVAIsnPSPbaYO80Z7hI,5302
206
212
  robosystems_client/models/enhanced_credit_transaction_response_metadata.py,sha256=UaLqPb6t9UXZYwq9mWaK6Oh7zpyGmzU-geJ6o_kjLT8,1289
207
213
  robosystems_client/models/error_response.py,sha256=Kc97dTQxR9jANL-MOPwnE4voKA1O0X3qkx_jeY9k-BU,4111
208
214
  robosystems_client/models/exchange_token_request.py,sha256=76zVpSXbbuJpMAnf_rRT0EjpxH1PZD9nFLJK8i6cn6E,3290
209
215
  robosystems_client/models/exchange_token_request_metadata_type_0.py,sha256=4ndzrJRefnYO_ikDiySWS2aHBNFCG5Y2SF-bHF_jPYw,1252
216
+ robosystems_client/models/forgot_password_request.py,sha256=jgJf6E-4cun0vbm1LFPN-bC8HejoeJq6NVgWhGVn7Lg,1440
217
+ robosystems_client/models/forgot_password_response_forgotpassword.py,sha256=-NbTmjmMKiGHUGAAjnggyrxg5TlN-6HIu1YTCl8Enkw,1261
210
218
  robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py,sha256=Z-PEihC2i7G8QLlmQ1PgyLJIlETUrXyNF9j4HXt3B90,1337
211
219
  robosystems_client/models/get_all_shared_repository_limits_response_getallsharedrepositorylimits.py,sha256=enftcS6tkKwygWMfrsBEFEIUaLhdeJSY8-q0EKKmscA,1414
212
220
  robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py,sha256=dDqOgolFduHyRXl5y5q9zH0_y4GuDGq-wwQUA9pl0X0,1327
@@ -264,6 +272,9 @@ robosystems_client/models/register_request.py,sha256=9pHjAsopUT4IJ-pWPny7VSZ5MfS
264
272
  robosystems_client/models/repository_credits_response.py,sha256=znFVtTxsa3XRRbqS6swki3MGbj3_vZegMB8Clh9-Qgc,3537
265
273
  robosystems_client/models/repository_plan.py,sha256=BEdbh0FPIrsomZU_Aq27EAk-ppOqlJxuwNRVCZlNLKo,185
266
274
  robosystems_client/models/repository_type.py,sha256=Mw4q6l82iVgalXxOiWCpmtGZAf4MawNxCsIW2QoPd0I,175
275
+ robosystems_client/models/resend_verification_email_response_resendverificationemail.py,sha256=Dh0e9tvOd_V6nEzX9MJLonn-gLhJQ7QHOe_xJkwPaK4,1354
276
+ robosystems_client/models/reset_password_request.py,sha256=14kn__5re5UkWEfjqz25RZeoQBh7z9fOKu_a01X9zi4,1682
277
+ robosystems_client/models/reset_password_validate_response.py,sha256=7FV8Gfhirst9UWl0_P3XGnn5i_uGtneTTTeA7y_13Dc,2130
267
278
  robosystems_client/models/response_mode.py,sha256=0tm3YUxAKHNYS1jn-zdR_88xn6E_bsQl85DwHZM_kkM,181
268
279
  robosystems_client/models/s3_copy_request.py,sha256=0XqKZ6vL46aJozlvIHwGRGqCL2OPBGfOBFZ-AMmg2xo,13171
269
280
  robosystems_client/models/s3_copy_request_file_format.py,sha256=VfyvnQl7Mcl3mytceCFHUsYuwZqdD_RTFTi47TpW6l8,214
@@ -322,6 +333,7 @@ robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZ
322
333
  robosystems_client/models/user_usage_summary_response.py,sha256=4hthwTH7bXyzdYlHoekDYOgDLI-stGRH507Bl2rUjYA,3655
323
334
  robosystems_client/models/user_usage_summary_response_usage_vs_limits.py,sha256=XrZnRcy1nD3xtKX4svbww7QfEHrN7_XIfeL9j5ZMbyQ,1298
324
335
  robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
325
- robosystems_client-0.1.16.dist-info/METADATA,sha256=wdijG4JqcFrXJRLoPHqeJPDa5N5f7a1k-gEh7nB7Kp8,9351
326
- robosystems_client-0.1.16.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
327
- robosystems_client-0.1.16.dist-info/RECORD,,
336
+ robosystems_client-0.1.17.dist-info/METADATA,sha256=52Ocd14U0XfY3a9fw1jADc67ib3llHi339dLPSojbIU,3717
337
+ robosystems_client-0.1.17.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
338
+ robosystems_client-0.1.17.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
339
+ robosystems_client-0.1.17.dist-info/RECORD,,
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 RFS LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,302 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: robosystems-client
3
- Version: 0.1.16
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
- [![PyPI version](https://badge.fury.io/py/robosystems-client.svg)](https://pypi.org/project/robosystems-client/)
53
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
- ```