robosystems-client 0.2.11__py3-none-any.whl → 0.2.13__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 +81 -9
- robosystems_client/api/agent/execute_specific_agent.py +73 -5
- robosystems_client/api/agent/get_agent_metadata.py +1 -1
- robosystems_client/api/agent/list_agents.py +1 -1
- robosystems_client/api/auth/register_user.py +36 -8
- robosystems_client/api/billing/{cancel_subscription.py → cancel_org_subscription.py} +34 -9
- robosystems_client/api/billing/create_checkout_session.py +28 -20
- robosystems_client/api/billing/get_org_billing_customer.py +189 -0
- robosystems_client/api/billing/{get_subscription.py → get_org_subscription.py} +30 -5
- robosystems_client/api/billing/{get_upcoming_invoice.py → get_org_upcoming_invoice.py} +68 -22
- robosystems_client/api/billing/{list_invoices.py → list_org_invoices.py} +38 -9
- robosystems_client/api/billing/{list_subscriptions.py → list_org_subscriptions.py} +64 -22
- robosystems_client/api/billing/{update_payment_method.py → update_org_payment_method.py} +34 -9
- robosystems_client/api/credits_/list_credit_transactions.py +4 -4
- robosystems_client/api/org/__init__.py +1 -0
- robosystems_client/api/org/create_org.py +174 -0
- robosystems_client/api/{billing/get_billing_customer.py → org/get_org.py} +50 -28
- robosystems_client/api/org/list_org_graphs.py +170 -0
- robosystems_client/api/{user/get_user_limits.py → org/list_user_orgs.py} +21 -25
- robosystems_client/api/org/update_org.py +187 -0
- robosystems_client/api/org_members/__init__.py +1 -0
- robosystems_client/api/org_members/invite_org_member.py +207 -0
- robosystems_client/api/org_members/list_org_members.py +165 -0
- robosystems_client/api/org_members/remove_org_member.py +176 -0
- robosystems_client/api/org_members/update_org_member_role.py +200 -0
- robosystems_client/api/org_usage/__init__.py +1 -0
- robosystems_client/api/org_usage/get_org_limits.py +165 -0
- robosystems_client/api/org_usage/get_org_usage.py +186 -0
- robosystems_client/api/service_offerings/get_service_offerings.py +32 -8
- robosystems_client/api/usage/get_graph_usage_analytics.py +4 -4
- robosystems_client/extensions/__init__.py +25 -0
- robosystems_client/extensions/agent_client.py +526 -0
- robosystems_client/extensions/extensions.py +3 -0
- robosystems_client/models/__init__.py +44 -6
- robosystems_client/models/auth_response.py +35 -0
- robosystems_client/models/{user_usage_response_graphs.py → auth_response_org_type_0.py} +6 -6
- robosystems_client/models/billing_customer.py +8 -8
- robosystems_client/models/checkout_response.py +65 -22
- robosystems_client/models/checkout_status_response.py +2 -1
- robosystems_client/models/create_checkout_request.py +2 -1
- robosystems_client/models/create_checkout_request_resource_config.py +4 -1
- robosystems_client/models/create_org_request.py +79 -0
- robosystems_client/models/graph_subscription_tier.py +40 -48
- robosystems_client/models/graph_subscriptions.py +17 -5
- robosystems_client/models/invite_member_request.py +93 -0
- robosystems_client/models/list_org_graphs_response_200_item.py +44 -0
- robosystems_client/models/org_detail_response.py +174 -0
- robosystems_client/models/org_detail_response_graphs_item.py +44 -0
- robosystems_client/models/org_detail_response_limits_type_0.py +44 -0
- robosystems_client/models/org_detail_response_members_item.py +44 -0
- robosystems_client/models/org_limits_response.py +98 -0
- robosystems_client/models/org_limits_response_current_usage.py +44 -0
- robosystems_client/models/org_list_response.py +82 -0
- robosystems_client/models/org_member_list_response.py +90 -0
- robosystems_client/models/org_member_response.py +104 -0
- robosystems_client/models/org_response.py +121 -0
- robosystems_client/models/org_role.py +10 -0
- robosystems_client/models/org_type.py +10 -0
- robosystems_client/models/org_usage_response.py +146 -0
- robosystems_client/models/org_usage_response_daily_trend_item.py +44 -0
- robosystems_client/models/org_usage_response_graph_details_item.py +44 -0
- robosystems_client/models/org_usage_summary.py +158 -0
- robosystems_client/models/repository_subscriptions.py +15 -4
- robosystems_client/models/service_offerings_response.py +15 -0
- robosystems_client/models/update_member_role_request.py +62 -0
- robosystems_client/models/update_org_request.py +103 -0
- {robosystems_client-0.2.11.dist-info → robosystems_client-0.2.13.dist-info}/METADATA +1 -1
- {robosystems_client-0.2.11.dist-info → robosystems_client-0.2.13.dist-info}/RECORD +70 -37
- robosystems_client/models/user_limits_response.py +0 -95
- robosystems_client/models/user_usage_response.py +0 -90
- {robosystems_client-0.2.11.dist-info → robosystems_client-0.2.13.dist-info}/WHEEL +0 -0
- {robosystems_client-0.2.11.dist-info → robosystems_client-0.2.13.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,11 +6,11 @@ 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=
|
|
9
|
+
robosystems_client/api/agent/auto_select_agent.py,sha256=6jiddkXrfm-JCc3E6CW0qVsSur0dfKkVeVlYttzfCqo,15096
|
|
10
10
|
robosystems_client/api/agent/batch_process_queries.py,sha256=t_CSO2XTbKAFOWR-Ac8ALxu6ZmCL7ZnYOeDvTonwu2k,6785
|
|
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=
|
|
11
|
+
robosystems_client/api/agent/execute_specific_agent.py,sha256=IqP08Vq-mpT_66i6XqRumVlGVfw4FzZzFJxdfyQkTSc,9608
|
|
12
|
+
robosystems_client/api/agent/get_agent_metadata.py,sha256=CsAMH3vzVXo7KJ95zlf1oT5juLmjIWahsEmFkpG_9Kk,5818
|
|
13
|
+
robosystems_client/api/agent/list_agents.py,sha256=ns_fWdfZxQlrD_IQHTIw5-tyqIxvmpnI1sXn6DgxoZo,6321
|
|
14
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
|
|
@@ -23,7 +23,7 @@ robosystems_client/api/auth/get_password_policy.py,sha256=Fg495FDhWM3N799lPJ5y2c
|
|
|
23
23
|
robosystems_client/api/auth/login_user.py,sha256=f1YsrLnFS3VHApyW0g1DZEm6L8D13OyoSfTVVkDXwvE,4738
|
|
24
24
|
robosystems_client/api/auth/logout_user.py,sha256=935KLFQ4Uelk44JEUNsnQGXyU3G40XJm4lcwhg4FyC0,3406
|
|
25
25
|
robosystems_client/api/auth/refresh_auth_session.py,sha256=UXWYbQZmw1nqwTlnMjjwqp5s3Hkd4MtURZ2hr7yse5E,3672
|
|
26
|
-
robosystems_client/api/auth/register_user.py,sha256=
|
|
26
|
+
robosystems_client/api/auth/register_user.py,sha256=GYqTBG4yOYrXlKSR7dDH9X3yfoeJiQqdYjqR8T-d4x8,6818
|
|
27
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
|
|
@@ -36,15 +36,15 @@ robosystems_client/api/backup/get_backup_stats.py,sha256=7OszLrTT6Y2-qRIOUhzwuif
|
|
|
36
36
|
robosystems_client/api/backup/list_backups.py,sha256=zd6Mk0fm6bmcyO1P6Hz3XbeDUU9XXqzZgD2ugZWY0vY,5433
|
|
37
37
|
robosystems_client/api/backup/restore_backup.py,sha256=ePw-qemDo4ouX5YV2xnDq089H10kfB77n6H3gbwRiQE,16442
|
|
38
38
|
robosystems_client/api/billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
39
|
-
robosystems_client/api/billing/
|
|
40
|
-
robosystems_client/api/billing/create_checkout_session.py,sha256=
|
|
41
|
-
robosystems_client/api/billing/get_billing_customer.py,sha256=Q7zgvHySRhh31Ze9ucA4CLMTz2J3T_syF831UgTZiRE,3675
|
|
39
|
+
robosystems_client/api/billing/cancel_org_subscription.py,sha256=FB3ZUI4Z3PjTOFUy9oSgo8wYiFLKYCBi1gBmOrqXU0U,5188
|
|
40
|
+
robosystems_client/api/billing/create_checkout_session.py,sha256=2ynG-CzYn9n9AjoDgGff-D5pipApd8xiBbF07dRDGAk,7591
|
|
42
41
|
robosystems_client/api/billing/get_checkout_status.py,sha256=YHHjkRWCNgF1s7JBMSUPywl-kn9VpFsY6SzUv7jKNnw,6686
|
|
43
|
-
robosystems_client/api/billing/
|
|
44
|
-
robosystems_client/api/billing/
|
|
45
|
-
robosystems_client/api/billing/
|
|
46
|
-
robosystems_client/api/billing/
|
|
47
|
-
robosystems_client/api/billing/
|
|
42
|
+
robosystems_client/api/billing/get_org_billing_customer.py,sha256=2oj6UDG6zIYzxOhv6k2i-n17SitCQdPaiSdsO7VCTJs,5059
|
|
43
|
+
robosystems_client/api/billing/get_org_subscription.py,sha256=wfFMOAPXqL_W8MpkYsvR3bsnsxoJbOYyNmJ48VkRisE,4940
|
|
44
|
+
robosystems_client/api/billing/get_org_upcoming_invoice.py,sha256=-WmGrzKFHK58za9k7Ny4SsbsliB33PDsXWaN69EpytU,5397
|
|
45
|
+
robosystems_client/api/billing/list_org_invoices.py,sha256=Rv4MQO68R7j3_Jm4kzZKLAvzK80mMWjgddAdSSeHXuk,5604
|
|
46
|
+
robosystems_client/api/billing/list_org_subscriptions.py,sha256=G69LYSEzqHvkweTVbcSs1quPKy0XbeD3A2Lbg7i7I7c,5190
|
|
47
|
+
robosystems_client/api/billing/update_org_payment_method.py,sha256=1oo0ZKx2qlvTVpzmlrPr0XPIzZjphMKm9AB01La0Ryc,5718
|
|
48
48
|
robosystems_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
49
49
|
robosystems_client/api/connections/create_connection.py,sha256=qBoFyjcaMR3Ug7ZqpF--m7hUWvGuu3XMlXGNTM40NdQ,7789
|
|
50
50
|
robosystems_client/api/connections/create_link_token.py,sha256=UAJeuZVi5N4ZCAiEyBa9GaQIvAJOIu_XsDtqwnv-l8U,6849
|
|
@@ -61,7 +61,7 @@ robosystems_client/api/credits_/check_credit_balance.py,sha256=0iPXBgsEQs_nWsZKw
|
|
|
61
61
|
robosystems_client/api/credits_/check_storage_limits.py,sha256=mo0PRFLmwcVGjdlLBq2r02QcoVrmcH8EozV2RcFesA8,6187
|
|
62
62
|
robosystems_client/api/credits_/get_credit_summary.py,sha256=-uvETiHAuFBDtzeIAc8KnRnf6irV74MnsKAWWOltZwo,6041
|
|
63
63
|
robosystems_client/api/credits_/get_storage_usage.py,sha256=oFlj7Ziiopk9vXRWAtHHDCy_vtvufCNoOrtD9mkFMR0,6770
|
|
64
|
-
robosystems_client/api/credits_/list_credit_transactions.py,sha256=
|
|
64
|
+
robosystems_client/api/credits_/list_credit_transactions.py,sha256=9Ny3tqu2nFTEa7jB8XHABxJjLL8dLPZu4ILRHcjMv9M,12322
|
|
65
65
|
robosystems_client/api/graph_health/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
66
66
|
robosystems_client/api/graph_health/get_database_health.py,sha256=aEUYDiUMQ-paxRrABb9xY3dgs_mW7loyTuz5Y4oX790,7318
|
|
67
67
|
robosystems_client/api/graph_info/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
@@ -81,6 +81,20 @@ robosystems_client/api/operations/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12
|
|
|
81
81
|
robosystems_client/api/operations/cancel_operation.py,sha256=Vq0-RzmtCOuUtYYkIrMv4TamIeGAM5bp8JOaE7YGwlE,6140
|
|
82
82
|
robosystems_client/api/operations/get_operation_status.py,sha256=tawSEB1rC1csGB2tbwvGucCCZslw6sedskXeOZ0H5d0,6913
|
|
83
83
|
robosystems_client/api/operations/stream_operation_events.py,sha256=1pl-BNZSaNynIKwaT03U8WXEbL_B5KOPSZuEb1vS4CM,14042
|
|
84
|
+
robosystems_client/api/org/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
85
|
+
robosystems_client/api/org/create_org.py,sha256=gj9IWLc4Xy0DVMR7np2NtJm9ef-iCajKAfIcZal4iM0,4518
|
|
86
|
+
robosystems_client/api/org/get_org.py,sha256=rS-I-X64QO1u7qlVcw_ggaZ_wr-Ot2QezxT5cKwsQns,4018
|
|
87
|
+
robosystems_client/api/org/list_org_graphs.py,sha256=w-QnI5ovf9XUlGS2PetbsLVy8MRDNwAqa-qkeEOHi4s,4438
|
|
88
|
+
robosystems_client/api/org/list_user_orgs.py,sha256=Zbn2_wmkjSpTf6Hr65VbkSxzLgXhlp0FcWfntfFlEZA,3384
|
|
89
|
+
robosystems_client/api/org/update_org.py,sha256=FG_AYxjbtFTAbtP789D9PPDj2CikkwX_Cj8Httw3tQs,4776
|
|
90
|
+
robosystems_client/api/org_members/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
91
|
+
robosystems_client/api/org_members/invite_org_member.py,sha256=gkfZKR9uqR5vnrpumC9Dzz-5Kvl47fmZHl0DLz2Sb1c,5738
|
|
92
|
+
robosystems_client/api/org_members/list_org_members.py,sha256=qnlHZjrOOmECEWu1PoEN9v29M76cRXM4MVn_Dh2ftfk,4135
|
|
93
|
+
robosystems_client/api/org_members/remove_org_member.py,sha256=JQxPeK5zt9zSvLjfAwXBuTq3hIkAaLvSQccgIYFiIfE,4137
|
|
94
|
+
robosystems_client/api/org_members/update_org_member_role.py,sha256=a3m4eMnURY341EP9RXpEZ_D-a5d1gyrTg9Cmetl0aQw,5142
|
|
95
|
+
robosystems_client/api/org_usage/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
96
|
+
robosystems_client/api/org_usage/get_org_limits.py,sha256=t8m5-8xbCUqaHEE5SWL4iaXnU2jze00SwBTR-eCLLv8,4081
|
|
97
|
+
robosystems_client/api/org_usage/get_org_usage.py,sha256=tqHdLWZVx3uqVO-brbFm6WLRudNV77Z_j_rZJiSAoCk,4748
|
|
84
98
|
robosystems_client/api/query/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
85
99
|
robosystems_client/api/query/execute_cypher_query.py,sha256=QRmCTp6PXW41G8gA4Nqu0MCeYJ6zjnRUd2v9tgD76qs,19364
|
|
86
100
|
robosystems_client/api/schema/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
@@ -88,7 +102,7 @@ robosystems_client/api/schema/export_graph_schema.py,sha256=4h01619pPXVRZlfI2rs5
|
|
|
88
102
|
robosystems_client/api/schema/get_graph_schema.py,sha256=EedSj2Ao2-5kqspViJLKz6tpb6lS3A--5lpFc-311YM,10214
|
|
89
103
|
robosystems_client/api/schema/validate_schema.py,sha256=MMMphsRcRPTHp2wfLP8ujsaO_Xe3muYTNdflmJa7EYM,8320
|
|
90
104
|
robosystems_client/api/service_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
91
|
-
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=
|
|
105
|
+
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=dxoReNzU1gBRTIAi7MYq2nLrFHN_ygtTNUdKdHBviN8,7868
|
|
92
106
|
robosystems_client/api/status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
93
107
|
robosystems_client/api/status/get_service_status.py,sha256=eRAk7piCdm3R9A0MfmMardMEhFmzjydFo9SDLjAbQKA,3306
|
|
94
108
|
robosystems_client/api/subgraphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
@@ -113,21 +127,21 @@ robosystems_client/api/tables/query_tables.py,sha256=DHva2m319Z54RziiVRiPb54eZHi
|
|
|
113
127
|
robosystems_client/api/tables/update_file_status.py,sha256=d5ZiueuguE5nK8vQw-q16CAyoZoBy8zu3zMpobdoO-o,11298
|
|
114
128
|
robosystems_client/api/usage/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
115
129
|
robosystems_client/api/usage/get_graph_metrics.py,sha256=26W8ynBfLEyNbI_OXhEkJ5NbFnPMmDBtlza7d6mbbeU,7050
|
|
116
|
-
robosystems_client/api/usage/get_graph_usage_analytics.py,sha256=
|
|
130
|
+
robosystems_client/api/usage/get_graph_usage_analytics.py,sha256=zrNFMOPKo67oCPyzK-WpZEqARaU4h0RKfshrphYRUec,13171
|
|
117
131
|
robosystems_client/api/user/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
118
132
|
robosystems_client/api/user/create_user_api_key.py,sha256=dfWRIqzWlesW7lehuskdnQ2TV6Ga_iGlZSAvArkLvnE,4525
|
|
119
133
|
robosystems_client/api/user/get_current_user.py,sha256=o2UQhqgFKUMdkZc9rgX9663w2_ySY9u145PmpaLaVYE,3244
|
|
120
|
-
robosystems_client/api/user/get_user_limits.py,sha256=hNckwQLtfBVbecoI_kJv70n_PBJfiQYs_VQow3XyWNQ,3573
|
|
121
134
|
robosystems_client/api/user/list_user_api_keys.py,sha256=W--PqFZ9rRRJm0J96wD4EITPx7PLDZWJyVBjwvKmd8M,3197
|
|
122
135
|
robosystems_client/api/user/revoke_user_api_key.py,sha256=yiz6lIOE_ne2Mebj4zvUMqri-Z5v0GKa0hbmPJCfTZo,4444
|
|
123
136
|
robosystems_client/api/user/update_user.py,sha256=nSr6ZRKD_Wu1I_QwHWd9GGH1TLYluMm_2GHgl1c_Yvc,4418
|
|
124
137
|
robosystems_client/api/user/update_user_api_key.py,sha256=kIccWO3m6t7S6MNCQNndASq533nou-zhF9qg9sNrrZM,4688
|
|
125
138
|
robosystems_client/api/user/update_user_password.py,sha256=djtS4Aqc0B2efYlqYhAwLyaQ8R1sTIkSP5XPMas5va0,5015
|
|
126
139
|
robosystems_client/extensions/README.md,sha256=qfHFjdgA_J-zNXziNZE6M1MKJiwVkocBi01w_HhvzEk,16136
|
|
127
|
-
robosystems_client/extensions/__init__.py,sha256=
|
|
140
|
+
robosystems_client/extensions/__init__.py,sha256=XYec7cxFRVLtTAG25MCHtg8Th9m5FsBb5J7q-aediK4,5900
|
|
141
|
+
robosystems_client/extensions/agent_client.py,sha256=Db2C4hrakVsf6ScnBcNk6rte3Kwn4cQBEHsR_joWMTs,17750
|
|
128
142
|
robosystems_client/extensions/auth_integration.py,sha256=ABOJ8aVjfHehNGNzim1iR9-Cdh7Mr22ce-WgWWeqJt0,6535
|
|
129
143
|
robosystems_client/extensions/dataframe_utils.py,sha256=gK1bgkVqBF0TvWVdGQvqWrt-ur_Rw11j8uNtMoulLWE,12312
|
|
130
|
-
robosystems_client/extensions/extensions.py,sha256=
|
|
144
|
+
robosystems_client/extensions/extensions.py,sha256=QkKIc6cU7uJ5unvH5bdrvq8RuAraqGHh7eY7wpwMVy8,6360
|
|
131
145
|
robosystems_client/extensions/graph_client.py,sha256=OBi0xj0SLIRKLeSu_DiGt2ZakCmhggvNrMP3jdRfEgQ,10326
|
|
132
146
|
robosystems_client/extensions/operation_client.py,sha256=B1qju-wWQrnrnVJixKGgsA_KEInviwJwdlJxzm_i7P0,13359
|
|
133
147
|
robosystems_client/extensions/query_client.py,sha256=cX3e8EBoTeg4Lwm6edJYRULM2UmGpfqNX3f48S8TQbE,19430
|
|
@@ -140,7 +154,7 @@ robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6
|
|
|
140
154
|
robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
|
|
141
155
|
robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
|
|
142
156
|
robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
|
|
143
|
-
robosystems_client/models/__init__.py,sha256=
|
|
157
|
+
robosystems_client/models/__init__.py,sha256=Yn-NLuSFnmCFPFnfUB1tHTppxmq5BDF_6e7YVUn9rgA,21975
|
|
144
158
|
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
145
159
|
robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
|
|
146
160
|
robosystems_client/models/agent_list_response_agents.py,sha256=RQMc6dTphBjFeLD4pt2RhQyd1AedF5GW5ujHYdyZMCg,1987
|
|
@@ -160,7 +174,8 @@ robosystems_client/models/agent_response_metadata_type_0.py,sha256=3Kn2zUDzbp49M
|
|
|
160
174
|
robosystems_client/models/agent_response_tokens_used_type_0.py,sha256=IcDJbOww9ZMAHvS8R4Stk8OJnQ30TVHlp89HN7tGZzg,1227
|
|
161
175
|
robosystems_client/models/api_key_info.py,sha256=xXNLsbL4Z-bIRf8jWd7G48iXP4oboiPQTPgGjipylOo,4070
|
|
162
176
|
robosystems_client/models/api_keys_response.py,sha256=SaqZcuXOQkT4rVT4uc8SlKTu_F0NZT5T9WjRFpCIGu8,1882
|
|
163
|
-
robosystems_client/models/auth_response.py,sha256=
|
|
177
|
+
robosystems_client/models/auth_response.py,sha256=akSo9-ZMJU83gFh82T8NqAwmBWyrdfCoiPH-chxm-So,5056
|
|
178
|
+
robosystems_client/models/auth_response_org_type_0.py,sha256=yUwwe2Kro-HH3GOIT8_qaGOIjqbB9dm0kuP4ybHkzDc,1184
|
|
164
179
|
robosystems_client/models/auth_response_user.py,sha256=QSXztxSkwxAbCkUJBeKcN-_4d-NONtJnMB99cJHmuAw,1173
|
|
165
180
|
robosystems_client/models/available_extension.py,sha256=YKL7EfIcYfSdBFzpmlMXp0GQqCdab8CiRtapIpO6UOc,1824
|
|
166
181
|
robosystems_client/models/available_extensions_response.py,sha256=zt9ggowoErKKoqxle5sa10XCx5wh-j71xw-Rq4Ya16c,1979
|
|
@@ -175,14 +190,14 @@ robosystems_client/models/backup_stats_response.py,sha256=_CLWy2wrczlIae_Li6NDSL
|
|
|
175
190
|
robosystems_client/models/backup_stats_response_backup_formats.py,sha256=dtxMpx0q6t5MZ1s37lQ-wttexoz7MkD8bAbaZ7SzDZ0,1244
|
|
176
191
|
robosystems_client/models/batch_agent_request.py,sha256=E2RxBaSal36cSJp4EDgKaBFWRc-KRr9e-ZuNLQ8bhJM,2231
|
|
177
192
|
robosystems_client/models/batch_agent_response.py,sha256=2kB08uGI9Dy-08HotYoWiCXKq44umbAFV6JlO13K9-Q,2537
|
|
178
|
-
robosystems_client/models/billing_customer.py,sha256=
|
|
193
|
+
robosystems_client/models/billing_customer.py,sha256=TB6zvV0IyKtgpSEHKC1cpbUyaWYKwlCPqGbAx75EomA,3956
|
|
179
194
|
robosystems_client/models/bulk_ingest_request.py,sha256=eRHk_mG5Zfok66-sPlgx7dKfs-L_76P8PaBOrf7dHr0,1306
|
|
180
195
|
robosystems_client/models/bulk_ingest_response.py,sha256=jR-Yxs5TWaMwM0auN4BrzvU7jXVF4pFlbbOzWCErjag,3899
|
|
181
196
|
robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
|
|
182
197
|
robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
|
|
183
198
|
robosystems_client/models/check_credit_balance_response_checkcreditbalance.py,sha256=izJJIZJaZkfJY7pqYg7nBPEv9IgRpJ5WSw6hu7VUZEk,1304
|
|
184
|
-
robosystems_client/models/checkout_response.py,sha256=
|
|
185
|
-
robosystems_client/models/checkout_status_response.py,sha256=
|
|
199
|
+
robosystems_client/models/checkout_response.py,sha256=NxmvkrjQrSGzhf3qCUILxw6KLezt_pS4TSGo8IyfRpM,4162
|
|
200
|
+
robosystems_client/models/checkout_status_response.py,sha256=_XDA5ahmEwYyQJ7YDs253fp5U6g_RKkfBkk6K3F5osA,3877
|
|
186
201
|
robosystems_client/models/connection_options_response.py,sha256=J-VjmGYJn_BOhuExZBlJIHXedyf_CXcoRf2XfklOnrk,2309
|
|
187
202
|
robosystems_client/models/connection_provider_info.py,sha256=Im0k56k1USElC9G5m2g7elOJ5CHZ08lDOLg5vOmx_AA,6600
|
|
188
203
|
robosystems_client/models/connection_provider_info_auth_type.py,sha256=cSRUkd90osfbj2MP5Hl8dinEoIXBPrCOIFGYYrk-4D0,201
|
|
@@ -193,11 +208,12 @@ robosystems_client/models/connection_response_provider.py,sha256=th7b2inab-PZWaQ
|
|
|
193
208
|
robosystems_client/models/copy_operation_limits.py,sha256=S0j8lPVghl-ih5xI-oCHK1hBRZf7SeE7FiZEMjuXzEA,3059
|
|
194
209
|
robosystems_client/models/create_api_key_request.py,sha256=aP-X8CtffeRUXDqG-WzM4gn8_DOwPt5CURmGYIbjgqY,2829
|
|
195
210
|
robosystems_client/models/create_api_key_response.py,sha256=9cqlZDogqxdSXxxHT6PnfClTP-Q35CvfQjNIvPEe1Pw,1797
|
|
196
|
-
robosystems_client/models/create_checkout_request.py,sha256=
|
|
197
|
-
robosystems_client/models/create_checkout_request_resource_config.py,sha256
|
|
211
|
+
robosystems_client/models/create_checkout_request.py,sha256=NoiSMuFMG24iMipMTwy34PnYyEt1x9fNauEVatIB1-s,2552
|
|
212
|
+
robosystems_client/models/create_checkout_request_resource_config.py,sha256=-gYfuQmp61mGggvvMZe4t1YGl9CDuIN0_O49ONbz-qs,1415
|
|
198
213
|
robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
|
|
199
214
|
robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
|
|
200
215
|
robosystems_client/models/create_graph_request.py,sha256=THs5EEB8-cpfkyDUu0XzwuWMnScboE_ir3vrQ44mPJY,6174
|
|
216
|
+
robosystems_client/models/create_org_request.py,sha256=Nivb6_9yP5v0_3Jo4mAm1aQusW98FPNIneVuzNbRGKk,1939
|
|
201
217
|
robosystems_client/models/create_repository_subscription_request.py,sha256=zDv9qNOG2K7t0j6zE85vrQ0F_QzHryRMr3dxZpLQIZM,1576
|
|
202
218
|
robosystems_client/models/create_subgraph_request.py,sha256=upBIPF4MIrawR_fAodpo4ts9sinq7FyDT2VyfR_uCp8,5777
|
|
203
219
|
robosystems_client/models/create_subgraph_request_metadata_type_0.py,sha256=dqVIzDSjIeTsKLCC7pmJAik2eJPIyi_6uTHzkspU37M,1257
|
|
@@ -246,8 +262,8 @@ robosystems_client/models/graph_metrics_response_health_status.py,sha256=IpwCxU4
|
|
|
246
262
|
robosystems_client/models/graph_metrics_response_node_counts.py,sha256=slKDmoKGV5HfUs8CuAvgYyDS-6VkyBjZ3IUJ2Dl5Acw,1253
|
|
247
263
|
robosystems_client/models/graph_metrics_response_relationship_counts.py,sha256=-MPyWBhmOX3w-2Xj5d0ED42ewyWzS9r0ruE6mgdZ98I,1300
|
|
248
264
|
robosystems_client/models/graph_subscription_response.py,sha256=0Vq9pBlZ1fvIdI2Lrow1cUnFYIgVIViF3gWVmOBdrsw,5909
|
|
249
|
-
robosystems_client/models/graph_subscription_tier.py,sha256=
|
|
250
|
-
robosystems_client/models/graph_subscriptions.py,sha256=
|
|
265
|
+
robosystems_client/models/graph_subscription_tier.py,sha256=uaG2qDZfN7bh_0o5zttg8lkYv-V0ft7RdWGaXsmfS3U,6803
|
|
266
|
+
robosystems_client/models/graph_subscriptions.py,sha256=NNJl4-wxBPdE3109ybjRZgUGKc3KHNOny3MNwo4q-kU,3105
|
|
251
267
|
robosystems_client/models/graph_tier_backup.py,sha256=cwHk3S3Zcu_5owIRzP2c0wzE58Q84vfDoS0719SclcE,2145
|
|
252
268
|
robosystems_client/models/graph_tier_copy_operations.py,sha256=dzm6950aqD8xMjSqOZgLsLH4eKTN_r_qVLoNBpcEUZI,2778
|
|
253
269
|
robosystems_client/models/graph_tier_info.py,sha256=lbfVXlmR34qN_cItDGoY4ywUJboX8g9knBN4Mm6cGCg,5290
|
|
@@ -259,6 +275,7 @@ robosystems_client/models/health_status.py,sha256=ce_IlbEvdQqmqi8Exux2UQA2K7qBLk
|
|
|
259
275
|
robosystems_client/models/health_status_details_type_0.py,sha256=ORS2NbiOWUJZvxa1dYdngpphzj_5lj7fLhmKqxyiVNU,1204
|
|
260
276
|
robosystems_client/models/http_validation_error.py,sha256=LXy3nhf_7F-tawZB7Rd6lqwi5FDtNtX58oil3X5hxLI,2045
|
|
261
277
|
robosystems_client/models/initial_entity_data.py,sha256=y-o0Fdpv5M-vgNEVCYNwJbFsXTdfcNIDtZOb7xwGTt0,6302
|
|
278
|
+
robosystems_client/models/invite_member_request.py,sha256=c29eDiaKs644w8UeWSfpu19CE7ymVm03bOm_2YA5zTM,2333
|
|
262
279
|
robosystems_client/models/invoice.py,sha256=Gncf20urOwHrwCKr1SnsKPLoskyvdkXEDk_PTK4f4hM,6981
|
|
263
280
|
robosystems_client/models/invoice_line_item.py,sha256=9Xx1itMJRA_PX2cjk88Do11EqENwcPv-j6pZzqDWFLQ,3141
|
|
264
281
|
robosystems_client/models/invoices_response.py,sha256=5WO9Xl4bmD3bAM8tFgrYVzeRp8Bmi4_I3iWIC9DH3CA,2249
|
|
@@ -266,6 +283,7 @@ robosystems_client/models/link_token_request.py,sha256=smOO4eebeImqNM9j7pOmbVeJX
|
|
|
266
283
|
robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0LijMFwGAtSIpNAFBLFHayZ8T1NZ2SaQJ8,1227
|
|
267
284
|
robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
|
|
268
285
|
robosystems_client/models/list_connections_provider_type_0.py,sha256=Mmteiaom76sOnidak7Y1zY4UemEbnM_3BnfbkFUUVv0,187
|
|
286
|
+
robosystems_client/models/list_org_graphs_response_200_item.py,sha256=Njoy62MQLAQivfldzi9s0oXzQxn3e9vsAWlfSmaUc2Q,1227
|
|
269
287
|
robosystems_client/models/list_subgraphs_response.py,sha256=PsavKzFwdPfM_4ZeX5-NcWo8K-x0KaFT7y4y_Zf7J98,4498
|
|
270
288
|
robosystems_client/models/list_table_files_response.py,sha256=3ozQqPez4EFBm2T1mrPu0dCpGck0zuthTdg8wmeeSms,2654
|
|
271
289
|
robosystems_client/models/login_request.py,sha256=bWvQYg7jPbtE__tVOqPKqGYx7Yzex2hPfOm2fJZjvLU,1543
|
|
@@ -283,6 +301,22 @@ robosystems_client/models/offering_repository_plan_rate_limits_type_0.py,sha256=
|
|
|
283
301
|
robosystems_client/models/operation_costs.py,sha256=QkvQoDDVY6weGnsLv339LJO5jRP-u0zdWfeQMv5-iYI,2999
|
|
284
302
|
robosystems_client/models/operation_costs_ai_operations.py,sha256=uFaM-4RYE1b17-PrXupVwlxNe6fpwspiyZsXYQfI2dE,1244
|
|
285
303
|
robosystems_client/models/operation_costs_token_pricing.py,sha256=Y3KP1CeoJYZlq_jv6bz6skeiUfikSKcdhtttiAfGchk,1688
|
|
304
|
+
robosystems_client/models/org_detail_response.py,sha256=yDnArtzytuYbpzWXo2sDE1NdQf2zKV1ukyw-hbKUBpg,4858
|
|
305
|
+
robosystems_client/models/org_detail_response_graphs_item.py,sha256=DerOE62o3ks3ZQbsBAa1vbJhrfHLsVZvalE7ihsnal0,1219
|
|
306
|
+
robosystems_client/models/org_detail_response_limits_type_0.py,sha256=Dj3u9s1JVdK7xM1L0GKEgh84UKLFnesy3-zx_vl78Aw,1227
|
|
307
|
+
robosystems_client/models/org_detail_response_members_item.py,sha256=oE0HrtN8i63kHyPf_x_NI7B96wUmsbNtDyiYqRXxNGY,1224
|
|
308
|
+
robosystems_client/models/org_limits_response.py,sha256=aYG3XWoxAlKWy-xHoPQuRq65HftLbVBN8n2r_oC0UBI,2528
|
|
309
|
+
robosystems_client/models/org_limits_response_current_usage.py,sha256=HUL632kbzwVuq4y1BwWfF3Cu2Jz9Zse0k_B7HmsW91Y,1229
|
|
310
|
+
robosystems_client/models/org_list_response.py,sha256=PbdwJVLeKS8iRjfH82JfY4BrHnSmzH-h8gHdTZXM_Ec,1897
|
|
311
|
+
robosystems_client/models/org_member_list_response.py,sha256=Km7ogGYct8iKXwsIgUeIA6ba_ca4KhXXmnZrNUMOfjc,2184
|
|
312
|
+
robosystems_client/models/org_member_response.py,sha256=OEcav-n8gWcrMkLFIbWCDOlgB7cWc-nLaHi-abycPkA,2268
|
|
313
|
+
robosystems_client/models/org_response.py,sha256=xwk9wOTkYEHiRGcqBX-PlV6U_PMQq486P2blp8whOUY,2719
|
|
314
|
+
robosystems_client/models/org_role.py,sha256=R4dE3w3MLifiGMmmhf-rYALVNL4DQ78Zt2urjLOdcrc,162
|
|
315
|
+
robosystems_client/models/org_type.py,sha256=wLQitHgM8kKO3oYXi9V3v79bZjHA7v6Gow1fFnQ2uRA,174
|
|
316
|
+
robosystems_client/models/org_usage_response.py,sha256=qDzCdi1-iaFKoxzHpvh4KvjSXVc_wkyZvm3ob7sBLzk,4136
|
|
317
|
+
robosystems_client/models/org_usage_response_daily_trend_item.py,sha256=XIrQd3byYydlMXbDhWgN0z02Jv-uyg8Em8wpexunCcI,1237
|
|
318
|
+
robosystems_client/models/org_usage_response_graph_details_item.py,sha256=WXzo_IFbWjzhWLqZpW_TfedbybKiCjrbsDsEcRgXHSc,1247
|
|
319
|
+
robosystems_client/models/org_usage_summary.py,sha256=JQb2-mgi3GROVCuylH_KfKoMjKGzUmQ1Kz_n98d8erc,4844
|
|
286
320
|
robosystems_client/models/password_check_request.py,sha256=ht66MwakiQAc8FB_sDS5qmI2FuHSM_-TNcupE9lhz1g,2091
|
|
287
321
|
robosystems_client/models/password_check_response.py,sha256=QkGKrAFrU2zpGUDxo1kisyJK1mr7-g1hzZf5OR3hFvA,2902
|
|
288
322
|
robosystems_client/models/password_check_response_character_types.py,sha256=fM4WuPV_L8vHGOTEFx7oV8_1w49GIBOKrupFMuSooYY,1284
|
|
@@ -300,7 +334,7 @@ robosystems_client/models/quick_books_connection_config.py,sha256=ohhOvNp3k8XVz-
|
|
|
300
334
|
robosystems_client/models/rate_limits.py,sha256=vnsqixRLz4T5SRfWN9ZYyn8SOiH8WJ2qtv83QY16ivU,2021
|
|
301
335
|
robosystems_client/models/register_request.py,sha256=9pHjAsopUT4IJ-pWPny7VSZ5MfSq2tALCt2nTM1vRZc,2511
|
|
302
336
|
robosystems_client/models/repository_info.py,sha256=3jZhhHdjFNE3yHzBVwaOZDOuKXnrvdGZcWlxsTnLnLA,2783
|
|
303
|
-
robosystems_client/models/repository_subscriptions.py,sha256=
|
|
337
|
+
robosystems_client/models/repository_subscriptions.py,sha256=N0IikS3q8BoH4c64KHfCYdso6Lv3CaNx2k5tCQuyg4w,2852
|
|
304
338
|
robosystems_client/models/resend_verification_email_response_resendverificationemail.py,sha256=Dh0e9tvOd_V6nEzX9MJLonn-gLhJQ7QHOe_xJkwPaK4,1354
|
|
305
339
|
robosystems_client/models/reset_password_request.py,sha256=14kn__5re5UkWEfjqz25RZeoQBh7z9fOKu_a01X9zi4,1682
|
|
306
340
|
robosystems_client/models/reset_password_validate_response.py,sha256=7FV8Gfhirst9UWl0_P3XGnn5i_uGtneTTTeA7y_13Dc,2130
|
|
@@ -318,7 +352,7 @@ robosystems_client/models/schema_validation_response_stats_type_0.py,sha256=H2Zm
|
|
|
318
352
|
robosystems_client/models/sec_connection_config.py,sha256=ZIcENfOIhGJnnAfboyVD_V9TFOkrS-dhLbVqfMBE1gw,2117
|
|
319
353
|
robosystems_client/models/selection_criteria.py,sha256=h04f-YIVc6Ljq1Eo-l5buFNTZVzgLbVzm8Xgc9GqtUs,4155
|
|
320
354
|
robosystems_client/models/service_offering_summary.py,sha256=dOqrA9YA6rs1VaVf2OqNDeSAauUZVFF8CCLGleR0lG4,2505
|
|
321
|
-
robosystems_client/models/service_offerings_response.py,sha256=
|
|
355
|
+
robosystems_client/models/service_offerings_response.py,sha256=8mq_Q4WYz2tIepQck1vL39OFg20Ausxn2weVlzGAtPI,3901
|
|
322
356
|
robosystems_client/models/sso_complete_request.py,sha256=_k4oKRh41Z3DVIrP8-bbFE3AenBbflLrY2tw6xg5G34,1482
|
|
323
357
|
robosystems_client/models/sso_exchange_request.py,sha256=b-XqNnBNLMviA6-rPmvfDLw6QELxs9-2tELSqjZJVQ4,2338
|
|
324
358
|
robosystems_client/models/sso_exchange_response.py,sha256=HmcvnafE-AQvzjvVBcGEft7FE6cxW2yJ1iiXtJbLe2A,2030
|
|
@@ -349,18 +383,17 @@ robosystems_client/models/transaction_summary_response.py,sha256=MSQYuOharoRpBil
|
|
|
349
383
|
robosystems_client/models/upcoming_invoice.py,sha256=mA1urxCSW5xPo9Hs5qSkI6mGUzbx8TQRjugglX1vxxU,3518
|
|
350
384
|
robosystems_client/models/update_api_key_request.py,sha256=fQVFQnUSIRDcBkCZP6ObAdVjIReaYuqSS3eliNSt59c,2527
|
|
351
385
|
robosystems_client/models/update_file_status_response_updatefilestatus.py,sha256=CnUPFGrufD3EMGXpqCX9Xa8dyY0ZZfb6B5Ke2Ktqiuk,1284
|
|
386
|
+
robosystems_client/models/update_member_role_request.py,sha256=4C7XrnYvtCgxnFXIVjz1c3xRlTGHwARZECUBhv1uf-M,1476
|
|
387
|
+
robosystems_client/models/update_org_request.py,sha256=UTJO_qIFkMxLgiNvalcj46E4FkgaQySkP8Jq88nIF64,2747
|
|
352
388
|
robosystems_client/models/update_password_request.py,sha256=3YwCzOJwE3WYpv05JwVBpwL71GCsj1fMLngxuEsXtpE,2013
|
|
353
389
|
robosystems_client/models/update_payment_method_request.py,sha256=7NGlBKoScTLLWnnq4wjsokXJLMdJ1RA34I6-bXcPh5E,1602
|
|
354
390
|
robosystems_client/models/update_payment_method_response.py,sha256=vzIBMD_XU78UrKa3rfT7uKCJFdYvuruTTzKe53bIvis,1925
|
|
355
391
|
robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
|
|
356
392
|
robosystems_client/models/upgrade_subscription_request.py,sha256=Ph-Wu1pA6zOEi6jSOuqrQRJ3xImOVy-T2g-xLHrYaic,1544
|
|
357
393
|
robosystems_client/models/user_graphs_response.py,sha256=k4zDipn-9HqwiJHUq8Si1XSemCDJv_t9SfTtJxc6w_k,2648
|
|
358
|
-
robosystems_client/models/user_limits_response.py,sha256=HyGQMqqX_U66B3vKIknQJTK35LAFfjEA_VTQgm_a_QM,2419
|
|
359
394
|
robosystems_client/models/user_response.py,sha256=uMYsvPKLo5YUwsT-PV8Tu5qrFG81X8-ODBllFyX2C6E,3650
|
|
360
|
-
robosystems_client/models/user_usage_response.py,sha256=xsKYfbSoHWbuE9Y-yBvaLkaUeBfgJ7s184JUtP75wT4,2612
|
|
361
|
-
robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZQ1grZWBRA0hMfW5eukyQr9lIk8,1243
|
|
362
395
|
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
363
|
-
robosystems_client-0.2.
|
|
364
|
-
robosystems_client-0.2.
|
|
365
|
-
robosystems_client-0.2.
|
|
366
|
-
robosystems_client-0.2.
|
|
396
|
+
robosystems_client-0.2.13.dist-info/METADATA,sha256=TYN9PHsu7MNUQJJ2lfmtnnR26gvDE914orgzefglUN4,3904
|
|
397
|
+
robosystems_client-0.2.13.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
398
|
+
robosystems_client-0.2.13.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
|
|
399
|
+
robosystems_client-0.2.13.dist-info/RECORD,,
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
from collections.abc import Mapping
|
|
2
|
-
from typing import Any, TypeVar
|
|
3
|
-
|
|
4
|
-
from attrs import define as _attrs_define
|
|
5
|
-
from attrs import field as _attrs_field
|
|
6
|
-
|
|
7
|
-
T = TypeVar("T", bound="UserLimitsResponse")
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
@_attrs_define
|
|
11
|
-
class UserLimitsResponse:
|
|
12
|
-
"""Response model for user limits information.
|
|
13
|
-
|
|
14
|
-
UserLimits is now a simple safety valve to prevent runaway graph creation.
|
|
15
|
-
Subscription tiers and rate limits are handled at the graph level.
|
|
16
|
-
|
|
17
|
-
Attributes:
|
|
18
|
-
id (str): Unique limits identifier
|
|
19
|
-
user_id (str): Associated user ID
|
|
20
|
-
max_user_graphs (int): Maximum number of user graphs allowed (safety limit)
|
|
21
|
-
created_at (str): Limits creation timestamp
|
|
22
|
-
updated_at (str): Last update timestamp
|
|
23
|
-
"""
|
|
24
|
-
|
|
25
|
-
id: str
|
|
26
|
-
user_id: str
|
|
27
|
-
max_user_graphs: int
|
|
28
|
-
created_at: str
|
|
29
|
-
updated_at: str
|
|
30
|
-
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
31
|
-
|
|
32
|
-
def to_dict(self) -> dict[str, Any]:
|
|
33
|
-
id = self.id
|
|
34
|
-
|
|
35
|
-
user_id = self.user_id
|
|
36
|
-
|
|
37
|
-
max_user_graphs = self.max_user_graphs
|
|
38
|
-
|
|
39
|
-
created_at = self.created_at
|
|
40
|
-
|
|
41
|
-
updated_at = self.updated_at
|
|
42
|
-
|
|
43
|
-
field_dict: dict[str, Any] = {}
|
|
44
|
-
field_dict.update(self.additional_properties)
|
|
45
|
-
field_dict.update(
|
|
46
|
-
{
|
|
47
|
-
"id": id,
|
|
48
|
-
"user_id": user_id,
|
|
49
|
-
"max_user_graphs": max_user_graphs,
|
|
50
|
-
"created_at": created_at,
|
|
51
|
-
"updated_at": updated_at,
|
|
52
|
-
}
|
|
53
|
-
)
|
|
54
|
-
|
|
55
|
-
return field_dict
|
|
56
|
-
|
|
57
|
-
@classmethod
|
|
58
|
-
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
59
|
-
d = dict(src_dict)
|
|
60
|
-
id = d.pop("id")
|
|
61
|
-
|
|
62
|
-
user_id = d.pop("user_id")
|
|
63
|
-
|
|
64
|
-
max_user_graphs = d.pop("max_user_graphs")
|
|
65
|
-
|
|
66
|
-
created_at = d.pop("created_at")
|
|
67
|
-
|
|
68
|
-
updated_at = d.pop("updated_at")
|
|
69
|
-
|
|
70
|
-
user_limits_response = cls(
|
|
71
|
-
id=id,
|
|
72
|
-
user_id=user_id,
|
|
73
|
-
max_user_graphs=max_user_graphs,
|
|
74
|
-
created_at=created_at,
|
|
75
|
-
updated_at=updated_at,
|
|
76
|
-
)
|
|
77
|
-
|
|
78
|
-
user_limits_response.additional_properties = d
|
|
79
|
-
return user_limits_response
|
|
80
|
-
|
|
81
|
-
@property
|
|
82
|
-
def additional_keys(self) -> list[str]:
|
|
83
|
-
return list(self.additional_properties.keys())
|
|
84
|
-
|
|
85
|
-
def __getitem__(self, key: str) -> Any:
|
|
86
|
-
return self.additional_properties[key]
|
|
87
|
-
|
|
88
|
-
def __setitem__(self, key: str, value: Any) -> None:
|
|
89
|
-
self.additional_properties[key] = value
|
|
90
|
-
|
|
91
|
-
def __delitem__(self, key: str) -> None:
|
|
92
|
-
del self.additional_properties[key]
|
|
93
|
-
|
|
94
|
-
def __contains__(self, key: str) -> bool:
|
|
95
|
-
return key in self.additional_properties
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
from collections.abc import Mapping
|
|
2
|
-
from typing import TYPE_CHECKING, Any, TypeVar
|
|
3
|
-
|
|
4
|
-
from attrs import define as _attrs_define
|
|
5
|
-
from attrs import field as _attrs_field
|
|
6
|
-
|
|
7
|
-
if TYPE_CHECKING:
|
|
8
|
-
from ..models.user_limits_response import UserLimitsResponse
|
|
9
|
-
from ..models.user_usage_response_graphs import UserUsageResponseGraphs
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
T = TypeVar("T", bound="UserUsageResponse")
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
@_attrs_define
|
|
16
|
-
class UserUsageResponse:
|
|
17
|
-
"""Response model for user usage statistics.
|
|
18
|
-
|
|
19
|
-
Simplified to only show graph usage as UserLimits is now just a safety valve.
|
|
20
|
-
Other usage tracking (MCP, Agent calls) happens at the graph level.
|
|
21
|
-
|
|
22
|
-
Attributes:
|
|
23
|
-
user_id (str): User identifier
|
|
24
|
-
graphs (UserUsageResponseGraphs): Graph usage statistics (current/limit/remaining)
|
|
25
|
-
limits (UserLimitsResponse): Response model for user limits information.
|
|
26
|
-
|
|
27
|
-
UserLimits is now a simple safety valve to prevent runaway graph creation.
|
|
28
|
-
Subscription tiers and rate limits are handled at the graph level.
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
user_id: str
|
|
32
|
-
graphs: "UserUsageResponseGraphs"
|
|
33
|
-
limits: "UserLimitsResponse"
|
|
34
|
-
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
35
|
-
|
|
36
|
-
def to_dict(self) -> dict[str, Any]:
|
|
37
|
-
user_id = self.user_id
|
|
38
|
-
|
|
39
|
-
graphs = self.graphs.to_dict()
|
|
40
|
-
|
|
41
|
-
limits = self.limits.to_dict()
|
|
42
|
-
|
|
43
|
-
field_dict: dict[str, Any] = {}
|
|
44
|
-
field_dict.update(self.additional_properties)
|
|
45
|
-
field_dict.update(
|
|
46
|
-
{
|
|
47
|
-
"user_id": user_id,
|
|
48
|
-
"graphs": graphs,
|
|
49
|
-
"limits": limits,
|
|
50
|
-
}
|
|
51
|
-
)
|
|
52
|
-
|
|
53
|
-
return field_dict
|
|
54
|
-
|
|
55
|
-
@classmethod
|
|
56
|
-
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
57
|
-
from ..models.user_limits_response import UserLimitsResponse
|
|
58
|
-
from ..models.user_usage_response_graphs import UserUsageResponseGraphs
|
|
59
|
-
|
|
60
|
-
d = dict(src_dict)
|
|
61
|
-
user_id = d.pop("user_id")
|
|
62
|
-
|
|
63
|
-
graphs = UserUsageResponseGraphs.from_dict(d.pop("graphs"))
|
|
64
|
-
|
|
65
|
-
limits = UserLimitsResponse.from_dict(d.pop("limits"))
|
|
66
|
-
|
|
67
|
-
user_usage_response = cls(
|
|
68
|
-
user_id=user_id,
|
|
69
|
-
graphs=graphs,
|
|
70
|
-
limits=limits,
|
|
71
|
-
)
|
|
72
|
-
|
|
73
|
-
user_usage_response.additional_properties = d
|
|
74
|
-
return user_usage_response
|
|
75
|
-
|
|
76
|
-
@property
|
|
77
|
-
def additional_keys(self) -> list[str]:
|
|
78
|
-
return list(self.additional_properties.keys())
|
|
79
|
-
|
|
80
|
-
def __getitem__(self, key: str) -> Any:
|
|
81
|
-
return self.additional_properties[key]
|
|
82
|
-
|
|
83
|
-
def __setitem__(self, key: str, value: Any) -> None:
|
|
84
|
-
self.additional_properties[key] = value
|
|
85
|
-
|
|
86
|
-
def __delitem__(self, key: str) -> None:
|
|
87
|
-
del self.additional_properties[key]
|
|
88
|
-
|
|
89
|
-
def __contains__(self, key: str) -> bool:
|
|
90
|
-
return key in self.additional_properties
|
|
File without changes
|
{robosystems_client-0.2.11.dist-info → robosystems_client-0.2.13.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|