robosystems-client 0.2.11__py3-none-any.whl → 0.2.12__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 (61) hide show
  1. robosystems_client/api/auth/register_user.py +36 -8
  2. robosystems_client/api/billing/{cancel_subscription.py → cancel_org_subscription.py} +34 -9
  3. robosystems_client/api/billing/create_checkout_session.py +28 -20
  4. robosystems_client/api/billing/get_org_billing_customer.py +189 -0
  5. robosystems_client/api/billing/{get_subscription.py → get_org_subscription.py} +30 -5
  6. robosystems_client/api/billing/{get_upcoming_invoice.py → get_org_upcoming_invoice.py} +68 -22
  7. robosystems_client/api/billing/{list_invoices.py → list_org_invoices.py} +38 -9
  8. robosystems_client/api/billing/{list_subscriptions.py → list_org_subscriptions.py} +64 -22
  9. robosystems_client/api/billing/{update_payment_method.py → update_org_payment_method.py} +34 -9
  10. robosystems_client/api/org/__init__.py +1 -0
  11. robosystems_client/api/org/create_org.py +174 -0
  12. robosystems_client/api/{billing/get_billing_customer.py → org/get_org.py} +50 -28
  13. robosystems_client/api/org/list_org_graphs.py +170 -0
  14. robosystems_client/api/{user/get_user_limits.py → org/list_user_orgs.py} +21 -25
  15. robosystems_client/api/org/update_org.py +187 -0
  16. robosystems_client/api/org_members/__init__.py +1 -0
  17. robosystems_client/api/org_members/invite_org_member.py +207 -0
  18. robosystems_client/api/org_members/list_org_members.py +165 -0
  19. robosystems_client/api/org_members/remove_org_member.py +176 -0
  20. robosystems_client/api/org_members/update_org_member_role.py +200 -0
  21. robosystems_client/api/org_usage/__init__.py +1 -0
  22. robosystems_client/api/org_usage/get_org_limits.py +165 -0
  23. robosystems_client/api/org_usage/get_org_usage.py +186 -0
  24. robosystems_client/api/service_offerings/get_service_offerings.py +32 -8
  25. robosystems_client/api/usage/get_graph_usage_analytics.py +4 -4
  26. robosystems_client/models/__init__.py +44 -6
  27. robosystems_client/models/auth_response.py +35 -0
  28. robosystems_client/models/{user_usage_response_graphs.py → auth_response_org_type_0.py} +6 -6
  29. robosystems_client/models/billing_customer.py +8 -8
  30. robosystems_client/models/checkout_response.py +65 -22
  31. robosystems_client/models/create_org_request.py +79 -0
  32. robosystems_client/models/graph_subscription_tier.py +40 -48
  33. robosystems_client/models/graph_subscriptions.py +17 -5
  34. robosystems_client/models/invite_member_request.py +93 -0
  35. robosystems_client/models/list_org_graphs_response_200_item.py +44 -0
  36. robosystems_client/models/org_detail_response.py +174 -0
  37. robosystems_client/models/org_detail_response_graphs_item.py +44 -0
  38. robosystems_client/models/org_detail_response_limits_type_0.py +44 -0
  39. robosystems_client/models/org_detail_response_members_item.py +44 -0
  40. robosystems_client/models/org_limits_response.py +98 -0
  41. robosystems_client/models/org_limits_response_current_usage.py +44 -0
  42. robosystems_client/models/org_list_response.py +82 -0
  43. robosystems_client/models/org_member_list_response.py +90 -0
  44. robosystems_client/models/org_member_response.py +104 -0
  45. robosystems_client/models/org_response.py +121 -0
  46. robosystems_client/models/org_role.py +10 -0
  47. robosystems_client/models/org_type.py +10 -0
  48. robosystems_client/models/org_usage_response.py +146 -0
  49. robosystems_client/models/org_usage_response_daily_trend_item.py +44 -0
  50. robosystems_client/models/org_usage_response_graph_details_item.py +44 -0
  51. robosystems_client/models/org_usage_summary.py +158 -0
  52. robosystems_client/models/repository_subscriptions.py +15 -4
  53. robosystems_client/models/service_offerings_response.py +15 -0
  54. robosystems_client/models/update_member_role_request.py +62 -0
  55. robosystems_client/models/update_org_request.py +103 -0
  56. {robosystems_client-0.2.11.dist-info → robosystems_client-0.2.12.dist-info}/METADATA +1 -1
  57. {robosystems_client-0.2.11.dist-info → robosystems_client-0.2.12.dist-info}/RECORD +59 -27
  58. robosystems_client/models/user_limits_response.py +0 -95
  59. robosystems_client/models/user_usage_response.py +0 -90
  60. {robosystems_client-0.2.11.dist-info → robosystems_client-0.2.12.dist-info}/WHEEL +0 -0
  61. {robosystems_client-0.2.11.dist-info → robosystems_client-0.2.12.dist-info}/licenses/LICENSE +0 -0
@@ -19,12 +19,21 @@ class ServiceOfferingsResponse:
19
19
  """Complete service offerings response.
20
20
 
21
21
  Attributes:
22
+ billing_enabled (bool): Whether billing and payments are enabled
22
23
  graph_subscriptions (GraphSubscriptions): Graph subscription offerings.
24
+
25
+ Graph subscriptions are per-graph, not per-organization. Each graph
26
+ created by an organization has its own subscription with its own
27
+ infrastructure tier, pricing, and credit allocation.
23
28
  repository_subscriptions (RepositorySubscriptions): Repository subscription offerings.
29
+
30
+ Repository subscriptions are per-organization, not per-graph. All members
31
+ of an organization share access to subscribed repositories.
24
32
  operation_costs (OperationCosts): Operation cost information.
25
33
  summary (ServiceOfferingSummary): Summary of service offerings.
26
34
  """
27
35
 
36
+ billing_enabled: bool
28
37
  graph_subscriptions: "GraphSubscriptions"
29
38
  repository_subscriptions: "RepositorySubscriptions"
30
39
  operation_costs: "OperationCosts"
@@ -32,6 +41,8 @@ class ServiceOfferingsResponse:
32
41
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
33
42
 
34
43
  def to_dict(self) -> dict[str, Any]:
44
+ billing_enabled = self.billing_enabled
45
+
35
46
  graph_subscriptions = self.graph_subscriptions.to_dict()
36
47
 
37
48
  repository_subscriptions = self.repository_subscriptions.to_dict()
@@ -44,6 +55,7 @@ class ServiceOfferingsResponse:
44
55
  field_dict.update(self.additional_properties)
45
56
  field_dict.update(
46
57
  {
58
+ "billing_enabled": billing_enabled,
47
59
  "graph_subscriptions": graph_subscriptions,
48
60
  "repository_subscriptions": repository_subscriptions,
49
61
  "operation_costs": operation_costs,
@@ -61,6 +73,8 @@ class ServiceOfferingsResponse:
61
73
  from ..models.service_offering_summary import ServiceOfferingSummary
62
74
 
63
75
  d = dict(src_dict)
76
+ billing_enabled = d.pop("billing_enabled")
77
+
64
78
  graph_subscriptions = GraphSubscriptions.from_dict(d.pop("graph_subscriptions"))
65
79
 
66
80
  repository_subscriptions = RepositorySubscriptions.from_dict(
@@ -72,6 +86,7 @@ class ServiceOfferingsResponse:
72
86
  summary = ServiceOfferingSummary.from_dict(d.pop("summary"))
73
87
 
74
88
  service_offerings_response = cls(
89
+ billing_enabled=billing_enabled,
75
90
  graph_subscriptions=graph_subscriptions,
76
91
  repository_subscriptions=repository_subscriptions,
77
92
  operation_costs=operation_costs,
@@ -0,0 +1,62 @@
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
+ from ..models.org_role import OrgRole
8
+
9
+ T = TypeVar("T", bound="UpdateMemberRoleRequest")
10
+
11
+
12
+ @_attrs_define
13
+ class UpdateMemberRoleRequest:
14
+ """Request to update a member's role.
15
+
16
+ Attributes:
17
+ role (OrgRole):
18
+ """
19
+
20
+ role: OrgRole
21
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
22
+
23
+ def to_dict(self) -> dict[str, Any]:
24
+ role = self.role.value
25
+
26
+ field_dict: dict[str, Any] = {}
27
+ field_dict.update(self.additional_properties)
28
+ field_dict.update(
29
+ {
30
+ "role": role,
31
+ }
32
+ )
33
+
34
+ return field_dict
35
+
36
+ @classmethod
37
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
38
+ d = dict(src_dict)
39
+ role = OrgRole(d.pop("role"))
40
+
41
+ update_member_role_request = cls(
42
+ role=role,
43
+ )
44
+
45
+ update_member_role_request.additional_properties = d
46
+ return update_member_role_request
47
+
48
+ @property
49
+ def additional_keys(self) -> list[str]:
50
+ return list(self.additional_properties.keys())
51
+
52
+ def __getitem__(self, key: str) -> Any:
53
+ return self.additional_properties[key]
54
+
55
+ def __setitem__(self, key: str, value: Any) -> None:
56
+ self.additional_properties[key] = value
57
+
58
+ def __delitem__(self, key: str) -> None:
59
+ del self.additional_properties[key]
60
+
61
+ def __contains__(self, key: str) -> bool:
62
+ return key in self.additional_properties
@@ -0,0 +1,103 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar, Union, cast
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ from ..models.org_type import OrgType
8
+ from ..types import UNSET, Unset
9
+
10
+ T = TypeVar("T", bound="UpdateOrgRequest")
11
+
12
+
13
+ @_attrs_define
14
+ class UpdateOrgRequest:
15
+ """Request to update organization details.
16
+
17
+ Attributes:
18
+ name (Union[None, Unset, str]):
19
+ org_type (Union[None, OrgType, Unset]):
20
+ """
21
+
22
+ name: Union[None, Unset, str] = UNSET
23
+ org_type: Union[None, OrgType, Unset] = UNSET
24
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
25
+
26
+ def to_dict(self) -> dict[str, Any]:
27
+ name: Union[None, Unset, str]
28
+ if isinstance(self.name, Unset):
29
+ name = UNSET
30
+ else:
31
+ name = self.name
32
+
33
+ org_type: Union[None, Unset, str]
34
+ if isinstance(self.org_type, Unset):
35
+ org_type = UNSET
36
+ elif isinstance(self.org_type, OrgType):
37
+ org_type = self.org_type.value
38
+ else:
39
+ org_type = self.org_type
40
+
41
+ field_dict: dict[str, Any] = {}
42
+ field_dict.update(self.additional_properties)
43
+ field_dict.update({})
44
+ if name is not UNSET:
45
+ field_dict["name"] = name
46
+ if org_type is not UNSET:
47
+ field_dict["org_type"] = org_type
48
+
49
+ return field_dict
50
+
51
+ @classmethod
52
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
53
+ d = dict(src_dict)
54
+
55
+ def _parse_name(data: object) -> Union[None, Unset, str]:
56
+ if data is None:
57
+ return data
58
+ if isinstance(data, Unset):
59
+ return data
60
+ return cast(Union[None, Unset, str], data)
61
+
62
+ name = _parse_name(d.pop("name", UNSET))
63
+
64
+ def _parse_org_type(data: object) -> Union[None, OrgType, Unset]:
65
+ if data is None:
66
+ return data
67
+ if isinstance(data, Unset):
68
+ return data
69
+ try:
70
+ if not isinstance(data, str):
71
+ raise TypeError()
72
+ org_type_type_0 = OrgType(data)
73
+
74
+ return org_type_type_0
75
+ except: # noqa: E722
76
+ pass
77
+ return cast(Union[None, OrgType, Unset], data)
78
+
79
+ org_type = _parse_org_type(d.pop("org_type", UNSET))
80
+
81
+ update_org_request = cls(
82
+ name=name,
83
+ org_type=org_type,
84
+ )
85
+
86
+ update_org_request.additional_properties = d
87
+ return update_org_request
88
+
89
+ @property
90
+ def additional_keys(self) -> list[str]:
91
+ return list(self.additional_properties.keys())
92
+
93
+ def __getitem__(self, key: str) -> Any:
94
+ return self.additional_properties[key]
95
+
96
+ def __setitem__(self, key: str, value: Any) -> None:
97
+ self.additional_properties[key] = value
98
+
99
+ def __delitem__(self, key: str) -> None:
100
+ del self.additional_properties[key]
101
+
102
+ def __contains__(self, key: str) -> bool:
103
+ return key in self.additional_properties
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robosystems-client
3
- Version: 0.2.11
3
+ Version: 0.2.12
4
4
  Summary: Python Client for RoboSystems financial graph database API
5
5
  Author: RFS LLC
6
6
  License: MIT
@@ -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=o4pbS0DFYZncYhRK3PPLMHWhSiy0wU1qEtaSIdoX9FE,5570
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/cancel_subscription.py,sha256=DxCl9gkcVaBtBodaC8GqCla60hNWvPZwAiNvbNHt5c8,4557
40
- robosystems_client/api/billing/create_checkout_session.py,sha256=yLGza90RCrUdJxuBDVnN9e--jsx2ofg7OQY692Z2rg8,7207
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/get_subscription.py,sha256=FEEuCxA3yQKT5_vY_OWTcVWU4q4nQsPPayNqyRDVYiI,4365
44
- robosystems_client/api/billing/get_upcoming_invoice.py,sha256=LsjyRMRFBlxLRR241EmNWilezNZ5JZyzKfN5yzvfwiI,3989
45
- robosystems_client/api/billing/list_invoices.py,sha256=-T15wqiQ1_QizRD5dsj2OLvs14Qofe0vSI9ECQ9HJRM,4709
46
- robosystems_client/api/billing/list_subscriptions.py,sha256=9n36tCDlxcTjjPWaAPdxV7LGdoloSlEfuR8n4uZmWSE,4102
47
- robosystems_client/api/billing/update_payment_method.py,sha256=7jJECbL7LgO9jDII2S-Ybu7hbtR_pIjS_hvi-eG5RoY,5139
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
@@ -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=5S20rSVxmNjqP4HYqyZ4gdh79sHOPBNjQD0ZubneRUo,6480
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,11 +127,10 @@ 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=o5euWy6xEfe8ZfRo9kk5kMU8UuyfQU50Gf1gcqrTXD0,13203
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
@@ -140,7 +153,7 @@ robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6
140
153
  robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
141
154
  robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
142
155
  robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
143
- robosystems_client/models/__init__.py,sha256=vXQAmiORPmHD4nwpZKN-26-jKjIAzJC_5NNyDJ6XRgY,20377
156
+ robosystems_client/models/__init__.py,sha256=Yn-NLuSFnmCFPFnfUB1tHTppxmq5BDF_6e7YVUn9rgA,21975
144
157
  robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
145
158
  robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
146
159
  robosystems_client/models/agent_list_response_agents.py,sha256=RQMc6dTphBjFeLD4pt2RhQyd1AedF5GW5ujHYdyZMCg,1987
@@ -160,7 +173,8 @@ robosystems_client/models/agent_response_metadata_type_0.py,sha256=3Kn2zUDzbp49M
160
173
  robosystems_client/models/agent_response_tokens_used_type_0.py,sha256=IcDJbOww9ZMAHvS8R4Stk8OJnQ30TVHlp89HN7tGZzg,1227
161
174
  robosystems_client/models/api_key_info.py,sha256=xXNLsbL4Z-bIRf8jWd7G48iXP4oboiPQTPgGjipylOo,4070
162
175
  robosystems_client/models/api_keys_response.py,sha256=SaqZcuXOQkT4rVT4uc8SlKTu_F0NZT5T9WjRFpCIGu8,1882
163
- robosystems_client/models/auth_response.py,sha256=rnoIGaRbJ9Nh-ty8e-H0qTwnFm2O6ZGJMB-F1HBIalI,3865
176
+ robosystems_client/models/auth_response.py,sha256=akSo9-ZMJU83gFh82T8NqAwmBWyrdfCoiPH-chxm-So,5056
177
+ robosystems_client/models/auth_response_org_type_0.py,sha256=yUwwe2Kro-HH3GOIT8_qaGOIjqbB9dm0kuP4ybHkzDc,1184
164
178
  robosystems_client/models/auth_response_user.py,sha256=QSXztxSkwxAbCkUJBeKcN-_4d-NONtJnMB99cJHmuAw,1173
165
179
  robosystems_client/models/available_extension.py,sha256=YKL7EfIcYfSdBFzpmlMXp0GQqCdab8CiRtapIpO6UOc,1824
166
180
  robosystems_client/models/available_extensions_response.py,sha256=zt9ggowoErKKoqxle5sa10XCx5wh-j71xw-Rq4Ya16c,1979
@@ -175,13 +189,13 @@ robosystems_client/models/backup_stats_response.py,sha256=_CLWy2wrczlIae_Li6NDSL
175
189
  robosystems_client/models/backup_stats_response_backup_formats.py,sha256=dtxMpx0q6t5MZ1s37lQ-wttexoz7MkD8bAbaZ7SzDZ0,1244
176
190
  robosystems_client/models/batch_agent_request.py,sha256=E2RxBaSal36cSJp4EDgKaBFWRc-KRr9e-ZuNLQ8bhJM,2231
177
191
  robosystems_client/models/batch_agent_response.py,sha256=2kB08uGI9Dy-08HotYoWiCXKq44umbAFV6JlO13K9-Q,2537
178
- robosystems_client/models/billing_customer.py,sha256=057JFenO9nQqLjr_XTRQZb6sXoWhbz2ZWvJElIo3Wi4,3934
192
+ robosystems_client/models/billing_customer.py,sha256=TB6zvV0IyKtgpSEHKC1cpbUyaWYKwlCPqGbAx75EomA,3956
179
193
  robosystems_client/models/bulk_ingest_request.py,sha256=eRHk_mG5Zfok66-sPlgx7dKfs-L_76P8PaBOrf7dHr0,1306
180
194
  robosystems_client/models/bulk_ingest_response.py,sha256=jR-Yxs5TWaMwM0auN4BrzvU7jXVF4pFlbbOzWCErjag,3899
181
195
  robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
182
196
  robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
183
197
  robosystems_client/models/check_credit_balance_response_checkcreditbalance.py,sha256=izJJIZJaZkfJY7pqYg7nBPEv9IgRpJ5WSw6hu7VUZEk,1304
184
- robosystems_client/models/checkout_response.py,sha256=WvSyoc7wCrwugt6R1bJIIiss51C_AXyxxj_wea7XbAs,2388
198
+ robosystems_client/models/checkout_response.py,sha256=NxmvkrjQrSGzhf3qCUILxw6KLezt_pS4TSGo8IyfRpM,4162
185
199
  robosystems_client/models/checkout_status_response.py,sha256=jA1197K_GlPPK3kFyntZ6SuXdgF2DyR0PBrn4MagiaY,3792
186
200
  robosystems_client/models/connection_options_response.py,sha256=J-VjmGYJn_BOhuExZBlJIHXedyf_CXcoRf2XfklOnrk,2309
187
201
  robosystems_client/models/connection_provider_info.py,sha256=Im0k56k1USElC9G5m2g7elOJ5CHZ08lDOLg5vOmx_AA,6600
@@ -198,6 +212,7 @@ robosystems_client/models/create_checkout_request_resource_config.py,sha256=J76E
198
212
  robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
199
213
  robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
200
214
  robosystems_client/models/create_graph_request.py,sha256=THs5EEB8-cpfkyDUu0XzwuWMnScboE_ir3vrQ44mPJY,6174
215
+ robosystems_client/models/create_org_request.py,sha256=Nivb6_9yP5v0_3Jo4mAm1aQusW98FPNIneVuzNbRGKk,1939
201
216
  robosystems_client/models/create_repository_subscription_request.py,sha256=zDv9qNOG2K7t0j6zE85vrQ0F_QzHryRMr3dxZpLQIZM,1576
202
217
  robosystems_client/models/create_subgraph_request.py,sha256=upBIPF4MIrawR_fAodpo4ts9sinq7FyDT2VyfR_uCp8,5777
203
218
  robosystems_client/models/create_subgraph_request_metadata_type_0.py,sha256=dqVIzDSjIeTsKLCC7pmJAik2eJPIyi_6uTHzkspU37M,1257
@@ -246,8 +261,8 @@ robosystems_client/models/graph_metrics_response_health_status.py,sha256=IpwCxU4
246
261
  robosystems_client/models/graph_metrics_response_node_counts.py,sha256=slKDmoKGV5HfUs8CuAvgYyDS-6VkyBjZ3IUJ2Dl5Acw,1253
247
262
  robosystems_client/models/graph_metrics_response_relationship_counts.py,sha256=-MPyWBhmOX3w-2Xj5d0ED42ewyWzS9r0ruE6mgdZ98I,1300
248
263
  robosystems_client/models/graph_subscription_response.py,sha256=0Vq9pBlZ1fvIdI2Lrow1cUnFYIgVIViF3gWVmOBdrsw,5909
249
- robosystems_client/models/graph_subscription_tier.py,sha256=5oDgbe9BsHs3cp9cMVn31TDcd_40Q2CEx1weBohthp8,6786
250
- robosystems_client/models/graph_subscriptions.py,sha256=ZjX_GuWS0OnCK_BaEG0fdIn3Nq3JTQhvljbx2hDzCVc,2615
264
+ robosystems_client/models/graph_subscription_tier.py,sha256=uaG2qDZfN7bh_0o5zttg8lkYv-V0ft7RdWGaXsmfS3U,6803
265
+ robosystems_client/models/graph_subscriptions.py,sha256=NNJl4-wxBPdE3109ybjRZgUGKc3KHNOny3MNwo4q-kU,3105
251
266
  robosystems_client/models/graph_tier_backup.py,sha256=cwHk3S3Zcu_5owIRzP2c0wzE58Q84vfDoS0719SclcE,2145
252
267
  robosystems_client/models/graph_tier_copy_operations.py,sha256=dzm6950aqD8xMjSqOZgLsLH4eKTN_r_qVLoNBpcEUZI,2778
253
268
  robosystems_client/models/graph_tier_info.py,sha256=lbfVXlmR34qN_cItDGoY4ywUJboX8g9knBN4Mm6cGCg,5290
@@ -259,6 +274,7 @@ robosystems_client/models/health_status.py,sha256=ce_IlbEvdQqmqi8Exux2UQA2K7qBLk
259
274
  robosystems_client/models/health_status_details_type_0.py,sha256=ORS2NbiOWUJZvxa1dYdngpphzj_5lj7fLhmKqxyiVNU,1204
260
275
  robosystems_client/models/http_validation_error.py,sha256=LXy3nhf_7F-tawZB7Rd6lqwi5FDtNtX58oil3X5hxLI,2045
261
276
  robosystems_client/models/initial_entity_data.py,sha256=y-o0Fdpv5M-vgNEVCYNwJbFsXTdfcNIDtZOb7xwGTt0,6302
277
+ robosystems_client/models/invite_member_request.py,sha256=c29eDiaKs644w8UeWSfpu19CE7ymVm03bOm_2YA5zTM,2333
262
278
  robosystems_client/models/invoice.py,sha256=Gncf20urOwHrwCKr1SnsKPLoskyvdkXEDk_PTK4f4hM,6981
263
279
  robosystems_client/models/invoice_line_item.py,sha256=9Xx1itMJRA_PX2cjk88Do11EqENwcPv-j6pZzqDWFLQ,3141
264
280
  robosystems_client/models/invoices_response.py,sha256=5WO9Xl4bmD3bAM8tFgrYVzeRp8Bmi4_I3iWIC9DH3CA,2249
@@ -266,6 +282,7 @@ robosystems_client/models/link_token_request.py,sha256=smOO4eebeImqNM9j7pOmbVeJX
266
282
  robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0LijMFwGAtSIpNAFBLFHayZ8T1NZ2SaQJ8,1227
267
283
  robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
268
284
  robosystems_client/models/list_connections_provider_type_0.py,sha256=Mmteiaom76sOnidak7Y1zY4UemEbnM_3BnfbkFUUVv0,187
285
+ robosystems_client/models/list_org_graphs_response_200_item.py,sha256=Njoy62MQLAQivfldzi9s0oXzQxn3e9vsAWlfSmaUc2Q,1227
269
286
  robosystems_client/models/list_subgraphs_response.py,sha256=PsavKzFwdPfM_4ZeX5-NcWo8K-x0KaFT7y4y_Zf7J98,4498
270
287
  robosystems_client/models/list_table_files_response.py,sha256=3ozQqPez4EFBm2T1mrPu0dCpGck0zuthTdg8wmeeSms,2654
271
288
  robosystems_client/models/login_request.py,sha256=bWvQYg7jPbtE__tVOqPKqGYx7Yzex2hPfOm2fJZjvLU,1543
@@ -283,6 +300,22 @@ robosystems_client/models/offering_repository_plan_rate_limits_type_0.py,sha256=
283
300
  robosystems_client/models/operation_costs.py,sha256=QkvQoDDVY6weGnsLv339LJO5jRP-u0zdWfeQMv5-iYI,2999
284
301
  robosystems_client/models/operation_costs_ai_operations.py,sha256=uFaM-4RYE1b17-PrXupVwlxNe6fpwspiyZsXYQfI2dE,1244
285
302
  robosystems_client/models/operation_costs_token_pricing.py,sha256=Y3KP1CeoJYZlq_jv6bz6skeiUfikSKcdhtttiAfGchk,1688
303
+ robosystems_client/models/org_detail_response.py,sha256=yDnArtzytuYbpzWXo2sDE1NdQf2zKV1ukyw-hbKUBpg,4858
304
+ robosystems_client/models/org_detail_response_graphs_item.py,sha256=DerOE62o3ks3ZQbsBAa1vbJhrfHLsVZvalE7ihsnal0,1219
305
+ robosystems_client/models/org_detail_response_limits_type_0.py,sha256=Dj3u9s1JVdK7xM1L0GKEgh84UKLFnesy3-zx_vl78Aw,1227
306
+ robosystems_client/models/org_detail_response_members_item.py,sha256=oE0HrtN8i63kHyPf_x_NI7B96wUmsbNtDyiYqRXxNGY,1224
307
+ robosystems_client/models/org_limits_response.py,sha256=aYG3XWoxAlKWy-xHoPQuRq65HftLbVBN8n2r_oC0UBI,2528
308
+ robosystems_client/models/org_limits_response_current_usage.py,sha256=HUL632kbzwVuq4y1BwWfF3Cu2Jz9Zse0k_B7HmsW91Y,1229
309
+ robosystems_client/models/org_list_response.py,sha256=PbdwJVLeKS8iRjfH82JfY4BrHnSmzH-h8gHdTZXM_Ec,1897
310
+ robosystems_client/models/org_member_list_response.py,sha256=Km7ogGYct8iKXwsIgUeIA6ba_ca4KhXXmnZrNUMOfjc,2184
311
+ robosystems_client/models/org_member_response.py,sha256=OEcav-n8gWcrMkLFIbWCDOlgB7cWc-nLaHi-abycPkA,2268
312
+ robosystems_client/models/org_response.py,sha256=xwk9wOTkYEHiRGcqBX-PlV6U_PMQq486P2blp8whOUY,2719
313
+ robosystems_client/models/org_role.py,sha256=R4dE3w3MLifiGMmmhf-rYALVNL4DQ78Zt2urjLOdcrc,162
314
+ robosystems_client/models/org_type.py,sha256=wLQitHgM8kKO3oYXi9V3v79bZjHA7v6Gow1fFnQ2uRA,174
315
+ robosystems_client/models/org_usage_response.py,sha256=qDzCdi1-iaFKoxzHpvh4KvjSXVc_wkyZvm3ob7sBLzk,4136
316
+ robosystems_client/models/org_usage_response_daily_trend_item.py,sha256=XIrQd3byYydlMXbDhWgN0z02Jv-uyg8Em8wpexunCcI,1237
317
+ robosystems_client/models/org_usage_response_graph_details_item.py,sha256=WXzo_IFbWjzhWLqZpW_TfedbybKiCjrbsDsEcRgXHSc,1247
318
+ robosystems_client/models/org_usage_summary.py,sha256=JQb2-mgi3GROVCuylH_KfKoMjKGzUmQ1Kz_n98d8erc,4844
286
319
  robosystems_client/models/password_check_request.py,sha256=ht66MwakiQAc8FB_sDS5qmI2FuHSM_-TNcupE9lhz1g,2091
287
320
  robosystems_client/models/password_check_response.py,sha256=QkGKrAFrU2zpGUDxo1kisyJK1mr7-g1hzZf5OR3hFvA,2902
288
321
  robosystems_client/models/password_check_response_character_types.py,sha256=fM4WuPV_L8vHGOTEFx7oV8_1w49GIBOKrupFMuSooYY,1284
@@ -300,7 +333,7 @@ robosystems_client/models/quick_books_connection_config.py,sha256=ohhOvNp3k8XVz-
300
333
  robosystems_client/models/rate_limits.py,sha256=vnsqixRLz4T5SRfWN9ZYyn8SOiH8WJ2qtv83QY16ivU,2021
301
334
  robosystems_client/models/register_request.py,sha256=9pHjAsopUT4IJ-pWPny7VSZ5MfSq2tALCt2nTM1vRZc,2511
302
335
  robosystems_client/models/repository_info.py,sha256=3jZhhHdjFNE3yHzBVwaOZDOuKXnrvdGZcWlxsTnLnLA,2783
303
- robosystems_client/models/repository_subscriptions.py,sha256=_xwqEkYqfV3WlGfKsgvScDnj8VzpslxTXkwqf17XKN8,2435
336
+ robosystems_client/models/repository_subscriptions.py,sha256=N0IikS3q8BoH4c64KHfCYdso6Lv3CaNx2k5tCQuyg4w,2852
304
337
  robosystems_client/models/resend_verification_email_response_resendverificationemail.py,sha256=Dh0e9tvOd_V6nEzX9MJLonn-gLhJQ7QHOe_xJkwPaK4,1354
305
338
  robosystems_client/models/reset_password_request.py,sha256=14kn__5re5UkWEfjqz25RZeoQBh7z9fOKu_a01X9zi4,1682
306
339
  robosystems_client/models/reset_password_validate_response.py,sha256=7FV8Gfhirst9UWl0_P3XGnn5i_uGtneTTTeA7y_13Dc,2130
@@ -318,7 +351,7 @@ robosystems_client/models/schema_validation_response_stats_type_0.py,sha256=H2Zm
318
351
  robosystems_client/models/sec_connection_config.py,sha256=ZIcENfOIhGJnnAfboyVD_V9TFOkrS-dhLbVqfMBE1gw,2117
319
352
  robosystems_client/models/selection_criteria.py,sha256=h04f-YIVc6Ljq1Eo-l5buFNTZVzgLbVzm8Xgc9GqtUs,4155
320
353
  robosystems_client/models/service_offering_summary.py,sha256=dOqrA9YA6rs1VaVf2OqNDeSAauUZVFF8CCLGleR0lG4,2505
321
- robosystems_client/models/service_offerings_response.py,sha256=QiDhvfHuUNfjVBJUr9mnmfmdvxL_lNg1z6Nzf8YxR7M,3259
354
+ robosystems_client/models/service_offerings_response.py,sha256=8mq_Q4WYz2tIepQck1vL39OFg20Ausxn2weVlzGAtPI,3901
322
355
  robosystems_client/models/sso_complete_request.py,sha256=_k4oKRh41Z3DVIrP8-bbFE3AenBbflLrY2tw6xg5G34,1482
323
356
  robosystems_client/models/sso_exchange_request.py,sha256=b-XqNnBNLMviA6-rPmvfDLw6QELxs9-2tELSqjZJVQ4,2338
324
357
  robosystems_client/models/sso_exchange_response.py,sha256=HmcvnafE-AQvzjvVBcGEft7FE6cxW2yJ1iiXtJbLe2A,2030
@@ -349,18 +382,17 @@ robosystems_client/models/transaction_summary_response.py,sha256=MSQYuOharoRpBil
349
382
  robosystems_client/models/upcoming_invoice.py,sha256=mA1urxCSW5xPo9Hs5qSkI6mGUzbx8TQRjugglX1vxxU,3518
350
383
  robosystems_client/models/update_api_key_request.py,sha256=fQVFQnUSIRDcBkCZP6ObAdVjIReaYuqSS3eliNSt59c,2527
351
384
  robosystems_client/models/update_file_status_response_updatefilestatus.py,sha256=CnUPFGrufD3EMGXpqCX9Xa8dyY0ZZfb6B5Ke2Ktqiuk,1284
385
+ robosystems_client/models/update_member_role_request.py,sha256=4C7XrnYvtCgxnFXIVjz1c3xRlTGHwARZECUBhv1uf-M,1476
386
+ robosystems_client/models/update_org_request.py,sha256=UTJO_qIFkMxLgiNvalcj46E4FkgaQySkP8Jq88nIF64,2747
352
387
  robosystems_client/models/update_password_request.py,sha256=3YwCzOJwE3WYpv05JwVBpwL71GCsj1fMLngxuEsXtpE,2013
353
388
  robosystems_client/models/update_payment_method_request.py,sha256=7NGlBKoScTLLWnnq4wjsokXJLMdJ1RA34I6-bXcPh5E,1602
354
389
  robosystems_client/models/update_payment_method_response.py,sha256=vzIBMD_XU78UrKa3rfT7uKCJFdYvuruTTzKe53bIvis,1925
355
390
  robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
356
391
  robosystems_client/models/upgrade_subscription_request.py,sha256=Ph-Wu1pA6zOEi6jSOuqrQRJ3xImOVy-T2g-xLHrYaic,1544
357
392
  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
393
  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
394
  robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
363
- robosystems_client-0.2.11.dist-info/METADATA,sha256=6zzDxN_5_5aLQaEAJwvw-sRk_WW_M5Z68IzbhvCoP9g,3904
364
- robosystems_client-0.2.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
365
- robosystems_client-0.2.11.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
366
- robosystems_client-0.2.11.dist-info/RECORD,,
395
+ robosystems_client-0.2.12.dist-info/METADATA,sha256=X9sdwC35xr9TCGACrEQMT7_Eh_cboFa_xulAfJq3P8U,3904
396
+ robosystems_client-0.2.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
397
+ robosystems_client-0.2.12.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
398
+ robosystems_client-0.2.12.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