robosystems-client 0.2.10__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.
- robosystems_client/api/auth/register_user.py +36 -8
- robosystems_client/api/billing/__init__.py +1 -0
- robosystems_client/api/billing/cancel_org_subscription.py +198 -0
- robosystems_client/api/billing/create_checkout_session.py +238 -0
- robosystems_client/api/billing/get_checkout_status.py +221 -0
- robosystems_client/api/billing/get_org_billing_customer.py +189 -0
- robosystems_client/api/billing/get_org_subscription.py +190 -0
- robosystems_client/api/billing/get_org_upcoming_invoice.py +203 -0
- robosystems_client/api/billing/list_org_invoices.py +210 -0
- robosystems_client/api/billing/list_org_subscriptions.py +194 -0
- robosystems_client/api/billing/update_org_payment_method.py +207 -0
- robosystems_client/api/org/__init__.py +1 -0
- robosystems_client/api/org/create_org.py +174 -0
- robosystems_client/api/org/get_org.py +165 -0
- 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/models/__init__.py +68 -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 +128 -0
- robosystems_client/models/checkout_response.py +130 -0
- robosystems_client/models/checkout_status_response.py +130 -0
- robosystems_client/models/create_checkout_request.py +88 -0
- robosystems_client/models/create_checkout_request_resource_config.py +44 -0
- 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/invoice.py +244 -0
- robosystems_client/models/invoice_line_item.py +118 -0
- robosystems_client/models/invoices_response.py +90 -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/payment_method.py +158 -0
- robosystems_client/models/repository_subscriptions.py +15 -4
- robosystems_client/models/service_offerings_response.py +15 -0
- robosystems_client/models/upcoming_invoice.py +128 -0
- robosystems_client/models/update_member_role_request.py +62 -0
- robosystems_client/models/update_org_request.py +103 -0
- robosystems_client/models/update_payment_method_request.py +60 -0
- robosystems_client/models/update_payment_method_response.py +74 -0
- {robosystems_client-0.2.10.dist-info → robosystems_client-0.2.12.dist-info}/METADATA +1 -1
- {robosystems_client-0.2.10.dist-info → robosystems_client-0.2.12.dist-info}/RECORD +71 -17
- robosystems_client/models/user_limits_response.py +0 -95
- robosystems_client/models/user_usage_response.py +0 -90
- {robosystems_client-0.2.10.dist-info → robosystems_client-0.2.12.dist-info}/WHEEL +0 -0
- {robosystems_client-0.2.10.dist-info → robosystems_client-0.2.12.dist-info}/licenses/LICENSE +0 -0
|
@@ -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
|
|
@@ -0,0 +1,60 @@
|
|
|
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="UpdatePaymentMethodRequest")
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
@_attrs_define
|
|
11
|
+
class UpdatePaymentMethodRequest:
|
|
12
|
+
"""Request to update default payment method.
|
|
13
|
+
|
|
14
|
+
Attributes:
|
|
15
|
+
payment_method_id (str): Payment method ID to set as default
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
payment_method_id: str
|
|
19
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
20
|
+
|
|
21
|
+
def to_dict(self) -> dict[str, Any]:
|
|
22
|
+
payment_method_id = self.payment_method_id
|
|
23
|
+
|
|
24
|
+
field_dict: dict[str, Any] = {}
|
|
25
|
+
field_dict.update(self.additional_properties)
|
|
26
|
+
field_dict.update(
|
|
27
|
+
{
|
|
28
|
+
"payment_method_id": payment_method_id,
|
|
29
|
+
}
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
return field_dict
|
|
33
|
+
|
|
34
|
+
@classmethod
|
|
35
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
36
|
+
d = dict(src_dict)
|
|
37
|
+
payment_method_id = d.pop("payment_method_id")
|
|
38
|
+
|
|
39
|
+
update_payment_method_request = cls(
|
|
40
|
+
payment_method_id=payment_method_id,
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
update_payment_method_request.additional_properties = d
|
|
44
|
+
return update_payment_method_request
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
def additional_keys(self) -> list[str]:
|
|
48
|
+
return list(self.additional_properties.keys())
|
|
49
|
+
|
|
50
|
+
def __getitem__(self, key: str) -> Any:
|
|
51
|
+
return self.additional_properties[key]
|
|
52
|
+
|
|
53
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
54
|
+
self.additional_properties[key] = value
|
|
55
|
+
|
|
56
|
+
def __delitem__(self, key: str) -> None:
|
|
57
|
+
del self.additional_properties[key]
|
|
58
|
+
|
|
59
|
+
def __contains__(self, key: str) -> bool:
|
|
60
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,74 @@
|
|
|
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.payment_method import PaymentMethod
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
T = TypeVar("T", bound="UpdatePaymentMethodResponse")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@_attrs_define
|
|
15
|
+
class UpdatePaymentMethodResponse:
|
|
16
|
+
"""Response for payment method update.
|
|
17
|
+
|
|
18
|
+
Attributes:
|
|
19
|
+
message (str): Success message
|
|
20
|
+
payment_method (PaymentMethod): Payment method information.
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
message: str
|
|
24
|
+
payment_method: "PaymentMethod"
|
|
25
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
26
|
+
|
|
27
|
+
def to_dict(self) -> dict[str, Any]:
|
|
28
|
+
message = self.message
|
|
29
|
+
|
|
30
|
+
payment_method = self.payment_method.to_dict()
|
|
31
|
+
|
|
32
|
+
field_dict: dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update(
|
|
35
|
+
{
|
|
36
|
+
"message": message,
|
|
37
|
+
"payment_method": payment_method,
|
|
38
|
+
}
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
return field_dict
|
|
42
|
+
|
|
43
|
+
@classmethod
|
|
44
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
45
|
+
from ..models.payment_method import PaymentMethod
|
|
46
|
+
|
|
47
|
+
d = dict(src_dict)
|
|
48
|
+
message = d.pop("message")
|
|
49
|
+
|
|
50
|
+
payment_method = PaymentMethod.from_dict(d.pop("payment_method"))
|
|
51
|
+
|
|
52
|
+
update_payment_method_response = cls(
|
|
53
|
+
message=message,
|
|
54
|
+
payment_method=payment_method,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
update_payment_method_response.additional_properties = d
|
|
58
|
+
return update_payment_method_response
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def additional_keys(self) -> list[str]:
|
|
62
|
+
return list(self.additional_properties.keys())
|
|
63
|
+
|
|
64
|
+
def __getitem__(self, key: str) -> Any:
|
|
65
|
+
return self.additional_properties[key]
|
|
66
|
+
|
|
67
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
68
|
+
self.additional_properties[key] = value
|
|
69
|
+
|
|
70
|
+
def __delitem__(self, key: str) -> None:
|
|
71
|
+
del self.additional_properties[key]
|
|
72
|
+
|
|
73
|
+
def __contains__(self, key: str) -> bool:
|
|
74
|
+
return key in self.additional_properties
|
|
@@ -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
|
|
@@ -35,6 +35,16 @@ robosystems_client/api/backup/get_backup_download_url.py,sha256=RoLsV63RFg82jvO8
|
|
|
35
35
|
robosystems_client/api/backup/get_backup_stats.py,sha256=7OszLrTT6Y2-qRIOUhzwuifSW76g0cP_jnCW7tecYiE,4200
|
|
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
|
+
robosystems_client/api/billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
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
|
|
41
|
+
robosystems_client/api/billing/get_checkout_status.py,sha256=YHHjkRWCNgF1s7JBMSUPywl-kn9VpFsY6SzUv7jKNnw,6686
|
|
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
|
|
38
48
|
robosystems_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
39
49
|
robosystems_client/api/connections/create_connection.py,sha256=qBoFyjcaMR3Ug7ZqpF--m7hUWvGuu3XMlXGNTM40NdQ,7789
|
|
40
50
|
robosystems_client/api/connections/create_link_token.py,sha256=UAJeuZVi5N4ZCAiEyBa9GaQIvAJOIu_XsDtqwnv-l8U,6849
|
|
@@ -71,6 +81,20 @@ robosystems_client/api/operations/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12
|
|
|
71
81
|
robosystems_client/api/operations/cancel_operation.py,sha256=Vq0-RzmtCOuUtYYkIrMv4TamIeGAM5bp8JOaE7YGwlE,6140
|
|
72
82
|
robosystems_client/api/operations/get_operation_status.py,sha256=tawSEB1rC1csGB2tbwvGucCCZslw6sedskXeOZ0H5d0,6913
|
|
73
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
|
|
74
98
|
robosystems_client/api/query/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
75
99
|
robosystems_client/api/query/execute_cypher_query.py,sha256=QRmCTp6PXW41G8gA4Nqu0MCeYJ6zjnRUd2v9tgD76qs,19364
|
|
76
100
|
robosystems_client/api/schema/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
@@ -78,7 +102,7 @@ robosystems_client/api/schema/export_graph_schema.py,sha256=4h01619pPXVRZlfI2rs5
|
|
|
78
102
|
robosystems_client/api/schema/get_graph_schema.py,sha256=EedSj2Ao2-5kqspViJLKz6tpb6lS3A--5lpFc-311YM,10214
|
|
79
103
|
robosystems_client/api/schema/validate_schema.py,sha256=MMMphsRcRPTHp2wfLP8ujsaO_Xe3muYTNdflmJa7EYM,8320
|
|
80
104
|
robosystems_client/api/service_offerings/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
81
|
-
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=
|
|
105
|
+
robosystems_client/api/service_offerings/get_service_offerings.py,sha256=dxoReNzU1gBRTIAi7MYq2nLrFHN_ygtTNUdKdHBviN8,7868
|
|
82
106
|
robosystems_client/api/status/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
83
107
|
robosystems_client/api/status/get_service_status.py,sha256=eRAk7piCdm3R9A0MfmMardMEhFmzjydFo9SDLjAbQKA,3306
|
|
84
108
|
robosystems_client/api/subgraphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
@@ -103,11 +127,10 @@ robosystems_client/api/tables/query_tables.py,sha256=DHva2m319Z54RziiVRiPb54eZHi
|
|
|
103
127
|
robosystems_client/api/tables/update_file_status.py,sha256=d5ZiueuguE5nK8vQw-q16CAyoZoBy8zu3zMpobdoO-o,11298
|
|
104
128
|
robosystems_client/api/usage/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
105
129
|
robosystems_client/api/usage/get_graph_metrics.py,sha256=26W8ynBfLEyNbI_OXhEkJ5NbFnPMmDBtlza7d6mbbeU,7050
|
|
106
|
-
robosystems_client/api/usage/get_graph_usage_analytics.py,sha256=
|
|
130
|
+
robosystems_client/api/usage/get_graph_usage_analytics.py,sha256=zrNFMOPKo67oCPyzK-WpZEqARaU4h0RKfshrphYRUec,13171
|
|
107
131
|
robosystems_client/api/user/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
108
132
|
robosystems_client/api/user/create_user_api_key.py,sha256=dfWRIqzWlesW7lehuskdnQ2TV6Ga_iGlZSAvArkLvnE,4525
|
|
109
133
|
robosystems_client/api/user/get_current_user.py,sha256=o2UQhqgFKUMdkZc9rgX9663w2_ySY9u145PmpaLaVYE,3244
|
|
110
|
-
robosystems_client/api/user/get_user_limits.py,sha256=hNckwQLtfBVbecoI_kJv70n_PBJfiQYs_VQow3XyWNQ,3573
|
|
111
134
|
robosystems_client/api/user/list_user_api_keys.py,sha256=W--PqFZ9rRRJm0J96wD4EITPx7PLDZWJyVBjwvKmd8M,3197
|
|
112
135
|
robosystems_client/api/user/revoke_user_api_key.py,sha256=yiz6lIOE_ne2Mebj4zvUMqri-Z5v0GKa0hbmPJCfTZo,4444
|
|
113
136
|
robosystems_client/api/user/update_user.py,sha256=nSr6ZRKD_Wu1I_QwHWd9GGH1TLYluMm_2GHgl1c_Yvc,4418
|
|
@@ -130,7 +153,7 @@ robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6
|
|
|
130
153
|
robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
|
|
131
154
|
robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
|
|
132
155
|
robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
|
|
133
|
-
robosystems_client/models/__init__.py,sha256=
|
|
156
|
+
robosystems_client/models/__init__.py,sha256=Yn-NLuSFnmCFPFnfUB1tHTppxmq5BDF_6e7YVUn9rgA,21975
|
|
134
157
|
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
135
158
|
robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
|
|
136
159
|
robosystems_client/models/agent_list_response_agents.py,sha256=RQMc6dTphBjFeLD4pt2RhQyd1AedF5GW5ujHYdyZMCg,1987
|
|
@@ -150,7 +173,8 @@ robosystems_client/models/agent_response_metadata_type_0.py,sha256=3Kn2zUDzbp49M
|
|
|
150
173
|
robosystems_client/models/agent_response_tokens_used_type_0.py,sha256=IcDJbOww9ZMAHvS8R4Stk8OJnQ30TVHlp89HN7tGZzg,1227
|
|
151
174
|
robosystems_client/models/api_key_info.py,sha256=xXNLsbL4Z-bIRf8jWd7G48iXP4oboiPQTPgGjipylOo,4070
|
|
152
175
|
robosystems_client/models/api_keys_response.py,sha256=SaqZcuXOQkT4rVT4uc8SlKTu_F0NZT5T9WjRFpCIGu8,1882
|
|
153
|
-
robosystems_client/models/auth_response.py,sha256=
|
|
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
|
|
154
178
|
robosystems_client/models/auth_response_user.py,sha256=QSXztxSkwxAbCkUJBeKcN-_4d-NONtJnMB99cJHmuAw,1173
|
|
155
179
|
robosystems_client/models/available_extension.py,sha256=YKL7EfIcYfSdBFzpmlMXp0GQqCdab8CiRtapIpO6UOc,1824
|
|
156
180
|
robosystems_client/models/available_extensions_response.py,sha256=zt9ggowoErKKoqxle5sa10XCx5wh-j71xw-Rq4Ya16c,1979
|
|
@@ -165,11 +189,14 @@ robosystems_client/models/backup_stats_response.py,sha256=_CLWy2wrczlIae_Li6NDSL
|
|
|
165
189
|
robosystems_client/models/backup_stats_response_backup_formats.py,sha256=dtxMpx0q6t5MZ1s37lQ-wttexoz7MkD8bAbaZ7SzDZ0,1244
|
|
166
190
|
robosystems_client/models/batch_agent_request.py,sha256=E2RxBaSal36cSJp4EDgKaBFWRc-KRr9e-ZuNLQ8bhJM,2231
|
|
167
191
|
robosystems_client/models/batch_agent_response.py,sha256=2kB08uGI9Dy-08HotYoWiCXKq44umbAFV6JlO13K9-Q,2537
|
|
192
|
+
robosystems_client/models/billing_customer.py,sha256=TB6zvV0IyKtgpSEHKC1cpbUyaWYKwlCPqGbAx75EomA,3956
|
|
168
193
|
robosystems_client/models/bulk_ingest_request.py,sha256=eRHk_mG5Zfok66-sPlgx7dKfs-L_76P8PaBOrf7dHr0,1306
|
|
169
194
|
robosystems_client/models/bulk_ingest_response.py,sha256=jR-Yxs5TWaMwM0auN4BrzvU7jXVF4pFlbbOzWCErjag,3899
|
|
170
195
|
robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
|
|
171
196
|
robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
|
|
172
197
|
robosystems_client/models/check_credit_balance_response_checkcreditbalance.py,sha256=izJJIZJaZkfJY7pqYg7nBPEv9IgRpJ5WSw6hu7VUZEk,1304
|
|
198
|
+
robosystems_client/models/checkout_response.py,sha256=NxmvkrjQrSGzhf3qCUILxw6KLezt_pS4TSGo8IyfRpM,4162
|
|
199
|
+
robosystems_client/models/checkout_status_response.py,sha256=jA1197K_GlPPK3kFyntZ6SuXdgF2DyR0PBrn4MagiaY,3792
|
|
173
200
|
robosystems_client/models/connection_options_response.py,sha256=J-VjmGYJn_BOhuExZBlJIHXedyf_CXcoRf2XfklOnrk,2309
|
|
174
201
|
robosystems_client/models/connection_provider_info.py,sha256=Im0k56k1USElC9G5m2g7elOJ5CHZ08lDOLg5vOmx_AA,6600
|
|
175
202
|
robosystems_client/models/connection_provider_info_auth_type.py,sha256=cSRUkd90osfbj2MP5Hl8dinEoIXBPrCOIFGYYrk-4D0,201
|
|
@@ -180,9 +207,12 @@ robosystems_client/models/connection_response_provider.py,sha256=th7b2inab-PZWaQ
|
|
|
180
207
|
robosystems_client/models/copy_operation_limits.py,sha256=S0j8lPVghl-ih5xI-oCHK1hBRZf7SeE7FiZEMjuXzEA,3059
|
|
181
208
|
robosystems_client/models/create_api_key_request.py,sha256=aP-X8CtffeRUXDqG-WzM4gn8_DOwPt5CURmGYIbjgqY,2829
|
|
182
209
|
robosystems_client/models/create_api_key_response.py,sha256=9cqlZDogqxdSXxxHT6PnfClTP-Q35CvfQjNIvPEe1Pw,1797
|
|
210
|
+
robosystems_client/models/create_checkout_request.py,sha256=c5FjtddJ2vnzQxaDOhfNO34ZrqSuswoPjXYdVq-us04,2439
|
|
211
|
+
robosystems_client/models/create_checkout_request_resource_config.py,sha256=J76EoSg2Pdz1741GwzAVfV9TrWzXJmAQCZnpdz76akc,1306
|
|
183
212
|
robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
|
|
184
213
|
robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
|
|
185
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
|
|
186
216
|
robosystems_client/models/create_repository_subscription_request.py,sha256=zDv9qNOG2K7t0j6zE85vrQ0F_QzHryRMr3dxZpLQIZM,1576
|
|
187
217
|
robosystems_client/models/create_subgraph_request.py,sha256=upBIPF4MIrawR_fAodpo4ts9sinq7FyDT2VyfR_uCp8,5777
|
|
188
218
|
robosystems_client/models/create_subgraph_request_metadata_type_0.py,sha256=dqVIzDSjIeTsKLCC7pmJAik2eJPIyi_6uTHzkspU37M,1257
|
|
@@ -231,8 +261,8 @@ robosystems_client/models/graph_metrics_response_health_status.py,sha256=IpwCxU4
|
|
|
231
261
|
robosystems_client/models/graph_metrics_response_node_counts.py,sha256=slKDmoKGV5HfUs8CuAvgYyDS-6VkyBjZ3IUJ2Dl5Acw,1253
|
|
232
262
|
robosystems_client/models/graph_metrics_response_relationship_counts.py,sha256=-MPyWBhmOX3w-2Xj5d0ED42ewyWzS9r0ruE6mgdZ98I,1300
|
|
233
263
|
robosystems_client/models/graph_subscription_response.py,sha256=0Vq9pBlZ1fvIdI2Lrow1cUnFYIgVIViF3gWVmOBdrsw,5909
|
|
234
|
-
robosystems_client/models/graph_subscription_tier.py,sha256=
|
|
235
|
-
robosystems_client/models/graph_subscriptions.py,sha256=
|
|
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
|
|
236
266
|
robosystems_client/models/graph_tier_backup.py,sha256=cwHk3S3Zcu_5owIRzP2c0wzE58Q84vfDoS0719SclcE,2145
|
|
237
267
|
robosystems_client/models/graph_tier_copy_operations.py,sha256=dzm6950aqD8xMjSqOZgLsLH4eKTN_r_qVLoNBpcEUZI,2778
|
|
238
268
|
robosystems_client/models/graph_tier_info.py,sha256=lbfVXlmR34qN_cItDGoY4ywUJboX8g9knBN4Mm6cGCg,5290
|
|
@@ -244,10 +274,15 @@ robosystems_client/models/health_status.py,sha256=ce_IlbEvdQqmqi8Exux2UQA2K7qBLk
|
|
|
244
274
|
robosystems_client/models/health_status_details_type_0.py,sha256=ORS2NbiOWUJZvxa1dYdngpphzj_5lj7fLhmKqxyiVNU,1204
|
|
245
275
|
robosystems_client/models/http_validation_error.py,sha256=LXy3nhf_7F-tawZB7Rd6lqwi5FDtNtX58oil3X5hxLI,2045
|
|
246
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
|
|
278
|
+
robosystems_client/models/invoice.py,sha256=Gncf20urOwHrwCKr1SnsKPLoskyvdkXEDk_PTK4f4hM,6981
|
|
279
|
+
robosystems_client/models/invoice_line_item.py,sha256=9Xx1itMJRA_PX2cjk88Do11EqENwcPv-j6pZzqDWFLQ,3141
|
|
280
|
+
robosystems_client/models/invoices_response.py,sha256=5WO9Xl4bmD3bAM8tFgrYVzeRp8Bmi4_I3iWIC9DH3CA,2249
|
|
247
281
|
robosystems_client/models/link_token_request.py,sha256=smOO4eebeImqNM9j7pOmbVeJXK0oEuqRYuvvMeZP0Sc,5144
|
|
248
282
|
robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0LijMFwGAtSIpNAFBLFHayZ8T1NZ2SaQJ8,1227
|
|
249
283
|
robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
|
|
250
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
|
|
251
286
|
robosystems_client/models/list_subgraphs_response.py,sha256=PsavKzFwdPfM_4ZeX5-NcWo8K-x0KaFT7y4y_Zf7J98,4498
|
|
252
287
|
robosystems_client/models/list_table_files_response.py,sha256=3ozQqPez4EFBm2T1mrPu0dCpGck0zuthTdg8wmeeSms,2654
|
|
253
288
|
robosystems_client/models/login_request.py,sha256=bWvQYg7jPbtE__tVOqPKqGYx7Yzex2hPfOm2fJZjvLU,1543
|
|
@@ -265,11 +300,28 @@ robosystems_client/models/offering_repository_plan_rate_limits_type_0.py,sha256=
|
|
|
265
300
|
robosystems_client/models/operation_costs.py,sha256=QkvQoDDVY6weGnsLv339LJO5jRP-u0zdWfeQMv5-iYI,2999
|
|
266
301
|
robosystems_client/models/operation_costs_ai_operations.py,sha256=uFaM-4RYE1b17-PrXupVwlxNe6fpwspiyZsXYQfI2dE,1244
|
|
267
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
|
|
268
319
|
robosystems_client/models/password_check_request.py,sha256=ht66MwakiQAc8FB_sDS5qmI2FuHSM_-TNcupE9lhz1g,2091
|
|
269
320
|
robosystems_client/models/password_check_response.py,sha256=QkGKrAFrU2zpGUDxo1kisyJK1mr7-g1hzZf5OR3hFvA,2902
|
|
270
321
|
robosystems_client/models/password_check_response_character_types.py,sha256=fM4WuPV_L8vHGOTEFx7oV8_1w49GIBOKrupFMuSooYY,1284
|
|
271
322
|
robosystems_client/models/password_policy_response.py,sha256=q-DI_QW6Jaui9VAvp1aCnhqUV9vZlp0jaOnTeGyO17o,1768
|
|
272
323
|
robosystems_client/models/password_policy_response_policy.py,sha256=_v_cVOIsaHSDNt5wzP2xMPT3AueojHBkP4qK-c1AuCU,1256
|
|
324
|
+
robosystems_client/models/payment_method.py,sha256=qRtz3BizzGgrsHzi_AbJZtBhAgI3DByv3EXQGAamxkc,4177
|
|
273
325
|
robosystems_client/models/performance_insights.py,sha256=4o2Z5O8QfrX8Rj-_jAOy70UrJO58EP3XwUp-0WQA5ZM,3642
|
|
274
326
|
robosystems_client/models/performance_insights_operation_stats.py,sha256=jOazO4odLlpOf0uPzwszAz1-SHrWO4AZK4g0N2q4Hlw,1280
|
|
275
327
|
robosystems_client/models/performance_insights_slow_queries_item.py,sha256=b6KqRqrbOMd9s2X7WHjpMDrFCsPMHVkWHEwX7XOIdgc,1254
|
|
@@ -281,7 +333,7 @@ robosystems_client/models/quick_books_connection_config.py,sha256=ohhOvNp3k8XVz-
|
|
|
281
333
|
robosystems_client/models/rate_limits.py,sha256=vnsqixRLz4T5SRfWN9ZYyn8SOiH8WJ2qtv83QY16ivU,2021
|
|
282
334
|
robosystems_client/models/register_request.py,sha256=9pHjAsopUT4IJ-pWPny7VSZ5MfSq2tALCt2nTM1vRZc,2511
|
|
283
335
|
robosystems_client/models/repository_info.py,sha256=3jZhhHdjFNE3yHzBVwaOZDOuKXnrvdGZcWlxsTnLnLA,2783
|
|
284
|
-
robosystems_client/models/repository_subscriptions.py,sha256=
|
|
336
|
+
robosystems_client/models/repository_subscriptions.py,sha256=N0IikS3q8BoH4c64KHfCYdso6Lv3CaNx2k5tCQuyg4w,2852
|
|
285
337
|
robosystems_client/models/resend_verification_email_response_resendverificationemail.py,sha256=Dh0e9tvOd_V6nEzX9MJLonn-gLhJQ7QHOe_xJkwPaK4,1354
|
|
286
338
|
robosystems_client/models/reset_password_request.py,sha256=14kn__5re5UkWEfjqz25RZeoQBh7z9fOKu_a01X9zi4,1682
|
|
287
339
|
robosystems_client/models/reset_password_validate_response.py,sha256=7FV8Gfhirst9UWl0_P3XGnn5i_uGtneTTTeA7y_13Dc,2130
|
|
@@ -299,7 +351,7 @@ robosystems_client/models/schema_validation_response_stats_type_0.py,sha256=H2Zm
|
|
|
299
351
|
robosystems_client/models/sec_connection_config.py,sha256=ZIcENfOIhGJnnAfboyVD_V9TFOkrS-dhLbVqfMBE1gw,2117
|
|
300
352
|
robosystems_client/models/selection_criteria.py,sha256=h04f-YIVc6Ljq1Eo-l5buFNTZVzgLbVzm8Xgc9GqtUs,4155
|
|
301
353
|
robosystems_client/models/service_offering_summary.py,sha256=dOqrA9YA6rs1VaVf2OqNDeSAauUZVFF8CCLGleR0lG4,2505
|
|
302
|
-
robosystems_client/models/service_offerings_response.py,sha256=
|
|
354
|
+
robosystems_client/models/service_offerings_response.py,sha256=8mq_Q4WYz2tIepQck1vL39OFg20Ausxn2weVlzGAtPI,3901
|
|
303
355
|
robosystems_client/models/sso_complete_request.py,sha256=_k4oKRh41Z3DVIrP8-bbFE3AenBbflLrY2tw6xg5G34,1482
|
|
304
356
|
robosystems_client/models/sso_exchange_request.py,sha256=b-XqNnBNLMviA6-rPmvfDLw6QELxs9-2tELSqjZJVQ4,2338
|
|
305
357
|
robosystems_client/models/sso_exchange_response.py,sha256=HmcvnafE-AQvzjvVBcGEft7FE6cxW2yJ1iiXtJbLe2A,2030
|
|
@@ -327,18 +379,20 @@ robosystems_client/models/table_query_request.py,sha256=bZITK2e2KdPZ7cVvi0arZpCf
|
|
|
327
379
|
robosystems_client/models/table_query_response.py,sha256=Y9zUSm1BPRfJEN_SP6lIZIQs75TcYPu1M8bxpWNp7PI,2268
|
|
328
380
|
robosystems_client/models/token_pricing.py,sha256=89uMvNo1RMh1Muz2ExTZdjFQgukXf_lfgKdoLvOFGp4,1841
|
|
329
381
|
robosystems_client/models/transaction_summary_response.py,sha256=MSQYuOharoRpBilqmpKo_Dxv39QLjJ0g5oY9NYsCQNA,3714
|
|
382
|
+
robosystems_client/models/upcoming_invoice.py,sha256=mA1urxCSW5xPo9Hs5qSkI6mGUzbx8TQRjugglX1vxxU,3518
|
|
330
383
|
robosystems_client/models/update_api_key_request.py,sha256=fQVFQnUSIRDcBkCZP6ObAdVjIReaYuqSS3eliNSt59c,2527
|
|
331
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
|
|
332
387
|
robosystems_client/models/update_password_request.py,sha256=3YwCzOJwE3WYpv05JwVBpwL71GCsj1fMLngxuEsXtpE,2013
|
|
388
|
+
robosystems_client/models/update_payment_method_request.py,sha256=7NGlBKoScTLLWnnq4wjsokXJLMdJ1RA34I6-bXcPh5E,1602
|
|
389
|
+
robosystems_client/models/update_payment_method_response.py,sha256=vzIBMD_XU78UrKa3rfT7uKCJFdYvuruTTzKe53bIvis,1925
|
|
333
390
|
robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
|
|
334
391
|
robosystems_client/models/upgrade_subscription_request.py,sha256=Ph-Wu1pA6zOEi6jSOuqrQRJ3xImOVy-T2g-xLHrYaic,1544
|
|
335
392
|
robosystems_client/models/user_graphs_response.py,sha256=k4zDipn-9HqwiJHUq8Si1XSemCDJv_t9SfTtJxc6w_k,2648
|
|
336
|
-
robosystems_client/models/user_limits_response.py,sha256=HyGQMqqX_U66B3vKIknQJTK35LAFfjEA_VTQgm_a_QM,2419
|
|
337
393
|
robosystems_client/models/user_response.py,sha256=uMYsvPKLo5YUwsT-PV8Tu5qrFG81X8-ODBllFyX2C6E,3650
|
|
338
|
-
robosystems_client/models/user_usage_response.py,sha256=xsKYfbSoHWbuE9Y-yBvaLkaUeBfgJ7s184JUtP75wT4,2612
|
|
339
|
-
robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZQ1grZWBRA0hMfW5eukyQr9lIk8,1243
|
|
340
394
|
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
341
|
-
robosystems_client-0.2.
|
|
342
|
-
robosystems_client-0.2.
|
|
343
|
-
robosystems_client-0.2.
|
|
344
|
-
robosystems_client-0.2.
|
|
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
|
|
File without changes
|
{robosystems_client-0.2.10.dist-info → robosystems_client-0.2.12.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|