stigg-api-client 2.204.0__py3-none-any.whl → 2.205.6__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 stigg-api-client might be problematic. Click here for more details.
- stigg/generated/operations.py +1 -0
- stigg/generated/schema.py +4 -2
- {stigg_api_client-2.204.0.dist-info → stigg_api_client-2.205.6.dist-info}/METADATA +1 -1
- stigg_api_client-2.205.6.dist-info/RECORD +9 -0
- stigg_api_client-2.204.0.dist-info/RECORD +0 -9
- {stigg_api_client-2.204.0.dist-info → stigg_api_client-2.205.6.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.204.0.dist-info → stigg_api_client-2.205.6.dist-info}/WHEEL +0 -0
stigg/generated/operations.py
CHANGED
|
@@ -950,6 +950,7 @@ def fragment_customer_portal_subscription_price_fragment():
|
|
|
950
950
|
_frag = sgqlc.operation.Fragment(_schema.CustomerPortalSubscriptionPrice, 'CustomerPortalSubscriptionPriceFragment')
|
|
951
951
|
_frag.billing_period()
|
|
952
952
|
_frag.billing_model()
|
|
953
|
+
_frag.block_size()
|
|
953
954
|
_frag_price = _frag.price()
|
|
954
955
|
_frag_price.amount()
|
|
955
956
|
_frag_price.currency()
|
stigg/generated/schema.py
CHANGED
|
@@ -5206,9 +5206,10 @@ class CustomerPortalSubscription(sgqlc.types.Type):
|
|
|
5206
5206
|
|
|
5207
5207
|
class CustomerPortalSubscriptionPrice(sgqlc.types.Type):
|
|
5208
5208
|
__schema__ = schema
|
|
5209
|
-
__field_names__ = ('billing_model', 'billing_period', 'feature', 'price')
|
|
5209
|
+
__field_names__ = ('billing_model', 'billing_period', 'block_size', 'feature', 'price')
|
|
5210
5210
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
5211
5211
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
5212
|
+
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
5212
5213
|
feature = sgqlc.types.Field(CustomerPortalPricingFeature, graphql_name='feature')
|
|
5213
5214
|
price = sgqlc.types.Field('Money', graphql_name='price')
|
|
5214
5215
|
|
|
@@ -5295,7 +5296,7 @@ class CustomerStatistics(sgqlc.types.Type):
|
|
|
5295
5296
|
|
|
5296
5297
|
class CustomerSubscription(sgqlc.types.Type):
|
|
5297
5298
|
__schema__ = schema
|
|
5298
|
-
__field_names__ = ('additional_meta_data', 'addons', 'billing_cycle_anchor', 'billing_id', 'billing_link_url', 'billing_sync_error', 'budget', 'budget_exceeded', 'cancel_reason', 'cancellation_date', 'coupon', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer', 'customer_id', 'effective_end_date', 'end_date', 'environment', 'environment_id', 'experiment', 'experiment_info', 'free_items', 'future_updates', 'id', 'is_custom_price_subscription', 'last_usage_invoice', 'latest_invoice', 'minimum_spend', 'old_billing_id', 'outdated_price_packages', 'paying_customer', 'paying_customer_id', 'payment_collection', 'payment_collection_method', 'plan', 'prices', 'pricing_type', 'ref_id', 'resource', 'resource_id', 'salesforce_id', 'scheduled_updates', 'start_date', 'status', 'subscription_entitlements', 'subscription_id', 'sync_states', 'total_price', 'trial_configuration', 'trial_end_date', 'was_in_trial')
|
|
5299
|
+
__field_names__ = ('additional_meta_data', 'addons', 'billing_cycle_anchor', 'billing_id', 'billing_link_url', 'billing_sync_error', 'budget', 'budget_exceeded', 'cancel_reason', 'cancellation_date', 'coupon', 'coupons', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer', 'customer_id', 'effective_end_date', 'end_date', 'environment', 'environment_id', 'experiment', 'experiment_info', 'free_items', 'future_updates', 'id', 'is_custom_price_subscription', 'last_usage_invoice', 'latest_invoice', 'minimum_spend', 'old_billing_id', 'outdated_price_packages', 'paying_customer', 'paying_customer_id', 'payment_collection', 'payment_collection_method', 'plan', 'prices', 'pricing_type', 'ref_id', 'resource', 'resource_id', 'salesforce_id', 'scheduled_updates', 'start_date', 'status', 'subscription_entitlements', 'subscription_id', 'sync_states', 'total_price', 'trial_configuration', 'trial_end_date', 'was_in_trial')
|
|
5299
5300
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
5300
5301
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddon')), graphql_name='addons', args=sgqlc.types.ArgDict((
|
|
5301
5302
|
('filter', sgqlc.types.Arg(SubscriptionAddonFilter, graphql_name='filter', default={})),
|
|
@@ -5311,6 +5312,7 @@ class CustomerSubscription(sgqlc.types.Type):
|
|
|
5311
5312
|
cancel_reason = sgqlc.types.Field(SubscriptionCancelReason, graphql_name='cancelReason')
|
|
5312
5313
|
cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
|
|
5313
5314
|
coupon = sgqlc.types.Field('SubscriptionCoupon', graphql_name='coupon')
|
|
5315
|
+
coupons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionCoupon')), graphql_name='coupons')
|
|
5314
5316
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5315
5317
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
5316
5318
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
2
|
+
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
|
+
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
stigg/generated/operations.py,sha256=VLvC_1m98hBkfZGJuheAu7Nbj_T3TATc1WTqibjgWKg,76639
|
|
5
|
+
stigg/generated/schema.py,sha256=LQoRbNHcMOvrbf3zO8M_29RepOIwVSNjPQQN9yByoZQ,618906
|
|
6
|
+
stigg_api_client-2.205.6.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-2.205.6.dist-info/METADATA,sha256=yZyqFKGS1Zb8vr8mtIh98Hl3vEWYYIYhtjNeyRDOD0I,3198
|
|
8
|
+
stigg_api_client-2.205.6.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-2.205.6.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
2
|
-
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
|
-
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
stigg/generated/operations.py,sha256=L-KsnUd2mH-izMg1X2CIT-zKJPNVqavXkZAkWPw3FWY,76616
|
|
5
|
-
stigg/generated/schema.py,sha256=HdZ6BecVykXGZGG4n28dYUHpJV1w5QVOr5uIdUxw3pI,618692
|
|
6
|
-
stigg_api_client-2.204.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
-
stigg_api_client-2.204.0.dist-info/METADATA,sha256=h6HdVjp853_9-wgsz-24gifB3E6E0nvbYsXjHBGqZGc,3198
|
|
8
|
-
stigg_api_client-2.204.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
-
stigg_api_client-2.204.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|