robosystems-client 0.2.10__py3-none-any.whl → 0.2.11__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.
- robosystems_client/api/billing/__init__.py +1 -0
- robosystems_client/api/billing/cancel_subscription.py +173 -0
- robosystems_client/api/billing/create_checkout_session.py +230 -0
- robosystems_client/api/billing/get_billing_customer.py +143 -0
- robosystems_client/api/billing/get_checkout_status.py +221 -0
- robosystems_client/api/billing/get_subscription.py +165 -0
- robosystems_client/api/billing/get_upcoming_invoice.py +157 -0
- robosystems_client/api/billing/list_invoices.py +181 -0
- robosystems_client/api/billing/list_subscriptions.py +152 -0
- robosystems_client/api/billing/update_payment_method.py +182 -0
- robosystems_client/models/__init__.py +24 -0
- robosystems_client/models/billing_customer.py +128 -0
- robosystems_client/models/checkout_response.py +87 -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/invoice.py +244 -0
- robosystems_client/models/invoice_line_item.py +118 -0
- robosystems_client/models/invoices_response.py +90 -0
- robosystems_client/models/payment_method.py +158 -0
- robosystems_client/models/upcoming_invoice.py +128 -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.11.dist-info}/METADATA +1 -1
- {robosystems_client-0.2.10.dist-info → robosystems_client-0.2.11.dist-info}/RECORD +27 -5
- {robosystems_client-0.2.10.dist-info → robosystems_client-0.2.11.dist-info}/WHEEL +0 -0
- {robosystems_client-0.2.10.dist-info → robosystems_client-0.2.11.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import TYPE_CHECKING, Any, TypeVar, Union, cast
|
|
3
|
+
|
|
4
|
+
from attrs import define as _attrs_define
|
|
5
|
+
from attrs import field as _attrs_field
|
|
6
|
+
|
|
7
|
+
from ..types import UNSET, Unset
|
|
8
|
+
|
|
9
|
+
if TYPE_CHECKING:
|
|
10
|
+
from ..models.invoice_line_item import InvoiceLineItem
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
T = TypeVar("T", bound="UpcomingInvoice")
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
@_attrs_define
|
|
17
|
+
class UpcomingInvoice:
|
|
18
|
+
"""Upcoming invoice preview.
|
|
19
|
+
|
|
20
|
+
Attributes:
|
|
21
|
+
amount_due (int): Estimated amount due in cents
|
|
22
|
+
currency (str): Currency code
|
|
23
|
+
period_start (str): Billing period start
|
|
24
|
+
period_end (str): Billing period end
|
|
25
|
+
line_items (list['InvoiceLineItem']): Estimated line items
|
|
26
|
+
subscription_id (Union[None, Unset, str]): Associated subscription ID
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
amount_due: int
|
|
30
|
+
currency: str
|
|
31
|
+
period_start: str
|
|
32
|
+
period_end: str
|
|
33
|
+
line_items: list["InvoiceLineItem"]
|
|
34
|
+
subscription_id: Union[None, Unset, str] = UNSET
|
|
35
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
36
|
+
|
|
37
|
+
def to_dict(self) -> dict[str, Any]:
|
|
38
|
+
amount_due = self.amount_due
|
|
39
|
+
|
|
40
|
+
currency = self.currency
|
|
41
|
+
|
|
42
|
+
period_start = self.period_start
|
|
43
|
+
|
|
44
|
+
period_end = self.period_end
|
|
45
|
+
|
|
46
|
+
line_items = []
|
|
47
|
+
for line_items_item_data in self.line_items:
|
|
48
|
+
line_items_item = line_items_item_data.to_dict()
|
|
49
|
+
line_items.append(line_items_item)
|
|
50
|
+
|
|
51
|
+
subscription_id: Union[None, Unset, str]
|
|
52
|
+
if isinstance(self.subscription_id, Unset):
|
|
53
|
+
subscription_id = UNSET
|
|
54
|
+
else:
|
|
55
|
+
subscription_id = self.subscription_id
|
|
56
|
+
|
|
57
|
+
field_dict: dict[str, Any] = {}
|
|
58
|
+
field_dict.update(self.additional_properties)
|
|
59
|
+
field_dict.update(
|
|
60
|
+
{
|
|
61
|
+
"amount_due": amount_due,
|
|
62
|
+
"currency": currency,
|
|
63
|
+
"period_start": period_start,
|
|
64
|
+
"period_end": period_end,
|
|
65
|
+
"line_items": line_items,
|
|
66
|
+
}
|
|
67
|
+
)
|
|
68
|
+
if subscription_id is not UNSET:
|
|
69
|
+
field_dict["subscription_id"] = subscription_id
|
|
70
|
+
|
|
71
|
+
return field_dict
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
75
|
+
from ..models.invoice_line_item import InvoiceLineItem
|
|
76
|
+
|
|
77
|
+
d = dict(src_dict)
|
|
78
|
+
amount_due = d.pop("amount_due")
|
|
79
|
+
|
|
80
|
+
currency = d.pop("currency")
|
|
81
|
+
|
|
82
|
+
period_start = d.pop("period_start")
|
|
83
|
+
|
|
84
|
+
period_end = d.pop("period_end")
|
|
85
|
+
|
|
86
|
+
line_items = []
|
|
87
|
+
_line_items = d.pop("line_items")
|
|
88
|
+
for line_items_item_data in _line_items:
|
|
89
|
+
line_items_item = InvoiceLineItem.from_dict(line_items_item_data)
|
|
90
|
+
|
|
91
|
+
line_items.append(line_items_item)
|
|
92
|
+
|
|
93
|
+
def _parse_subscription_id(data: object) -> Union[None, Unset, str]:
|
|
94
|
+
if data is None:
|
|
95
|
+
return data
|
|
96
|
+
if isinstance(data, Unset):
|
|
97
|
+
return data
|
|
98
|
+
return cast(Union[None, Unset, str], data)
|
|
99
|
+
|
|
100
|
+
subscription_id = _parse_subscription_id(d.pop("subscription_id", UNSET))
|
|
101
|
+
|
|
102
|
+
upcoming_invoice = cls(
|
|
103
|
+
amount_due=amount_due,
|
|
104
|
+
currency=currency,
|
|
105
|
+
period_start=period_start,
|
|
106
|
+
period_end=period_end,
|
|
107
|
+
line_items=line_items,
|
|
108
|
+
subscription_id=subscription_id,
|
|
109
|
+
)
|
|
110
|
+
|
|
111
|
+
upcoming_invoice.additional_properties = d
|
|
112
|
+
return upcoming_invoice
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
def additional_keys(self) -> list[str]:
|
|
116
|
+
return list(self.additional_properties.keys())
|
|
117
|
+
|
|
118
|
+
def __getitem__(self, key: str) -> Any:
|
|
119
|
+
return self.additional_properties[key]
|
|
120
|
+
|
|
121
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
122
|
+
self.additional_properties[key] = value
|
|
123
|
+
|
|
124
|
+
def __delitem__(self, key: str) -> None:
|
|
125
|
+
del self.additional_properties[key]
|
|
126
|
+
|
|
127
|
+
def __contains__(self, key: str) -> bool:
|
|
128
|
+
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
|
|
@@ -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_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
|
|
42
|
+
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
|
|
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
|
|
@@ -130,7 +140,7 @@ robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6
|
|
|
130
140
|
robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
|
|
131
141
|
robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
|
|
132
142
|
robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
|
|
133
|
-
robosystems_client/models/__init__.py,sha256=
|
|
143
|
+
robosystems_client/models/__init__.py,sha256=vXQAmiORPmHD4nwpZKN-26-jKjIAzJC_5NNyDJ6XRgY,20377
|
|
134
144
|
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
135
145
|
robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
|
|
136
146
|
robosystems_client/models/agent_list_response_agents.py,sha256=RQMc6dTphBjFeLD4pt2RhQyd1AedF5GW5ujHYdyZMCg,1987
|
|
@@ -165,11 +175,14 @@ robosystems_client/models/backup_stats_response.py,sha256=_CLWy2wrczlIae_Li6NDSL
|
|
|
165
175
|
robosystems_client/models/backup_stats_response_backup_formats.py,sha256=dtxMpx0q6t5MZ1s37lQ-wttexoz7MkD8bAbaZ7SzDZ0,1244
|
|
166
176
|
robosystems_client/models/batch_agent_request.py,sha256=E2RxBaSal36cSJp4EDgKaBFWRc-KRr9e-ZuNLQ8bhJM,2231
|
|
167
177
|
robosystems_client/models/batch_agent_response.py,sha256=2kB08uGI9Dy-08HotYoWiCXKq44umbAFV6JlO13K9-Q,2537
|
|
178
|
+
robosystems_client/models/billing_customer.py,sha256=057JFenO9nQqLjr_XTRQZb6sXoWhbz2ZWvJElIo3Wi4,3934
|
|
168
179
|
robosystems_client/models/bulk_ingest_request.py,sha256=eRHk_mG5Zfok66-sPlgx7dKfs-L_76P8PaBOrf7dHr0,1306
|
|
169
180
|
robosystems_client/models/bulk_ingest_response.py,sha256=jR-Yxs5TWaMwM0auN4BrzvU7jXVF4pFlbbOzWCErjag,3899
|
|
170
181
|
robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
|
|
171
182
|
robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
|
|
172
183
|
robosystems_client/models/check_credit_balance_response_checkcreditbalance.py,sha256=izJJIZJaZkfJY7pqYg7nBPEv9IgRpJ5WSw6hu7VUZEk,1304
|
|
184
|
+
robosystems_client/models/checkout_response.py,sha256=WvSyoc7wCrwugt6R1bJIIiss51C_AXyxxj_wea7XbAs,2388
|
|
185
|
+
robosystems_client/models/checkout_status_response.py,sha256=jA1197K_GlPPK3kFyntZ6SuXdgF2DyR0PBrn4MagiaY,3792
|
|
173
186
|
robosystems_client/models/connection_options_response.py,sha256=J-VjmGYJn_BOhuExZBlJIHXedyf_CXcoRf2XfklOnrk,2309
|
|
174
187
|
robosystems_client/models/connection_provider_info.py,sha256=Im0k56k1USElC9G5m2g7elOJ5CHZ08lDOLg5vOmx_AA,6600
|
|
175
188
|
robosystems_client/models/connection_provider_info_auth_type.py,sha256=cSRUkd90osfbj2MP5Hl8dinEoIXBPrCOIFGYYrk-4D0,201
|
|
@@ -180,6 +193,8 @@ robosystems_client/models/connection_response_provider.py,sha256=th7b2inab-PZWaQ
|
|
|
180
193
|
robosystems_client/models/copy_operation_limits.py,sha256=S0j8lPVghl-ih5xI-oCHK1hBRZf7SeE7FiZEMjuXzEA,3059
|
|
181
194
|
robosystems_client/models/create_api_key_request.py,sha256=aP-X8CtffeRUXDqG-WzM4gn8_DOwPt5CURmGYIbjgqY,2829
|
|
182
195
|
robosystems_client/models/create_api_key_response.py,sha256=9cqlZDogqxdSXxxHT6PnfClTP-Q35CvfQjNIvPEe1Pw,1797
|
|
196
|
+
robosystems_client/models/create_checkout_request.py,sha256=c5FjtddJ2vnzQxaDOhfNO34ZrqSuswoPjXYdVq-us04,2439
|
|
197
|
+
robosystems_client/models/create_checkout_request_resource_config.py,sha256=J76EoSg2Pdz1741GwzAVfV9TrWzXJmAQCZnpdz76akc,1306
|
|
183
198
|
robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
|
|
184
199
|
robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
|
|
185
200
|
robosystems_client/models/create_graph_request.py,sha256=THs5EEB8-cpfkyDUu0XzwuWMnScboE_ir3vrQ44mPJY,6174
|
|
@@ -244,6 +259,9 @@ robosystems_client/models/health_status.py,sha256=ce_IlbEvdQqmqi8Exux2UQA2K7qBLk
|
|
|
244
259
|
robosystems_client/models/health_status_details_type_0.py,sha256=ORS2NbiOWUJZvxa1dYdngpphzj_5lj7fLhmKqxyiVNU,1204
|
|
245
260
|
robosystems_client/models/http_validation_error.py,sha256=LXy3nhf_7F-tawZB7Rd6lqwi5FDtNtX58oil3X5hxLI,2045
|
|
246
261
|
robosystems_client/models/initial_entity_data.py,sha256=y-o0Fdpv5M-vgNEVCYNwJbFsXTdfcNIDtZOb7xwGTt0,6302
|
|
262
|
+
robosystems_client/models/invoice.py,sha256=Gncf20urOwHrwCKr1SnsKPLoskyvdkXEDk_PTK4f4hM,6981
|
|
263
|
+
robosystems_client/models/invoice_line_item.py,sha256=9Xx1itMJRA_PX2cjk88Do11EqENwcPv-j6pZzqDWFLQ,3141
|
|
264
|
+
robosystems_client/models/invoices_response.py,sha256=5WO9Xl4bmD3bAM8tFgrYVzeRp8Bmi4_I3iWIC9DH3CA,2249
|
|
247
265
|
robosystems_client/models/link_token_request.py,sha256=smOO4eebeImqNM9j7pOmbVeJXK0oEuqRYuvvMeZP0Sc,5144
|
|
248
266
|
robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0LijMFwGAtSIpNAFBLFHayZ8T1NZ2SaQJ8,1227
|
|
249
267
|
robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
|
|
@@ -270,6 +288,7 @@ robosystems_client/models/password_check_response.py,sha256=QkGKrAFrU2zpGUDxo1ki
|
|
|
270
288
|
robosystems_client/models/password_check_response_character_types.py,sha256=fM4WuPV_L8vHGOTEFx7oV8_1w49GIBOKrupFMuSooYY,1284
|
|
271
289
|
robosystems_client/models/password_policy_response.py,sha256=q-DI_QW6Jaui9VAvp1aCnhqUV9vZlp0jaOnTeGyO17o,1768
|
|
272
290
|
robosystems_client/models/password_policy_response_policy.py,sha256=_v_cVOIsaHSDNt5wzP2xMPT3AueojHBkP4qK-c1AuCU,1256
|
|
291
|
+
robosystems_client/models/payment_method.py,sha256=qRtz3BizzGgrsHzi_AbJZtBhAgI3DByv3EXQGAamxkc,4177
|
|
273
292
|
robosystems_client/models/performance_insights.py,sha256=4o2Z5O8QfrX8Rj-_jAOy70UrJO58EP3XwUp-0WQA5ZM,3642
|
|
274
293
|
robosystems_client/models/performance_insights_operation_stats.py,sha256=jOazO4odLlpOf0uPzwszAz1-SHrWO4AZK4g0N2q4Hlw,1280
|
|
275
294
|
robosystems_client/models/performance_insights_slow_queries_item.py,sha256=b6KqRqrbOMd9s2X7WHjpMDrFCsPMHVkWHEwX7XOIdgc,1254
|
|
@@ -327,9 +346,12 @@ robosystems_client/models/table_query_request.py,sha256=bZITK2e2KdPZ7cVvi0arZpCf
|
|
|
327
346
|
robosystems_client/models/table_query_response.py,sha256=Y9zUSm1BPRfJEN_SP6lIZIQs75TcYPu1M8bxpWNp7PI,2268
|
|
328
347
|
robosystems_client/models/token_pricing.py,sha256=89uMvNo1RMh1Muz2ExTZdjFQgukXf_lfgKdoLvOFGp4,1841
|
|
329
348
|
robosystems_client/models/transaction_summary_response.py,sha256=MSQYuOharoRpBilqmpKo_Dxv39QLjJ0g5oY9NYsCQNA,3714
|
|
349
|
+
robosystems_client/models/upcoming_invoice.py,sha256=mA1urxCSW5xPo9Hs5qSkI6mGUzbx8TQRjugglX1vxxU,3518
|
|
330
350
|
robosystems_client/models/update_api_key_request.py,sha256=fQVFQnUSIRDcBkCZP6ObAdVjIReaYuqSS3eliNSt59c,2527
|
|
331
351
|
robosystems_client/models/update_file_status_response_updatefilestatus.py,sha256=CnUPFGrufD3EMGXpqCX9Xa8dyY0ZZfb6B5Ke2Ktqiuk,1284
|
|
332
352
|
robosystems_client/models/update_password_request.py,sha256=3YwCzOJwE3WYpv05JwVBpwL71GCsj1fMLngxuEsXtpE,2013
|
|
353
|
+
robosystems_client/models/update_payment_method_request.py,sha256=7NGlBKoScTLLWnnq4wjsokXJLMdJ1RA34I6-bXcPh5E,1602
|
|
354
|
+
robosystems_client/models/update_payment_method_response.py,sha256=vzIBMD_XU78UrKa3rfT7uKCJFdYvuruTTzKe53bIvis,1925
|
|
333
355
|
robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
|
|
334
356
|
robosystems_client/models/upgrade_subscription_request.py,sha256=Ph-Wu1pA6zOEi6jSOuqrQRJ3xImOVy-T2g-xLHrYaic,1544
|
|
335
357
|
robosystems_client/models/user_graphs_response.py,sha256=k4zDipn-9HqwiJHUq8Si1XSemCDJv_t9SfTtJxc6w_k,2648
|
|
@@ -338,7 +360,7 @@ robosystems_client/models/user_response.py,sha256=uMYsvPKLo5YUwsT-PV8Tu5qrFG81X8
|
|
|
338
360
|
robosystems_client/models/user_usage_response.py,sha256=xsKYfbSoHWbuE9Y-yBvaLkaUeBfgJ7s184JUtP75wT4,2612
|
|
339
361
|
robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZQ1grZWBRA0hMfW5eukyQr9lIk8,1243
|
|
340
362
|
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.
|
|
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,,
|
|
File without changes
|
{robosystems_client-0.2.10.dist-info → robosystems_client-0.2.11.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|