stigg-api-client 3.9.0__tar.gz → 3.12.0__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-3.9.0 → stigg_api_client-3.12.0}/PKG-INFO +1 -1
- {stigg_api_client-3.9.0 → stigg_api_client-3.12.0}/pyproject.toml +1 -1
- {stigg_api_client-3.9.0 → stigg_api_client-3.12.0}/stigg/generated/schema.py +9 -2
- {stigg_api_client-3.9.0 → stigg_api_client-3.12.0}/LICENSE +0 -0
- {stigg_api_client-3.9.0 → stigg_api_client-3.12.0}/README.md +0 -0
- {stigg_api_client-3.9.0 → stigg_api_client-3.12.0}/stigg/__init__.py +0 -0
- {stigg_api_client-3.9.0 → stigg_api_client-3.12.0}/stigg/client.py +0 -0
- {stigg_api_client-3.9.0 → stigg_api_client-3.12.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-3.9.0 → stigg_api_client-3.12.0}/stigg/generated/operations.py +0 -0
|
@@ -413,6 +413,11 @@ class ProrationBehavior(sgqlc.types.Enum):
|
|
|
413
413
|
__choices__ = ('CREATE_PRORATIONS', 'INVOICE_IMMEDIATELY')
|
|
414
414
|
|
|
415
415
|
|
|
416
|
+
class ProrationBehaviorExtended(sgqlc.types.Enum):
|
|
417
|
+
__schema__ = schema
|
|
418
|
+
__choices__ = ('CREATE_PRORATIONS', 'INVOICE_IMMEDIATELY', 'NONE')
|
|
419
|
+
|
|
420
|
+
|
|
416
421
|
class ProvisionSubscriptionStatus(sgqlc.types.Enum):
|
|
417
422
|
__schema__ = schema
|
|
418
423
|
__choices__ = ('PAYMENT_REQUIRED', 'SUCCESS')
|
|
@@ -755,7 +760,7 @@ class ApiKeySort(sgqlc.types.Input):
|
|
|
755
760
|
|
|
756
761
|
class ApplySubscriptionInput(sgqlc.types.Input):
|
|
757
762
|
__schema__ = schema
|
|
758
|
-
__field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'customer_id', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'payment_method_id', 'plan_id', 'price_overrides', 'promotion_code', 'resource_id', 'salesforce_id', 'schedule_strategy', 'skip_trial', 'start_date', 'subscription_entitlements', 'trial_override_configuration', 'unit_quantity')
|
|
763
|
+
__field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'customer_id', 'environment_id', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'payment_method_id', 'plan_id', 'price_overrides', 'promotion_code', 'resource_id', 'salesforce_id', 'schedule_strategy', 'skip_trial', 'start_date', 'subscription_entitlements', 'trial_override_configuration', 'unit_quantity')
|
|
759
764
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
760
765
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
761
766
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -767,6 +772,7 @@ class ApplySubscriptionInput(sgqlc.types.Input):
|
|
|
767
772
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
768
773
|
budget = sgqlc.types.Field('BudgetConfigurationInput', graphql_name='budget')
|
|
769
774
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
775
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
770
776
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
771
777
|
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
772
778
|
payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
|
|
@@ -3930,7 +3936,7 @@ class SubscriptionAddonSort(sgqlc.types.Input):
|
|
|
3930
3936
|
|
|
3931
3937
|
class SubscriptionBillingInfo(sgqlc.types.Input):
|
|
3932
3938
|
__schema__ = schema
|
|
3933
|
-
__field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'integration_id', 'invoice_days_until_due', 'is_backdated', 'is_invoice_paid', 'metadata', 'tax_percentage', 'tax_rate_ids')
|
|
3939
|
+
__field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'integration_id', 'invoice_days_until_due', 'is_backdated', 'is_invoice_paid', 'metadata', 'proration_behavior', 'tax_percentage', 'tax_rate_ids')
|
|
3934
3940
|
billing_address = sgqlc.types.Field(BillingAddress, graphql_name='billingAddress')
|
|
3935
3941
|
charge_on_behalf_of_account = sgqlc.types.Field(String, graphql_name='chargeOnBehalfOfAccount')
|
|
3936
3942
|
coupon_id = sgqlc.types.Field(String, graphql_name='couponId')
|
|
@@ -3939,6 +3945,7 @@ class SubscriptionBillingInfo(sgqlc.types.Input):
|
|
|
3939
3945
|
is_backdated = sgqlc.types.Field(Boolean, graphql_name='isBackdated')
|
|
3940
3946
|
is_invoice_paid = sgqlc.types.Field(Boolean, graphql_name='isInvoicePaid')
|
|
3941
3947
|
metadata = sgqlc.types.Field(JSON, graphql_name='metadata')
|
|
3948
|
+
proration_behavior = sgqlc.types.Field(ProrationBehaviorExtended, graphql_name='prorationBehavior')
|
|
3942
3949
|
tax_percentage = sgqlc.types.Field(Float, graphql_name='taxPercentage')
|
|
3943
3950
|
tax_rate_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='taxRateIds')
|
|
3944
3951
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|