stigg-api-client 2.201.0__tar.gz → 2.205.3__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-2.201.0 → stigg_api_client-2.205.3}/PKG-INFO +1 -1
- {stigg_api_client-2.201.0 → stigg_api_client-2.205.3}/pyproject.toml +1 -1
- {stigg_api_client-2.201.0 → stigg_api_client-2.205.3}/stigg/generated/schema.py +6 -3
- {stigg_api_client-2.201.0 → stigg_api_client-2.205.3}/LICENSE +0 -0
- {stigg_api_client-2.201.0 → stigg_api_client-2.205.3}/README.md +0 -0
- {stigg_api_client-2.201.0 → stigg_api_client-2.205.3}/stigg/__init__.py +0 -0
- {stigg_api_client-2.201.0 → stigg_api_client-2.205.3}/stigg/client.py +0 -0
- {stigg_api_client-2.201.0 → stigg_api_client-2.205.3}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.201.0 → stigg_api_client-2.205.3}/stigg/generated/operations.py +0 -0
|
@@ -1762,7 +1762,7 @@ class EnvironmentSort(sgqlc.types.Input):
|
|
|
1762
1762
|
|
|
1763
1763
|
class EstimateSubscriptionInput(sgqlc.types.Input):
|
|
1764
1764
|
__schema__ = schema
|
|
1765
|
-
__field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'price_unit_amount', 'promotion_code', 'resource_id', 'skip_trial', 'start_date', 'unit_quantity')
|
|
1765
|
+
__field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'price_unit_amount', 'promotion_code', 'resource_id', 'skip_trial', 'start_date', 'trial_override_configuration', 'unit_quantity')
|
|
1766
1766
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
1767
1767
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
1768
1768
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
@@ -1778,6 +1778,7 @@ class EstimateSubscriptionInput(sgqlc.types.Input):
|
|
|
1778
1778
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1779
1779
|
skip_trial = sgqlc.types.Field(Boolean, graphql_name='skipTrial')
|
|
1780
1780
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
1781
|
+
trial_override_configuration = sgqlc.types.Field('TrialOverrideConfigurationInput', graphql_name='trialOverrideConfiguration')
|
|
1781
1782
|
unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
|
|
1782
1783
|
|
|
1783
1784
|
|
|
@@ -2881,7 +2882,7 @@ class PreviewNextInvoiceInput(sgqlc.types.Input):
|
|
|
2881
2882
|
|
|
2882
2883
|
class PreviewSubscriptionInput(sgqlc.types.Input):
|
|
2883
2884
|
__schema__ = schema
|
|
2884
|
-
__field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'promotion_code', 'resource_id', 'schedule_strategy', 'start_date', 'unit_quantity')
|
|
2885
|
+
__field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'promotion_code', 'resource_id', 'schedule_strategy', 'start_date', 'trial_override_configuration', 'unit_quantity')
|
|
2885
2886
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
2886
2887
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
2887
2888
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
@@ -2896,6 +2897,7 @@ class PreviewSubscriptionInput(sgqlc.types.Input):
|
|
|
2896
2897
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
2897
2898
|
schedule_strategy = sgqlc.types.Field(ScheduleStrategy, graphql_name='scheduleStrategy')
|
|
2898
2899
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
2900
|
+
trial_override_configuration = sgqlc.types.Field('TrialOverrideConfigurationInput', graphql_name='trialOverrideConfiguration')
|
|
2899
2901
|
unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
|
|
2900
2902
|
|
|
2901
2903
|
|
|
@@ -5293,7 +5295,7 @@ class CustomerStatistics(sgqlc.types.Type):
|
|
|
5293
5295
|
|
|
5294
5296
|
class CustomerSubscription(sgqlc.types.Type):
|
|
5295
5297
|
__schema__ = schema
|
|
5296
|
-
__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')
|
|
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', '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')
|
|
5297
5299
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
5298
5300
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddon')), graphql_name='addons', args=sgqlc.types.ArgDict((
|
|
5299
5301
|
('filter', sgqlc.types.Arg(SubscriptionAddonFilter, graphql_name='filter', default={})),
|
|
@@ -5309,6 +5311,7 @@ class CustomerSubscription(sgqlc.types.Type):
|
|
|
5309
5311
|
cancel_reason = sgqlc.types.Field(SubscriptionCancelReason, graphql_name='cancelReason')
|
|
5310
5312
|
cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
|
|
5311
5313
|
coupon = sgqlc.types.Field('SubscriptionCoupon', graphql_name='coupon')
|
|
5314
|
+
coupons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionCoupon')), graphql_name='coupons')
|
|
5312
5315
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5313
5316
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
5314
5317
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|