stigg-api-client 1.134.0__tar.gz → 1.135.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 1.134.0
3
+ Version: 1.135.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "stigg-api-client"
3
- version = "1.134.0"
3
+ version = "1.135.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -1458,7 +1458,8 @@ class DateFieldComparisonBetween(sgqlc.types.Input):
1458
1458
 
1459
1459
  class DefaultTrialConfigInputDTO(sgqlc.types.Input):
1460
1460
  __schema__ = schema
1461
- __field_names__ = ('duration', 'units')
1461
+ __field_names__ = ('budget', 'duration', 'units')
1462
+ budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
1462
1463
  duration = sgqlc.types.Field(Float, graphql_name='duration')
1463
1464
  units = sgqlc.types.Field(TrialPeriodUnits, graphql_name='units')
1464
1465
 
@@ -2464,8 +2465,7 @@ class PackageGroupStatusFilterComparison(sgqlc.types.Input):
2464
2465
 
2465
2466
  class PackagePricingInput(sgqlc.types.Input):
2466
2467
  __schema__ = schema
2467
- __field_names__ = ('budget', 'environment_id', 'minimum_spend', 'overage_billing_period', 'overage_pricing_models', 'package_id', 'pricing_model', 'pricing_models', 'pricing_type')
2468
- budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
2468
+ __field_names__ = ('environment_id', 'minimum_spend', 'overage_billing_period', 'overage_pricing_models', 'package_id', 'pricing_model', 'pricing_models', 'pricing_type')
2469
2469
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
2470
2470
  minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpendInput)), graphql_name='minimumSpend')
2471
2471
  overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
@@ -4475,14 +4475,6 @@ class BudgetConfiguration(sgqlc.types.Type):
4475
4475
  limit = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='limit')
4476
4476
 
4477
4477
 
4478
- class BudgetConfigurationChange(sgqlc.types.Type):
4479
- __schema__ = schema
4480
- __field_names__ = ('after', 'before', 'change_type')
4481
- after = sgqlc.types.Field(BudgetConfiguration, graphql_name='after')
4482
- before = sgqlc.types.Field(BudgetConfiguration, graphql_name='before')
4483
- change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
4484
-
4485
-
4486
4478
  class CannotDeleteCustomerError(sgqlc.types.Type):
4487
4479
  __schema__ = schema
4488
4480
  __field_names__ = ('code', 'is_validation_error', 'ref_id')
@@ -5223,7 +5215,8 @@ class DateRange(sgqlc.types.Type):
5223
5215
 
5224
5216
  class DefaultTrialConfig(sgqlc.types.Type):
5225
5217
  __schema__ = schema
5226
- __field_names__ = ('duration', 'units')
5218
+ __field_names__ = ('budget', 'duration', 'units')
5219
+ budget = sgqlc.types.Field(BudgetConfiguration, graphql_name='budget')
5227
5220
  duration = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='duration')
5228
5221
  units = sgqlc.types.Field(sgqlc.types.non_null(TrialPeriodUnits), graphql_name='units')
5229
5222
 
@@ -6795,10 +6788,9 @@ class PackageAlreadyPublishedError(sgqlc.types.Type):
6795
6788
 
6796
6789
  class PackageChanges(sgqlc.types.Type):
6797
6790
  __schema__ = schema
6798
- __field_names__ = ('additional_meta_data', 'base_plan', 'budget', 'compatible_addons', 'compatible_package_groups', 'default_trial_config', 'dependencies', 'description', 'display_name', 'entitlements', 'hidden_from_widgets', 'max_quantity', 'minimum_spend', 'overage_prices', 'prices', 'pricing_type', 'total_changes')
6791
+ __field_names__ = ('additional_meta_data', 'base_plan', 'compatible_addons', 'compatible_package_groups', 'default_trial_config', 'dependencies', 'description', 'display_name', 'entitlements', 'hidden_from_widgets', 'max_quantity', 'minimum_spend', 'overage_prices', 'prices', 'pricing_type', 'total_changes')
6799
6792
  additional_meta_data = sgqlc.types.Field(AdditionalMetaDataChange, graphql_name='additionalMetaData')
6800
6793
  base_plan = sgqlc.types.Field(BasePlanChange, graphql_name='basePlan')
6801
- budget = sgqlc.types.Field(BudgetConfigurationChange, graphql_name='budget')
6802
6794
  compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatibleAddonChange')), graphql_name='compatibleAddons')
6803
6795
  compatible_package_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatiblePackageGroupChange')), graphql_name='compatiblePackageGroups')
6804
6796
  default_trial_config = sgqlc.types.Field(DefaultTrialConfigChange, graphql_name='defaultTrialConfig')
@@ -7262,13 +7254,12 @@ class PaywallProduct(sgqlc.types.Type):
7262
7254
 
7263
7255
  class Plan(sgqlc.types.Type):
7264
7256
  __schema__ = schema
7265
- __field_names__ = ('additional_meta_data', 'aws_marketplace_plan_dimension', 'base_plan', 'billing_id', 'billing_link_url', 'budget', 'compatible_addons', 'compatible_package_groups', 'created_at', 'default_trial_config', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'hidden_from_widgets', 'id', 'inherited_entitlements', 'is_latest', 'is_parent', 'minimum_spend', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
7257
+ __field_names__ = ('additional_meta_data', 'aws_marketplace_plan_dimension', 'base_plan', 'billing_id', 'billing_link_url', 'compatible_addons', 'compatible_package_groups', 'created_at', 'default_trial_config', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'hidden_from_widgets', 'id', 'inherited_entitlements', 'is_latest', 'is_parent', 'minimum_spend', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
7266
7258
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
7267
7259
  aws_marketplace_plan_dimension = sgqlc.types.Field(String, graphql_name='awsMarketplacePlanDimension')
7268
7260
  base_plan = sgqlc.types.Field('Plan', graphql_name='basePlan')
7269
7261
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
7270
7262
  billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
7271
- budget = sgqlc.types.Field(BudgetConfiguration, graphql_name='budget')
7272
7263
  compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Addon)), graphql_name='compatibleAddons', args=sgqlc.types.ArgDict((
7273
7264
  ('filter', sgqlc.types.Arg(AddonFilter, graphql_name='filter', default={})),
7274
7265
  ('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AddonSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),