stigg-api-client 3.34.1__py3-none-any.whl → 3.36.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 +11 -6
- {stigg_api_client-3.34.1.dist-info → stigg_api_client-3.36.0.dist-info}/METADATA +1 -1
- {stigg_api_client-3.34.1.dist-info → stigg_api_client-3.36.0.dist-info}/RECORD +5 -5
- {stigg_api_client-3.34.1.dist-info → stigg_api_client-3.36.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.34.1.dist-info → stigg_api_client-3.36.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -17,7 +17,7 @@ schema -= sgqlc.types.relay.PageInfo
|
|
|
17
17
|
########################################################################
|
|
18
18
|
class AccessDeniedReason(sgqlc.types.Enum):
|
|
19
19
|
__schema__ = schema
|
|
20
|
-
__choices__ = ('BudgetExceeded', 'CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'FeatureTypeMismatch', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'RequestedValuesMismatch', 'Unknown')
|
|
20
|
+
__choices__ = ('BudgetExceeded', 'CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'FeatureTypeMismatch', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'RequestedValuesMismatch', 'Revoked', 'Unknown')
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
class AccountAccessMethod(sgqlc.types.Enum):
|
|
@@ -2800,7 +2800,7 @@ class OpenFGACredentialsInput(sgqlc.types.Input):
|
|
|
2800
2800
|
|
|
2801
2801
|
class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
2802
2802
|
__schema__ = schema
|
|
2803
|
-
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2803
|
+
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'is_granted', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2804
2804
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2805
2805
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2806
2806
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2811,6 +2811,7 @@ class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
|
2811
2811
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2812
2812
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2813
2813
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
2814
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2814
2815
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2815
2816
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2816
2817
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -2910,7 +2911,7 @@ class PackageEntitlementFilterPackageDTOFilter(sgqlc.types.Input):
|
|
|
2910
2911
|
|
|
2911
2912
|
class PackageEntitlementInput(sgqlc.types.Input):
|
|
2912
2913
|
__schema__ = schema
|
|
2913
|
-
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'monthly_reset_period_configuration', 'order', 'package_id', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2914
|
+
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'is_granted', 'monthly_reset_period_configuration', 'order', 'package_id', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2914
2915
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2915
2916
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2916
2917
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2922,6 +2923,7 @@ class PackageEntitlementInput(sgqlc.types.Input):
|
|
|
2922
2923
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2923
2924
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2924
2925
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
2926
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2925
2927
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2926
2928
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2927
2929
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
@@ -2941,7 +2943,7 @@ class PackageEntitlementSort(sgqlc.types.Input):
|
|
|
2941
2943
|
|
|
2942
2944
|
class PackageEntitlementUpdateInput(sgqlc.types.Input):
|
|
2943
2945
|
__schema__ = schema
|
|
2944
|
-
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2946
|
+
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'is_granted', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2945
2947
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2946
2948
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2947
2949
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2950,6 +2952,7 @@ class PackageEntitlementUpdateInput(sgqlc.types.Input):
|
|
|
2950
2952
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2951
2953
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2952
2954
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
2955
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2953
2956
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2954
2957
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2955
2958
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -8080,7 +8083,7 @@ class PackageDraftSummary(sgqlc.types.Type):
|
|
|
8080
8083
|
|
|
8081
8084
|
class PackageEntitlement(sgqlc.types.Type):
|
|
8082
8085
|
__schema__ = schema
|
|
8083
|
-
__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')
|
|
8086
|
+
__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', 'is_granted', 'meter', 'order', 'package', 'package_id', 'reset_period', 'reset_period_configuration', 'updated_at', 'usage_limit')
|
|
8084
8087
|
behavior = sgqlc.types.Field(sgqlc.types.non_null(EntitlementBehavior), graphql_name='behavior')
|
|
8085
8088
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8086
8089
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -8096,6 +8099,7 @@ class PackageEntitlement(sgqlc.types.Type):
|
|
|
8096
8099
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
8097
8100
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8098
8101
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
8102
|
+
is_granted = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isGranted')
|
|
8099
8103
|
meter = sgqlc.types.Field(Meter, graphql_name='meter')
|
|
8100
8104
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
8101
8105
|
package = sgqlc.types.Field(PackageDTO, graphql_name='package')
|
|
@@ -8144,7 +8148,7 @@ class PackageEntitlementCountAggregate(sgqlc.types.Type):
|
|
|
8144
8148
|
|
|
8145
8149
|
class PackageEntitlementDeleteResponse(sgqlc.types.Type):
|
|
8146
8150
|
__schema__ = schema
|
|
8147
|
-
__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')
|
|
8151
|
+
__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', 'is_granted', 'order', 'package_id', 'reset_period', 'reset_period_configuration', 'updated_at', 'usage_limit')
|
|
8148
8152
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
8149
8153
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8150
8154
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -8159,6 +8163,7 @@ class PackageEntitlementDeleteResponse(sgqlc.types.Type):
|
|
|
8159
8163
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
8160
8164
|
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8161
8165
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
8166
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
8162
8167
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
8163
8168
|
package_id = sgqlc.types.Field(String, graphql_name='packageId')
|
|
8164
8169
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -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=jdcrPywumtoFtbow4bBDPn9O84uxNaBA4rT7RDoB2vU,82533
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-3.
|
|
7
|
-
stigg_api_client-3.
|
|
8
|
-
stigg_api_client-3.
|
|
9
|
-
stigg_api_client-3.
|
|
5
|
+
stigg/generated/schema.py,sha256=7EGF8DLz-Wyzqj_Mi1bdkP4eLQDkUY-xwJN65UghpYQ,698220
|
|
6
|
+
stigg_api_client-3.36.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-3.36.0.dist-info/METADATA,sha256=D2BqsNMeq9ydlJeDWBiVM9AgaoDZ174saWAblIvqgBg,3197
|
|
8
|
+
stigg_api_client-3.36.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-3.36.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|