stigg-api-client 2.486.0__tar.gz → 2.488.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.486.0 → stigg_api_client-2.488.0}/PKG-INFO +1 -1
- {stigg_api_client-2.486.0 → stigg_api_client-2.488.0}/pyproject.toml +1 -1
- {stigg_api_client-2.486.0 → stigg_api_client-2.488.0}/stigg/generated/operations.py +2 -0
- {stigg_api_client-2.486.0 → stigg_api_client-2.488.0}/stigg/generated/schema.py +10 -5
- {stigg_api_client-2.486.0 → stigg_api_client-2.488.0}/LICENSE +0 -0
- {stigg_api_client-2.486.0 → stigg_api_client-2.488.0}/README.md +0 -0
- {stigg_api_client-2.486.0 → stigg_api_client-2.488.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.486.0 → stigg_api_client-2.488.0}/stigg/client.py +0 -0
- {stigg_api_client-2.486.0 → stigg_api_client-2.488.0}/stigg/generated/__init__.py +0 -0
|
@@ -111,6 +111,7 @@ def fragment_package_entitlement_fragment():
|
|
|
111
111
|
_frag.hidden_from_widgets()
|
|
112
112
|
_frag.is_custom()
|
|
113
113
|
_frag.display_name_override()
|
|
114
|
+
_frag.enum_values()
|
|
114
115
|
_frag_feature = _frag.feature()
|
|
115
116
|
_frag_feature.feature_type()
|
|
116
117
|
_frag_feature.meter_type()
|
|
@@ -1169,6 +1170,7 @@ def fragment_mock_paywall_package_entitlement_fragment():
|
|
|
1169
1170
|
_frag.reset_period()
|
|
1170
1171
|
_frag.hidden_from_widgets()
|
|
1171
1172
|
_frag.display_name_override()
|
|
1173
|
+
_frag.enum_values()
|
|
1172
1174
|
_frag_feature = _frag.feature()
|
|
1173
1175
|
_frag_feature.feature_type()
|
|
1174
1176
|
_frag_feature.meter_type()
|
|
@@ -2318,8 +2318,9 @@ class GetWorkflowTriggersInput(sgqlc.types.Input):
|
|
|
2318
2318
|
|
|
2319
2319
|
class GrantPromotionalEntitlementInput(sgqlc.types.Input):
|
|
2320
2320
|
__schema__ = schema
|
|
2321
|
-
__field_names__ = ('custom_end_date', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'is_visible', 'monthly_reset_period_configuration', 'period', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2321
|
+
__field_names__ = ('custom_end_date', 'enum_values', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'is_visible', 'monthly_reset_period_configuration', 'period', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2322
2322
|
custom_end_date = sgqlc.types.Field(DateTime, graphql_name='customEndDate')
|
|
2323
|
+
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
2323
2324
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
2324
2325
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
2325
2326
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -3333,10 +3334,11 @@ class PromotionalEntitlementFilter(sgqlc.types.Input):
|
|
|
3333
3334
|
|
|
3334
3335
|
class PromotionalEntitlementInput(sgqlc.types.Input):
|
|
3335
3336
|
__schema__ = schema
|
|
3336
|
-
__field_names__ = ('customer_id', 'description', 'end_date', 'environment_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'is_visible', 'monthly_reset_period_configuration', 'period', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3337
|
+
__field_names__ = ('customer_id', 'description', 'end_date', 'enum_values', 'environment_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'is_visible', 'monthly_reset_period_configuration', 'period', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3337
3338
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3338
3339
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
3339
3340
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
3341
|
+
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
3340
3342
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
3341
3343
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
3342
3344
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
@@ -3379,9 +3381,10 @@ class PromotionalEntitlementStatusFilterComparison(sgqlc.types.Input):
|
|
|
3379
3381
|
|
|
3380
3382
|
class PromotionalEntitlementUpdateInput(sgqlc.types.Input):
|
|
3381
3383
|
__schema__ = schema
|
|
3382
|
-
__field_names__ = ('description', 'end_date', 'has_soft_limit', 'has_unlimited_usage', 'is_visible', 'monthly_reset_period_configuration', 'period', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration')
|
|
3384
|
+
__field_names__ = ('description', 'end_date', 'enum_values', 'has_soft_limit', 'has_unlimited_usage', 'is_visible', 'monthly_reset_period_configuration', 'period', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration')
|
|
3383
3385
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
3384
3386
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
3387
|
+
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
3385
3388
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
3386
3389
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
3387
3390
|
is_visible = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isVisible')
|
|
@@ -8838,11 +8841,12 @@ class PromotionCodeNotFound(sgqlc.types.Type):
|
|
|
8838
8841
|
|
|
8839
8842
|
class PromotionalEntitlement(sgqlc.types.Type):
|
|
8840
8843
|
__schema__ = schema
|
|
8841
|
-
__field_names__ = ('created_at', 'customer', 'description', 'end_date', 'environment_id', 'feature', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'is_visible', 'meter', 'period', 'reset_period', 'reset_period_configuration', 'start_date', 'status', 'unlimited', 'updated_at', 'usage_limit')
|
|
8844
|
+
__field_names__ = ('created_at', 'customer', 'description', 'end_date', 'enum_values', 'environment_id', 'feature', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'is_visible', 'meter', 'period', 'reset_period', 'reset_period_configuration', 'start_date', 'status', 'unlimited', 'updated_at', 'usage_limit')
|
|
8842
8845
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8843
8846
|
customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='customer')
|
|
8844
8847
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8845
8848
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
8849
|
+
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
8846
8850
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
8847
8851
|
feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='feature')
|
|
8848
8852
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='featureId')
|
|
@@ -8891,10 +8895,11 @@ class PromotionalEntitlementCountAggregate(sgqlc.types.Type):
|
|
|
8891
8895
|
|
|
8892
8896
|
class PromotionalEntitlementDeleteResponse(sgqlc.types.Type):
|
|
8893
8897
|
__schema__ = schema
|
|
8894
|
-
__field_names__ = ('created_at', 'description', 'end_date', 'environment_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'is_visible', 'period', 'reset_period', 'reset_period_configuration', 'start_date', 'status', 'unlimited', 'updated_at', 'usage_limit')
|
|
8898
|
+
__field_names__ = ('created_at', 'description', 'end_date', 'enum_values', 'environment_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'is_visible', 'period', 'reset_period', 'reset_period_configuration', 'start_date', 'status', 'unlimited', 'updated_at', 'usage_limit')
|
|
8895
8899
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8896
8900
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8897
8901
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
8902
|
+
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
8898
8903
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8899
8904
|
feature_id = sgqlc.types.Field(UUID, graphql_name='featureId')
|
|
8900
8905
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|