stigg-api-client 1.135.0__tar.gz → 1.139.2__tar.gz
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_api_client-1.135.0 → stigg_api_client-1.139.2}/PKG-INFO +1 -1
- {stigg_api_client-1.135.0 → stigg_api_client-1.139.2}/pyproject.toml +1 -1
- {stigg_api_client-1.135.0 → stigg_api_client-1.139.2}/stigg/generated/schema.py +6 -3
- {stigg_api_client-1.135.0 → stigg_api_client-1.139.2}/LICENSE +0 -0
- {stigg_api_client-1.135.0 → stigg_api_client-1.139.2}/README.md +0 -0
- {stigg_api_client-1.135.0 → stigg_api_client-1.139.2}/stigg/__init__.py +0 -0
- {stigg_api_client-1.135.0 → stigg_api_client-1.139.2}/stigg/client.py +0 -0
- {stigg_api_client-1.135.0 → stigg_api_client-1.139.2}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-1.135.0 → stigg_api_client-1.139.2}/stigg/generated/operations.py +0 -0
|
@@ -5882,10 +5882,11 @@ class IdentityForbiddenError(sgqlc.types.Type):
|
|
|
5882
5882
|
|
|
5883
5883
|
class ImmediateSubscriptionPreviewInvoice(sgqlc.types.Type):
|
|
5884
5884
|
__schema__ = schema
|
|
5885
|
-
__field_names__ = ('credits', 'discount', 'discount_details', 'proration', 'sub_total', 'tax', 'tax_details', 'total', 'total_excluding_tax')
|
|
5885
|
+
__field_names__ = ('credits', 'discount', 'discount_details', 'minimum_spend_adjustment', 'proration', 'sub_total', 'tax', 'tax_details', 'total', 'total_excluding_tax')
|
|
5886
5886
|
credits = sgqlc.types.Field('SubscriptionPreviewCredits', graphql_name='credits')
|
|
5887
5887
|
discount = sgqlc.types.Field('Money', graphql_name='discount')
|
|
5888
5888
|
discount_details = sgqlc.types.Field('SubscriptionPreviewDiscount', graphql_name='discountDetails')
|
|
5889
|
+
minimum_spend_adjustment = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='minimumSpendAdjustment')
|
|
5889
5890
|
proration = sgqlc.types.Field('SubscriptionPreviewProrations', graphql_name='proration')
|
|
5890
5891
|
sub_total = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='subTotal')
|
|
5891
5892
|
tax = sgqlc.types.Field('Money', graphql_name='tax')
|
|
@@ -8603,13 +8604,14 @@ class SubscriptionMustHaveSinglePlanError(sgqlc.types.Type):
|
|
|
8603
8604
|
|
|
8604
8605
|
class SubscriptionPreview(sgqlc.types.Type):
|
|
8605
8606
|
__schema__ = schema
|
|
8606
|
-
__field_names__ = ('billing_period_range', 'credits', 'discount', 'discount_amount', 'has_scheduled_updates', 'is_plan_downgrade', 'proration', 'sub_total', 'subscription', 'tax', 'tax_details', 'total', 'total_excluding_tax')
|
|
8607
|
+
__field_names__ = ('billing_period_range', 'credits', 'discount', 'discount_amount', 'has_scheduled_updates', 'is_plan_downgrade', 'minimum_spend_adjustment', 'proration', 'sub_total', 'subscription', 'tax', 'tax_details', 'total', 'total_excluding_tax')
|
|
8607
8608
|
billing_period_range = sgqlc.types.Field(sgqlc.types.non_null(DateRange), graphql_name='billingPeriodRange')
|
|
8608
8609
|
credits = sgqlc.types.Field('SubscriptionPreviewCredits', graphql_name='credits')
|
|
8609
8610
|
discount = sgqlc.types.Field('SubscriptionPreviewDiscount', graphql_name='discount')
|
|
8610
8611
|
discount_amount = sgqlc.types.Field(Money, graphql_name='discountAmount')
|
|
8611
8612
|
has_scheduled_updates = sgqlc.types.Field(Boolean, graphql_name='hasScheduledUpdates')
|
|
8612
8613
|
is_plan_downgrade = sgqlc.types.Field(Boolean, graphql_name='isPlanDowngrade')
|
|
8614
|
+
minimum_spend_adjustment = sgqlc.types.Field(sgqlc.types.non_null(Money), graphql_name='minimumSpendAdjustment')
|
|
8613
8615
|
proration = sgqlc.types.Field('SubscriptionPreviewProrations', graphql_name='proration')
|
|
8614
8616
|
sub_total = sgqlc.types.Field(sgqlc.types.non_null(Money), graphql_name='subTotal')
|
|
8615
8617
|
subscription = sgqlc.types.Field('SubscriptionPricePreviewDTO', graphql_name='subscription')
|
|
@@ -8638,9 +8640,10 @@ class SubscriptionPreviewDiscount(sgqlc.types.Type):
|
|
|
8638
8640
|
|
|
8639
8641
|
class SubscriptionPreviewInvoice(sgqlc.types.Type):
|
|
8640
8642
|
__schema__ = schema
|
|
8641
|
-
__field_names__ = ('discount', 'discount_details', 'sub_total', 'tax', 'tax_details', 'total', 'total_excluding_tax')
|
|
8643
|
+
__field_names__ = ('discount', 'discount_details', 'minimum_spend_adjustment', 'sub_total', 'tax', 'tax_details', 'total', 'total_excluding_tax')
|
|
8642
8644
|
discount = sgqlc.types.Field(Money, graphql_name='discount')
|
|
8643
8645
|
discount_details = sgqlc.types.Field(SubscriptionPreviewDiscount, graphql_name='discountDetails')
|
|
8646
|
+
minimum_spend_adjustment = sgqlc.types.Field(sgqlc.types.non_null(Money), graphql_name='minimumSpendAdjustment')
|
|
8644
8647
|
sub_total = sgqlc.types.Field(sgqlc.types.non_null(Money), graphql_name='subTotal')
|
|
8645
8648
|
tax = sgqlc.types.Field(Money, graphql_name='tax')
|
|
8646
8649
|
tax_details = sgqlc.types.Field('SubscriptionPreviewTaxDetails', graphql_name='taxDetails')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|