robosystems-client 0.2.9__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.
Files changed (86) hide show
  1. robosystems_client/api/{user_subscriptions/upgrade_shared_repository_subscription.py → billing/cancel_subscription.py} +32 -60
  2. robosystems_client/api/billing/create_checkout_session.py +230 -0
  3. robosystems_client/api/{user_analytics/get_user_usage_overview.py → billing/get_billing_customer.py} +29 -21
  4. robosystems_client/api/billing/get_checkout_status.py +221 -0
  5. robosystems_client/api/{user_subscriptions/get_repository_credits.py → billing/get_subscription.py} +35 -43
  6. robosystems_client/api/{user_subscriptions/get_shared_repository_credits.py → billing/get_upcoming_invoice.py} +42 -28
  7. robosystems_client/api/{user_subscriptions/get_user_shared_subscriptions.py → billing/list_invoices.py} +44 -44
  8. robosystems_client/api/{user_limits/get_all_shared_repository_limits.py → billing/list_subscriptions.py} +38 -27
  9. robosystems_client/api/{user_subscriptions/subscribe_to_shared_repository.py → billing/update_payment_method.py} +42 -46
  10. robosystems_client/api/{user_subscriptions/cancel_shared_repository_subscription.py → subscriptions/cancel_subscription.py} +41 -25
  11. robosystems_client/api/subscriptions/create_repository_subscription.py +217 -0
  12. robosystems_client/api/subscriptions/get_graph_subscription.py +197 -0
  13. robosystems_client/api/subscriptions/upgrade_subscription.py +203 -0
  14. robosystems_client/api/usage/get_graph_usage_analytics.py +377 -0
  15. robosystems_client/api/{user_limits/get_user_usage.py → user/get_user_limits.py} +13 -9
  16. robosystems_client/models/__init__.py +42 -82
  17. robosystems_client/models/billing_customer.py +128 -0
  18. robosystems_client/models/checkout_response.py +87 -0
  19. robosystems_client/models/checkout_status_response.py +130 -0
  20. robosystems_client/models/create_checkout_request.py +88 -0
  21. robosystems_client/models/{graph_usage_response_query_statistics.py → create_checkout_request_resource_config.py} +6 -6
  22. robosystems_client/models/{credits_summary_response_credits_by_addon_type_0_item.py → create_repository_subscription_request.py} +22 -6
  23. robosystems_client/models/credit_summary.py +55 -89
  24. robosystems_client/models/{graph_usage_response_storage_usage.py → credit_summary_operation_breakdown.py} +6 -6
  25. robosystems_client/models/graph_subscription_response.py +200 -0
  26. robosystems_client/models/graph_usage_response.py +136 -39
  27. robosystems_client/models/{user_analytics_response_limits.py → graph_usage_response_recent_events_item.py} +6 -6
  28. robosystems_client/models/invoice.py +244 -0
  29. robosystems_client/models/invoice_line_item.py +118 -0
  30. robosystems_client/models/invoices_response.py +90 -0
  31. robosystems_client/models/payment_method.py +158 -0
  32. robosystems_client/models/performance_insights.py +120 -0
  33. robosystems_client/models/{graph_usage_response_recent_activity.py → performance_insights_operation_stats.py} +6 -6
  34. robosystems_client/models/{user_analytics_response_api_usage.py → performance_insights_slow_queries_item.py} +6 -6
  35. robosystems_client/models/storage_summary.py +100 -0
  36. robosystems_client/models/upcoming_invoice.py +128 -0
  37. robosystems_client/models/{get_graph_usage_details_response_getgraphusagedetails.py → update_payment_method_request.py} +22 -6
  38. robosystems_client/models/{subscription_response.py → update_payment_method_response.py} +14 -14
  39. robosystems_client/models/{tier_upgrade_request.py → upgrade_subscription_request.py} +12 -14
  40. {robosystems_client-0.2.9.dist-info → robosystems_client-0.2.11.dist-info}/METADATA +1 -1
  41. {robosystems_client-0.2.9.dist-info → robosystems_client-0.2.11.dist-info}/RECORD +53 -68
  42. robosystems_client/api/graph_analytics/get_graph_usage_stats.py +0 -289
  43. robosystems_client/api/graph_billing/get_current_graph_bill.py +0 -253
  44. robosystems_client/api/graph_billing/get_graph_billing_history.py +0 -298
  45. robosystems_client/api/graph_billing/get_graph_monthly_bill.py +0 -284
  46. robosystems_client/api/graph_billing/get_graph_usage_details.py +0 -320
  47. robosystems_client/api/user/get_all_credit_summaries.py +0 -169
  48. robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -188
  49. robosystems_client/api/user_limits/__init__.py +0 -1
  50. robosystems_client/api/user_limits/get_shared_repository_limits.py +0 -213
  51. robosystems_client/api/user_limits/get_user_limits.py +0 -139
  52. robosystems_client/api/user_subscriptions/__init__.py +0 -1
  53. robosystems_client/models/add_on_credit_info.py +0 -119
  54. robosystems_client/models/credits_summary_response.py +0 -148
  55. robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py +0 -44
  56. robosystems_client/models/get_all_shared_repository_limits_response_getallsharedrepositorylimits.py +0 -46
  57. robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py +0 -44
  58. robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py +0 -44
  59. robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py +0 -44
  60. robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py +0 -44
  61. robosystems_client/models/repository_credits_response.py +0 -128
  62. robosystems_client/models/repository_plan.py +0 -10
  63. robosystems_client/models/repository_type.py +0 -10
  64. robosystems_client/models/subscription_info.py +0 -152
  65. robosystems_client/models/subscription_info_metadata.py +0 -44
  66. robosystems_client/models/subscription_request.py +0 -80
  67. robosystems_client/models/user_analytics_response.py +0 -132
  68. robosystems_client/models/user_analytics_response_graph_usage.py +0 -44
  69. robosystems_client/models/user_analytics_response_recent_activity_item.py +0 -44
  70. robosystems_client/models/user_analytics_response_user_info.py +0 -44
  71. robosystems_client/models/user_graph_summary.py +0 -134
  72. robosystems_client/models/user_subscriptions_response.py +0 -90
  73. robosystems_client/models/user_usage_summary_response.py +0 -130
  74. robosystems_client/models/user_usage_summary_response_usage_vs_limits.py +0 -44
  75. /robosystems_client/api/{graph_analytics → billing}/__init__.py +0 -0
  76. /robosystems_client/api/{graph_billing → credits_}/__init__.py +0 -0
  77. /robosystems_client/api/{graph_credits → credits_}/check_credit_balance.py +0 -0
  78. /robosystems_client/api/{graph_credits → credits_}/check_storage_limits.py +0 -0
  79. /robosystems_client/api/{graph_credits → credits_}/get_credit_summary.py +0 -0
  80. /robosystems_client/api/{graph_credits → credits_}/get_storage_usage.py +0 -0
  81. /robosystems_client/api/{graph_credits → credits_}/list_credit_transactions.py +0 -0
  82. /robosystems_client/api/{graph_credits → subscriptions}/__init__.py +0 -0
  83. /robosystems_client/api/{user_analytics → usage}/__init__.py +0 -0
  84. /robosystems_client/api/{graph_analytics → usage}/get_graph_metrics.py +0 -0
  85. {robosystems_client-0.2.9.dist-info → robosystems_client-0.2.11.dist-info}/WHEEL +0 -0
  86. {robosystems_client-0.2.9.dist-info → robosystems_client-0.2.11.dist-info}/licenses/LICENSE +0 -0
@@ -4,28 +4,44 @@ from typing import Any, TypeVar
4
4
  from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
6
6
 
7
- T = TypeVar("T", bound="GetGraphUsageDetailsResponseGetgraphusagedetails")
7
+ T = TypeVar("T", bound="UpdatePaymentMethodRequest")
8
8
 
9
9
 
10
10
  @_attrs_define
11
- class GetGraphUsageDetailsResponseGetgraphusagedetails:
12
- """ """
11
+ class UpdatePaymentMethodRequest:
12
+ """Request to update default payment method.
13
13
 
14
+ Attributes:
15
+ payment_method_id (str): Payment method ID to set as default
16
+ """
17
+
18
+ payment_method_id: str
14
19
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
15
20
 
16
21
  def to_dict(self) -> dict[str, Any]:
22
+ payment_method_id = self.payment_method_id
23
+
17
24
  field_dict: dict[str, Any] = {}
18
25
  field_dict.update(self.additional_properties)
26
+ field_dict.update(
27
+ {
28
+ "payment_method_id": payment_method_id,
29
+ }
30
+ )
19
31
 
20
32
  return field_dict
21
33
 
22
34
  @classmethod
23
35
  def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
24
36
  d = dict(src_dict)
25
- get_graph_usage_details_response_getgraphusagedetails = cls()
37
+ payment_method_id = d.pop("payment_method_id")
38
+
39
+ update_payment_method_request = cls(
40
+ payment_method_id=payment_method_id,
41
+ )
26
42
 
27
- get_graph_usage_details_response_getgraphusagedetails.additional_properties = d
28
- return get_graph_usage_details_response_getgraphusagedetails
43
+ update_payment_method_request.additional_properties = d
44
+ return update_payment_method_request
29
45
 
30
46
  @property
31
47
  def additional_keys(self) -> list[str]:
@@ -5,36 +5,36 @@ from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
6
6
 
7
7
  if TYPE_CHECKING:
8
- from ..models.subscription_info import SubscriptionInfo
8
+ from ..models.payment_method import PaymentMethod
9
9
 
10
10
 
11
- T = TypeVar("T", bound="SubscriptionResponse")
11
+ T = TypeVar("T", bound="UpdatePaymentMethodResponse")
12
12
 
13
13
 
14
14
  @_attrs_define
15
- class SubscriptionResponse:
16
- """Response for subscription creation.
15
+ class UpdatePaymentMethodResponse:
16
+ """Response for payment method update.
17
17
 
18
18
  Attributes:
19
19
  message (str): Success message
20
- subscription (SubscriptionInfo): User subscription information.
20
+ payment_method (PaymentMethod): Payment method information.
21
21
  """
22
22
 
23
23
  message: str
24
- subscription: "SubscriptionInfo"
24
+ payment_method: "PaymentMethod"
25
25
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
26
26
 
27
27
  def to_dict(self) -> dict[str, Any]:
28
28
  message = self.message
29
29
 
30
- subscription = self.subscription.to_dict()
30
+ payment_method = self.payment_method.to_dict()
31
31
 
32
32
  field_dict: dict[str, Any] = {}
33
33
  field_dict.update(self.additional_properties)
34
34
  field_dict.update(
35
35
  {
36
36
  "message": message,
37
- "subscription": subscription,
37
+ "payment_method": payment_method,
38
38
  }
39
39
  )
40
40
 
@@ -42,20 +42,20 @@ class SubscriptionResponse:
42
42
 
43
43
  @classmethod
44
44
  def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
45
- from ..models.subscription_info import SubscriptionInfo
45
+ from ..models.payment_method import PaymentMethod
46
46
 
47
47
  d = dict(src_dict)
48
48
  message = d.pop("message")
49
49
 
50
- subscription = SubscriptionInfo.from_dict(d.pop("subscription"))
50
+ payment_method = PaymentMethod.from_dict(d.pop("payment_method"))
51
51
 
52
- subscription_response = cls(
52
+ update_payment_method_response = cls(
53
53
  message=message,
54
- subscription=subscription,
54
+ payment_method=payment_method,
55
55
  )
56
56
 
57
- subscription_response.additional_properties = d
58
- return subscription_response
57
+ update_payment_method_response.additional_properties = d
58
+ return update_payment_method_response
59
59
 
60
60
  @property
61
61
  def additional_keys(self) -> list[str]:
@@ -4,30 +4,28 @@ from typing import Any, TypeVar
4
4
  from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
6
6
 
7
- from ..models.repository_plan import RepositoryPlan
8
-
9
- T = TypeVar("T", bound="TierUpgradeRequest")
7
+ T = TypeVar("T", bound="UpgradeSubscriptionRequest")
10
8
 
11
9
 
12
10
  @_attrs_define
13
- class TierUpgradeRequest:
14
- """Request to upgrade subscription tier.
11
+ class UpgradeSubscriptionRequest:
12
+ """Request to upgrade a subscription.
15
13
 
16
14
  Attributes:
17
- new_plan (RepositoryPlan): Repository access plans for shared data.
15
+ new_plan_name (str): New plan name to upgrade to
18
16
  """
19
17
 
20
- new_plan: RepositoryPlan
18
+ new_plan_name: str
21
19
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
22
20
 
23
21
  def to_dict(self) -> dict[str, Any]:
24
- new_plan = self.new_plan.value
22
+ new_plan_name = self.new_plan_name
25
23
 
26
24
  field_dict: dict[str, Any] = {}
27
25
  field_dict.update(self.additional_properties)
28
26
  field_dict.update(
29
27
  {
30
- "new_plan": new_plan,
28
+ "new_plan_name": new_plan_name,
31
29
  }
32
30
  )
33
31
 
@@ -36,14 +34,14 @@ class TierUpgradeRequest:
36
34
  @classmethod
37
35
  def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
38
36
  d = dict(src_dict)
39
- new_plan = RepositoryPlan(d.pop("new_plan"))
37
+ new_plan_name = d.pop("new_plan_name")
40
38
 
41
- tier_upgrade_request = cls(
42
- new_plan=new_plan,
39
+ upgrade_subscription_request = cls(
40
+ new_plan_name=new_plan_name,
43
41
  )
44
42
 
45
- tier_upgrade_request.additional_properties = d
46
- return tier_upgrade_request
43
+ upgrade_subscription_request.additional_properties = d
44
+ return upgrade_subscription_request
47
45
 
48
46
  @property
49
47
  def additional_keys(self) -> list[str]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robosystems-client
3
- Version: 0.2.9
3
+ Version: 0.2.11
4
4
  Summary: Python Client for RoboSystems financial graph database API
5
5
  Author: RFS LLC
6
6
  License: MIT
@@ -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
@@ -46,20 +56,12 @@ robosystems_client/api/connections/init_o_auth.py,sha256=5D3eNB2DtKPtxEWsVXlFap-
46
56
  robosystems_client/api/connections/list_connections.py,sha256=c2xmy0ARnL0IGK9kEsp797PXa2CxtBEtn0o-YULaGzQ,8535
47
57
  robosystems_client/api/connections/oauth_callback.py,sha256=AR2L8G_QSL8frNuSZV1vjc_v9QCAkUUqD42eCXlPKGA,7728
48
58
  robosystems_client/api/connections/sync_connection.py,sha256=nVQDBSmIGkdh7LCNZCDzcMAC6l83n_2LLgrQ7YZQ_Kk,8459
49
- robosystems_client/api/graph_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
50
- robosystems_client/api/graph_analytics/get_graph_metrics.py,sha256=26W8ynBfLEyNbI_OXhEkJ5NbFnPMmDBtlza7d6mbbeU,7050
51
- robosystems_client/api/graph_analytics/get_graph_usage_stats.py,sha256=kB4xHeZG6KJXEm8nL5U-TABzVuIFaoJ9tIirAVI8go0,8128
52
- robosystems_client/api/graph_billing/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
53
- robosystems_client/api/graph_billing/get_current_graph_bill.py,sha256=FROZZvKvRzpCmKI66zVBmfrl5oFfHuoMktMM3kS3UZA,6980
54
- robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=1yy-z_z1jju74lvxL4wZ0D_UBAEUttvZcq_6EytP5uY,7362
55
- robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=auCFUe2-06jF4oTGVlgdsyxzc3e1vpG6AaHMJIwshp0,6990
56
- robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=o2euRYBuJzHuAb1RBO815B344equN5_loNbQd6HpAAo,8812
57
- robosystems_client/api/graph_credits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
58
- robosystems_client/api/graph_credits/check_credit_balance.py,sha256=0iPXBgsEQs_nWsZKwdTXvAn3ueXg6P6KYCjMkzmmBtU,8184
59
- robosystems_client/api/graph_credits/check_storage_limits.py,sha256=mo0PRFLmwcVGjdlLBq2r02QcoVrmcH8EozV2RcFesA8,6187
60
- robosystems_client/api/graph_credits/get_credit_summary.py,sha256=-uvETiHAuFBDtzeIAc8KnRnf6irV74MnsKAWWOltZwo,6041
61
- robosystems_client/api/graph_credits/get_storage_usage.py,sha256=oFlj7Ziiopk9vXRWAtHHDCy_vtvufCNoOrtD9mkFMR0,6770
62
- robosystems_client/api/graph_credits/list_credit_transactions.py,sha256=QV4W9SMxgN24wlniCTskwamOkIJR_cIwUJK-4hPDGJ0,12218
59
+ robosystems_client/api/credits_/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
60
+ robosystems_client/api/credits_/check_credit_balance.py,sha256=0iPXBgsEQs_nWsZKwdTXvAn3ueXg6P6KYCjMkzmmBtU,8184
61
+ robosystems_client/api/credits_/check_storage_limits.py,sha256=mo0PRFLmwcVGjdlLBq2r02QcoVrmcH8EozV2RcFesA8,6187
62
+ robosystems_client/api/credits_/get_credit_summary.py,sha256=-uvETiHAuFBDtzeIAc8KnRnf6irV74MnsKAWWOltZwo,6041
63
+ robosystems_client/api/credits_/get_storage_usage.py,sha256=oFlj7Ziiopk9vXRWAtHHDCy_vtvufCNoOrtD9mkFMR0,6770
64
+ robosystems_client/api/credits_/list_credit_transactions.py,sha256=QV4W9SMxgN24wlniCTskwamOkIJR_cIwUJK-4hPDGJ0,12218
63
65
  robosystems_client/api/graph_health/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
64
66
  robosystems_client/api/graph_health/get_database_health.py,sha256=aEUYDiUMQ-paxRrABb9xY3dgs_mW7loyTuz5Y4oX790,7318
65
67
  robosystems_client/api/graph_info/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
@@ -95,6 +97,11 @@ robosystems_client/api/subgraphs/delete_subgraph.py,sha256=2zq8kbBUdQXHYXUQt_dyf
95
97
  robosystems_client/api/subgraphs/get_subgraph_info.py,sha256=fW8mLkHKhsEIUIIT-ErITGs-9hy51h9S6gjoutrfBx0,6711
96
98
  robosystems_client/api/subgraphs/get_subgraph_quota.py,sha256=Wk1BTXoe6HhRFgB75gtnnMecFSNqT7J_CVo1-QnJMRs,6512
97
99
  robosystems_client/api/subgraphs/list_subgraphs.py,sha256=d9exlLZsr9_jqhwaGUMK8mKPSbiHGLCjTNQy7uc7HkE,5350
100
+ robosystems_client/api/subscriptions/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
101
+ robosystems_client/api/subscriptions/cancel_subscription.py,sha256=IuV-tJ_1cmv-6X7VAMjbximjmUZKX7BMXrtwexkBjVQ,5255
102
+ robosystems_client/api/subscriptions/create_repository_subscription.py,sha256=KOKk6_yyUGA6JtSzDiJHJ0zyaxCaQdC96LhhN-fB9ME,6598
103
+ robosystems_client/api/subscriptions/get_graph_subscription.py,sha256=3f7gykA-26Ed_6EXoiLGdKkScNhy95fuo9N1Sku4mZU,5680
104
+ robosystems_client/api/subscriptions/upgrade_subscription.py,sha256=b8415k-Gv59aFK1wlKN5NJZRmvcnwYXeXJUhfIVSeKo,5744
98
105
  robosystems_client/api/tables/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
99
106
  robosystems_client/api/tables/delete_file.py,sha256=wYdL3mwebNcZnFfQPIIvpR_Lqj8Qj2ToeqPQiZs8wZo,9438
100
107
  robosystems_client/api/tables/get_file_info.py,sha256=v1tqq_bE6SgEpH6FijffrOrB6Tb-UlXHcohUlx-Qx3w,6675
@@ -104,30 +111,18 @@ robosystems_client/api/tables/list_table_files.py,sha256=f-cS57XzOAA7jn73JllIGZj
104
111
  robosystems_client/api/tables/list_tables.py,sha256=U02yJ95-bGESXv5VI2WntMseaEfEkMVabVVGCE-8qDQ,9128
105
112
  robosystems_client/api/tables/query_tables.py,sha256=DHva2m319Z54RziiVRiPb54eZHi1P_Nscli3qN4B3Z0,14471
106
113
  robosystems_client/api/tables/update_file_status.py,sha256=d5ZiueuguE5nK8vQw-q16CAyoZoBy8zu3zMpobdoO-o,11298
114
+ robosystems_client/api/usage/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
115
+ 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
107
117
  robosystems_client/api/user/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
108
118
  robosystems_client/api/user/create_user_api_key.py,sha256=dfWRIqzWlesW7lehuskdnQ2TV6Ga_iGlZSAvArkLvnE,4525
109
- robosystems_client/api/user/get_all_credit_summaries.py,sha256=qP2Bj9G1hqT0fl-OG2V2OTvHlEPpuhKHuviCJ2wn1I4,5064
110
119
  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
111
121
  robosystems_client/api/user/list_user_api_keys.py,sha256=W--PqFZ9rRRJm0J96wD4EITPx7PLDZWJyVBjwvKmd8M,3197
112
122
  robosystems_client/api/user/revoke_user_api_key.py,sha256=yiz6lIOE_ne2Mebj4zvUMqri-Z5v0GKa0hbmPJCfTZo,4444
113
123
  robosystems_client/api/user/update_user.py,sha256=nSr6ZRKD_Wu1I_QwHWd9GGH1TLYluMm_2GHgl1c_Yvc,4418
114
124
  robosystems_client/api/user/update_user_api_key.py,sha256=kIccWO3m6t7S6MNCQNndASq533nou-zhF9qg9sNrrZM,4688
115
125
  robosystems_client/api/user/update_user_password.py,sha256=djtS4Aqc0B2efYlqYhAwLyaQ8R1sTIkSP5XPMas5va0,5015
116
- robosystems_client/api/user_analytics/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
117
- robosystems_client/api/user_analytics/get_detailed_user_analytics.py,sha256=gTdtLFXw2xIRuf9BTsgAB9aYX_j_VMbqofrlLxGUV2A,5940
118
- robosystems_client/api/user_analytics/get_user_usage_overview.py,sha256=X_MuDiDpis1mIC7lBHblRb-TFbmwT73s7vc1PWJ30Kw,3481
119
- robosystems_client/api/user_limits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
120
- robosystems_client/api/user_limits/get_all_shared_repository_limits.py,sha256=sOH5XQR73eVlB0rOt-tv2S1upoXOjgX5YI-ozmovWcA,4117
121
- robosystems_client/api/user_limits/get_shared_repository_limits.py,sha256=ik43-TkgMNhob2Scx4BKIPVWhb2Mph-V3Jj22AwD4xQ,5912
122
- robosystems_client/api/user_limits/get_user_limits.py,sha256=M14x16NCGr6o2r2JUXY4g7PPPAlF6_Vo5H-7OsQRjsg,3578
123
- robosystems_client/api/user_limits/get_user_usage.py,sha256=5NK8YSUqgegd1ecvSZVym-nwZKvTlH5W6LhPwXqvoaY,3447
124
- robosystems_client/api/user_subscriptions/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
125
- robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py,sha256=I_-YpB7infwwbde-fhzSu9mrnKeDfKYJVimPpv4orGw,4713
126
- robosystems_client/api/user_subscriptions/get_repository_credits.py,sha256=mkjUsjD6C0Kt9pwzGI1izwmLUyJi69X9a98-tGg7cfU,4520
127
- robosystems_client/api/user_subscriptions/get_shared_repository_credits.py,sha256=HYV8b5W8LYZCTEFR6KC27kg5EbInBjzti2p4zbX6CuM,3763
128
- robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py,sha256=kSLrtrZGjvDk3SC98rPlPdk7k7-FcM8A2dKKGucd0uM,5190
129
- robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py,sha256=HtmypqCE3hveALCjrI8CM7StWiTi9F9IJwDGZ4HXPd0,5074
130
- robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py,sha256=xgVIaOeXekdTy4zW5vrftpaxSqMutRzuTdJjCFl-DZM,5210
131
126
  robosystems_client/extensions/README.md,sha256=qfHFjdgA_J-zNXziNZE6M1MKJiwVkocBi01w_HhvzEk,16136
132
127
  robosystems_client/extensions/__init__.py,sha256=izFk2oW08XUKLAulpMwQS_4PrbhL_zsjVdXBiPx-XiU,5210
133
128
  robosystems_client/extensions/auth_integration.py,sha256=ABOJ8aVjfHehNGNzim1iR9-Cdh7Mr22ce-WgWWeqJt0,6535
@@ -145,9 +140,8 @@ robosystems_client/extensions/tests/test_dataframe_utils.py,sha256=g184mdEMSkFt6
145
140
  robosystems_client/extensions/tests/test_integration.py,sha256=DszEH9-CJ-d5KB2NNNY9BZMT8f3A_Z-MLXYW5WfVeRk,15446
146
141
  robosystems_client/extensions/tests/test_token_utils.py,sha256=CsrpW771pLRrdQoM91oJ9_B33SB3YTno4_OPog6mIgo,8424
147
142
  robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
148
- robosystems_client/models/__init__.py,sha256=BR19hPLEX7lVCwR5POScbclYTsxNBOk4_6Z0lKy0eQk,22189
143
+ robosystems_client/models/__init__.py,sha256=vXQAmiORPmHD4nwpZKN-26-jKjIAzJC_5NNyDJ6XRgY,20377
149
144
  robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
150
- robosystems_client/models/add_on_credit_info.py,sha256=h65KAb8yZP_SGpsB2Ref4IaBCthEDYJgFGTd9PjUpfs,3221
151
145
  robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
152
146
  robosystems_client/models/agent_list_response_agents.py,sha256=RQMc6dTphBjFeLD4pt2RhQyd1AedF5GW5ujHYdyZMCg,1987
153
147
  robosystems_client/models/agent_list_response_agents_additional_property.py,sha256=vreiM9mJxyMaSNTUfV34qRTgzyymO-ZNwhdcOCSYlMo,1292
@@ -181,11 +175,14 @@ robosystems_client/models/backup_stats_response.py,sha256=_CLWy2wrczlIae_Li6NDSL
181
175
  robosystems_client/models/backup_stats_response_backup_formats.py,sha256=dtxMpx0q6t5MZ1s37lQ-wttexoz7MkD8bAbaZ7SzDZ0,1244
182
176
  robosystems_client/models/batch_agent_request.py,sha256=E2RxBaSal36cSJp4EDgKaBFWRc-KRr9e-ZuNLQ8bhJM,2231
183
177
  robosystems_client/models/batch_agent_response.py,sha256=2kB08uGI9Dy-08HotYoWiCXKq44umbAFV6JlO13K9-Q,2537
178
+ robosystems_client/models/billing_customer.py,sha256=057JFenO9nQqLjr_XTRQZb6sXoWhbz2ZWvJElIo3Wi4,3934
184
179
  robosystems_client/models/bulk_ingest_request.py,sha256=eRHk_mG5Zfok66-sPlgx7dKfs-L_76P8PaBOrf7dHr0,1306
185
180
  robosystems_client/models/bulk_ingest_response.py,sha256=jR-Yxs5TWaMwM0auN4BrzvU7jXVF4pFlbbOzWCErjag,3899
186
181
  robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
187
182
  robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
188
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
189
186
  robosystems_client/models/connection_options_response.py,sha256=J-VjmGYJn_BOhuExZBlJIHXedyf_CXcoRf2XfklOnrk,2309
190
187
  robosystems_client/models/connection_provider_info.py,sha256=Im0k56k1USElC9G5m2g7elOJ5CHZ08lDOLg5vOmx_AA,6600
191
188
  robosystems_client/models/connection_provider_info_auth_type.py,sha256=cSRUkd90osfbj2MP5Hl8dinEoIXBPrCOIFGYYrk-4D0,201
@@ -196,16 +193,18 @@ robosystems_client/models/connection_response_provider.py,sha256=th7b2inab-PZWaQ
196
193
  robosystems_client/models/copy_operation_limits.py,sha256=S0j8lPVghl-ih5xI-oCHK1hBRZf7SeE7FiZEMjuXzEA,3059
197
194
  robosystems_client/models/create_api_key_request.py,sha256=aP-X8CtffeRUXDqG-WzM4gn8_DOwPt5CURmGYIbjgqY,2829
198
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
199
198
  robosystems_client/models/create_connection_request.py,sha256=B9riNF1QK1P3RB680lFAJGsZtYbPHVc14u1TBnIv0QQ,5948
200
199
  robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK31i1jit4WUxqtFtJq-LYKqXeVAHJIJh9Slw,190
201
200
  robosystems_client/models/create_graph_request.py,sha256=THs5EEB8-cpfkyDUu0XzwuWMnScboE_ir3vrQ44mPJY,6174
201
+ robosystems_client/models/create_repository_subscription_request.py,sha256=zDv9qNOG2K7t0j6zE85vrQ0F_QzHryRMr3dxZpLQIZM,1576
202
202
  robosystems_client/models/create_subgraph_request.py,sha256=upBIPF4MIrawR_fAodpo4ts9sinq7FyDT2VyfR_uCp8,5777
203
203
  robosystems_client/models/create_subgraph_request_metadata_type_0.py,sha256=dqVIzDSjIeTsKLCC7pmJAik2eJPIyi_6uTHzkspU37M,1257
204
204
  robosystems_client/models/credit_limits.py,sha256=_JEbHjXndOlnkwC43Xl8ZGGXpEX7MWvfbT96e8sC4tY,2494
205
- robosystems_client/models/credit_summary.py,sha256=TaK9e6Jp7yqWMtBDVfB2bL7mlTw87Qwf1_foausmQwI,4802
205
+ robosystems_client/models/credit_summary.py,sha256=nN_3hkXoOWhr6VzYGn6SvgWiZ-384K4y_xcV2i4-hAA,3527
206
+ robosystems_client/models/credit_summary_operation_breakdown.py,sha256=W7_pQRFDVl4ESP89RKHl14pgRB936nawbattUEjW8dw,1265
206
207
  robosystems_client/models/credit_summary_response.py,sha256=M5ZFcNZ4IqtZZG1zFrdOBKGsEs9S9A174LVVmdplItM,3712
207
- robosystems_client/models/credits_summary_response.py,sha256=kDjWsEWUl-Ce3IPuGHcWTOhV_-QN2VwDS_W76sx60rY,4616
208
- robosystems_client/models/credits_summary_response_credits_by_addon_type_0_item.py,sha256=smzAGFk3JDzGV-T7Xz-1fahv3vdvetzEn8eBObCJbXw,1321
209
208
  robosystems_client/models/custom_schema_definition.py,sha256=D_2Am00eCJtCBtqFqhXdN8WPbvwK-lh94sYb93Nckm4,6266
210
209
  robosystems_client/models/custom_schema_definition_metadata.py,sha256=VNy6EY4n0N5P4tirf1UsT9-z-pYvI6FN-iOPTG7zuwY,1256
211
210
  robosystems_client/models/custom_schema_definition_nodes_item.py,sha256=0hg2ctntwlXkP43NdtAa2gRFMogKU80Mwg_JmSUb4h4,1239
@@ -234,16 +233,9 @@ robosystems_client/models/file_upload_request.py,sha256=7loA-BBy69IKVIcyeTDhnFrB
234
233
  robosystems_client/models/file_upload_response.py,sha256=_qgC8LcVEjpDA4S2_zCbi9BedS2a0uobB5VbNKEnpyc,1958
235
234
  robosystems_client/models/forgot_password_request.py,sha256=jgJf6E-4cun0vbm1LFPN-bC8HejoeJq6NVgWhGVn7Lg,1440
236
235
  robosystems_client/models/forgot_password_response_forgotpassword.py,sha256=-NbTmjmMKiGHUGAAjnggyrxg5TlN-6HIu1YTCl8Enkw,1261
237
- robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py,sha256=Z-PEihC2i7G8QLlmQ1PgyLJIlETUrXyNF9j4HXt3B90,1337
238
- robosystems_client/models/get_all_shared_repository_limits_response_getallsharedrepositorylimits.py,sha256=enftcS6tkKwygWMfrsBEFEIUaLhdeJSY8-q0EKKmscA,1414
239
236
  robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py,sha256=QbLg6o9w0UQs2npB27r2lLfWi9uAe4cjmN0srszTKDE,1307
240
- robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py,sha256=PjfVnVwWG6BEBWEjb5kvN5XYtC2uTc5h4OIKPmZv-Gc,1317
241
237
  robosystems_client/models/get_file_info_response.py,sha256=b9EWhA-zVBlbaw3lChETnNiLpCmGecv_RVjUb3ZF8Ig,5624
242
- robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py,sha256=IyBAkkk8vtqQx9Twif1J7iG-9iaeuMm1W_75E7pzM-A,1347
243
- robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py,sha256=q1k4zEtQmcBpgz_vz9B26Deu4qT4evEsAiRoTpmcw0w,1317
244
- robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py,sha256=OfsWqXgc6O0v21jbL8Z1NquZg5eKhNQUEiTl_Vs7I7w,1327
245
238
  robosystems_client/models/get_operation_status_response_getoperationstatus.py,sha256=dhCc_dZpSo-h9210m5MShVde1sGHmMhkBanqt_6xt_A,1304
246
- robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py,sha256=0-_y-77YHmK-tFdt7rQbC5j9VK4pfiE_V756EmglpaU,1377
247
239
  robosystems_client/models/get_storage_usage_response_getstorageusage.py,sha256=5ZpeVOQNa8FLcI82C3-CCnYbtgUPXqIUa7d6cHr0Ddo,1274
248
240
  robosystems_client/models/graph_info.py,sha256=xUj7B2Y_XORyvoYA1YRX1c5aEpmtw_4tdvb_oJhy9TM,3318
249
241
  robosystems_client/models/graph_limits_response.py,sha256=IwNdZD-5Ro2tov7oUU_ji3fCeF8lxIJFZTyWxIZZjnI,5281
@@ -253,6 +245,7 @@ robosystems_client/models/graph_metrics_response_estimated_size.py,sha256=Dfe4zb
253
245
  robosystems_client/models/graph_metrics_response_health_status.py,sha256=IpwCxU4V5fHNP-2sVQW4uV9iAl_b0KA4ECEsEggfeb4,1270
254
246
  robosystems_client/models/graph_metrics_response_node_counts.py,sha256=slKDmoKGV5HfUs8CuAvgYyDS-6VkyBjZ3IUJ2Dl5Acw,1253
255
247
  robosystems_client/models/graph_metrics_response_relationship_counts.py,sha256=-MPyWBhmOX3w-2Xj5d0ED42ewyWzS9r0ruE6mgdZ98I,1300
248
+ robosystems_client/models/graph_subscription_response.py,sha256=0Vq9pBlZ1fvIdI2Lrow1cUnFYIgVIViF3gWVmOBdrsw,5909
256
249
  robosystems_client/models/graph_subscription_tier.py,sha256=5oDgbe9BsHs3cp9cMVn31TDcd_40Q2CEx1weBohthp8,6786
257
250
  robosystems_client/models/graph_subscriptions.py,sha256=ZjX_GuWS0OnCK_BaEG0fdIn3Nq3JTQhvljbx2hDzCVc,2615
258
251
  robosystems_client/models/graph_tier_backup.py,sha256=cwHk3S3Zcu_5owIRzP2c0wzE58Q84vfDoS0719SclcE,2145
@@ -260,14 +253,15 @@ robosystems_client/models/graph_tier_copy_operations.py,sha256=dzm6950aqD8xMjSqO
260
253
  robosystems_client/models/graph_tier_info.py,sha256=lbfVXlmR34qN_cItDGoY4ywUJboX8g9knBN4Mm6cGCg,5290
261
254
  robosystems_client/models/graph_tier_instance.py,sha256=GW5lKwG_7kSAZLwe__vGdwAHlebDzAIT1UYGk9X44WM,1903
262
255
  robosystems_client/models/graph_tier_limits.py,sha256=Ylgjqr2jKsd4aed-aLbRqJUJFDMGOaNG3C4XE_5E65o,3073
263
- robosystems_client/models/graph_usage_response.py,sha256=zdtgINU0tQw4eEgRtOUAwdU0hM_nNuHWDpsoxOsRgsc,3418
264
- robosystems_client/models/graph_usage_response_query_statistics.py,sha256=YjUU3AcJ9TAYHbsLncm2u497J3M8DVacnZwiQOzkIYY,1264
265
- robosystems_client/models/graph_usage_response_recent_activity.py,sha256=zuhLvyEIn7kpx1Xxi32EVcNmCzHlR-9xeSQ_sCDf_DE,1266
266
- robosystems_client/models/graph_usage_response_storage_usage.py,sha256=_ZVpNzUmkQcANrqfe8v7uSs3jd_rBD7k7vT4NY0Os-8,1258
256
+ robosystems_client/models/graph_usage_response.py,sha256=2XZ5iw0IUjuuiHWKmkr4AR27tJY5xSYSy-PYePYlWgI,7114
257
+ robosystems_client/models/graph_usage_response_recent_events_item.py,sha256=pCGXtq3xvB9gflIhsgcSQawACQc2WYMJL7JPwLmPaVQ,1257
267
258
  robosystems_client/models/health_status.py,sha256=ce_IlbEvdQqmqi8Exux2UQA2K7qBLkIDfbQ6bzoASA0,3034
268
259
  robosystems_client/models/health_status_details_type_0.py,sha256=ORS2NbiOWUJZvxa1dYdngpphzj_5lj7fLhmKqxyiVNU,1204
269
260
  robosystems_client/models/http_validation_error.py,sha256=LXy3nhf_7F-tawZB7Rd6lqwi5FDtNtX58oil3X5hxLI,2045
270
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
271
265
  robosystems_client/models/link_token_request.py,sha256=smOO4eebeImqNM9j7pOmbVeJXK0oEuqRYuvvMeZP0Sc,5144
272
266
  robosystems_client/models/link_token_request_options_type_0.py,sha256=WjW-JluLY0LijMFwGAtSIpNAFBLFHayZ8T1NZ2SaQJ8,1227
273
267
  robosystems_client/models/link_token_request_provider_type_0.py,sha256=N2wRX99ghudXH6qC8HX9MUgUrwFRCzasoQSg74UCHZo,188
@@ -294,6 +288,10 @@ robosystems_client/models/password_check_response.py,sha256=QkGKrAFrU2zpGUDxo1ki
294
288
  robosystems_client/models/password_check_response_character_types.py,sha256=fM4WuPV_L8vHGOTEFx7oV8_1w49GIBOKrupFMuSooYY,1284
295
289
  robosystems_client/models/password_policy_response.py,sha256=q-DI_QW6Jaui9VAvp1aCnhqUV9vZlp0jaOnTeGyO17o,1768
296
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
292
+ robosystems_client/models/performance_insights.py,sha256=4o2Z5O8QfrX8Rj-_jAOy70UrJO58EP3XwUp-0WQA5ZM,3642
293
+ robosystems_client/models/performance_insights_operation_stats.py,sha256=jOazO4odLlpOf0uPzwszAz1-SHrWO4AZK4g0N2q4Hlw,1280
294
+ robosystems_client/models/performance_insights_slow_queries_item.py,sha256=b6KqRqrbOMd9s2X7WHjpMDrFCsPMHVkWHEwX7XOIdgc,1254
297
295
  robosystems_client/models/plaid_connection_config.py,sha256=ddmVo8hWnXVbJF3kfHpSIGa6CaDqvWbX5a2al39T7JE,6662
298
296
  robosystems_client/models/plaid_connection_config_accounts_type_0_item.py,sha256=udIb0Qbzilz_ko6_D8w9NC8hbRqOslg92zbB24wYEvs,1280
299
297
  robosystems_client/models/plaid_connection_config_institution_type_0.py,sha256=bNd_czT5nU9yTWcKJih3ft71IGL-DTgT5ot1WeitrZg,1272
@@ -301,11 +299,8 @@ robosystems_client/models/query_limits.py,sha256=GtLiyNSpkjoqDyEDs3VouLEm9Sg9b6k
301
299
  robosystems_client/models/quick_books_connection_config.py,sha256=ohhOvNp3k8XVz-8-xGr1NygPgDdU3ELqJVteo0iTe9I,2664
302
300
  robosystems_client/models/rate_limits.py,sha256=vnsqixRLz4T5SRfWN9ZYyn8SOiH8WJ2qtv83QY16ivU,2021
303
301
  robosystems_client/models/register_request.py,sha256=9pHjAsopUT4IJ-pWPny7VSZ5MfSq2tALCt2nTM1vRZc,2511
304
- robosystems_client/models/repository_credits_response.py,sha256=znFVtTxsa3XRRbqS6swki3MGbj3_vZegMB8Clh9-Qgc,3537
305
302
  robosystems_client/models/repository_info.py,sha256=3jZhhHdjFNE3yHzBVwaOZDOuKXnrvdGZcWlxsTnLnLA,2783
306
- robosystems_client/models/repository_plan.py,sha256=BEdbh0FPIrsomZU_Aq27EAk-ppOqlJxuwNRVCZlNLKo,185
307
303
  robosystems_client/models/repository_subscriptions.py,sha256=_xwqEkYqfV3WlGfKsgvScDnj8VzpslxTXkwqf17XKN8,2435
308
- robosystems_client/models/repository_type.py,sha256=Mw4q6l82iVgalXxOiWCpmtGZAf4MawNxCsIW2QoPd0I,175
309
304
  robosystems_client/models/resend_verification_email_response_resendverificationemail.py,sha256=Dh0e9tvOd_V6nEzX9MJLonn-gLhJQ7QHOe_xJkwPaK4,1354
310
305
  robosystems_client/models/reset_password_request.py,sha256=14kn__5re5UkWEfjqz25RZeoQBh7z9fOKu_a01X9zi4,1682
311
306
  robosystems_client/models/reset_password_validate_response.py,sha256=7FV8Gfhirst9UWl0_P3XGnn5i_uGtneTTTeA7y_13Dc,2130
@@ -333,15 +328,12 @@ robosystems_client/models/storage_info_included_per_tier.py,sha256=gOd8Vlzk4_-3T
333
328
  robosystems_client/models/storage_info_overage_pricing.py,sha256=ZqiUj42_VFpsdJ2DzvXdQW96C-1luGnoaCHlGJeBimo,1242
334
329
  robosystems_client/models/storage_limit_response.py,sha256=MARn28shb1eSTXx7ZoXdkWr_tKRh87bdl49Ois-aVow,4149
335
330
  robosystems_client/models/storage_limits.py,sha256=_0qQ4yzuLjFbZdNboaDDDPsTO5ecKgH-LU8IuACzOtc,2582
331
+ robosystems_client/models/storage_summary.py,sha256=4w0l17230UxGdJ22r_ruscqiMCQrrURolGk9FFQ2KwM,2679
336
332
  robosystems_client/models/subgraph_quota_response.py,sha256=pBHhUt2CXHR3UondX10XGkpmM7wlyxCqk39Te1LZXz8,4693
337
333
  robosystems_client/models/subgraph_response.py,sha256=2yDyTyat-5W2bOvNH8rGbErXWYkn9c1Aq2bpXwF0JTY,8635
338
334
  robosystems_client/models/subgraph_response_metadata_type_0.py,sha256=Lfz_uYJ7C2-F8qBnb5CaEonpZTEfcapn7DawFaXmYlk,1229
339
335
  robosystems_client/models/subgraph_summary.py,sha256=fZskewbuXff15lzC5DDpIgreQg4Pit-rbCAn_lvPvHM,4364
340
336
  robosystems_client/models/subgraph_type.py,sha256=UuhtI16pPNdwvznfvlb6iFP2Ow7XhO8oLhJlq0wbl-0,201
341
- robosystems_client/models/subscription_info.py,sha256=6dLANsDZ_HB9sl8sNM2aQQvHt2JqilzbYaYbCVnsHJE,3982
342
- robosystems_client/models/subscription_info_metadata.py,sha256=5RZRthVzH5VloERrIXm9dHSJBntmdd_0vPYaVeEOvCo,1216
343
- robosystems_client/models/subscription_request.py,sha256=QArBvYVdFtQcqfHA_47Yi07vWjZEVMBDUIhdrfHGH2M,2399
344
- robosystems_client/models/subscription_response.py,sha256=OqMB-M4CYnqQ4j1WzmhLlpPDgIT3O7qNH4P0gFIrldg,1888
345
337
  robosystems_client/models/success_response.py,sha256=a-sgwBAiJn-8fTsKWIZInSuTF3B29jinOpeySBEzbjQ,3172
346
338
  robosystems_client/models/success_response_data_type_0.py,sha256=tirQFpgZO8Lpge7WDBGfILrLz0HZQVXXG6fu6b2-eSU,1204
347
339
  robosystems_client/models/sync_connection_request.py,sha256=qyOzmAJ0khdwAZb-Hlf8jbzfqGBjMalqkQsua08vEnc,3232
@@ -352,30 +344,23 @@ robosystems_client/models/table_ingest_result.py,sha256=6nwBXfiXGhl89LDKUx5REgSi
352
344
  robosystems_client/models/table_list_response.py,sha256=wmlmFs6jw_qjrc9N9iQG2Un1469xSscgUbCYRb4B0kg,2003
353
345
  robosystems_client/models/table_query_request.py,sha256=bZITK2e2KdPZ7cVvi0arZpCfqDnT9yl8yv7Cd_jJWgw,1878
354
346
  robosystems_client/models/table_query_response.py,sha256=Y9zUSm1BPRfJEN_SP6lIZIQs75TcYPu1M8bxpWNp7PI,2268
355
- robosystems_client/models/tier_upgrade_request.py,sha256=uSF_CpTLwlj6jTO7a9yCbboBGvuzJOIgyVjJYVNc6t4,1567
356
347
  robosystems_client/models/token_pricing.py,sha256=89uMvNo1RMh1Muz2ExTZdjFQgukXf_lfgKdoLvOFGp4,1841
357
348
  robosystems_client/models/transaction_summary_response.py,sha256=MSQYuOharoRpBilqmpKo_Dxv39QLjJ0g5oY9NYsCQNA,3714
349
+ robosystems_client/models/upcoming_invoice.py,sha256=mA1urxCSW5xPo9Hs5qSkI6mGUzbx8TQRjugglX1vxxU,3518
358
350
  robosystems_client/models/update_api_key_request.py,sha256=fQVFQnUSIRDcBkCZP6ObAdVjIReaYuqSS3eliNSt59c,2527
359
351
  robosystems_client/models/update_file_status_response_updatefilestatus.py,sha256=CnUPFGrufD3EMGXpqCX9Xa8dyY0ZZfb6B5Ke2Ktqiuk,1284
360
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
361
355
  robosystems_client/models/update_user_request.py,sha256=DLN_cfsk24jG34v66YedfJ1N26wvueoXVTTi8Bd4mcQ,2420
362
- robosystems_client/models/user_analytics_response.py,sha256=M89LNcZ6x2p0WY1NTKs9mu2o1ql-ubdr5RFZnQVCXnM,4423
363
- robosystems_client/models/user_analytics_response_api_usage.py,sha256=rCzeBaCp40iOhr784WJ5pBnBnVFFkrf7Uy-TuUKyxwQ,1248
364
- robosystems_client/models/user_analytics_response_graph_usage.py,sha256=i71sukhzKuhTQ_luiqbe0gWvsruRmUlvqsuBPZU3XwM,1260
365
- robosystems_client/models/user_analytics_response_limits.py,sha256=SNPMfjwzX0p5WgyN28tQTuWa3vR2iyeJh6ySyuhftr0,1246
366
- robosystems_client/models/user_analytics_response_recent_activity_item.py,sha256=2fdWobH0DzAEVRP6swlRqJq5hmTYYJre1wrO_FCfhr8,1282
367
- robosystems_client/models/user_analytics_response_user_info.py,sha256=R25GyPfXmCJ2g19RVGy6tyRP8jWRKiGdUFjj5TbAgss,1244
368
- robosystems_client/models/user_graph_summary.py,sha256=qtG1p4m2GSD12vFgkyJ5GeWPiLY3B3DeoSkcvmdqfGc,3783
356
+ robosystems_client/models/upgrade_subscription_request.py,sha256=Ph-Wu1pA6zOEi6jSOuqrQRJ3xImOVy-T2g-xLHrYaic,1544
369
357
  robosystems_client/models/user_graphs_response.py,sha256=k4zDipn-9HqwiJHUq8Si1XSemCDJv_t9SfTtJxc6w_k,2648
370
358
  robosystems_client/models/user_limits_response.py,sha256=HyGQMqqX_U66B3vKIknQJTK35LAFfjEA_VTQgm_a_QM,2419
371
359
  robosystems_client/models/user_response.py,sha256=uMYsvPKLo5YUwsT-PV8Tu5qrFG81X8-ODBllFyX2C6E,3650
372
- robosystems_client/models/user_subscriptions_response.py,sha256=vQx876KIEQ6-0Db3O0CbXHaaMAhk_BBqCBNiJvf-npE,2526
373
360
  robosystems_client/models/user_usage_response.py,sha256=xsKYfbSoHWbuE9Y-yBvaLkaUeBfgJ7s184JUtP75wT4,2612
374
361
  robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZQ1grZWBRA0hMfW5eukyQr9lIk8,1243
375
- robosystems_client/models/user_usage_summary_response.py,sha256=4hthwTH7bXyzdYlHoekDYOgDLI-stGRH507Bl2rUjYA,3655
376
- robosystems_client/models/user_usage_summary_response_usage_vs_limits.py,sha256=XrZnRcy1nD3xtKX4svbww7QfEHrN7_XIfeL9j5ZMbyQ,1298
377
362
  robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
378
- robosystems_client-0.2.9.dist-info/METADATA,sha256=dnEUAr5BCMvRwzXWJgFSBAQEry298juFd7j9nWedmRY,3903
379
- robosystems_client-0.2.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
380
- robosystems_client-0.2.9.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
381
- robosystems_client-0.2.9.dist-info/RECORD,,
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,,