stigg-api-client 1.128.0__py3-none-any.whl → 1.134.0__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/schema.py CHANGED
@@ -2464,7 +2464,8 @@ class PackageGroupStatusFilterComparison(sgqlc.types.Input):
2464
2464
 
2465
2465
  class PackagePricingInput(sgqlc.types.Input):
2466
2466
  __schema__ = schema
2467
- __field_names__ = ('environment_id', 'minimum_spend', 'overage_billing_period', 'overage_pricing_models', 'package_id', 'pricing_model', 'pricing_models', 'pricing_type')
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
2469
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
2469
2470
  minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpendInput)), graphql_name='minimumSpend')
2470
2471
  overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
@@ -2634,7 +2635,7 @@ class PlanSort(sgqlc.types.Input):
2634
2635
 
2635
2636
  class PlanUpdateInput(sgqlc.types.Input):
2636
2637
  __schema__ = schema
2637
- __field_names__ = ('additional_meta_data', 'billing_id', 'default_trial_config', 'description', 'display_name', 'hidden_from_widgets', 'id', 'parent_plan_id', 'status')
2638
+ __field_names__ = ('additional_meta_data', 'billing_id', 'default_trial_config', 'description', 'display_name', 'hidden_from_widgets', 'id', 'minimum_spend', 'parent_plan_id', 'status')
2638
2639
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
2639
2640
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
2640
2641
  default_trial_config = sgqlc.types.Field(DefaultTrialConfigInputDTO, graphql_name='defaultTrialConfig')
@@ -2642,6 +2643,7 @@ class PlanUpdateInput(sgqlc.types.Input):
2642
2643
  display_name = sgqlc.types.Field(String, graphql_name='displayName')
2643
2644
  hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
2644
2645
  id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
2646
+ minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpendInput)), graphql_name='minimumSpend')
2645
2647
  parent_plan_id = sgqlc.types.Field(String, graphql_name='parentPlanId')
2646
2648
  status = sgqlc.types.Field(PackageStatus, graphql_name='status')
2647
2649
 
@@ -4473,6 +4475,14 @@ class BudgetConfiguration(sgqlc.types.Type):
4473
4475
  limit = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='limit')
4474
4476
 
4475
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
+
4476
4486
  class CannotDeleteCustomerError(sgqlc.types.Type):
4477
4487
  __schema__ = schema
4478
4488
  __field_names__ = ('code', 'is_validation_error', 'ref_id')
@@ -6785,9 +6795,10 @@ class PackageAlreadyPublishedError(sgqlc.types.Type):
6785
6795
 
6786
6796
  class PackageChanges(sgqlc.types.Type):
6787
6797
  __schema__ = schema
6788
- __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')
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')
6789
6799
  additional_meta_data = sgqlc.types.Field(AdditionalMetaDataChange, graphql_name='additionalMetaData')
6790
6800
  base_plan = sgqlc.types.Field(BasePlanChange, graphql_name='basePlan')
6801
+ budget = sgqlc.types.Field(BudgetConfigurationChange, graphql_name='budget')
6791
6802
  compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatibleAddonChange')), graphql_name='compatibleAddons')
6792
6803
  compatible_package_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatiblePackageGroupChange')), graphql_name='compatiblePackageGroups')
6793
6804
  default_trial_config = sgqlc.types.Field(DefaultTrialConfigChange, graphql_name='defaultTrialConfig')
@@ -7251,12 +7262,13 @@ class PaywallProduct(sgqlc.types.Type):
7251
7262
 
7252
7263
  class Plan(sgqlc.types.Type):
7253
7264
  __schema__ = schema
7254
- __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')
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')
7255
7266
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
7256
7267
  aws_marketplace_plan_dimension = sgqlc.types.Field(String, graphql_name='awsMarketplacePlanDimension')
7257
7268
  base_plan = sgqlc.types.Field('Plan', graphql_name='basePlan')
7258
7269
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
7259
7270
  billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
7271
+ budget = sgqlc.types.Field(BudgetConfiguration, graphql_name='budget')
7260
7272
  compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Addon)), graphql_name='compatibleAddons', args=sgqlc.types.ArgDict((
7261
7273
  ('filter', sgqlc.types.Arg(AddonFilter, graphql_name='filter', default={})),
7262
7274
  ('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AddonSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 1.128.0
3
+ Version: 1.134.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -2,8 +2,8 @@ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
2
2
  stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
3
3
  stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  stigg/generated/operations.py,sha256=YYFd__FKVvXq8EWFFQj7_uhGyoQWRkKeUEa-cqME1TA,68704
5
- stigg/generated/schema.py,sha256=-i-prpPZbDEwxvPUc6PR33pRlvEhg9fjUe0JyptjCPk,578553
6
- stigg_api_client-1.128.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
- stigg_api_client-1.128.0.dist-info/METADATA,sha256=5Qz4fhb_iSkcf4RfBu-9noRrh2UoB1vcQ_4atJfeouQ,3198
8
- stigg_api_client-1.128.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
- stigg_api_client-1.128.0.dist-info/RECORD,,
5
+ stigg/generated/schema.py,sha256=962tE80PBGVpwRyUKNN5AMcVtxJYRyhU-i-TAgS_W-8,579322
6
+ stigg_api_client-1.134.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-1.134.0.dist-info/METADATA,sha256=qQ6MSPrKK45t-Pry5SB79R4jCABU6LdzXc8VX9ZiY8Q,3198
8
+ stigg_api_client-1.134.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-1.134.0.dist-info/RECORD,,