stigg-api-client 1.91.1__tar.gz → 1.94.2__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-1.91.1 → stigg_api_client-1.94.2}/PKG-INFO +1 -1
- {stigg_api_client-1.91.1 → stigg_api_client-1.94.2}/pyproject.toml +1 -1
- {stigg_api_client-1.91.1 → stigg_api_client-1.94.2}/stigg/generated/schema.py +19 -1
- {stigg_api_client-1.91.1 → stigg_api_client-1.94.2}/LICENSE +0 -0
- {stigg_api_client-1.91.1 → stigg_api_client-1.94.2}/README.md +0 -0
- {stigg_api_client-1.91.1 → stigg_api_client-1.94.2}/stigg/__init__.py +0 -0
- {stigg_api_client-1.91.1 → stigg_api_client-1.94.2}/stigg/client.py +0 -0
- {stigg_api_client-1.91.1 → stigg_api_client-1.94.2}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-1.91.1 → stigg_api_client-1.94.2}/stigg/generated/operations.py +0 -0
|
@@ -4278,6 +4278,14 @@ class AddonDeleteResponse(sgqlc.types.Type):
|
|
|
4278
4278
|
version_number = sgqlc.types.Field(Int, graphql_name='versionNumber')
|
|
4279
4279
|
|
|
4280
4280
|
|
|
4281
|
+
class AddonDependencyChange(sgqlc.types.Type):
|
|
4282
|
+
__schema__ = schema
|
|
4283
|
+
__field_names__ = ('after', 'before', 'change_type')
|
|
4284
|
+
after = sgqlc.types.Field(Addon, graphql_name='after')
|
|
4285
|
+
before = sgqlc.types.Field(Addon, graphql_name='before')
|
|
4286
|
+
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
4287
|
+
|
|
4288
|
+
|
|
4281
4289
|
class AddonEdge(sgqlc.types.Type):
|
|
4282
4290
|
__schema__ = schema
|
|
4283
4291
|
__field_names__ = ('cursor', 'node')
|
|
@@ -6657,11 +6665,13 @@ class PackageAlreadyPublishedError(sgqlc.types.Type):
|
|
|
6657
6665
|
|
|
6658
6666
|
class PackageChanges(sgqlc.types.Type):
|
|
6659
6667
|
__schema__ = schema
|
|
6660
|
-
__field_names__ = ('additional_meta_data', 'base_plan', 'compatible_addons', 'default_trial_config', 'description', 'display_name', 'entitlements', 'hidden_from_widgets', 'max_quantity', 'overage_prices', 'prices', 'pricing_type', 'total_changes')
|
|
6668
|
+
__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', 'overage_prices', 'prices', 'pricing_type', 'total_changes')
|
|
6661
6669
|
additional_meta_data = sgqlc.types.Field(AdditionalMetaDataChange, graphql_name='additionalMetaData')
|
|
6662
6670
|
base_plan = sgqlc.types.Field(BasePlanChange, graphql_name='basePlan')
|
|
6663
6671
|
compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatibleAddonChange')), graphql_name='compatibleAddons')
|
|
6672
|
+
compatible_package_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatiblePackageGroupChange')), graphql_name='compatiblePackageGroups')
|
|
6664
6673
|
default_trial_config = sgqlc.types.Field(DefaultTrialConfigChange, graphql_name='defaultTrialConfig')
|
|
6674
|
+
dependencies = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AddonDependencyChange)), graphql_name='dependencies')
|
|
6665
6675
|
description = sgqlc.types.Field('StringChangeDTO', graphql_name='description')
|
|
6666
6676
|
display_name = sgqlc.types.Field('StringChangeDTO', graphql_name='displayName')
|
|
6667
6677
|
entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlementChange'))), graphql_name='entitlements')
|
|
@@ -7193,6 +7203,14 @@ class PlanCompatibleAddonChange(sgqlc.types.Type):
|
|
|
7193
7203
|
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
7194
7204
|
|
|
7195
7205
|
|
|
7206
|
+
class PlanCompatiblePackageGroupChange(sgqlc.types.Type):
|
|
7207
|
+
__schema__ = schema
|
|
7208
|
+
__field_names__ = ('after', 'before', 'change_type')
|
|
7209
|
+
after = sgqlc.types.Field(PackageGroup, graphql_name='after')
|
|
7210
|
+
before = sgqlc.types.Field(PackageGroup, graphql_name='before')
|
|
7211
|
+
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
7212
|
+
|
|
7213
|
+
|
|
7196
7214
|
class PlanConnection(sgqlc.types.relay.Connection):
|
|
7197
7215
|
__schema__ = schema
|
|
7198
7216
|
__field_names__ = ('edges', 'page_info', 'total_count')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|