stigg-api-client 2.491.0__tar.gz → 2.492.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.
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/PKG-INFO +1 -1
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/pyproject.toml +1 -1
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/stigg/generated/schema.py +6 -8
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/LICENSE +0 -0
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/README.md +0 -0
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/stigg/client.py +0 -0
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.491.0 → stigg_api_client-2.492.0}/stigg/generated/operations.py +0 -0
|
@@ -4426,7 +4426,7 @@ class UnitTransformationInput(sgqlc.types.Input):
|
|
|
4426
4426
|
round = sgqlc.types.Field(UnitTransformationRound, graphql_name='round')
|
|
4427
4427
|
|
|
4428
4428
|
|
|
4429
|
-
class
|
|
4429
|
+
class UnlinkFeatureGroupFromPackageInput(sgqlc.types.Input):
|
|
4430
4430
|
__schema__ = schema
|
|
4431
4431
|
__field_names__ = ('environment_id', 'feature_group_id', 'package_id')
|
|
4432
4432
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
@@ -7688,7 +7688,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
7688
7688
|
))
|
|
7689
7689
|
)
|
|
7690
7690
|
unlink_feature_group_from_package = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlement'))), graphql_name='unlinkFeatureGroupFromPackage', args=sgqlc.types.ArgDict((
|
|
7691
|
-
('input', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
7691
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(UnlinkFeatureGroupFromPackageInput), graphql_name='input', default=None)),
|
|
7692
7692
|
))
|
|
7693
7693
|
)
|
|
7694
7694
|
update_account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name='updateAccount', args=sgqlc.types.ArgDict((
|
|
@@ -7868,7 +7868,7 @@ class PackageDraftSummary(sgqlc.types.Type):
|
|
|
7868
7868
|
|
|
7869
7869
|
class PackageEntitlement(sgqlc.types.Type):
|
|
7870
7870
|
__schema__ = schema
|
|
7871
|
-
__field_names__ = ('behavior', 'created_at', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature', '
|
|
7871
|
+
__field_names__ = ('behavior', 'created_at', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature', 'feature_group_ids', 'feature_groups', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'id', 'is_custom', 'meter', 'order', 'package', 'package_id', 'reset_period', 'reset_period_configuration', 'updated_at', 'usage_limit')
|
|
7872
7872
|
behavior = sgqlc.types.Field(sgqlc.types.non_null(EntitlementBehavior), graphql_name='behavior')
|
|
7873
7873
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7874
7874
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -7876,9 +7876,8 @@ class PackageEntitlement(sgqlc.types.Type):
|
|
|
7876
7876
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
7877
7877
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
7878
7878
|
feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='feature')
|
|
7879
|
-
feature_group = sgqlc.types.Field(FeatureGroup, graphql_name='featureGroup')
|
|
7880
|
-
feature_group_id = sgqlc.types.Field(String, graphql_name='featureGroupId')
|
|
7881
7879
|
feature_group_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='featureGroupIds')
|
|
7880
|
+
feature_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FeatureGroup)), graphql_name='featureGroups')
|
|
7882
7881
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
7883
7882
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
7884
7883
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -7933,16 +7932,15 @@ class PackageEntitlementCountAggregate(sgqlc.types.Type):
|
|
|
7933
7932
|
|
|
7934
7933
|
class PackageEntitlementDeleteResponse(sgqlc.types.Type):
|
|
7935
7934
|
__schema__ = schema
|
|
7936
|
-
__field_names__ = ('behavior', 'created_at', 'description', 'display_name_override', 'enum_values', 'environment_id', '
|
|
7935
|
+
__field_names__ = ('behavior', 'created_at', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature_group_ids', 'feature_groups', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'id', 'is_custom', 'order', 'package_id', 'reset_period', 'reset_period_configuration', 'updated_at', 'usage_limit')
|
|
7937
7936
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
7938
7937
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7939
7938
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
7940
7939
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
7941
7940
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
7942
7941
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
7943
|
-
feature_group = sgqlc.types.Field(FeatureGroup, graphql_name='featureGroup')
|
|
7944
|
-
feature_group_id = sgqlc.types.Field(String, graphql_name='featureGroupId')
|
|
7945
7942
|
feature_group_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='featureGroupIds')
|
|
7943
|
+
feature_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FeatureGroup)), graphql_name='featureGroups')
|
|
7946
7944
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
7947
7945
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
7948
7946
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|