stigg-api-client 1.132.0__py3-none-any.whl → 1.135.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 +9 -17
- {stigg_api_client-1.132.0.dist-info → stigg_api_client-1.135.0.dist-info}/METADATA +1 -1
- {stigg_api_client-1.132.0.dist-info → stigg_api_client-1.135.0.dist-info}/RECORD +5 -5
- {stigg_api_client-1.132.0.dist-info → stigg_api_client-1.135.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-1.132.0.dist-info → stigg_api_client-1.135.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -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__ = ('
|
|
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')
|
|
@@ -2635,7 +2635,7 @@ class PlanSort(sgqlc.types.Input):
|
|
|
2635
2635
|
|
|
2636
2636
|
class PlanUpdateInput(sgqlc.types.Input):
|
|
2637
2637
|
__schema__ = schema
|
|
2638
|
-
__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')
|
|
2639
2639
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
2640
2640
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
2641
2641
|
default_trial_config = sgqlc.types.Field(DefaultTrialConfigInputDTO, graphql_name='defaultTrialConfig')
|
|
@@ -2643,6 +2643,7 @@ class PlanUpdateInput(sgqlc.types.Input):
|
|
|
2643
2643
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
2644
2644
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2645
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')
|
|
2646
2647
|
parent_plan_id = sgqlc.types.Field(String, graphql_name='parentPlanId')
|
|
2647
2648
|
status = sgqlc.types.Field(PackageStatus, graphql_name='status')
|
|
2648
2649
|
|
|
@@ -4474,14 +4475,6 @@ class BudgetConfiguration(sgqlc.types.Type):
|
|
|
4474
4475
|
limit = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='limit')
|
|
4475
4476
|
|
|
4476
4477
|
|
|
4477
|
-
class BudgetConfigurationChange(sgqlc.types.Type):
|
|
4478
|
-
__schema__ = schema
|
|
4479
|
-
__field_names__ = ('after', 'before', 'change_type')
|
|
4480
|
-
after = sgqlc.types.Field(BudgetConfiguration, graphql_name='after')
|
|
4481
|
-
before = sgqlc.types.Field(BudgetConfiguration, graphql_name='before')
|
|
4482
|
-
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
4478
|
class CannotDeleteCustomerError(sgqlc.types.Type):
|
|
4486
4479
|
__schema__ = schema
|
|
4487
4480
|
__field_names__ = ('code', 'is_validation_error', 'ref_id')
|
|
@@ -5222,7 +5215,8 @@ class DateRange(sgqlc.types.Type):
|
|
|
5222
5215
|
|
|
5223
5216
|
class DefaultTrialConfig(sgqlc.types.Type):
|
|
5224
5217
|
__schema__ = schema
|
|
5225
|
-
__field_names__ = ('duration', 'units')
|
|
5218
|
+
__field_names__ = ('budget', 'duration', 'units')
|
|
5219
|
+
budget = sgqlc.types.Field(BudgetConfiguration, graphql_name='budget')
|
|
5226
5220
|
duration = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='duration')
|
|
5227
5221
|
units = sgqlc.types.Field(sgqlc.types.non_null(TrialPeriodUnits), graphql_name='units')
|
|
5228
5222
|
|
|
@@ -6794,10 +6788,9 @@ class PackageAlreadyPublishedError(sgqlc.types.Type):
|
|
|
6794
6788
|
|
|
6795
6789
|
class PackageChanges(sgqlc.types.Type):
|
|
6796
6790
|
__schema__ = schema
|
|
6797
|
-
__field_names__ = ('additional_meta_data', 'base_plan', '
|
|
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')
|
|
6798
6792
|
additional_meta_data = sgqlc.types.Field(AdditionalMetaDataChange, graphql_name='additionalMetaData')
|
|
6799
6793
|
base_plan = sgqlc.types.Field(BasePlanChange, graphql_name='basePlan')
|
|
6800
|
-
budget = sgqlc.types.Field(BudgetConfigurationChange, graphql_name='budget')
|
|
6801
6794
|
compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatibleAddonChange')), graphql_name='compatibleAddons')
|
|
6802
6795
|
compatible_package_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatiblePackageGroupChange')), graphql_name='compatiblePackageGroups')
|
|
6803
6796
|
default_trial_config = sgqlc.types.Field(DefaultTrialConfigChange, graphql_name='defaultTrialConfig')
|
|
@@ -7261,13 +7254,12 @@ class PaywallProduct(sgqlc.types.Type):
|
|
|
7261
7254
|
|
|
7262
7255
|
class Plan(sgqlc.types.Type):
|
|
7263
7256
|
__schema__ = schema
|
|
7264
|
-
__field_names__ = ('additional_meta_data', 'aws_marketplace_plan_dimension', 'base_plan', 'billing_id', 'billing_link_url', '
|
|
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')
|
|
7265
7258
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
7266
7259
|
aws_marketplace_plan_dimension = sgqlc.types.Field(String, graphql_name='awsMarketplacePlanDimension')
|
|
7267
7260
|
base_plan = sgqlc.types.Field('Plan', graphql_name='basePlan')
|
|
7268
7261
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
7269
7262
|
billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
|
|
7270
|
-
budget = sgqlc.types.Field(BudgetConfiguration, graphql_name='budget')
|
|
7271
7263
|
compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Addon)), graphql_name='compatibleAddons', args=sgqlc.types.ArgDict((
|
|
7272
7264
|
('filter', sgqlc.types.Arg(AddonFilter, graphql_name='filter', default={})),
|
|
7273
7265
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AddonSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
@@ -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=
|
|
6
|
-
stigg_api_client-1.
|
|
7
|
-
stigg_api_client-1.
|
|
8
|
-
stigg_api_client-1.
|
|
9
|
-
stigg_api_client-1.
|
|
5
|
+
stigg/generated/schema.py,sha256=g4uoP334jaKb8L-hDbGjQgqStxrjdlX4obS9EPQjBuI,578874
|
|
6
|
+
stigg_api_client-1.135.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-1.135.0.dist-info/METADATA,sha256=xgKXbLFJoraEnj_kyfOi_TKRjYpY-neXK5oxJ8AqAhs,3198
|
|
8
|
+
stigg_api_client-1.135.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-1.135.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|