stigg-api-client 2.470.0__py3-none-any.whl → 2.475.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/operations.py +2 -0
- stigg/generated/schema.py +383 -401
- {stigg_api_client-2.470.0.dist-info → stigg_api_client-2.475.0.dist-info}/METADATA +1 -1
- stigg_api_client-2.475.0.dist-info/RECORD +9 -0
- stigg_api_client-2.470.0.dist-info/RECORD +0 -9
- {stigg_api_client-2.470.0.dist-info → stigg_api_client-2.475.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.470.0.dist-info → stigg_api_client-2.475.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', 'Unknown')
|
|
20
|
+
__choices__ = ('BudgetExceeded', 'CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'FeatureTypeMismatch', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'RequestedValuesMismatch', 'Unknown')
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
class AccountAccessMethod(sgqlc.types.Enum):
|
|
@@ -626,14 +626,14 @@ class experimentGroupType(sgqlc.types.Enum):
|
|
|
626
626
|
class AddCompatibleAddonsToPlanInput(sgqlc.types.Input):
|
|
627
627
|
__schema__ = schema
|
|
628
628
|
__field_names__ = ('id', 'relation_ids')
|
|
629
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
630
|
-
relation_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(
|
|
629
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
630
|
+
relation_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UUID))), graphql_name='relationIds')
|
|
631
631
|
|
|
632
632
|
|
|
633
633
|
class AddonArchiveInput(sgqlc.types.Input):
|
|
634
634
|
__schema__ = schema
|
|
635
635
|
__field_names__ = ('environment_id', 'ref_id')
|
|
636
|
-
environment_id = sgqlc.types.Field(
|
|
636
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
637
637
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
638
638
|
|
|
639
639
|
|
|
@@ -653,7 +653,7 @@ class AddonCreateInput(sgqlc.types.Input):
|
|
|
653
653
|
dependencies = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='dependencies')
|
|
654
654
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
655
655
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
656
|
-
environment_id = sgqlc.types.Field(
|
|
656
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
657
657
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
658
658
|
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
659
659
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
@@ -670,8 +670,8 @@ class AddonFilter(sgqlc.types.Input):
|
|
|
670
670
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
671
671
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
672
672
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
673
|
-
environment_id = sgqlc.types.Field('
|
|
674
|
-
id = sgqlc.types.Field('
|
|
673
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
674
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
675
675
|
is_latest = sgqlc.types.Field('BooleanFieldComparison', graphql_name='isLatest')
|
|
676
676
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilter')), graphql_name='or')
|
|
677
677
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
@@ -693,7 +693,7 @@ class AddonSort(sgqlc.types.Input):
|
|
|
693
693
|
class AddonUnArchiveInput(sgqlc.types.Input):
|
|
694
694
|
__schema__ = schema
|
|
695
695
|
__field_names__ = ('environment_id', 'id')
|
|
696
|
-
environment_id = sgqlc.types.Field(
|
|
696
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
697
697
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
698
698
|
|
|
699
699
|
|
|
@@ -706,7 +706,7 @@ class AddonUpdateInput(sgqlc.types.Input):
|
|
|
706
706
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
707
707
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
708
708
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
709
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
709
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
710
710
|
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
711
711
|
status = sgqlc.types.Field(PackageStatus, graphql_name='status')
|
|
712
712
|
|
|
@@ -728,7 +728,7 @@ class AggregatedEventsByCustomerInput(sgqlc.types.Input):
|
|
|
728
728
|
__field_names__ = ('aggregation', 'customer_id', 'environment_id', 'filters')
|
|
729
729
|
aggregation = sgqlc.types.Field(sgqlc.types.non_null('MeterAggregation'), graphql_name='aggregation')
|
|
730
730
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
731
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
731
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
732
732
|
filters = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterFilterDefinitionInput'))), graphql_name='filters')
|
|
733
733
|
|
|
734
734
|
|
|
@@ -736,7 +736,7 @@ class ApiKeyFilter(sgqlc.types.Input):
|
|
|
736
736
|
__schema__ = schema
|
|
737
737
|
__field_names__ = ('and_', 'id', 'or_')
|
|
738
738
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ApiKeyFilter')), graphql_name='and')
|
|
739
|
-
id = sgqlc.types.Field('
|
|
739
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
740
740
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ApiKeyFilter')), graphql_name='or')
|
|
741
741
|
|
|
742
742
|
|
|
@@ -782,7 +782,7 @@ class ApplySubscriptionInput(sgqlc.types.Input):
|
|
|
782
782
|
class ArchiveCouponInput(sgqlc.types.Input):
|
|
783
783
|
__schema__ = schema
|
|
784
784
|
__field_names__ = ('environment_id', 'ref_id')
|
|
785
|
-
environment_id = sgqlc.types.Field(
|
|
785
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
786
786
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
787
787
|
|
|
788
788
|
|
|
@@ -790,7 +790,7 @@ class ArchiveCustomerInput(sgqlc.types.Input):
|
|
|
790
790
|
__schema__ = schema
|
|
791
791
|
__field_names__ = ('customer_id', 'environment_id')
|
|
792
792
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
793
|
-
environment_id = sgqlc.types.Field(
|
|
793
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
794
794
|
|
|
795
795
|
|
|
796
796
|
class ArchiveEnvironmentInput(sgqlc.types.Input):
|
|
@@ -810,7 +810,7 @@ class ArchiveFeatureGroupInput(sgqlc.types.Input):
|
|
|
810
810
|
class ArchiveFeatureInput(sgqlc.types.Input):
|
|
811
811
|
__schema__ = schema
|
|
812
812
|
__field_names__ = ('environment_id', 'id')
|
|
813
|
-
environment_id = sgqlc.types.Field(
|
|
813
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
814
814
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
815
815
|
|
|
816
816
|
|
|
@@ -824,7 +824,7 @@ class ArchivePackageGroup(sgqlc.types.Input):
|
|
|
824
824
|
class ArchivePlanInput(sgqlc.types.Input):
|
|
825
825
|
__schema__ = schema
|
|
826
826
|
__field_names__ = ('environment_id', 'id')
|
|
827
|
-
environment_id = sgqlc.types.Field(
|
|
827
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
828
828
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
829
829
|
|
|
830
830
|
|
|
@@ -833,7 +833,7 @@ class AttachCustomerPaymentMethodInput(sgqlc.types.Input):
|
|
|
833
833
|
__field_names__ = ('billing_currency', 'customer_id', 'environment_id', 'integration_id', 'payment_method_id', 'ref_id', 'vendor_identifier')
|
|
834
834
|
billing_currency = sgqlc.types.Field(Currency, graphql_name='billingCurrency')
|
|
835
835
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
836
|
-
environment_id = sgqlc.types.Field(
|
|
836
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
837
837
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
838
838
|
payment_method_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='paymentMethodId')
|
|
839
839
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -1029,7 +1029,7 @@ class ClearCustomerPersistentCacheInput(sgqlc.types.Input):
|
|
|
1029
1029
|
__schema__ = schema
|
|
1030
1030
|
__field_names__ = ('customer_id', 'environment_id', 'resource_id')
|
|
1031
1031
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
1032
|
-
environment_id = sgqlc.types.Field(
|
|
1032
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1033
1033
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1034
1034
|
|
|
1035
1035
|
|
|
@@ -1041,8 +1041,8 @@ class CouponFilter(sgqlc.types.Input):
|
|
|
1041
1041
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1042
1042
|
customers = sgqlc.types.Field('CouponFilterCustomerFilter', graphql_name='customers')
|
|
1043
1043
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
1044
|
-
environment_id = sgqlc.types.Field('
|
|
1045
|
-
id = sgqlc.types.Field('
|
|
1044
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1045
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1046
1046
|
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
1047
1047
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CouponFilter')), graphql_name='or')
|
|
1048
1048
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -1064,8 +1064,8 @@ class CouponFilterCustomerFilter(sgqlc.types.Input):
|
|
|
1064
1064
|
customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='customerId')
|
|
1065
1065
|
deleted_at = sgqlc.types.Field('DateFieldComparison', graphql_name='deletedAt')
|
|
1066
1066
|
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
1067
|
-
environment_id = sgqlc.types.Field('
|
|
1068
|
-
id = sgqlc.types.Field('
|
|
1067
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1068
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1069
1069
|
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
1070
1070
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CouponFilterCustomerFilter')), graphql_name='or')
|
|
1071
1071
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -1135,7 +1135,7 @@ class CreateCouponInput(sgqlc.types.Input):
|
|
|
1135
1135
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1136
1136
|
discount_value = sgqlc.types.Field(Float, graphql_name='discountValue')
|
|
1137
1137
|
duration_in_months = sgqlc.types.Field(Float, graphql_name='durationInMonths')
|
|
1138
|
-
environment_id = sgqlc.types.Field(
|
|
1138
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1139
1139
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
1140
1140
|
percent_off = sgqlc.types.Field(Float, graphql_name='percentOff')
|
|
1141
1141
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
@@ -1167,7 +1167,7 @@ class CreateExperimentInput(sgqlc.types.Input):
|
|
|
1167
1167
|
__field_names__ = ('control_group_name', 'description', 'environment_id', 'name', 'product_id', 'product_settings', 'variant_group_name', 'variant_percentage')
|
|
1168
1168
|
control_group_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='controlGroupName')
|
|
1169
1169
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1170
|
-
environment_id = sgqlc.types.Field(
|
|
1170
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1171
1171
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
1172
1172
|
product_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='productId')
|
|
1173
1173
|
product_settings = sgqlc.types.Field('ProductSettingsInput', graphql_name='productSettings')
|
|
@@ -1192,9 +1192,9 @@ class CreateHook(sgqlc.types.Input):
|
|
|
1192
1192
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
1193
1193
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1194
1194
|
endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
|
|
1195
|
-
environment_id = sgqlc.types.Field(
|
|
1195
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1196
1196
|
event_log_types = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EventLogType)), graphql_name='eventLogTypes')
|
|
1197
|
-
id = sgqlc.types.Field(
|
|
1197
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
1198
1198
|
secret_key = sgqlc.types.Field(String, graphql_name='secretKey')
|
|
1199
1199
|
status = sgqlc.types.Field(HookStatus, graphql_name='status')
|
|
1200
1200
|
|
|
@@ -1270,7 +1270,7 @@ class CreateOrUpdateAwsMarketplaceProductInput(sgqlc.types.Input):
|
|
|
1270
1270
|
aws_product_id = sgqlc.types.Field(String, graphql_name='awsProductId')
|
|
1271
1271
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1272
1272
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
1273
|
-
environment_id = sgqlc.types.Field(
|
|
1273
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1274
1274
|
multiple_subscriptions = sgqlc.types.Field(Boolean, graphql_name='multipleSubscriptions')
|
|
1275
1275
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
1276
1276
|
product_settings = sgqlc.types.Field('ProductSettingsInput', graphql_name='productSettings')
|
|
@@ -1283,7 +1283,7 @@ class CreatePackageGroup(sgqlc.types.Input):
|
|
|
1283
1283
|
__field_names__ = ('description', 'display_name', 'environment_id', 'package_group_id', 'product_id')
|
|
1284
1284
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1285
1285
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
1286
|
-
environment_id = sgqlc.types.Field(
|
|
1286
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1287
1287
|
package_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageGroupId')
|
|
1288
1288
|
product_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='productId')
|
|
1289
1289
|
|
|
@@ -1293,7 +1293,7 @@ class CreateWorkflowTriggerInput(sgqlc.types.Input):
|
|
|
1293
1293
|
__field_names__ = ('configuration', 'endpoint', 'environment_id', 'event_log_types', 'trigger_id')
|
|
1294
1294
|
configuration = sgqlc.types.Field(JSON, graphql_name='configuration')
|
|
1295
1295
|
endpoint = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='endpoint')
|
|
1296
|
-
environment_id = sgqlc.types.Field(
|
|
1296
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1297
1297
|
event_log_types = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EventLogType))), graphql_name='eventLogTypes')
|
|
1298
1298
|
trigger_id = sgqlc.types.Field(String, graphql_name='triggerId')
|
|
1299
1299
|
|
|
@@ -1335,8 +1335,8 @@ class CustomerFilter(sgqlc.types.Input):
|
|
|
1335
1335
|
customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='customerId')
|
|
1336
1336
|
deleted_at = sgqlc.types.Field('DateFieldComparison', graphql_name='deletedAt')
|
|
1337
1337
|
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
1338
|
-
environment_id = sgqlc.types.Field('
|
|
1339
|
-
id = sgqlc.types.Field('
|
|
1338
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1339
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1340
1340
|
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
1341
1341
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerFilter')), graphql_name='or')
|
|
1342
1342
|
promotional_entitlements = sgqlc.types.Field('CustomerFilterPromotionalEntitlementFilter', graphql_name='promotionalEntitlements')
|
|
@@ -1384,8 +1384,8 @@ class CustomerFilterPromotionalEntitlementFilter(sgqlc.types.Input):
|
|
|
1384
1384
|
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'or_', 'status', 'updated_at')
|
|
1385
1385
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerFilterPromotionalEntitlementFilter')), graphql_name='and')
|
|
1386
1386
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1387
|
-
environment_id = sgqlc.types.Field('
|
|
1388
|
-
id = sgqlc.types.Field('
|
|
1387
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1388
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1389
1389
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerFilterPromotionalEntitlementFilter')), graphql_name='or')
|
|
1390
1390
|
status = sgqlc.types.Field('PromotionalEntitlementStatusFilterComparison', graphql_name='status')
|
|
1391
1391
|
updated_at = sgqlc.types.Field('DateFieldComparison', graphql_name='updatedAt')
|
|
@@ -1403,7 +1403,7 @@ class CustomerInput(sgqlc.types.Input):
|
|
|
1403
1403
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
1404
1404
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
1405
1405
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
1406
|
-
environment_id = sgqlc.types.Field(
|
|
1406
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1407
1407
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
1408
1408
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
1409
1409
|
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
@@ -1444,7 +1444,7 @@ class CustomerResourceFilter(sgqlc.types.Input):
|
|
|
1444
1444
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerResourceFilter')), graphql_name='and')
|
|
1445
1445
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1446
1446
|
customer = sgqlc.types.Field('CustomerResourceFilterCustomerFilter', graphql_name='customer')
|
|
1447
|
-
environment_id = sgqlc.types.Field('
|
|
1447
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1448
1448
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerResourceFilter')), graphql_name='or')
|
|
1449
1449
|
resource_id = sgqlc.types.Field('StringFieldComparison', graphql_name='resourceId')
|
|
1450
1450
|
subscriptions = sgqlc.types.Field('CustomerResourceFilterCustomerSubscriptionFilter', graphql_name='subscriptions')
|
|
@@ -1462,8 +1462,8 @@ class CustomerResourceFilterCustomerFilter(sgqlc.types.Input):
|
|
|
1462
1462
|
customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='customerId')
|
|
1463
1463
|
deleted_at = sgqlc.types.Field('DateFieldComparison', graphql_name='deletedAt')
|
|
1464
1464
|
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
1465
|
-
environment_id = sgqlc.types.Field('
|
|
1466
|
-
id = sgqlc.types.Field('
|
|
1465
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1466
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1467
1467
|
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
1468
1468
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerResourceFilterCustomerFilter')), graphql_name='or')
|
|
1469
1469
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -1577,8 +1577,8 @@ class CustomerSubscriptionFilterCustomerFilter(sgqlc.types.Input):
|
|
|
1577
1577
|
customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='customerId')
|
|
1578
1578
|
deleted_at = sgqlc.types.Field('DateFieldComparison', graphql_name='deletedAt')
|
|
1579
1579
|
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
1580
|
-
environment_id = sgqlc.types.Field('
|
|
1581
|
-
id = sgqlc.types.Field('
|
|
1580
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1581
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1582
1582
|
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
1583
1583
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterCustomerFilter')), graphql_name='or')
|
|
1584
1584
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -1592,7 +1592,7 @@ class CustomerSubscriptionFilterCustomerResourceFilter(sgqlc.types.Input):
|
|
|
1592
1592
|
__field_names__ = ('and_', 'created_at', 'environment_id', 'or_', 'resource_id')
|
|
1593
1593
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterCustomerResourceFilter')), graphql_name='and')
|
|
1594
1594
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1595
|
-
environment_id = sgqlc.types.Field('
|
|
1595
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1596
1596
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterCustomerResourceFilter')), graphql_name='or')
|
|
1597
1597
|
resource_id = sgqlc.types.Field('StringFieldComparison', graphql_name='resourceId')
|
|
1598
1598
|
|
|
@@ -1605,8 +1605,8 @@ class CustomerSubscriptionFilterPlanFilter(sgqlc.types.Input):
|
|
|
1605
1605
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1606
1606
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
1607
1607
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
1608
|
-
environment_id = sgqlc.types.Field('
|
|
1609
|
-
id = sgqlc.types.Field('
|
|
1608
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1609
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1610
1610
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
1611
1611
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterPlanFilter')), graphql_name='or')
|
|
1612
1612
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
@@ -1622,7 +1622,7 @@ class CustomerSubscriptionFilterSubscriptionAddonFilter(sgqlc.types.Input):
|
|
|
1622
1622
|
__field_names__ = ('and_', 'created_at', 'id', 'or_', 'quantity', 'updated_at')
|
|
1623
1623
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterSubscriptionAddonFilter')), graphql_name='and')
|
|
1624
1624
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1625
|
-
id = sgqlc.types.Field('
|
|
1625
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1626
1626
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterSubscriptionAddonFilter')), graphql_name='or')
|
|
1627
1627
|
quantity = sgqlc.types.Field('NumberFieldComparison', graphql_name='quantity')
|
|
1628
1628
|
updated_at = sgqlc.types.Field('DateFieldComparison', graphql_name='updatedAt')
|
|
@@ -1633,8 +1633,8 @@ class CustomerSubscriptionFilterSubscriptionEntitlementFilter(sgqlc.types.Input)
|
|
|
1633
1633
|
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'or_', 'subscription_id', 'updated_at')
|
|
1634
1634
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterSubscriptionEntitlementFilter')), graphql_name='and')
|
|
1635
1635
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1636
|
-
environment_id = sgqlc.types.Field('
|
|
1637
|
-
id = sgqlc.types.Field('
|
|
1636
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
1637
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1638
1638
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterSubscriptionEntitlementFilter')), graphql_name='or')
|
|
1639
1639
|
subscription_id = sgqlc.types.Field('StringFieldComparison', graphql_name='subscriptionId')
|
|
1640
1640
|
updated_at = sgqlc.types.Field('DateFieldComparison', graphql_name='updatedAt')
|
|
@@ -1648,7 +1648,7 @@ class CustomerSubscriptionFilterSubscriptionPriceFilter(sgqlc.types.Input):
|
|
|
1648
1648
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1649
1649
|
feature_id = sgqlc.types.Field('StringFieldComparison', graphql_name='featureId')
|
|
1650
1650
|
has_soft_limit = sgqlc.types.Field(BooleanFieldComparison, graphql_name='hasSoftLimit')
|
|
1651
|
-
id = sgqlc.types.Field('
|
|
1651
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1652
1652
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterSubscriptionPriceFilter')), graphql_name='or')
|
|
1653
1653
|
updated_at = sgqlc.types.Field('DateFieldComparison', graphql_name='updatedAt')
|
|
1654
1654
|
usage_limit = sgqlc.types.Field('NumberFieldComparison', graphql_name='usageLimit')
|
|
@@ -1714,32 +1714,32 @@ class DelegateSubscriptionToCustomerInput(sgqlc.types.Input):
|
|
|
1714
1714
|
class DeleteFeatureInput(sgqlc.types.Input):
|
|
1715
1715
|
__schema__ = schema
|
|
1716
1716
|
__field_names__ = ('environment_id', 'id')
|
|
1717
|
-
environment_id = sgqlc.types.Field(
|
|
1717
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1718
1718
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
1719
1719
|
|
|
1720
1720
|
|
|
1721
1721
|
class DeleteOneHookInput(sgqlc.types.Input):
|
|
1722
1722
|
__schema__ = schema
|
|
1723
1723
|
__field_names__ = ('id',)
|
|
1724
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
1724
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
1725
1725
|
|
|
1726
1726
|
|
|
1727
1727
|
class DeleteOneIntegrationInput(sgqlc.types.Input):
|
|
1728
1728
|
__schema__ = schema
|
|
1729
1729
|
__field_names__ = ('id',)
|
|
1730
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
1730
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
1731
1731
|
|
|
1732
1732
|
|
|
1733
1733
|
class DeleteOnePackageEntitlementInput(sgqlc.types.Input):
|
|
1734
1734
|
__schema__ = schema
|
|
1735
1735
|
__field_names__ = ('id',)
|
|
1736
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
1736
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
1737
1737
|
|
|
1738
1738
|
|
|
1739
1739
|
class DeleteOnePriceInput(sgqlc.types.Input):
|
|
1740
1740
|
__schema__ = schema
|
|
1741
1741
|
__field_names__ = ('id',)
|
|
1742
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
1742
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
1743
1743
|
|
|
1744
1744
|
|
|
1745
1745
|
class DeleteOneProductInput(sgqlc.types.Input):
|
|
@@ -1751,13 +1751,13 @@ class DeleteOneProductInput(sgqlc.types.Input):
|
|
|
1751
1751
|
class DeleteOnePromotionalEntitlementInput(sgqlc.types.Input):
|
|
1752
1752
|
__schema__ = schema
|
|
1753
1753
|
__field_names__ = ('id',)
|
|
1754
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
1754
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
1755
1755
|
|
|
1756
1756
|
|
|
1757
1757
|
class DeleteWorkflowTriggerInput(sgqlc.types.Input):
|
|
1758
1758
|
__schema__ = schema
|
|
1759
1759
|
__field_names__ = ('environment_id', 'workflow_trigger_id')
|
|
1760
|
-
environment_id = sgqlc.types.Field(
|
|
1760
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1761
1761
|
workflow_trigger_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='workflowTriggerId')
|
|
1762
1762
|
|
|
1763
1763
|
|
|
@@ -1765,7 +1765,7 @@ class DetachCustomerPaymentMethodInput(sgqlc.types.Input):
|
|
|
1765
1765
|
__schema__ = schema
|
|
1766
1766
|
__field_names__ = ('customer_id', 'environment_id')
|
|
1767
1767
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
1768
|
-
environment_id = sgqlc.types.Field(
|
|
1768
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1769
1769
|
|
|
1770
1770
|
|
|
1771
1771
|
class DimensionsMappingInput(sgqlc.types.Input):
|
|
@@ -1786,7 +1786,7 @@ class DiscardPackageDraftInput(sgqlc.types.Input):
|
|
|
1786
1786
|
class DoesFeatureExist(sgqlc.types.Input):
|
|
1787
1787
|
__schema__ = schema
|
|
1788
1788
|
__field_names__ = ('environment_id', 'ref_id')
|
|
1789
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
1789
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
1790
1790
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
1791
1791
|
|
|
1792
1792
|
|
|
@@ -1819,32 +1819,35 @@ class EditPackageGroupDetailsInput(sgqlc.types.Input):
|
|
|
1819
1819
|
__field_names__ = ('description', 'display_name', 'environment_id', 'package_group_id')
|
|
1820
1820
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1821
1821
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
1822
|
-
environment_id = sgqlc.types.Field(
|
|
1822
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1823
1823
|
package_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageGroupId')
|
|
1824
1824
|
|
|
1825
1825
|
|
|
1826
1826
|
class EntitlementCheckRequested(sgqlc.types.Input):
|
|
1827
1827
|
__schema__ = schema
|
|
1828
|
-
__field_names__ = ('customer_id', 'entitlement_check_result', 'environment_id', 'feature_id', 'requested_usage', 'resource_id')
|
|
1828
|
+
__field_names__ = ('customer_id', 'entitlement_check_result', 'environment_id', 'feature_id', 'requested_usage', 'requested_values', 'resource_id')
|
|
1829
1829
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
1830
1830
|
entitlement_check_result = sgqlc.types.Field(sgqlc.types.non_null('EntitlementCheckResult'), graphql_name='entitlementCheckResult')
|
|
1831
|
-
environment_id = sgqlc.types.Field(
|
|
1831
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1832
1832
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
1833
1833
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
1834
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
1834
1835
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1835
1836
|
|
|
1836
1837
|
|
|
1837
1838
|
class EntitlementCheckResult(sgqlc.types.Input):
|
|
1838
1839
|
__schema__ = schema
|
|
1839
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'has_access', 'has_soft_limit', 'has_unlimited_usage', 'monthly_reset_period_configuration', 'next_reset_date', 'requested_usage', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
1840
|
+
__field_names__ = ('access_denied_reason', 'current_usage', 'enum_values', 'has_access', 'has_soft_limit', 'has_unlimited_usage', 'monthly_reset_period_configuration', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
1840
1841
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
1841
1842
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
1843
|
+
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
1842
1844
|
has_access = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasAccess')
|
|
1843
1845
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
1844
1846
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
1845
1847
|
monthly_reset_period_configuration = sgqlc.types.Field('MonthlyResetPeriodConfigInput', graphql_name='monthlyResetPeriodConfiguration')
|
|
1846
1848
|
next_reset_date = sgqlc.types.Field(DateTime, graphql_name='nextResetDate')
|
|
1847
1849
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
1850
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
1848
1851
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
1849
1852
|
usage_limit = sgqlc.types.Field(Float, graphql_name='usageLimit')
|
|
1850
1853
|
weekly_reset_period_configuration = sgqlc.types.Field('WeeklyResetPeriodConfigInput', graphql_name='weeklyResetPeriodConfiguration')
|
|
@@ -1853,8 +1856,9 @@ class EntitlementCheckResult(sgqlc.types.Input):
|
|
|
1853
1856
|
|
|
1854
1857
|
class EntitlementOptions(sgqlc.types.Input):
|
|
1855
1858
|
__schema__ = schema
|
|
1856
|
-
__field_names__ = ('requested_usage', 'should_track')
|
|
1859
|
+
__field_names__ = ('requested_usage', 'requested_values', 'should_track')
|
|
1857
1860
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
1861
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
1858
1862
|
should_track = sgqlc.types.Field(Boolean, graphql_name='shouldTrack')
|
|
1859
1863
|
|
|
1860
1864
|
|
|
@@ -1871,7 +1875,7 @@ class EnvironmentFilter(sgqlc.types.Input):
|
|
|
1871
1875
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EnvironmentFilter')), graphql_name='and')
|
|
1872
1876
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
1873
1877
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
1874
|
-
id = sgqlc.types.Field('
|
|
1878
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
1875
1879
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EnvironmentFilter')), graphql_name='or')
|
|
1876
1880
|
permanent_deletion_date = sgqlc.types.Field(DateFieldComparison, graphql_name='permanentDeletionDate')
|
|
1877
1881
|
slug = sgqlc.types.Field('StringFieldComparison', graphql_name='slug')
|
|
@@ -1952,7 +1956,7 @@ class EventLogEntityIdFilterComparison(sgqlc.types.Input):
|
|
|
1952
1956
|
class EventLogEnvironmentIdFilterComparison(sgqlc.types.Input):
|
|
1953
1957
|
__schema__ = schema
|
|
1954
1958
|
__field_names__ = ('eq',)
|
|
1955
|
-
eq = sgqlc.types.Field(
|
|
1959
|
+
eq = sgqlc.types.Field(UUID, graphql_name='eq')
|
|
1956
1960
|
|
|
1957
1961
|
|
|
1958
1962
|
class EventLogEventLogTypeFilterComparison(sgqlc.types.Input):
|
|
@@ -2002,7 +2006,7 @@ class EventsFieldsInput(sgqlc.types.Input):
|
|
|
2002
2006
|
__schema__ = schema
|
|
2003
2007
|
__field_names__ = ('customer_id', 'environment_id', 'feature_id', 'filters', 'meter_id', 'resource_id', 'unique_values_limit')
|
|
2004
2008
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
2005
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
2009
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
2006
2010
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
2007
2011
|
filters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterFilterDefinitionInput')), graphql_name='filters')
|
|
2008
2012
|
meter_id = sgqlc.types.Field(String, graphql_name='meterId')
|
|
@@ -2016,8 +2020,8 @@ class ExperimentFilter(sgqlc.types.Input):
|
|
|
2016
2020
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ExperimentFilter')), graphql_name='and')
|
|
2017
2021
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2018
2022
|
customers = sgqlc.types.Field('ExperimentFilterCustomerFilter', graphql_name='customers')
|
|
2019
|
-
environment_id = sgqlc.types.Field('
|
|
2020
|
-
id = sgqlc.types.Field('
|
|
2023
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2024
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2021
2025
|
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
2022
2026
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ExperimentFilter')), graphql_name='or')
|
|
2023
2027
|
product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='productId')
|
|
@@ -2037,8 +2041,8 @@ class ExperimentFilterCustomerFilter(sgqlc.types.Input):
|
|
|
2037
2041
|
customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='customerId')
|
|
2038
2042
|
deleted_at = sgqlc.types.Field(DateFieldComparison, graphql_name='deletedAt')
|
|
2039
2043
|
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
2040
|
-
environment_id = sgqlc.types.Field('
|
|
2041
|
-
id = sgqlc.types.Field('
|
|
2044
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2045
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2042
2046
|
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
2043
2047
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ExperimentFilterCustomerFilter')), graphql_name='or')
|
|
2044
2048
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -2058,7 +2062,7 @@ class ExperimentSort(sgqlc.types.Input):
|
|
|
2058
2062
|
class ExperimentStatsQuery(sgqlc.types.Input):
|
|
2059
2063
|
__schema__ = schema
|
|
2060
2064
|
__field_names__ = ('environment_id', 'experiment_ref_id')
|
|
2061
|
-
environment_id = sgqlc.types.Field(
|
|
2065
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2062
2066
|
experiment_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='experimentRefId')
|
|
2063
2067
|
|
|
2064
2068
|
|
|
@@ -2084,7 +2088,7 @@ class ExperimentStatusFilterComparison(sgqlc.types.Input):
|
|
|
2084
2088
|
class FeatureAssociatedLatestPackages(sgqlc.types.Input):
|
|
2085
2089
|
__schema__ = schema
|
|
2086
2090
|
__field_names__ = ('environment_id', 'feature_id')
|
|
2087
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
2091
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
2088
2092
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
2089
2093
|
|
|
2090
2094
|
|
|
@@ -2095,10 +2099,10 @@ class FeatureFilter(sgqlc.types.Input):
|
|
|
2095
2099
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2096
2100
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
2097
2101
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
2098
|
-
environment_id = sgqlc.types.Field('
|
|
2102
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2099
2103
|
feature_status = sgqlc.types.Field('FeatureStatusFilterComparison', graphql_name='featureStatus')
|
|
2100
2104
|
feature_type = sgqlc.types.Field('FeatureTypeFilterComparison', graphql_name='featureType')
|
|
2101
|
-
id = sgqlc.types.Field('
|
|
2105
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2102
2106
|
meter_type = sgqlc.types.Field('MeterTypeFilterComparison', graphql_name='meterType')
|
|
2103
2107
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FeatureFilter')), graphql_name='or')
|
|
2104
2108
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -2155,7 +2159,7 @@ class FeatureInput(sgqlc.types.Input):
|
|
|
2155
2159
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2156
2160
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
2157
2161
|
enum_configuration = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EnumConfigurationEntityInput)), graphql_name='enumConfiguration')
|
|
2158
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
2162
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
2159
2163
|
feature_status = sgqlc.types.Field(FeatureStatus, graphql_name='featureStatus')
|
|
2160
2164
|
feature_type = sgqlc.types.Field(sgqlc.types.non_null(FeatureType), graphql_name='featureType')
|
|
2161
2165
|
feature_units = sgqlc.types.Field(String, graphql_name='featureUnits')
|
|
@@ -2252,14 +2256,14 @@ class GetAuth0ApplicationsInput(sgqlc.types.Input):
|
|
|
2252
2256
|
client_domain = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientDomain')
|
|
2253
2257
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
2254
2258
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
2255
|
-
environment_id = sgqlc.types.Field(
|
|
2259
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2256
2260
|
|
|
2257
2261
|
|
|
2258
2262
|
class GetCustomerByRefIdInput(sgqlc.types.Input):
|
|
2259
2263
|
__schema__ = schema
|
|
2260
2264
|
__field_names__ = ('customer_id', 'environment_id')
|
|
2261
2265
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
2262
|
-
environment_id = sgqlc.types.Field(
|
|
2266
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2263
2267
|
|
|
2264
2268
|
|
|
2265
2269
|
class GetPackageByRefIdInput(sgqlc.types.Input):
|
|
@@ -2284,7 +2288,7 @@ class GetPaywallInput(sgqlc.types.Input):
|
|
|
2284
2288
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
2285
2289
|
context = sgqlc.types.Field(WidgetType, graphql_name='context')
|
|
2286
2290
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
2287
|
-
environment_id = sgqlc.types.Field(
|
|
2291
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2288
2292
|
fetch_all_countries_prices = sgqlc.types.Field(Boolean, graphql_name='fetchAllCountriesPrices')
|
|
2289
2293
|
include_hidden_plans = sgqlc.types.Field(Boolean, graphql_name='includeHiddenPlans')
|
|
2290
2294
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
@@ -2301,13 +2305,13 @@ class GetSubscriptionInput(sgqlc.types.Input):
|
|
|
2301
2305
|
class GetWidgetConfigurationInput(sgqlc.types.Input):
|
|
2302
2306
|
__schema__ = schema
|
|
2303
2307
|
__field_names__ = ('environment_id',)
|
|
2304
|
-
environment_id = sgqlc.types.Field(
|
|
2308
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2305
2309
|
|
|
2306
2310
|
|
|
2307
2311
|
class GetWorkflowTriggersInput(sgqlc.types.Input):
|
|
2308
2312
|
__schema__ = schema
|
|
2309
2313
|
__field_names__ = ('environment_id', 'trigger_id', 'workflow_trigger_id')
|
|
2310
|
-
environment_id = sgqlc.types.Field(
|
|
2314
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2311
2315
|
trigger_id = sgqlc.types.Field(String, graphql_name='triggerId')
|
|
2312
2316
|
workflow_trigger_id = sgqlc.types.Field(String, graphql_name='workflowTriggerId')
|
|
2313
2317
|
|
|
@@ -2332,7 +2336,7 @@ class GrantPromotionalEntitlementsInput(sgqlc.types.Input):
|
|
|
2332
2336
|
__schema__ = schema
|
|
2333
2337
|
__field_names__ = ('customer_id', 'environment_id', 'promotional_entitlements')
|
|
2334
2338
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
2335
|
-
environment_id = sgqlc.types.Field(
|
|
2339
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2336
2340
|
promotional_entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(GrantPromotionalEntitlementInput))), graphql_name='promotionalEntitlements')
|
|
2337
2341
|
|
|
2338
2342
|
|
|
@@ -2342,8 +2346,8 @@ class HookFilter(sgqlc.types.Input):
|
|
|
2342
2346
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('HookFilter')), graphql_name='and')
|
|
2343
2347
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2344
2348
|
endpoint = sgqlc.types.Field('StringFieldComparison', graphql_name='endpoint')
|
|
2345
|
-
environment_id = sgqlc.types.Field('
|
|
2346
|
-
id = sgqlc.types.Field('
|
|
2349
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2350
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2347
2351
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('HookFilter')), graphql_name='or')
|
|
2348
2352
|
status = sgqlc.types.Field('HookStatusFilterComparison', graphql_name='status')
|
|
2349
2353
|
|
|
@@ -2386,7 +2390,7 @@ class ImportCustomerBulkInput(sgqlc.types.Input):
|
|
|
2386
2390
|
__schema__ = schema
|
|
2387
2391
|
__field_names__ = ('customers', 'environment_id')
|
|
2388
2392
|
customers = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ImportCustomerInput'))), graphql_name='customers')
|
|
2389
|
-
environment_id = sgqlc.types.Field(
|
|
2393
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2390
2394
|
|
|
2391
2395
|
|
|
2392
2396
|
class ImportCustomerInput(sgqlc.types.Input):
|
|
@@ -2396,7 +2400,7 @@ class ImportCustomerInput(sgqlc.types.Input):
|
|
|
2396
2400
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
2397
2401
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
2398
2402
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
2399
|
-
environment_id = sgqlc.types.Field(
|
|
2403
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2400
2404
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
2401
2405
|
payment_method_id = sgqlc.types.Field(String, graphql_name='paymentMethodId')
|
|
2402
2406
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -2436,7 +2440,7 @@ class ImportIntegrationTaskFilter(sgqlc.types.Input):
|
|
|
2436
2440
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ImportIntegrationTaskFilter')), graphql_name='and')
|
|
2437
2441
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2438
2442
|
environment_id = sgqlc.types.Field('StringFieldComparison', graphql_name='environmentId')
|
|
2439
|
-
id = sgqlc.types.Field('
|
|
2443
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2440
2444
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ImportIntegrationTaskFilter')), graphql_name='or')
|
|
2441
2445
|
status = sgqlc.types.Field('TaskStatusFilterComparison', graphql_name='status')
|
|
2442
2446
|
task_type = sgqlc.types.Field('TaskTypeFilterComparison', graphql_name='taskType')
|
|
@@ -2481,7 +2485,7 @@ class InitAddStripeCustomerPaymentMethodInput(sgqlc.types.Input):
|
|
|
2481
2485
|
__schema__ = schema
|
|
2482
2486
|
__field_names__ = ('customer_ref_id', 'environment_id', 'integration_id')
|
|
2483
2487
|
customer_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerRefId')
|
|
2484
|
-
environment_id = sgqlc.types.Field(
|
|
2488
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2485
2489
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
2486
2490
|
|
|
2487
2491
|
|
|
@@ -2514,8 +2518,8 @@ class IntegrationFilter(sgqlc.types.Input):
|
|
|
2514
2518
|
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'or_', 'vendor_identifier', 'vendor_type')
|
|
2515
2519
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('IntegrationFilter')), graphql_name='and')
|
|
2516
2520
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2517
|
-
environment_id = sgqlc.types.Field('
|
|
2518
|
-
id = sgqlc.types.Field('
|
|
2521
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2522
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2519
2523
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('IntegrationFilter')), graphql_name='or')
|
|
2520
2524
|
vendor_identifier = sgqlc.types.Field('VendorIdentifierFilterComparison', graphql_name='vendorIdentifier')
|
|
2521
2525
|
vendor_type = sgqlc.types.Field('IntegrationVendorTypeFilterComparison', graphql_name='vendorType')
|
|
@@ -2550,14 +2554,14 @@ class InviteMembersInput(sgqlc.types.Input):
|
|
|
2550
2554
|
class ListAwsProductDimensionsInput(sgqlc.types.Input):
|
|
2551
2555
|
__schema__ = schema
|
|
2552
2556
|
__field_names__ = ('environment_id', 'product_id')
|
|
2553
|
-
environment_id = sgqlc.types.Field(
|
|
2557
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2554
2558
|
product_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='productId')
|
|
2555
2559
|
|
|
2556
2560
|
|
|
2557
2561
|
class ListAwsProductsInput(sgqlc.types.Input):
|
|
2558
2562
|
__schema__ = schema
|
|
2559
2563
|
__field_names__ = ('environment_id',)
|
|
2560
|
-
environment_id = sgqlc.types.Field(
|
|
2564
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2561
2565
|
|
|
2562
2566
|
|
|
2563
2567
|
class MarkInvoiceAsPaidInput(sgqlc.types.Input):
|
|
@@ -2573,7 +2577,7 @@ class MemberFilter(sgqlc.types.Input):
|
|
|
2573
2577
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MemberFilter')), graphql_name='and')
|
|
2574
2578
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2575
2579
|
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
2576
|
-
id = sgqlc.types.Field('
|
|
2580
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2577
2581
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MemberFilter')), graphql_name='or')
|
|
2578
2582
|
user = sgqlc.types.Field('MemberFilterUserFilter', graphql_name='user')
|
|
2579
2583
|
|
|
@@ -2583,7 +2587,7 @@ class MemberFilterUserFilter(sgqlc.types.Input):
|
|
|
2583
2587
|
__field_names__ = ('and_', 'email', 'id', 'name', 'or_')
|
|
2584
2588
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MemberFilterUserFilter')), graphql_name='and')
|
|
2585
2589
|
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
2586
|
-
id = sgqlc.types.Field('
|
|
2590
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2587
2591
|
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
2588
2592
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MemberFilterUserFilter')), graphql_name='or')
|
|
2589
2593
|
|
|
@@ -2710,7 +2714,7 @@ class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
|
2710
2714
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2711
2715
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
2712
2716
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
2713
|
-
feature_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
2717
|
+
feature_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='featureId')
|
|
2714
2718
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
2715
2719
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2716
2720
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
@@ -2741,8 +2745,8 @@ class PackageDTOFilter(sgqlc.types.Input):
|
|
|
2741
2745
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2742
2746
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
2743
2747
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
2744
|
-
environment_id = sgqlc.types.Field('
|
|
2745
|
-
id = sgqlc.types.Field('
|
|
2748
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2749
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2746
2750
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
2747
2751
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageDTOFilter')), graphql_name='or')
|
|
2748
2752
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
@@ -2766,9 +2770,9 @@ class PackageEntitlementFilter(sgqlc.types.Input):
|
|
|
2766
2770
|
__field_names__ = ('and_', 'created_at', 'environment_id', 'feature', 'id', 'or_', 'package', 'package_id', 'updated_at')
|
|
2767
2771
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlementFilter')), graphql_name='and')
|
|
2768
2772
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2769
|
-
environment_id = sgqlc.types.Field('
|
|
2773
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2770
2774
|
feature = sgqlc.types.Field('PackageEntitlementFilterFeatureFilter', graphql_name='feature')
|
|
2771
|
-
id = sgqlc.types.Field('
|
|
2775
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2772
2776
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlementFilter')), graphql_name='or')
|
|
2773
2777
|
package = sgqlc.types.Field('PackageEntitlementFilterPackageDTOFilter', graphql_name='package')
|
|
2774
2778
|
package_id = sgqlc.types.Field('StringFieldComparison', graphql_name='packageId')
|
|
@@ -2782,10 +2786,10 @@ class PackageEntitlementFilterFeatureFilter(sgqlc.types.Input):
|
|
|
2782
2786
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2783
2787
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
2784
2788
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
2785
|
-
environment_id = sgqlc.types.Field('
|
|
2789
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2786
2790
|
feature_status = sgqlc.types.Field(FeatureStatusFilterComparison, graphql_name='featureStatus')
|
|
2787
2791
|
feature_type = sgqlc.types.Field(FeatureTypeFilterComparison, graphql_name='featureType')
|
|
2788
|
-
id = sgqlc.types.Field('
|
|
2792
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2789
2793
|
meter_type = sgqlc.types.Field(MeterTypeFilterComparison, graphql_name='meterType')
|
|
2790
2794
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlementFilterFeatureFilter')), graphql_name='or')
|
|
2791
2795
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -2800,8 +2804,8 @@ class PackageEntitlementFilterPackageDTOFilter(sgqlc.types.Input):
|
|
|
2800
2804
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2801
2805
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
2802
2806
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
2803
|
-
environment_id = sgqlc.types.Field('
|
|
2804
|
-
id = sgqlc.types.Field('
|
|
2807
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2808
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2805
2809
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
2806
2810
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlementFilterPackageDTOFilter')), graphql_name='or')
|
|
2807
2811
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
@@ -2819,15 +2823,15 @@ class PackageEntitlementInput(sgqlc.types.Input):
|
|
|
2819
2823
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2820
2824
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
2821
2825
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
2822
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
2823
|
-
feature_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
2826
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
2827
|
+
feature_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='featureId')
|
|
2824
2828
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
2825
2829
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2826
2830
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2827
2831
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
2828
2832
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2829
2833
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2830
|
-
package_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
2834
|
+
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
2831
2835
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
2832
2836
|
usage_limit = sgqlc.types.Field(Float, graphql_name='usageLimit')
|
|
2833
2837
|
weekly_reset_period_configuration = sgqlc.types.Field('WeeklyResetPeriodConfigInput', graphql_name='weeklyResetPeriodConfiguration')
|
|
@@ -2867,7 +2871,7 @@ class PackageGroupFilter(sgqlc.types.Input):
|
|
|
2867
2871
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilter')), graphql_name='and')
|
|
2868
2872
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2869
2873
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
2870
|
-
environment_id = sgqlc.types.Field('
|
|
2874
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2871
2875
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
2872
2876
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilter')), graphql_name='or')
|
|
2873
2877
|
package_group_id = sgqlc.types.Field('StringFieldComparison', graphql_name='packageGroupId')
|
|
@@ -2887,8 +2891,8 @@ class PackageGroupFilterProductFilter(sgqlc.types.Input):
|
|
|
2887
2891
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2888
2892
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
2889
2893
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
2890
|
-
environment_id = sgqlc.types.Field('
|
|
2891
|
-
id = sgqlc.types.Field('
|
|
2894
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2895
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2892
2896
|
is_default_product = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isDefaultProduct')
|
|
2893
2897
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
2894
2898
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilterProductFilter')), graphql_name='or')
|
|
@@ -2939,7 +2943,7 @@ class PackagePricingInput(sgqlc.types.Input):
|
|
|
2939
2943
|
class PackagePublishInput(sgqlc.types.Input):
|
|
2940
2944
|
__schema__ = schema
|
|
2941
2945
|
__field_names__ = ('id', 'migration_type')
|
|
2942
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
2946
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
2943
2947
|
migration_type = sgqlc.types.Field(sgqlc.types.non_null(PublishMigrationType), graphql_name='migrationType')
|
|
2944
2948
|
|
|
2945
2949
|
|
|
@@ -3017,7 +3021,7 @@ class PlanCreateInput(sgqlc.types.Input):
|
|
|
3017
3021
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
3018
3022
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
3019
3023
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
3020
|
-
environment_id = sgqlc.types.Field(
|
|
3024
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3021
3025
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
3022
3026
|
parent_plan_id = sgqlc.types.Field(String, graphql_name='parentPlanId')
|
|
3023
3027
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
@@ -3035,8 +3039,8 @@ class PlanFilter(sgqlc.types.Input):
|
|
|
3035
3039
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3036
3040
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
3037
3041
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
3038
|
-
environment_id = sgqlc.types.Field('
|
|
3039
|
-
id = sgqlc.types.Field('
|
|
3042
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3043
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3040
3044
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3041
3045
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilter')), graphql_name='or')
|
|
3042
3046
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
@@ -3056,8 +3060,8 @@ class PlanFilterAddonFilter(sgqlc.types.Input):
|
|
|
3056
3060
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3057
3061
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
3058
3062
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
3059
|
-
environment_id = sgqlc.types.Field('
|
|
3060
|
-
id = sgqlc.types.Field('
|
|
3063
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3064
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3061
3065
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3062
3066
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterAddonFilter')), graphql_name='or')
|
|
3063
3067
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
@@ -3077,8 +3081,8 @@ class PlanFilterProductFilter(sgqlc.types.Input):
|
|
|
3077
3081
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3078
3082
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
3079
3083
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
3080
|
-
environment_id = sgqlc.types.Field('
|
|
3081
|
-
id = sgqlc.types.Field('
|
|
3084
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3085
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3082
3086
|
is_default_product = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isDefaultProduct')
|
|
3083
3087
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
3084
3088
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterProductFilter')), graphql_name='or')
|
|
@@ -3103,7 +3107,7 @@ class PlanUpdateInput(sgqlc.types.Input):
|
|
|
3103
3107
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
3104
3108
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
3105
3109
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
3106
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3110
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3107
3111
|
minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpendInput)), graphql_name='minimumSpend')
|
|
3108
3112
|
parent_plan_id = sgqlc.types.Field(String, graphql_name='parentPlanId')
|
|
3109
3113
|
status = sgqlc.types.Field(PackageStatus, graphql_name='status')
|
|
@@ -3113,7 +3117,7 @@ class PreparePaymentMethodFormInput(sgqlc.types.Input):
|
|
|
3113
3117
|
__schema__ = schema
|
|
3114
3118
|
__field_names__ = ('customer_id', 'environment_id', 'integration_id')
|
|
3115
3119
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3116
|
-
environment_id = sgqlc.types.Field(
|
|
3120
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3117
3121
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
3118
3122
|
|
|
3119
3123
|
|
|
@@ -3154,7 +3158,7 @@ class PriceFilter(sgqlc.types.Input):
|
|
|
3154
3158
|
billing_model = sgqlc.types.Field(BillingModelFilterComparison, graphql_name='billingModel')
|
|
3155
3159
|
billing_period = sgqlc.types.Field(BillingPeriodFilterComparison, graphql_name='billingPeriod')
|
|
3156
3160
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3157
|
-
id = sgqlc.types.Field('
|
|
3161
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3158
3162
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceFilter')), graphql_name='or')
|
|
3159
3163
|
package = sgqlc.types.Field('PriceFilterPackageDTOFilter', graphql_name='package')
|
|
3160
3164
|
tiers_mode = sgqlc.types.Field('TiersModeFilterComparison', graphql_name='tiersMode')
|
|
@@ -3168,8 +3172,8 @@ class PriceFilterPackageDTOFilter(sgqlc.types.Input):
|
|
|
3168
3172
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3169
3173
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
3170
3174
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
3171
|
-
environment_id = sgqlc.types.Field('
|
|
3172
|
-
id = sgqlc.types.Field('
|
|
3175
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3176
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3173
3177
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3174
3178
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceFilterPackageDTOFilter')), graphql_name='or')
|
|
3175
3179
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
@@ -3258,7 +3262,7 @@ class ProductCreateInput(sgqlc.types.Input):
|
|
|
3258
3262
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
3259
3263
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
3260
3264
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
3261
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3265
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
3262
3266
|
multiple_subscriptions = sgqlc.types.Field(Boolean, graphql_name='multipleSubscriptions')
|
|
3263
3267
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
3264
3268
|
|
|
@@ -3272,8 +3276,8 @@ class ProductFilter(sgqlc.types.Input):
|
|
|
3272
3276
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3273
3277
|
description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
|
|
3274
3278
|
display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
|
|
3275
|
-
environment_id = sgqlc.types.Field('
|
|
3276
|
-
id = sgqlc.types.Field('
|
|
3279
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3280
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3277
3281
|
is_default_product = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isDefaultProduct')
|
|
3278
3282
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
3279
3283
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProductFilter')), graphql_name='or')
|
|
@@ -3318,8 +3322,8 @@ class PromotionalEntitlementFilter(sgqlc.types.Input):
|
|
|
3318
3322
|
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'or_', 'status', 'updated_at')
|
|
3319
3323
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PromotionalEntitlementFilter')), graphql_name='and')
|
|
3320
3324
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3321
|
-
environment_id = sgqlc.types.Field('
|
|
3322
|
-
id = sgqlc.types.Field('
|
|
3325
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3326
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3323
3327
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PromotionalEntitlementFilter')), graphql_name='or')
|
|
3324
3328
|
status = sgqlc.types.Field('PromotionalEntitlementStatusFilterComparison', graphql_name='status')
|
|
3325
3329
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
@@ -3331,7 +3335,7 @@ class PromotionalEntitlementInput(sgqlc.types.Input):
|
|
|
3331
3335
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3332
3336
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
3333
3337
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
3334
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3338
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
3335
3339
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
3336
3340
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
3337
3341
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -3398,7 +3402,7 @@ class ProvisionCustomerInput(sgqlc.types.Input):
|
|
|
3398
3402
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
3399
3403
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
3400
3404
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
3401
|
-
environment_id = sgqlc.types.Field(
|
|
3405
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3402
3406
|
exclude_from_experiment = sgqlc.types.Field(Boolean, graphql_name='excludeFromExperiment')
|
|
3403
3407
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
3404
3408
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -3515,7 +3519,7 @@ class RecalculateEntitlementsInput(sgqlc.types.Input):
|
|
|
3515
3519
|
__schema__ = schema
|
|
3516
3520
|
__field_names__ = ('customer_ids', 'environment_id', 'for_all_customers', 'side_effects_options')
|
|
3517
3521
|
customer_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='customerIds')
|
|
3518
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3522
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
3519
3523
|
for_all_customers = sgqlc.types.Field(Boolean, graphql_name='forAllCustomers')
|
|
3520
3524
|
side_effects_options = sgqlc.types.Field('RecalculateEntitlementsSideEffectsOptionsInput', graphql_name='sideEffectsOptions')
|
|
3521
3525
|
|
|
@@ -3532,36 +3536,36 @@ class RecalculateEntitlementsSideEffectsOptionsInput(sgqlc.types.Input):
|
|
|
3532
3536
|
class RemoveBasePlanFromPlanInput(sgqlc.types.Input):
|
|
3533
3537
|
__schema__ = schema
|
|
3534
3538
|
__field_names__ = ('id', 'relation_id')
|
|
3535
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3536
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3539
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3540
|
+
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3537
3541
|
|
|
3538
3542
|
|
|
3539
3543
|
class RemoveCompatibleAddonsFromPlanInput(sgqlc.types.Input):
|
|
3540
3544
|
__schema__ = schema
|
|
3541
3545
|
__field_names__ = ('id', 'relation_ids')
|
|
3542
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3543
|
-
relation_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(
|
|
3546
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3547
|
+
relation_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UUID))), graphql_name='relationIds')
|
|
3544
3548
|
|
|
3545
3549
|
|
|
3546
3550
|
class RemoveCouponFromCustomerInput(sgqlc.types.Input):
|
|
3547
3551
|
__schema__ = schema
|
|
3548
3552
|
__field_names__ = ('id', 'relation_id')
|
|
3549
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3550
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3553
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3554
|
+
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3551
3555
|
|
|
3552
3556
|
|
|
3553
3557
|
class RemoveExperimentFromCustomerInput(sgqlc.types.Input):
|
|
3554
3558
|
__schema__ = schema
|
|
3555
3559
|
__field_names__ = ('id', 'relation_id')
|
|
3556
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3557
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3560
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3561
|
+
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3558
3562
|
|
|
3559
3563
|
|
|
3560
3564
|
class RemoveExperimentFromCustomerSubscriptionInput(sgqlc.types.Input):
|
|
3561
3565
|
__schema__ = schema
|
|
3562
3566
|
__field_names__ = ('id', 'relation_id')
|
|
3563
3567
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3564
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3568
|
+
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3565
3569
|
|
|
3566
3570
|
|
|
3567
3571
|
class ReportUsageBaseInput(sgqlc.types.Input):
|
|
@@ -3579,7 +3583,7 @@ class ReportUsageBaseInput(sgqlc.types.Input):
|
|
|
3579
3583
|
class ReportUsageBulkInput(sgqlc.types.Input):
|
|
3580
3584
|
__schema__ = schema
|
|
3581
3585
|
__field_names__ = ('environment_id', 'usages')
|
|
3582
|
-
environment_id = sgqlc.types.Field(
|
|
3586
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3583
3587
|
usages = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ReportUsageBaseInput))), graphql_name='usages')
|
|
3584
3588
|
|
|
3585
3589
|
|
|
@@ -3589,7 +3593,7 @@ class ReportUsageInput(sgqlc.types.Input):
|
|
|
3589
3593
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
3590
3594
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3591
3595
|
dimensions = sgqlc.types.Field(JSON, graphql_name='dimensions')
|
|
3592
|
-
environment_id = sgqlc.types.Field(
|
|
3596
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3593
3597
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
3594
3598
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
3595
3599
|
update_behavior = sgqlc.types.Field(UsageUpdateBehavior, graphql_name='updateBehavior')
|
|
@@ -3609,7 +3613,7 @@ class RevokePromotionalEntitlementInput(sgqlc.types.Input):
|
|
|
3609
3613
|
__schema__ = schema
|
|
3610
3614
|
__field_names__ = ('customer_id', 'environment_id', 'feature_id')
|
|
3611
3615
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3612
|
-
environment_id = sgqlc.types.Field(
|
|
3616
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3613
3617
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
3614
3618
|
|
|
3615
3619
|
|
|
@@ -3631,43 +3635,43 @@ class SetAccessRolesInput(sgqlc.types.Input):
|
|
|
3631
3635
|
class SetBasePlanOnPlanInput(sgqlc.types.Input):
|
|
3632
3636
|
__schema__ = schema
|
|
3633
3637
|
__field_names__ = ('id', 'relation_id')
|
|
3634
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3635
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3638
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3639
|
+
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3636
3640
|
|
|
3637
3641
|
|
|
3638
3642
|
class SetCompatibleAddonsOnPlanInput(sgqlc.types.Input):
|
|
3639
3643
|
__schema__ = schema
|
|
3640
3644
|
__field_names__ = ('id', 'relation_ids')
|
|
3641
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3642
|
-
relation_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(
|
|
3645
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3646
|
+
relation_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UUID))), graphql_name='relationIds')
|
|
3643
3647
|
|
|
3644
3648
|
|
|
3645
3649
|
class SetCouponOnCustomerInput(sgqlc.types.Input):
|
|
3646
3650
|
__schema__ = schema
|
|
3647
3651
|
__field_names__ = ('id', 'relation_id')
|
|
3648
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3649
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3652
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3653
|
+
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3650
3654
|
|
|
3651
3655
|
|
|
3652
3656
|
class SetExperimentOnCustomerInput(sgqlc.types.Input):
|
|
3653
3657
|
__schema__ = schema
|
|
3654
3658
|
__field_names__ = ('id', 'relation_id')
|
|
3655
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3656
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3659
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3660
|
+
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3657
3661
|
|
|
3658
3662
|
|
|
3659
3663
|
class SetExperimentOnCustomerSubscriptionInput(sgqlc.types.Input):
|
|
3660
3664
|
__schema__ = schema
|
|
3661
3665
|
__field_names__ = ('id', 'relation_id')
|
|
3662
3666
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
3663
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
3667
|
+
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3664
3668
|
|
|
3665
3669
|
|
|
3666
3670
|
class SetPackageGroupAddons(sgqlc.types.Input):
|
|
3667
3671
|
__schema__ = schema
|
|
3668
3672
|
__field_names__ = ('addons', 'environment_id', 'package_group_id')
|
|
3669
3673
|
addons = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))), graphql_name='addons')
|
|
3670
|
-
environment_id = sgqlc.types.Field(
|
|
3674
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3671
3675
|
package_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageGroupId')
|
|
3672
3676
|
|
|
3673
3677
|
|
|
@@ -3688,7 +3692,7 @@ class SetPlanCompatiblePackageGroupOptions(sgqlc.types.Input):
|
|
|
3688
3692
|
class SetPlanCompatiblePackageGroups(sgqlc.types.Input):
|
|
3689
3693
|
__schema__ = schema
|
|
3690
3694
|
__field_names__ = ('environment_id', 'id', 'package_groups')
|
|
3691
|
-
environment_id = sgqlc.types.Field(
|
|
3695
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3692
3696
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
3693
3697
|
package_groups = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(SetPlanCompatiblePackageGroup))), graphql_name='packageGroups')
|
|
3694
3698
|
|
|
@@ -3708,14 +3712,14 @@ class SnowflakeCredentialsInput(sgqlc.types.Input):
|
|
|
3708
3712
|
class StartExperimentInput(sgqlc.types.Input):
|
|
3709
3713
|
__schema__ = schema
|
|
3710
3714
|
__field_names__ = ('environment_id', 'ref_id')
|
|
3711
|
-
environment_id = sgqlc.types.Field(
|
|
3715
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3712
3716
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
3713
3717
|
|
|
3714
3718
|
|
|
3715
3719
|
class StopExperimentInput(sgqlc.types.Input):
|
|
3716
3720
|
__schema__ = schema
|
|
3717
3721
|
__field_names__ = ('environment_id', 'ref_id')
|
|
3718
|
-
environment_id = sgqlc.types.Field(
|
|
3722
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3719
3723
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
3720
3724
|
|
|
3721
3725
|
|
|
@@ -3775,7 +3779,7 @@ class SubscriptionAddonFilter(sgqlc.types.Input):
|
|
|
3775
3779
|
__field_names__ = ('and_', 'created_at', 'id', 'or_', 'price', 'quantity', 'subscription', 'updated_at')
|
|
3776
3780
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilter')), graphql_name='and')
|
|
3777
3781
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3778
|
-
id = sgqlc.types.Field(
|
|
3782
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3779
3783
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilter')), graphql_name='or')
|
|
3780
3784
|
price = sgqlc.types.Field('SubscriptionAddonFilterPriceFilter', graphql_name='price')
|
|
3781
3785
|
quantity = sgqlc.types.Field(NumberFieldComparison, graphql_name='quantity')
|
|
@@ -3824,7 +3828,7 @@ class SubscriptionAddonFilterPriceFilter(sgqlc.types.Input):
|
|
|
3824
3828
|
billing_model = sgqlc.types.Field(BillingModelFilterComparison, graphql_name='billingModel')
|
|
3825
3829
|
billing_period = sgqlc.types.Field(BillingPeriodFilterComparison, graphql_name='billingPeriod')
|
|
3826
3830
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3827
|
-
id = sgqlc.types.Field(
|
|
3831
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3828
3832
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilterPriceFilter')), graphql_name='or')
|
|
3829
3833
|
tiers_mode = sgqlc.types.Field('TiersModeFilterComparison', graphql_name='tiersMode')
|
|
3830
3834
|
|
|
@@ -3920,9 +3924,9 @@ class SubscriptionEntitlementFilter(sgqlc.types.Input):
|
|
|
3920
3924
|
__field_names__ = ('and_', 'created_at', 'environment_id', 'feature', 'id', 'or_', 'subscription', 'subscription_id', 'updated_at')
|
|
3921
3925
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlementFilter')), graphql_name='and')
|
|
3922
3926
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3923
|
-
environment_id = sgqlc.types.Field(
|
|
3927
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3924
3928
|
feature = sgqlc.types.Field('SubscriptionEntitlementFilterFeatureFilter', graphql_name='feature')
|
|
3925
|
-
id = sgqlc.types.Field(
|
|
3929
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3926
3930
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlementFilter')), graphql_name='or')
|
|
3927
3931
|
subscription = sgqlc.types.Field('SubscriptionEntitlementFilterCustomerSubscriptionFilter', graphql_name='subscription')
|
|
3928
3932
|
subscription_id = sgqlc.types.Field(StringFieldComparison, graphql_name='subscriptionId')
|
|
@@ -3968,10 +3972,10 @@ class SubscriptionEntitlementFilterFeatureFilter(sgqlc.types.Input):
|
|
|
3968
3972
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3969
3973
|
description = sgqlc.types.Field(StringFieldComparison, graphql_name='description')
|
|
3970
3974
|
display_name = sgqlc.types.Field(StringFieldComparison, graphql_name='displayName')
|
|
3971
|
-
environment_id = sgqlc.types.Field(
|
|
3975
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3972
3976
|
feature_status = sgqlc.types.Field(FeatureStatusFilterComparison, graphql_name='featureStatus')
|
|
3973
3977
|
feature_type = sgqlc.types.Field(FeatureTypeFilterComparison, graphql_name='featureType')
|
|
3974
|
-
id = sgqlc.types.Field(
|
|
3978
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3975
3979
|
meter_type = sgqlc.types.Field(MeterTypeFilterComparison, graphql_name='meterType')
|
|
3976
3980
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlementFilterFeatureFilter')), graphql_name='or')
|
|
3977
3981
|
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
@@ -4052,7 +4056,7 @@ class SubscriptionMigrationTaskFilter(sgqlc.types.Input):
|
|
|
4052
4056
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionMigrationTaskFilter')), graphql_name='and')
|
|
4053
4057
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4054
4058
|
environment_id = sgqlc.types.Field(StringFieldComparison, graphql_name='environmentId')
|
|
4055
|
-
id = sgqlc.types.Field(
|
|
4059
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
4056
4060
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionMigrationTaskFilter')), graphql_name='or')
|
|
4057
4061
|
status = sgqlc.types.Field('TaskStatusFilterComparison', graphql_name='status')
|
|
4058
4062
|
task_type = sgqlc.types.Field('TaskTypeFilterComparison', graphql_name='taskType')
|
|
@@ -4080,7 +4084,7 @@ class SubscriptionPriceFilter(sgqlc.types.Input):
|
|
|
4080
4084
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4081
4085
|
feature_id = sgqlc.types.Field(StringFieldComparison, graphql_name='featureId')
|
|
4082
4086
|
has_soft_limit = sgqlc.types.Field(BooleanFieldComparison, graphql_name='hasSoftLimit')
|
|
4083
|
-
id = sgqlc.types.Field(
|
|
4087
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
4084
4088
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionPriceFilter')), graphql_name='or')
|
|
4085
4089
|
price = sgqlc.types.Field('SubscriptionPriceFilterPriceFilter', graphql_name='price')
|
|
4086
4090
|
subscription = sgqlc.types.Field('SubscriptionPriceFilterCustomerSubscriptionFilter', graphql_name='subscription')
|
|
@@ -4129,7 +4133,7 @@ class SubscriptionPriceFilterPriceFilter(sgqlc.types.Input):
|
|
|
4129
4133
|
billing_model = sgqlc.types.Field(BillingModelFilterComparison, graphql_name='billingModel')
|
|
4130
4134
|
billing_period = sgqlc.types.Field(BillingPeriodFilterComparison, graphql_name='billingPeriod')
|
|
4131
4135
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4132
|
-
id = sgqlc.types.Field(
|
|
4136
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
4133
4137
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionPriceFilterPriceFilter')), graphql_name='or')
|
|
4134
4138
|
tiers_mode = sgqlc.types.Field('TiersModeFilterComparison', graphql_name='tiersMode')
|
|
4135
4139
|
|
|
@@ -4199,7 +4203,7 @@ class SubscriptionUpdateUsageResetCutoffRuleInput(sgqlc.types.Input):
|
|
|
4199
4203
|
class SyncTaxRatesInput(sgqlc.types.Input):
|
|
4200
4204
|
__schema__ = schema
|
|
4201
4205
|
__field_names__ = ('environment_id',)
|
|
4202
|
-
environment_id = sgqlc.types.Field(
|
|
4206
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4203
4207
|
|
|
4204
4208
|
|
|
4205
4209
|
class TaskStatusFilterComparison(sgqlc.types.Input):
|
|
@@ -4259,7 +4263,7 @@ class TestWorkflowInput(sgqlc.types.Input):
|
|
|
4259
4263
|
__schema__ = schema
|
|
4260
4264
|
__field_names__ = ('endpoint_url', 'environment_id', 'hook_event_type')
|
|
4261
4265
|
endpoint_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='endpointUrl')
|
|
4262
|
-
environment_id = sgqlc.types.Field(
|
|
4266
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4263
4267
|
hook_event_type = sgqlc.types.Field(sgqlc.types.non_null(EventLogType), graphql_name='hookEventType')
|
|
4264
4268
|
|
|
4265
4269
|
|
|
@@ -4294,7 +4298,7 @@ class TransferSubscriptionToResourceInput(sgqlc.types.Input):
|
|
|
4294
4298
|
__schema__ = schema
|
|
4295
4299
|
__field_names__ = ('destination_resource_id', 'environment_id', 'subscription_id')
|
|
4296
4300
|
destination_resource_id = sgqlc.types.Field(String, graphql_name='destinationResourceId')
|
|
4297
|
-
environment_id = sgqlc.types.Field(
|
|
4301
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4298
4302
|
subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
|
|
4299
4303
|
|
|
4300
4304
|
|
|
@@ -4375,14 +4379,14 @@ class UnArchiveFeatureGroupInput(sgqlc.types.Input):
|
|
|
4375
4379
|
class UnArchiveFeatureInput(sgqlc.types.Input):
|
|
4376
4380
|
__schema__ = schema
|
|
4377
4381
|
__field_names__ = ('environment_id', 'id')
|
|
4378
|
-
environment_id = sgqlc.types.Field(
|
|
4382
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4379
4383
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
4380
4384
|
|
|
4381
4385
|
|
|
4382
4386
|
class UnArchivePlanInput(sgqlc.types.Input):
|
|
4383
4387
|
__schema__ = schema
|
|
4384
4388
|
__field_names__ = ('environment_id', 'id')
|
|
4385
|
-
environment_id = sgqlc.types.Field(
|
|
4389
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4386
4390
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
4387
4391
|
|
|
4388
4392
|
|
|
@@ -4390,7 +4394,7 @@ class UnarchiveCustomerInput(sgqlc.types.Input):
|
|
|
4390
4394
|
__schema__ = schema
|
|
4391
4395
|
__field_names__ = ('customer_id', 'environment_id')
|
|
4392
4396
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
4393
|
-
environment_id = sgqlc.types.Field(
|
|
4397
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4394
4398
|
|
|
4395
4399
|
|
|
4396
4400
|
class UnarchiveEnvironmentInput(sgqlc.types.Input):
|
|
@@ -4426,7 +4430,7 @@ class UpdateCouponInput(sgqlc.types.Input):
|
|
|
4426
4430
|
__field_names__ = ('additional_meta_data', 'description', 'environment_id', 'name', 'ref_id')
|
|
4427
4431
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4428
4432
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4429
|
-
environment_id = sgqlc.types.Field(
|
|
4433
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4430
4434
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
4431
4435
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
4432
4436
|
|
|
@@ -4442,7 +4446,7 @@ class UpdateCustomerInput(sgqlc.types.Input):
|
|
|
4442
4446
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
4443
4447
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
4444
4448
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
4445
|
-
environment_id = sgqlc.types.Field(
|
|
4449
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4446
4450
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
4447
4451
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
4448
4452
|
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
@@ -4454,7 +4458,7 @@ class UpdateExperimentInput(sgqlc.types.Input):
|
|
|
4454
4458
|
__field_names__ = ('control_group_name', 'description', 'environment_id', 'name', 'product_id', 'product_settings', 'ref_id', 'variant_group_name', 'variant_percentage')
|
|
4455
4459
|
control_group_name = sgqlc.types.Field(String, graphql_name='controlGroupName')
|
|
4456
4460
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4457
|
-
environment_id = sgqlc.types.Field(
|
|
4461
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4458
4462
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
4459
4463
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
4460
4464
|
product_settings = sgqlc.types.Field(ProductSettingsInput, graphql_name='productSettings')
|
|
@@ -4470,7 +4474,7 @@ class UpdateFeatureInput(sgqlc.types.Input):
|
|
|
4470
4474
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4471
4475
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
4472
4476
|
enum_configuration = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EnumConfigurationEntityInput)), graphql_name='enumConfiguration')
|
|
4473
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4477
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
4474
4478
|
feature_units = sgqlc.types.Field(String, graphql_name='featureUnits')
|
|
4475
4479
|
feature_units_plural = sgqlc.types.Field(String, graphql_name='featureUnitsPlural')
|
|
4476
4480
|
meter = sgqlc.types.Field(CreateMeter, graphql_name='meter')
|
|
@@ -4485,9 +4489,9 @@ class UpdateHook(sgqlc.types.Input):
|
|
|
4485
4489
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
4486
4490
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4487
4491
|
endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
|
|
4488
|
-
environment_id = sgqlc.types.Field(
|
|
4492
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4489
4493
|
event_log_types = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EventLogType)), graphql_name='eventLogTypes')
|
|
4490
|
-
id = sgqlc.types.Field(
|
|
4494
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
4491
4495
|
secret_key = sgqlc.types.Field(String, graphql_name='secretKey')
|
|
4492
4496
|
status = sgqlc.types.Field(HookStatus, graphql_name='status')
|
|
4493
4497
|
|
|
@@ -4508,42 +4512,42 @@ class UpdateIntegrationInput(sgqlc.types.Input):
|
|
|
4508
4512
|
class UpdateOneEnvironmentInput(sgqlc.types.Input):
|
|
4509
4513
|
__schema__ = schema
|
|
4510
4514
|
__field_names__ = ('id', 'update')
|
|
4511
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4515
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4512
4516
|
update = sgqlc.types.Field(sgqlc.types.non_null(EnvironmentInput), graphql_name='update')
|
|
4513
4517
|
|
|
4514
4518
|
|
|
4515
4519
|
class UpdateOneHookInput(sgqlc.types.Input):
|
|
4516
4520
|
__schema__ = schema
|
|
4517
4521
|
__field_names__ = ('id', 'update')
|
|
4518
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4522
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4519
4523
|
update = sgqlc.types.Field(sgqlc.types.non_null(UpdateHook), graphql_name='update')
|
|
4520
4524
|
|
|
4521
4525
|
|
|
4522
4526
|
class UpdateOneIntegrationInput(sgqlc.types.Input):
|
|
4523
4527
|
__schema__ = schema
|
|
4524
4528
|
__field_names__ = ('id', 'update')
|
|
4525
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4529
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4526
4530
|
update = sgqlc.types.Field(sgqlc.types.non_null(UpdateIntegrationInput), graphql_name='update')
|
|
4527
4531
|
|
|
4528
4532
|
|
|
4529
4533
|
class UpdateOnePackageEntitlementInput(sgqlc.types.Input):
|
|
4530
4534
|
__schema__ = schema
|
|
4531
4535
|
__field_names__ = ('id', 'update')
|
|
4532
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4536
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4533
4537
|
update = sgqlc.types.Field(sgqlc.types.non_null(PackageEntitlementUpdateInput), graphql_name='update')
|
|
4534
4538
|
|
|
4535
4539
|
|
|
4536
4540
|
class UpdateOneProductInput(sgqlc.types.Input):
|
|
4537
4541
|
__schema__ = schema
|
|
4538
4542
|
__field_names__ = ('id', 'update')
|
|
4539
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4543
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4540
4544
|
update = sgqlc.types.Field(sgqlc.types.non_null(ProductUpdateInput), graphql_name='update')
|
|
4541
4545
|
|
|
4542
4546
|
|
|
4543
4547
|
class UpdateOnePromotionalEntitlementInput(sgqlc.types.Input):
|
|
4544
4548
|
__schema__ = schema
|
|
4545
4549
|
__field_names__ = ('id', 'update')
|
|
4546
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4550
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4547
4551
|
update = sgqlc.types.Field(sgqlc.types.non_null(PromotionalEntitlementUpdateInput), graphql_name='update')
|
|
4548
4552
|
|
|
4549
4553
|
|
|
@@ -4551,14 +4555,14 @@ class UpdatePackageEntitlementOrderInput(sgqlc.types.Input):
|
|
|
4551
4555
|
__schema__ = schema
|
|
4552
4556
|
__field_names__ = ('entitlements', 'environment_id', 'package_id')
|
|
4553
4557
|
entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UpdatePackageEntitlementOrderItemInput'))), graphql_name='entitlements')
|
|
4554
|
-
environment_id = sgqlc.types.Field(
|
|
4558
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4555
4559
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageId')
|
|
4556
4560
|
|
|
4557
4561
|
|
|
4558
4562
|
class UpdatePackageEntitlementOrderItemInput(sgqlc.types.Input):
|
|
4559
4563
|
__schema__ = schema
|
|
4560
4564
|
__field_names__ = ('id', 'order')
|
|
4561
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4565
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4562
4566
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
4563
4567
|
|
|
4564
4568
|
|
|
@@ -4627,14 +4631,14 @@ class UsageEventsInput(sgqlc.types.Input):
|
|
|
4627
4631
|
__schema__ = schema
|
|
4628
4632
|
__field_names__ = ('customer_id', 'environment_id', 'filters')
|
|
4629
4633
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
4630
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4634
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
4631
4635
|
filters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MeterFilterDefinitionInput)), graphql_name='filters')
|
|
4632
4636
|
|
|
4633
4637
|
|
|
4634
4638
|
class UsageEventsReportInput(sgqlc.types.Input):
|
|
4635
4639
|
__schema__ = schema
|
|
4636
4640
|
__field_names__ = ('environment_id', 'usage_events')
|
|
4637
|
-
environment_id = sgqlc.types.Field(
|
|
4641
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4638
4642
|
usage_events = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UsageEventReportInput))), graphql_name='usageEvents')
|
|
4639
4643
|
|
|
4640
4644
|
|
|
@@ -4643,7 +4647,7 @@ class UsageHistoryInput(sgqlc.types.Input):
|
|
|
4643
4647
|
__field_names__ = ('customer_ref_id', 'end_date', 'environment_id', 'feature_ref_id', 'group_by', 'monthly_reset_period_configuration', 'reset_period', 'resource_ref_id', 'start_date', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
4644
4648
|
customer_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerRefId')
|
|
4645
4649
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
4646
|
-
environment_id = sgqlc.types.Field(
|
|
4650
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4647
4651
|
feature_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureRefId')
|
|
4648
4652
|
group_by = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='groupBy')
|
|
4649
4653
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
@@ -4659,7 +4663,7 @@ class UsageHistoryV2Input(sgqlc.types.Input):
|
|
|
4659
4663
|
__field_names__ = ('customer_id', 'end_date', 'environment_id', 'feature_id', 'group_by', 'resource_id', 'start_date')
|
|
4660
4664
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
4661
4665
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
4662
|
-
environment_id = sgqlc.types.Field(
|
|
4666
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4663
4667
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
4664
4668
|
group_by = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='groupBy')
|
|
4665
4669
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
@@ -4672,7 +4676,7 @@ class UsageMeasurementCreateInput(sgqlc.types.Input):
|
|
|
4672
4676
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
4673
4677
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
4674
4678
|
dimensions = sgqlc.types.Field(JSON, graphql_name='dimensions')
|
|
4675
|
-
environment_id = sgqlc.types.Field(
|
|
4679
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4676
4680
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
4677
4681
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
4678
4682
|
update_behavior = sgqlc.types.Field(UsageUpdateBehavior, graphql_name='updateBehavior')
|
|
@@ -4685,9 +4689,9 @@ class UsageMeasurementFilter(sgqlc.types.Input):
|
|
|
4685
4689
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UsageMeasurementFilter')), graphql_name='and')
|
|
4686
4690
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4687
4691
|
customer = sgqlc.types.Field('UsageMeasurementFilterCustomerFilter', graphql_name='customer')
|
|
4688
|
-
environment_id = sgqlc.types.Field(
|
|
4692
|
+
environment_id = sgqlc.types.Field(UUIDFilterComparison, graphql_name='environmentId')
|
|
4689
4693
|
feature = sgqlc.types.Field('UsageMeasurementFilterFeatureFilter', graphql_name='feature')
|
|
4690
|
-
id = sgqlc.types.Field(
|
|
4694
|
+
id = sgqlc.types.Field(UUIDFilterComparison, graphql_name='id')
|
|
4691
4695
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UsageMeasurementFilter')), graphql_name='or')
|
|
4692
4696
|
|
|
4693
4697
|
|
|
@@ -4703,8 +4707,8 @@ class UsageMeasurementFilterCustomerFilter(sgqlc.types.Input):
|
|
|
4703
4707
|
customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
|
|
4704
4708
|
deleted_at = sgqlc.types.Field(DateFieldComparison, graphql_name='deletedAt')
|
|
4705
4709
|
email = sgqlc.types.Field(StringFieldComparison, graphql_name='email')
|
|
4706
|
-
environment_id = sgqlc.types.Field(
|
|
4707
|
-
id = sgqlc.types.Field(
|
|
4710
|
+
environment_id = sgqlc.types.Field(UUIDFilterComparison, graphql_name='environmentId')
|
|
4711
|
+
id = sgqlc.types.Field(UUIDFilterComparison, graphql_name='id')
|
|
4708
4712
|
name = sgqlc.types.Field(StringFieldComparison, graphql_name='name')
|
|
4709
4713
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UsageMeasurementFilterCustomerFilter')), graphql_name='or')
|
|
4710
4714
|
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
@@ -4720,10 +4724,10 @@ class UsageMeasurementFilterFeatureFilter(sgqlc.types.Input):
|
|
|
4720
4724
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4721
4725
|
description = sgqlc.types.Field(StringFieldComparison, graphql_name='description')
|
|
4722
4726
|
display_name = sgqlc.types.Field(StringFieldComparison, graphql_name='displayName')
|
|
4723
|
-
environment_id = sgqlc.types.Field(
|
|
4727
|
+
environment_id = sgqlc.types.Field(UUIDFilterComparison, graphql_name='environmentId')
|
|
4724
4728
|
feature_status = sgqlc.types.Field(FeatureStatusFilterComparison, graphql_name='featureStatus')
|
|
4725
4729
|
feature_type = sgqlc.types.Field(FeatureTypeFilterComparison, graphql_name='featureType')
|
|
4726
|
-
id = sgqlc.types.Field(
|
|
4730
|
+
id = sgqlc.types.Field(UUIDFilterComparison, graphql_name='id')
|
|
4727
4731
|
meter_type = sgqlc.types.Field(MeterTypeFilterComparison, graphql_name='meterType')
|
|
4728
4732
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UsageMeasurementFilterFeatureFilter')), graphql_name='or')
|
|
4729
4733
|
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
@@ -4776,14 +4780,14 @@ class WidgetConfigurationUpdateInput(sgqlc.types.Input):
|
|
|
4776
4780
|
__field_names__ = ('checkout_configuration', 'customer_portal_configuration', 'environment_id', 'paywall_configuration')
|
|
4777
4781
|
checkout_configuration = sgqlc.types.Field(CheckoutConfigurationInput, graphql_name='checkoutConfiguration')
|
|
4778
4782
|
customer_portal_configuration = sgqlc.types.Field(CustomerPortalConfigurationInput, graphql_name='customerPortalConfiguration')
|
|
4779
|
-
environment_id = sgqlc.types.Field(
|
|
4783
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4780
4784
|
paywall_configuration = sgqlc.types.Field(PaywallConfigurationInput, graphql_name='paywallConfiguration')
|
|
4781
4785
|
|
|
4782
4786
|
|
|
4783
4787
|
class WorkflowsLoginInput(sgqlc.types.Input):
|
|
4784
4788
|
__schema__ = schema
|
|
4785
4789
|
__field_names__ = ('environment_id',)
|
|
4786
|
-
environment_id = sgqlc.types.Field(
|
|
4790
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4787
4791
|
|
|
4788
4792
|
|
|
4789
4793
|
class YearlyResetPeriodConfigInput(sgqlc.types.Input):
|
|
@@ -4824,7 +4828,7 @@ class Account(sgqlc.types.Type):
|
|
|
4824
4828
|
account_status = sgqlc.types.Field(AccountStatus, graphql_name='accountStatus')
|
|
4825
4829
|
default_ssoroles = sgqlc.types.Field(AccessRoles, graphql_name='defaultSSORoles')
|
|
4826
4830
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
4827
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4831
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4828
4832
|
saml_enabled = sgqlc.types.Field(Boolean, graphql_name='samlEnabled')
|
|
4829
4833
|
subscription_billing_anchor = sgqlc.types.Field(BillingAnchor, graphql_name='subscriptionBillingAnchor')
|
|
4830
4834
|
subscription_proration_behavior = sgqlc.types.Field(ProrationBehavior, graphql_name='subscriptionProrationBehavior')
|
|
@@ -4860,10 +4864,10 @@ class Addon(sgqlc.types.Type):
|
|
|
4860
4864
|
draft_summary = sgqlc.types.Field('PackageDraftSummary', graphql_name='draftSummary')
|
|
4861
4865
|
entitlements = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlement')), graphql_name='entitlements')
|
|
4862
4866
|
environment = sgqlc.types.Field(sgqlc.types.non_null('Environment'), graphql_name='environment')
|
|
4863
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4867
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
4864
4868
|
has_subscriptions = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasSubscriptions')
|
|
4865
4869
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
4866
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
4870
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4867
4871
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
4868
4872
|
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
4869
4873
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
@@ -4891,8 +4895,8 @@ class AddonAggregateGroupBy(sgqlc.types.Type):
|
|
|
4891
4895
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
4892
4896
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4893
4897
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
4894
|
-
environment_id = sgqlc.types.Field(
|
|
4895
|
-
id = sgqlc.types.Field(
|
|
4898
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4899
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
4896
4900
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
4897
4901
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
4898
4902
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
@@ -4986,8 +4990,8 @@ class AddonMaxAggregate(sgqlc.types.Type):
|
|
|
4986
4990
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
4987
4991
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4988
4992
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
4989
|
-
environment_id = sgqlc.types.Field(
|
|
4990
|
-
id = sgqlc.types.Field(
|
|
4993
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4994
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
4991
4995
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
4992
4996
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
4993
4997
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -5003,8 +5007,8 @@ class AddonMinAggregate(sgqlc.types.Type):
|
|
|
5003
5007
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5004
5008
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5005
5009
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
5006
|
-
environment_id = sgqlc.types.Field(
|
|
5007
|
-
id = sgqlc.types.Field(
|
|
5010
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5011
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5008
5012
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
5009
5013
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
5010
5014
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -5042,7 +5046,7 @@ class Aggregation(sgqlc.types.Type):
|
|
|
5042
5046
|
class ApiKey(sgqlc.types.Type):
|
|
5043
5047
|
__schema__ = schema
|
|
5044
5048
|
__field_names__ = ('id', 'key_type', 'token')
|
|
5045
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
5049
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
5046
5050
|
key_type = sgqlc.types.Field(sgqlc.types.non_null(ApiKeyType), graphql_name='keyType')
|
|
5047
5051
|
token = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='token')
|
|
5048
5052
|
|
|
@@ -5273,8 +5277,8 @@ class Coupon(sgqlc.types.Type):
|
|
|
5273
5277
|
discount_value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='discountValue')
|
|
5274
5278
|
duration_in_months = sgqlc.types.Field(Float, graphql_name='durationInMonths')
|
|
5275
5279
|
environment = sgqlc.types.Field('Environment', graphql_name='environment')
|
|
5276
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
5277
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
5280
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
5281
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
5278
5282
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
5279
5283
|
percent_off = sgqlc.types.Field(Float, graphql_name='percentOff')
|
|
5280
5284
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
@@ -5291,8 +5295,8 @@ class CouponAggregateGroupBy(sgqlc.types.Type):
|
|
|
5291
5295
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5292
5296
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5293
5297
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5294
|
-
environment_id = sgqlc.types.Field(
|
|
5295
|
-
id = sgqlc.types.Field(
|
|
5298
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5299
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5296
5300
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5297
5301
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
5298
5302
|
source = sgqlc.types.Field(CouponSource, graphql_name='source')
|
|
@@ -5344,8 +5348,8 @@ class CouponMaxAggregate(sgqlc.types.Type):
|
|
|
5344
5348
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5345
5349
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5346
5350
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5347
|
-
environment_id = sgqlc.types.Field(
|
|
5348
|
-
id = sgqlc.types.Field(
|
|
5351
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5352
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5349
5353
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5350
5354
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
5351
5355
|
source = sgqlc.types.Field(CouponSource, graphql_name='source')
|
|
@@ -5360,8 +5364,8 @@ class CouponMinAggregate(sgqlc.types.Type):
|
|
|
5360
5364
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5361
5365
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5362
5366
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5363
|
-
environment_id = sgqlc.types.Field(
|
|
5364
|
-
id = sgqlc.types.Field(
|
|
5367
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5368
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5365
5369
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5366
5370
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
5367
5371
|
source = sgqlc.types.Field(CouponSource, graphql_name='source')
|
|
@@ -5393,14 +5397,14 @@ class Customer(sgqlc.types.Type):
|
|
|
5393
5397
|
eligible_for_trial = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EligibleForTrial')), graphql_name='eligibleForTrial')
|
|
5394
5398
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
5395
5399
|
environment = sgqlc.types.Field('Environment', graphql_name='environment')
|
|
5396
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
5400
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
5397
5401
|
exclude_from_experiment = sgqlc.types.Field(Boolean, graphql_name='excludeFromExperiment')
|
|
5398
5402
|
experiment = sgqlc.types.Field('Experiment', graphql_name='experiment')
|
|
5399
5403
|
experiment_info = sgqlc.types.Field('experimentInfo', graphql_name='experimentInfo')
|
|
5400
5404
|
has_active_resource = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasActiveResource')
|
|
5401
5405
|
has_active_subscription = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasActiveSubscription')
|
|
5402
5406
|
has_payment_method = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasPaymentMethod')
|
|
5403
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
5407
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
5404
5408
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5405
5409
|
promotional_entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PromotionalEntitlement'))), graphql_name='promotionalEntitlements', args=sgqlc.types.ArgDict((
|
|
5406
5410
|
('filter', sgqlc.types.Arg(PromotionalEntitlementFilter, graphql_name='filter', default={})),
|
|
@@ -5433,8 +5437,8 @@ class CustomerAggregateGroupBy(sgqlc.types.Type):
|
|
|
5433
5437
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
5434
5438
|
deleted_at = sgqlc.types.Field(DateTime, graphql_name='deletedAt')
|
|
5435
5439
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
5436
|
-
environment_id = sgqlc.types.Field(
|
|
5437
|
-
id = sgqlc.types.Field(
|
|
5440
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5441
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5438
5442
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5439
5443
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
5440
5444
|
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
@@ -5495,8 +5499,8 @@ class CustomerMaxAggregate(sgqlc.types.Type):
|
|
|
5495
5499
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
5496
5500
|
deleted_at = sgqlc.types.Field(DateTime, graphql_name='deletedAt')
|
|
5497
5501
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
5498
|
-
environment_id = sgqlc.types.Field(
|
|
5499
|
-
id = sgqlc.types.Field(
|
|
5502
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5503
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5500
5504
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5501
5505
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
5502
5506
|
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
@@ -5515,8 +5519,8 @@ class CustomerMinAggregate(sgqlc.types.Type):
|
|
|
5515
5519
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
5516
5520
|
deleted_at = sgqlc.types.Field(DateTime, graphql_name='deletedAt')
|
|
5517
5521
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
5518
|
-
environment_id = sgqlc.types.Field(
|
|
5519
|
-
id = sgqlc.types.Field(
|
|
5522
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5523
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5520
5524
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5521
5525
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
5522
5526
|
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
@@ -5603,7 +5607,7 @@ class CustomerPortalPricingFeature(sgqlc.types.Type):
|
|
|
5603
5607
|
feature_type = sgqlc.types.Field(sgqlc.types.non_null(FeatureType), graphql_name='featureType')
|
|
5604
5608
|
feature_units = sgqlc.types.Field(String, graphql_name='featureUnits')
|
|
5605
5609
|
feature_units_plural = sgqlc.types.Field(String, graphql_name='featureUnitsPlural')
|
|
5606
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
5610
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
5607
5611
|
meter_type = sgqlc.types.Field(MeterType, graphql_name='meterType')
|
|
5608
5612
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
5609
5613
|
|
|
@@ -5666,7 +5670,7 @@ class CustomerResource(sgqlc.types.Type):
|
|
|
5666
5670
|
__field_names__ = ('created_at', 'customer', 'environment_id', 'resource_id', 'subscriptions')
|
|
5667
5671
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
5668
5672
|
customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='customer')
|
|
5669
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
5673
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
5670
5674
|
resource_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='resourceId')
|
|
5671
5675
|
subscriptions = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscription'))), graphql_name='subscriptions', args=sgqlc.types.ArgDict((
|
|
5672
5676
|
('filter', sgqlc.types.Arg(CustomerSubscriptionFilter, graphql_name='filter', default={'status': {'in': ['ACTIVE', 'IN_TRIAL']}})),
|
|
@@ -5679,7 +5683,7 @@ class CustomerResourceAggregateGroupBy(sgqlc.types.Type):
|
|
|
5679
5683
|
__schema__ = schema
|
|
5680
5684
|
__field_names__ = ('created_at', 'environment_id', 'resource_id')
|
|
5681
5685
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5682
|
-
environment_id = sgqlc.types.Field(
|
|
5686
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5683
5687
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
5684
5688
|
|
|
5685
5689
|
|
|
@@ -5710,7 +5714,7 @@ class CustomerResourceMaxAggregate(sgqlc.types.Type):
|
|
|
5710
5714
|
__schema__ = schema
|
|
5711
5715
|
__field_names__ = ('created_at', 'environment_id', 'resource_id')
|
|
5712
5716
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5713
|
-
environment_id = sgqlc.types.Field(
|
|
5717
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5714
5718
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
5715
5719
|
|
|
5716
5720
|
|
|
@@ -5718,7 +5722,7 @@ class CustomerResourceMinAggregate(sgqlc.types.Type):
|
|
|
5718
5722
|
__schema__ = schema
|
|
5719
5723
|
__field_names__ = ('created_at', 'environment_id', 'resource_id')
|
|
5720
5724
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5721
|
-
environment_id = sgqlc.types.Field(
|
|
5725
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5722
5726
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
5723
5727
|
|
|
5724
5728
|
|
|
@@ -6011,7 +6015,7 @@ class EligibleForTrial(sgqlc.types.Type):
|
|
|
6011
6015
|
|
|
6012
6016
|
class Entitlement(sgqlc.types.Type):
|
|
6013
6017
|
__schema__ = schema
|
|
6014
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'reset_period', 'reset_period_configuration', 'resource_id', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
6018
|
+
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'reset_period_configuration', 'resource_id', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
6015
6019
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
6016
6020
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
6017
6021
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
@@ -6026,6 +6030,7 @@ class Entitlement(sgqlc.types.Type):
|
|
|
6026
6030
|
meter_id = sgqlc.types.Field(String, graphql_name='meterId')
|
|
6027
6031
|
next_reset_date = sgqlc.types.Field(DateTime, graphql_name='nextResetDate')
|
|
6028
6032
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
6033
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
6029
6034
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
6030
6035
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
6031
6036
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
@@ -6047,7 +6052,7 @@ class EntitlementFeature(sgqlc.types.Type):
|
|
|
6047
6052
|
feature_type = sgqlc.types.Field(sgqlc.types.non_null(FeatureType), graphql_name='featureType')
|
|
6048
6053
|
feature_units = sgqlc.types.Field(String, graphql_name='featureUnits')
|
|
6049
6054
|
feature_units_plural = sgqlc.types.Field(String, graphql_name='featureUnitsPlural')
|
|
6050
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6055
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
6051
6056
|
meter_type = sgqlc.types.Field(MeterType, graphql_name='meterType')
|
|
6052
6057
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
6053
6058
|
unit_transformation = sgqlc.types.Field('UnitTransformation', graphql_name='unitTransformation')
|
|
@@ -6075,7 +6080,7 @@ class EntitlementSummary(sgqlc.types.Type):
|
|
|
6075
6080
|
|
|
6076
6081
|
class EntitlementWithSummary(sgqlc.types.Type):
|
|
6077
6082
|
__schema__ = schema
|
|
6078
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'reset_period', 'reset_period_configuration', 'resource_id', 'summaries', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
6083
|
+
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'reset_period_configuration', 'resource_id', 'summaries', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
6079
6084
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
6080
6085
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
6081
6086
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
@@ -6090,6 +6095,7 @@ class EntitlementWithSummary(sgqlc.types.Type):
|
|
|
6090
6095
|
meter_id = sgqlc.types.Field(String, graphql_name='meterId')
|
|
6091
6096
|
next_reset_date = sgqlc.types.Field(DateTime, graphql_name='nextResetDate')
|
|
6092
6097
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
6098
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
6093
6099
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
6094
6100
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
6095
6101
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
@@ -6107,7 +6113,7 @@ class EntitlementsUpdated(sgqlc.types.Type):
|
|
|
6107
6113
|
account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountId')
|
|
6108
6114
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
6109
6115
|
entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Entitlement))), graphql_name='entitlements')
|
|
6110
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6116
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
6111
6117
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
6112
6118
|
|
|
6113
6119
|
|
|
@@ -6133,7 +6139,7 @@ class Environment(sgqlc.types.Type):
|
|
|
6133
6139
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
6134
6140
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
6135
6141
|
harden_client_access_enabled = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hardenClientAccessEnabled')
|
|
6136
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6142
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
6137
6143
|
is_sandbox = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isSandbox')
|
|
6138
6144
|
permanent_deletion_date = sgqlc.types.Field(DateTime, graphql_name='permanentDeletionDate')
|
|
6139
6145
|
provision_status = sgqlc.types.Field(EnvironmentProvisionStatus, graphql_name='provisionStatus')
|
|
@@ -6147,7 +6153,7 @@ class EnvironmentAggregateGroupBy(sgqlc.types.Type):
|
|
|
6147
6153
|
__field_names__ = ('created_at', 'display_name', 'id', 'permanent_deletion_date', 'slug')
|
|
6148
6154
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6149
6155
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
6150
|
-
id = sgqlc.types.Field(
|
|
6156
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6151
6157
|
permanent_deletion_date = sgqlc.types.Field(DateTime, graphql_name='permanentDeletionDate')
|
|
6152
6158
|
slug = sgqlc.types.Field(String, graphql_name='slug')
|
|
6153
6159
|
|
|
@@ -6181,7 +6187,7 @@ class EnvironmentMaxAggregate(sgqlc.types.Type):
|
|
|
6181
6187
|
__field_names__ = ('created_at', 'display_name', 'id', 'permanent_deletion_date', 'slug')
|
|
6182
6188
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6183
6189
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
6184
|
-
id = sgqlc.types.Field(
|
|
6190
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6185
6191
|
permanent_deletion_date = sgqlc.types.Field(DateTime, graphql_name='permanentDeletionDate')
|
|
6186
6192
|
slug = sgqlc.types.Field(String, graphql_name='slug')
|
|
6187
6193
|
|
|
@@ -6191,7 +6197,7 @@ class EnvironmentMinAggregate(sgqlc.types.Type):
|
|
|
6191
6197
|
__field_names__ = ('created_at', 'display_name', 'id', 'permanent_deletion_date', 'slug')
|
|
6192
6198
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6193
6199
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
6194
|
-
id = sgqlc.types.Field(
|
|
6200
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6195
6201
|
permanent_deletion_date = sgqlc.types.Field(DateTime, graphql_name='permanentDeletionDate')
|
|
6196
6202
|
slug = sgqlc.types.Field(String, graphql_name='slug')
|
|
6197
6203
|
|
|
@@ -6224,7 +6230,7 @@ class EventLog(sgqlc.types.Type):
|
|
|
6224
6230
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
6225
6231
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
6226
6232
|
entity_type = sgqlc.types.Field(EventEntityType, graphql_name='entityType')
|
|
6227
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6233
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
6228
6234
|
event_log_type = sgqlc.types.Field(sgqlc.types.non_null(EventLogType), graphql_name='eventLogType')
|
|
6229
6235
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
6230
6236
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
@@ -6238,7 +6244,7 @@ class EventLogAggregateGroupBy(sgqlc.types.Type):
|
|
|
6238
6244
|
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
6239
6245
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6240
6246
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
6241
|
-
environment_id = sgqlc.types.Field(
|
|
6247
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6242
6248
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6243
6249
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6244
6250
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
@@ -6274,7 +6280,7 @@ class EventLogMaxAggregate(sgqlc.types.Type):
|
|
|
6274
6280
|
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
6275
6281
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6276
6282
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
6277
|
-
environment_id = sgqlc.types.Field(
|
|
6283
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6278
6284
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6279
6285
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6280
6286
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
@@ -6285,7 +6291,7 @@ class EventLogMinAggregate(sgqlc.types.Type):
|
|
|
6285
6291
|
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
6286
6292
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6287
6293
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
6288
|
-
environment_id = sgqlc.types.Field(
|
|
6294
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6289
6295
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6290
6296
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6291
6297
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
@@ -6320,8 +6326,8 @@ class Experiment(sgqlc.types.Type):
|
|
|
6320
6326
|
customers = sgqlc.types.Field(Customer, graphql_name='customers')
|
|
6321
6327
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
6322
6328
|
environment = sgqlc.types.Field(Environment, graphql_name='environment')
|
|
6323
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6324
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6329
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
6330
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
6325
6331
|
initial_product_settings = sgqlc.types.Field('ProductSettings', graphql_name='initialProductSettings')
|
|
6326
6332
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
6327
6333
|
product = sgqlc.types.Field('Product', graphql_name='product')
|
|
@@ -6340,20 +6346,14 @@ class ExperimentAggregateGroupBy(sgqlc.types.Type):
|
|
|
6340
6346
|
__schema__ = schema
|
|
6341
6347
|
__field_names__ = ('created_at', 'environment_id', 'id', 'name', 'product_id', 'ref_id', 'status')
|
|
6342
6348
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6343
|
-
environment_id = sgqlc.types.Field(
|
|
6344
|
-
id = sgqlc.types.Field(
|
|
6349
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6350
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6345
6351
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
6346
6352
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
6347
6353
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
6348
6354
|
status = sgqlc.types.Field(ExperimentStatus, graphql_name='status')
|
|
6349
6355
|
|
|
6350
6356
|
|
|
6351
|
-
class ExperimentAvgAggregate(sgqlc.types.Type):
|
|
6352
|
-
__schema__ = schema
|
|
6353
|
-
__field_names__ = ('id',)
|
|
6354
|
-
id = sgqlc.types.Field(Float, graphql_name='id')
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
6357
|
class ExperimentConnection(sgqlc.types.relay.Connection):
|
|
6358
6358
|
__schema__ = schema
|
|
6359
6359
|
__field_names__ = ('edges', 'page_info', 'total_count')
|
|
@@ -6385,8 +6385,8 @@ class ExperimentMaxAggregate(sgqlc.types.Type):
|
|
|
6385
6385
|
__schema__ = schema
|
|
6386
6386
|
__field_names__ = ('created_at', 'environment_id', 'id', 'name', 'product_id', 'ref_id', 'status')
|
|
6387
6387
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6388
|
-
environment_id = sgqlc.types.Field(
|
|
6389
|
-
id = sgqlc.types.Field(
|
|
6388
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6389
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6390
6390
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
6391
6391
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
6392
6392
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -6397,8 +6397,8 @@ class ExperimentMinAggregate(sgqlc.types.Type):
|
|
|
6397
6397
|
__schema__ = schema
|
|
6398
6398
|
__field_names__ = ('created_at', 'environment_id', 'id', 'name', 'product_id', 'ref_id', 'status')
|
|
6399
6399
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6400
|
-
environment_id = sgqlc.types.Field(
|
|
6401
|
-
id = sgqlc.types.Field(
|
|
6400
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6401
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6402
6402
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
6403
6403
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
6404
6404
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -6414,12 +6414,6 @@ class ExperimentStats(sgqlc.types.Type):
|
|
|
6414
6414
|
variant_subscriptions = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='variantSubscriptions')
|
|
6415
6415
|
|
|
6416
6416
|
|
|
6417
|
-
class ExperimentSumAggregate(sgqlc.types.Type):
|
|
6418
|
-
__schema__ = schema
|
|
6419
|
-
__field_names__ = ('id',)
|
|
6420
|
-
id = sgqlc.types.Field(Float, graphql_name='id')
|
|
6421
|
-
|
|
6422
|
-
|
|
6423
6417
|
class FailedToImportCustomerError(sgqlc.types.Type):
|
|
6424
6418
|
__schema__ = schema
|
|
6425
6419
|
__field_names__ = ('billing_id', 'code', 'failed_billing_ids', 'failed_customer_ids', 'is_validation_error')
|
|
@@ -6440,14 +6434,14 @@ class Feature(sgqlc.types.Type):
|
|
|
6440
6434
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
6441
6435
|
enum_configuration = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EnumConfigurationEntity)), graphql_name='enumConfiguration')
|
|
6442
6436
|
environment = sgqlc.types.Field(Environment, graphql_name='environment')
|
|
6443
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6437
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
6444
6438
|
feature_status = sgqlc.types.Field(sgqlc.types.non_null(FeatureStatus), graphql_name='featureStatus')
|
|
6445
6439
|
feature_type = sgqlc.types.Field(sgqlc.types.non_null(FeatureType), graphql_name='featureType')
|
|
6446
6440
|
feature_units = sgqlc.types.Field(String, graphql_name='featureUnits')
|
|
6447
6441
|
feature_units_plural = sgqlc.types.Field(String, graphql_name='featureUnitsPlural')
|
|
6448
6442
|
has_entitlements = sgqlc.types.Field(Boolean, graphql_name='hasEntitlements')
|
|
6449
6443
|
has_meter = sgqlc.types.Field(Boolean, graphql_name='hasMeter')
|
|
6450
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6444
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
6451
6445
|
meter = sgqlc.types.Field('Meter', graphql_name='meter')
|
|
6452
6446
|
meter_type = sgqlc.types.Field(MeterType, graphql_name='meterType')
|
|
6453
6447
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
@@ -6461,10 +6455,10 @@ class FeatureAggregateGroupBy(sgqlc.types.Type):
|
|
|
6461
6455
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6462
6456
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
6463
6457
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
6464
|
-
environment_id = sgqlc.types.Field(
|
|
6458
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6465
6459
|
feature_status = sgqlc.types.Field(FeatureStatus, graphql_name='featureStatus')
|
|
6466
6460
|
feature_type = sgqlc.types.Field(FeatureType, graphql_name='featureType')
|
|
6467
|
-
id = sgqlc.types.Field(
|
|
6461
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6468
6462
|
meter_type = sgqlc.types.Field(MeterType, graphql_name='meterType')
|
|
6469
6463
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
6470
6464
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
@@ -6603,10 +6597,10 @@ class FeatureMaxAggregate(sgqlc.types.Type):
|
|
|
6603
6597
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6604
6598
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
6605
6599
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
6606
|
-
environment_id = sgqlc.types.Field(
|
|
6600
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6607
6601
|
feature_status = sgqlc.types.Field(FeatureStatus, graphql_name='featureStatus')
|
|
6608
6602
|
feature_type = sgqlc.types.Field(FeatureType, graphql_name='featureType')
|
|
6609
|
-
id = sgqlc.types.Field(
|
|
6603
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6610
6604
|
meter_type = sgqlc.types.Field(MeterType, graphql_name='meterType')
|
|
6611
6605
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
6612
6606
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
@@ -6618,10 +6612,10 @@ class FeatureMinAggregate(sgqlc.types.Type):
|
|
|
6618
6612
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6619
6613
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
6620
6614
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
6621
|
-
environment_id = sgqlc.types.Field(
|
|
6615
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6622
6616
|
feature_status = sgqlc.types.Field(FeatureStatus, graphql_name='featureStatus')
|
|
6623
6617
|
feature_type = sgqlc.types.Field(FeatureType, graphql_name='featureType')
|
|
6624
|
-
id = sgqlc.types.Field(
|
|
6618
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6625
6619
|
meter_type = sgqlc.types.Field(MeterType, graphql_name='meterType')
|
|
6626
6620
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
6627
6621
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
@@ -6686,9 +6680,9 @@ class Hook(sgqlc.types.Type):
|
|
|
6686
6680
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
6687
6681
|
endpoint = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='endpoint')
|
|
6688
6682
|
environment = sgqlc.types.Field(Environment, graphql_name='environment')
|
|
6689
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6683
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
6690
6684
|
event_log_types = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EventLogType))), graphql_name='eventLogTypes')
|
|
6691
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6685
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
6692
6686
|
secret_key = sgqlc.types.Field(String, graphql_name='secretKey')
|
|
6693
6687
|
status = sgqlc.types.Field(sgqlc.types.non_null(HookStatus), graphql_name='status')
|
|
6694
6688
|
|
|
@@ -6698,8 +6692,8 @@ class HookAggregateGroupBy(sgqlc.types.Type):
|
|
|
6698
6692
|
__field_names__ = ('created_at', 'endpoint', 'environment_id', 'id', 'status')
|
|
6699
6693
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6700
6694
|
endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
|
|
6701
|
-
environment_id = sgqlc.types.Field(
|
|
6702
|
-
id = sgqlc.types.Field(
|
|
6695
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6696
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6703
6697
|
status = sgqlc.types.Field(HookStatus, graphql_name='status')
|
|
6704
6698
|
|
|
6705
6699
|
|
|
@@ -6728,9 +6722,9 @@ class HookDeleteResponse(sgqlc.types.Type):
|
|
|
6728
6722
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6729
6723
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
6730
6724
|
endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
|
|
6731
|
-
environment_id = sgqlc.types.Field(
|
|
6725
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6732
6726
|
event_log_types = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EventLogType)), graphql_name='eventLogTypes')
|
|
6733
|
-
id = sgqlc.types.Field(
|
|
6727
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6734
6728
|
secret_key = sgqlc.types.Field(String, graphql_name='secretKey')
|
|
6735
6729
|
status = sgqlc.types.Field(HookStatus, graphql_name='status')
|
|
6736
6730
|
|
|
@@ -6747,8 +6741,8 @@ class HookMaxAggregate(sgqlc.types.Type):
|
|
|
6747
6741
|
__field_names__ = ('created_at', 'endpoint', 'environment_id', 'id', 'status')
|
|
6748
6742
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6749
6743
|
endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
|
|
6750
|
-
environment_id = sgqlc.types.Field(
|
|
6751
|
-
id = sgqlc.types.Field(
|
|
6744
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6745
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6752
6746
|
status = sgqlc.types.Field(HookStatus, graphql_name='status')
|
|
6753
6747
|
|
|
6754
6748
|
|
|
@@ -6757,8 +6751,8 @@ class HookMinAggregate(sgqlc.types.Type):
|
|
|
6757
6751
|
__field_names__ = ('created_at', 'endpoint', 'environment_id', 'id', 'status')
|
|
6758
6752
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6759
6753
|
endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
|
|
6760
|
-
environment_id = sgqlc.types.Field(
|
|
6761
|
-
id = sgqlc.types.Field(
|
|
6754
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6755
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6762
6756
|
status = sgqlc.types.Field(HookStatus, graphql_name='status')
|
|
6763
6757
|
|
|
6764
6758
|
|
|
@@ -6807,7 +6801,7 @@ class ImportIntegrationTask(sgqlc.types.Type):
|
|
|
6807
6801
|
customers_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='customersCount')
|
|
6808
6802
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
6809
6803
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
6810
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6804
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
6811
6805
|
import_errors = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ImportSubTaskError'))), graphql_name='importErrors')
|
|
6812
6806
|
products_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='productsCount')
|
|
6813
6807
|
progress = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='progress')
|
|
@@ -6822,7 +6816,7 @@ class ImportIntegrationTaskAggregateGroupBy(sgqlc.types.Type):
|
|
|
6822
6816
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'task_type')
|
|
6823
6817
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6824
6818
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
6825
|
-
id = sgqlc.types.Field(
|
|
6819
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6826
6820
|
status = sgqlc.types.Field(TaskStatus, graphql_name='status')
|
|
6827
6821
|
task_type = sgqlc.types.Field(TaskType, graphql_name='taskType')
|
|
6828
6822
|
|
|
@@ -6856,7 +6850,7 @@ class ImportIntegrationTaskMaxAggregate(sgqlc.types.Type):
|
|
|
6856
6850
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'task_type')
|
|
6857
6851
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6858
6852
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
6859
|
-
id = sgqlc.types.Field(
|
|
6853
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6860
6854
|
status = sgqlc.types.Field(TaskStatus, graphql_name='status')
|
|
6861
6855
|
task_type = sgqlc.types.Field(TaskType, graphql_name='taskType')
|
|
6862
6856
|
|
|
@@ -6866,7 +6860,7 @@ class ImportIntegrationTaskMinAggregate(sgqlc.types.Type):
|
|
|
6866
6860
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'task_type')
|
|
6867
6861
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6868
6862
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
6869
|
-
id = sgqlc.types.Field(
|
|
6863
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6870
6864
|
status = sgqlc.types.Field(TaskStatus, graphql_name='status')
|
|
6871
6865
|
task_type = sgqlc.types.Field(TaskType, graphql_name='taskType')
|
|
6872
6866
|
|
|
@@ -6907,8 +6901,8 @@ class Integration(sgqlc.types.Type):
|
|
|
6907
6901
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6908
6902
|
credentials = sgqlc.types.Field('Credentials', graphql_name='credentials')
|
|
6909
6903
|
environment = sgqlc.types.Field(Environment, graphql_name='environment')
|
|
6910
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6911
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
6904
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
6905
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
6912
6906
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
6913
6907
|
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
6914
6908
|
vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
|
|
@@ -6919,8 +6913,8 @@ class IntegrationAggregateGroupBy(sgqlc.types.Type):
|
|
|
6919
6913
|
__schema__ = schema
|
|
6920
6914
|
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
|
|
6921
6915
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6922
|
-
environment_id = sgqlc.types.Field(
|
|
6923
|
-
id = sgqlc.types.Field(
|
|
6916
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6917
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6924
6918
|
vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
|
|
6925
6919
|
vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
|
|
6926
6920
|
|
|
@@ -6948,8 +6942,8 @@ class IntegrationDeleteResponse(sgqlc.types.Type):
|
|
|
6948
6942
|
__field_names__ = ('created_at', 'credentials', 'environment_id', 'id', 'integration_id', 'is_default', 'vendor_identifier', 'vendor_type')
|
|
6949
6943
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6950
6944
|
credentials = sgqlc.types.Field('Credentials', graphql_name='credentials')
|
|
6951
|
-
environment_id = sgqlc.types.Field(
|
|
6952
|
-
id = sgqlc.types.Field(
|
|
6945
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6946
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6953
6947
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
6954
6948
|
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
6955
6949
|
vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
|
|
@@ -6967,8 +6961,8 @@ class IntegrationMaxAggregate(sgqlc.types.Type):
|
|
|
6967
6961
|
__schema__ = schema
|
|
6968
6962
|
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
|
|
6969
6963
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6970
|
-
environment_id = sgqlc.types.Field(
|
|
6971
|
-
id = sgqlc.types.Field(
|
|
6964
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6965
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6972
6966
|
vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
|
|
6973
6967
|
vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
|
|
6974
6968
|
|
|
@@ -6977,8 +6971,8 @@ class IntegrationMinAggregate(sgqlc.types.Type):
|
|
|
6977
6971
|
__schema__ = schema
|
|
6978
6972
|
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
|
|
6979
6973
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6980
|
-
environment_id = sgqlc.types.Field(
|
|
6981
|
-
id = sgqlc.types.Field(
|
|
6974
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6975
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
6982
6976
|
vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
|
|
6983
6977
|
vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
|
|
6984
6978
|
|
|
@@ -7051,7 +7045,7 @@ class Member(sgqlc.types.Type):
|
|
|
7051
7045
|
customer_token = sgqlc.types.Field(String, graphql_name='customerToken')
|
|
7052
7046
|
email = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='email')
|
|
7053
7047
|
hide_getting_started_page = sgqlc.types.Field(Boolean, graphql_name='hideGettingStartedPage')
|
|
7054
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
7048
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
7055
7049
|
member_status = sgqlc.types.Field(sgqlc.types.non_null(MemberStatus), graphql_name='memberStatus')
|
|
7056
7050
|
service_api_key = sgqlc.types.Field(String, graphql_name='serviceApiKey')
|
|
7057
7051
|
user = sgqlc.types.Field('User', graphql_name='user')
|
|
@@ -7063,7 +7057,7 @@ class MemberAggregateGroupBy(sgqlc.types.Type):
|
|
|
7063
7057
|
__field_names__ = ('created_at', 'email', 'id')
|
|
7064
7058
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7065
7059
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
7066
|
-
id = sgqlc.types.Field(
|
|
7060
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
7067
7061
|
|
|
7068
7062
|
|
|
7069
7063
|
class MemberConnection(sgqlc.types.relay.Connection):
|
|
@@ -7101,7 +7095,7 @@ class MemberMaxAggregate(sgqlc.types.Type):
|
|
|
7101
7095
|
__field_names__ = ('created_at', 'email', 'id')
|
|
7102
7096
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7103
7097
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
7104
|
-
id = sgqlc.types.Field(
|
|
7098
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
7105
7099
|
|
|
7106
7100
|
|
|
7107
7101
|
class MemberMinAggregate(sgqlc.types.Type):
|
|
@@ -7109,7 +7103,7 @@ class MemberMinAggregate(sgqlc.types.Type):
|
|
|
7109
7103
|
__field_names__ = ('created_at', 'email', 'id')
|
|
7110
7104
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7111
7105
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
7112
|
-
id = sgqlc.types.Field(
|
|
7106
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
7113
7107
|
|
|
7114
7108
|
|
|
7115
7109
|
class MemberNotFoundError(sgqlc.types.Type):
|
|
@@ -7138,9 +7132,9 @@ class Meter(sgqlc.types.Type):
|
|
|
7138
7132
|
__field_names__ = ('aggregation', 'created_at', 'environment_id', 'filters', 'id', 'updated_at')
|
|
7139
7133
|
aggregation = sgqlc.types.Field(sgqlc.types.non_null(Aggregation), graphql_name='aggregation')
|
|
7140
7134
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
7141
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
7135
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
7142
7136
|
filters = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterFilterDefinition'))), graphql_name='filters')
|
|
7143
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
7137
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
7144
7138
|
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
7145
7139
|
|
|
7146
7140
|
|
|
@@ -7265,15 +7259,15 @@ class Mutation(sgqlc.types.Type):
|
|
|
7265
7259
|
))
|
|
7266
7260
|
)
|
|
7267
7261
|
create_addon_draft = sgqlc.types.Field(sgqlc.types.non_null(Addon), graphql_name='createAddonDraft', args=sgqlc.types.ArgDict((
|
|
7268
|
-
('id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
7262
|
+
('id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='id', default=None)),
|
|
7269
7263
|
))
|
|
7270
7264
|
)
|
|
7271
7265
|
create_empty_addon_draft = sgqlc.types.Field(sgqlc.types.non_null(Addon), graphql_name='createEmptyAddonDraft', args=sgqlc.types.ArgDict((
|
|
7272
|
-
('id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
7266
|
+
('id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='id', default=None)),
|
|
7273
7267
|
))
|
|
7274
7268
|
)
|
|
7275
7269
|
create_empty_plan_draft = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='createEmptyPlanDraft', args=sgqlc.types.ArgDict((
|
|
7276
|
-
('id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
7270
|
+
('id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='id', default=None)),
|
|
7277
7271
|
))
|
|
7278
7272
|
)
|
|
7279
7273
|
create_feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='createFeature', args=sgqlc.types.ArgDict((
|
|
@@ -7337,7 +7331,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
7337
7331
|
))
|
|
7338
7332
|
)
|
|
7339
7333
|
create_plan_draft = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='createPlanDraft', args=sgqlc.types.ArgDict((
|
|
7340
|
-
('id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
7334
|
+
('id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='id', default=None)),
|
|
7341
7335
|
))
|
|
7342
7336
|
)
|
|
7343
7337
|
create_subscription = sgqlc.types.Field(sgqlc.types.non_null(CustomerSubscription), graphql_name='createSubscription', args=sgqlc.types.ArgDict((
|
|
@@ -7417,7 +7411,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
7417
7411
|
))
|
|
7418
7412
|
)
|
|
7419
7413
|
hide_getting_started_page = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hideGettingStartedPage', args=sgqlc.types.ArgDict((
|
|
7420
|
-
('member_id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
7414
|
+
('member_id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='memberId', default=None)),
|
|
7421
7415
|
))
|
|
7422
7416
|
)
|
|
7423
7417
|
import_customers_bulk = sgqlc.types.Field(String, graphql_name='importCustomersBulk', args=sgqlc.types.ArgDict((
|
|
@@ -7522,7 +7516,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
7522
7516
|
))
|
|
7523
7517
|
)
|
|
7524
7518
|
remove_member = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='removeMember', args=sgqlc.types.ArgDict((
|
|
7525
|
-
('member_id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
7519
|
+
('member_id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='memberId', default=None)),
|
|
7526
7520
|
))
|
|
7527
7521
|
)
|
|
7528
7522
|
remove_plan_draft = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='removePlanDraft', args=sgqlc.types.ArgDict((
|
|
@@ -7805,9 +7799,9 @@ class PackageDTO(sgqlc.types.Type):
|
|
|
7805
7799
|
draft_details = sgqlc.types.Field('PackageDraftDetails', graphql_name='draftDetails')
|
|
7806
7800
|
draft_summary = sgqlc.types.Field('PackageDraftSummary', graphql_name='draftSummary')
|
|
7807
7801
|
entitlements = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlement')), graphql_name='entitlements')
|
|
7808
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
7802
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
7809
7803
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
7810
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
7804
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
7811
7805
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
7812
7806
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
7813
7807
|
overage_prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='overagePrices')
|
|
@@ -7850,13 +7844,13 @@ class PackageEntitlement(sgqlc.types.Type):
|
|
|
7850
7844
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
7851
7845
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
7852
7846
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
7853
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
7847
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
7854
7848
|
feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='feature')
|
|
7855
7849
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
7856
7850
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
7857
7851
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
7858
7852
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
7859
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
7853
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
7860
7854
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
7861
7855
|
meter = sgqlc.types.Field(Meter, graphql_name='meter')
|
|
7862
7856
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
@@ -7872,8 +7866,8 @@ class PackageEntitlementAggregateGroupBy(sgqlc.types.Type):
|
|
|
7872
7866
|
__schema__ = schema
|
|
7873
7867
|
__field_names__ = ('created_at', 'environment_id', 'id', 'package_id', 'updated_at')
|
|
7874
7868
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7875
|
-
environment_id = sgqlc.types.Field(
|
|
7876
|
-
id = sgqlc.types.Field(
|
|
7869
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
7870
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
7877
7871
|
package_id = sgqlc.types.Field(String, graphql_name='packageId')
|
|
7878
7872
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
7879
7873
|
|
|
@@ -7912,12 +7906,12 @@ class PackageEntitlementDeleteResponse(sgqlc.types.Type):
|
|
|
7912
7906
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
7913
7907
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
7914
7908
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
7915
|
-
environment_id = sgqlc.types.Field(
|
|
7909
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
7916
7910
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
7917
7911
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
7918
7912
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
7919
7913
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
7920
|
-
id = sgqlc.types.Field(
|
|
7914
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
7921
7915
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
7922
7916
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
7923
7917
|
package_id = sgqlc.types.Field(String, graphql_name='packageId')
|
|
@@ -7938,8 +7932,8 @@ class PackageEntitlementMaxAggregate(sgqlc.types.Type):
|
|
|
7938
7932
|
__schema__ = schema
|
|
7939
7933
|
__field_names__ = ('created_at', 'environment_id', 'id', 'package_id', 'updated_at')
|
|
7940
7934
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7941
|
-
environment_id = sgqlc.types.Field(
|
|
7942
|
-
id = sgqlc.types.Field(
|
|
7935
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
7936
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
7943
7937
|
package_id = sgqlc.types.Field(String, graphql_name='packageId')
|
|
7944
7938
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
7945
7939
|
|
|
@@ -7948,8 +7942,8 @@ class PackageEntitlementMinAggregate(sgqlc.types.Type):
|
|
|
7948
7942
|
__schema__ = schema
|
|
7949
7943
|
__field_names__ = ('created_at', 'environment_id', 'id', 'package_id', 'updated_at')
|
|
7950
7944
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7951
|
-
environment_id = sgqlc.types.Field(
|
|
7952
|
-
id = sgqlc.types.Field(
|
|
7945
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
7946
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
7953
7947
|
package_id = sgqlc.types.Field(String, graphql_name='packageId')
|
|
7954
7948
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
7955
7949
|
|
|
@@ -7965,7 +7959,7 @@ class PackageGroup(sgqlc.types.Type):
|
|
|
7965
7959
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
7966
7960
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
7967
7961
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
7968
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
7962
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
7969
7963
|
is_latest = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isLatest')
|
|
7970
7964
|
package_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageGroupId')
|
|
7971
7965
|
product = sgqlc.types.Field(sgqlc.types.non_null('Product'), graphql_name='product')
|
|
@@ -7980,7 +7974,7 @@ class PackageGroupAggregateGroupBy(sgqlc.types.Type):
|
|
|
7980
7974
|
__field_names__ = ('created_at', 'display_name', 'environment_id', 'is_latest', 'package_group_id', 'product_id', 'status', 'updated_at', 'version_number')
|
|
7981
7975
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7982
7976
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
7983
|
-
environment_id = sgqlc.types.Field(
|
|
7977
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
7984
7978
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
7985
7979
|
package_group_id = sgqlc.types.Field(String, graphql_name='packageGroupId')
|
|
7986
7980
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
@@ -8029,7 +8023,7 @@ class PackageGroupMaxAggregate(sgqlc.types.Type):
|
|
|
8029
8023
|
__field_names__ = ('created_at', 'display_name', 'environment_id', 'package_group_id', 'product_id', 'status', 'updated_at', 'version_number')
|
|
8030
8024
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8031
8025
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8032
|
-
environment_id = sgqlc.types.Field(
|
|
8026
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8033
8027
|
package_group_id = sgqlc.types.Field(String, graphql_name='packageGroupId')
|
|
8034
8028
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
8035
8029
|
status = sgqlc.types.Field(PackageGroupStatus, graphql_name='status')
|
|
@@ -8042,7 +8036,7 @@ class PackageGroupMinAggregate(sgqlc.types.Type):
|
|
|
8042
8036
|
__field_names__ = ('created_at', 'display_name', 'environment_id', 'package_group_id', 'product_id', 'status', 'updated_at', 'version_number')
|
|
8043
8037
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8044
8038
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8045
|
-
environment_id = sgqlc.types.Field(
|
|
8039
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8046
8040
|
package_group_id = sgqlc.types.Field(String, graphql_name='packageGroupId')
|
|
8047
8041
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
8048
8042
|
status = sgqlc.types.Field(PackageGroupStatus, graphql_name='status')
|
|
@@ -8266,9 +8260,9 @@ class Plan(sgqlc.types.Type):
|
|
|
8266
8260
|
draft_summary = sgqlc.types.Field(PackageDraftSummary, graphql_name='draftSummary')
|
|
8267
8261
|
entitlements = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PackageEntitlement)), graphql_name='entitlements')
|
|
8268
8262
|
environment = sgqlc.types.Field(sgqlc.types.non_null(Environment), graphql_name='environment')
|
|
8269
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8263
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
8270
8264
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
8271
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8265
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8272
8266
|
inherited_entitlements = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PackageEntitlement)), graphql_name='inheritedEntitlements', args=sgqlc.types.ArgDict((
|
|
8273
8267
|
('include_overridden', sgqlc.types.Arg(Boolean, graphql_name='includeOverridden', default=False)),
|
|
8274
8268
|
))
|
|
@@ -8297,8 +8291,8 @@ class PlanAggregateGroupBy(sgqlc.types.Type):
|
|
|
8297
8291
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8298
8292
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8299
8293
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8300
|
-
environment_id = sgqlc.types.Field(
|
|
8301
|
-
id = sgqlc.types.Field(
|
|
8294
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8295
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8302
8296
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
8303
8297
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
8304
8298
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
@@ -8362,7 +8356,7 @@ class PlanCompatiblePackageGroups(sgqlc.types.Type):
|
|
|
8362
8356
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
8363
8357
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8364
8358
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
8365
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8359
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
8366
8360
|
is_latest = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isLatest')
|
|
8367
8361
|
options = sgqlc.types.Field(sgqlc.types.non_null(PlanCompatiblePackageGroupOptions), graphql_name='options')
|
|
8368
8362
|
package_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageGroupId')
|
|
@@ -8413,8 +8407,8 @@ class PlanMaxAggregate(sgqlc.types.Type):
|
|
|
8413
8407
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8414
8408
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8415
8409
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8416
|
-
environment_id = sgqlc.types.Field(
|
|
8417
|
-
id = sgqlc.types.Field(
|
|
8410
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8411
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8418
8412
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
8419
8413
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
8420
8414
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -8430,8 +8424,8 @@ class PlanMinAggregate(sgqlc.types.Type):
|
|
|
8430
8424
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8431
8425
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8432
8426
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8433
|
-
environment_id = sgqlc.types.Field(
|
|
8434
|
-
id = sgqlc.types.Field(
|
|
8427
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8428
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8435
8429
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
8436
8430
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
8437
8431
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -8484,7 +8478,7 @@ class Price(sgqlc.types.Type):
|
|
|
8484
8478
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
8485
8479
|
feature = sgqlc.types.Field(Feature, graphql_name='feature')
|
|
8486
8480
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
8487
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8481
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8488
8482
|
is_override_price = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isOverridePrice')
|
|
8489
8483
|
max_unit_quantity = sgqlc.types.Field(Float, graphql_name='maxUnitQuantity')
|
|
8490
8484
|
min_unit_quantity = sgqlc.types.Field(Float, graphql_name='minUnitQuantity')
|
|
@@ -8506,7 +8500,7 @@ class PriceAggregateGroupBy(sgqlc.types.Type):
|
|
|
8506
8500
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
8507
8501
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
8508
8502
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8509
|
-
id = sgqlc.types.Field(
|
|
8503
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8510
8504
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
8511
8505
|
|
|
8512
8506
|
|
|
@@ -8537,7 +8531,7 @@ class PriceDeleteResponse(sgqlc.types.Type):
|
|
|
8537
8531
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
8538
8532
|
feature = sgqlc.types.Field(Feature, graphql_name='feature')
|
|
8539
8533
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
8540
|
-
id = sgqlc.types.Field(
|
|
8534
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8541
8535
|
max_unit_quantity = sgqlc.types.Field(Float, graphql_name='maxUnitQuantity')
|
|
8542
8536
|
min_unit_quantity = sgqlc.types.Field(Float, graphql_name='minUnitQuantity')
|
|
8543
8537
|
package_id = sgqlc.types.Field(String, graphql_name='packageId')
|
|
@@ -8580,7 +8574,7 @@ class PriceMaxAggregate(sgqlc.types.Type):
|
|
|
8580
8574
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
8581
8575
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
8582
8576
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8583
|
-
id = sgqlc.types.Field(
|
|
8577
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8584
8578
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
8585
8579
|
|
|
8586
8580
|
|
|
@@ -8592,7 +8586,7 @@ class PriceMinAggregate(sgqlc.types.Type):
|
|
|
8592
8586
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
8593
8587
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
8594
8588
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8595
|
-
id = sgqlc.types.Field(
|
|
8589
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8596
8590
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
8597
8591
|
|
|
8598
8592
|
|
|
@@ -8640,9 +8634,9 @@ class Product(sgqlc.types.Type):
|
|
|
8640
8634
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8641
8635
|
downgrade_plan = sgqlc.types.Field(Plan, graphql_name='downgradePlan')
|
|
8642
8636
|
environment = sgqlc.types.Field(Environment, graphql_name='environment')
|
|
8643
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8637
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
8644
8638
|
has_subscriptions = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasSubscriptions')
|
|
8645
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8639
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8646
8640
|
is_default_product = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isDefaultProduct')
|
|
8647
8641
|
multiple_subscriptions = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='multipleSubscriptions')
|
|
8648
8642
|
plans = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Plan))), graphql_name='plans')
|
|
@@ -8661,8 +8655,8 @@ class ProductAggregateGroupBy(sgqlc.types.Type):
|
|
|
8661
8655
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8662
8656
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8663
8657
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8664
|
-
environment_id = sgqlc.types.Field(
|
|
8665
|
-
id = sgqlc.types.Field(
|
|
8658
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8659
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8666
8660
|
is_default_product = sgqlc.types.Field(Boolean, graphql_name='isDefaultProduct')
|
|
8667
8661
|
multiple_subscriptions = sgqlc.types.Field(Boolean, graphql_name='multipleSubscriptions')
|
|
8668
8662
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -8710,7 +8704,7 @@ class ProductDeleteResponse(sgqlc.types.Type):
|
|
|
8710
8704
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8711
8705
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8712
8706
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
8713
|
-
id = sgqlc.types.Field(
|
|
8707
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8714
8708
|
is_default_product = sgqlc.types.Field(Boolean, graphql_name='isDefaultProduct')
|
|
8715
8709
|
multiple_subscriptions = sgqlc.types.Field(Boolean, graphql_name='multipleSubscriptions')
|
|
8716
8710
|
plans = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Plan)), graphql_name='plans')
|
|
@@ -8734,8 +8728,8 @@ class ProductMaxAggregate(sgqlc.types.Type):
|
|
|
8734
8728
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8735
8729
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8736
8730
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8737
|
-
environment_id = sgqlc.types.Field(
|
|
8738
|
-
id = sgqlc.types.Field(
|
|
8731
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8732
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8739
8733
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
8740
8734
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8741
8735
|
|
|
@@ -8748,8 +8742,8 @@ class ProductMinAggregate(sgqlc.types.Type):
|
|
|
8748
8742
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8749
8743
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8750
8744
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
8751
|
-
environment_id = sgqlc.types.Field(
|
|
8752
|
-
id = sgqlc.types.Field(
|
|
8745
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8746
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8753
8747
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
8754
8748
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8755
8749
|
|
|
@@ -8816,12 +8810,12 @@ class PromotionalEntitlement(sgqlc.types.Type):
|
|
|
8816
8810
|
customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='customer')
|
|
8817
8811
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8818
8812
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
8819
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8813
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
8820
8814
|
feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='feature')
|
|
8821
|
-
feature_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8815
|
+
feature_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='featureId')
|
|
8822
8816
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
8823
8817
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
8824
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
8818
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8825
8819
|
is_visible = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isVisible')
|
|
8826
8820
|
meter = sgqlc.types.Field(Meter, graphql_name='meter')
|
|
8827
8821
|
period = sgqlc.types.Field(sgqlc.types.non_null(PromotionalEntitlementPeriod), graphql_name='period')
|
|
@@ -8838,8 +8832,8 @@ class PromotionalEntitlementAggregateGroupBy(sgqlc.types.Type):
|
|
|
8838
8832
|
__schema__ = schema
|
|
8839
8833
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'updated_at')
|
|
8840
8834
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8841
|
-
environment_id = sgqlc.types.Field(
|
|
8842
|
-
id = sgqlc.types.Field(
|
|
8835
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8836
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8843
8837
|
status = sgqlc.types.Field(PromotionalEntitlementStatus, graphql_name='status')
|
|
8844
8838
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8845
8839
|
|
|
@@ -8868,11 +8862,11 @@ class PromotionalEntitlementDeleteResponse(sgqlc.types.Type):
|
|
|
8868
8862
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8869
8863
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8870
8864
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
8871
|
-
environment_id = sgqlc.types.Field(
|
|
8872
|
-
feature_id = sgqlc.types.Field(
|
|
8865
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8866
|
+
feature_id = sgqlc.types.Field(UUID, graphql_name='featureId')
|
|
8873
8867
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
8874
8868
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
8875
|
-
id = sgqlc.types.Field(
|
|
8869
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8876
8870
|
is_visible = sgqlc.types.Field(Boolean, graphql_name='isVisible')
|
|
8877
8871
|
period = sgqlc.types.Field(PromotionalEntitlementPeriod, graphql_name='period')
|
|
8878
8872
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -8895,8 +8889,8 @@ class PromotionalEntitlementMaxAggregate(sgqlc.types.Type):
|
|
|
8895
8889
|
__schema__ = schema
|
|
8896
8890
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'updated_at')
|
|
8897
8891
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8898
|
-
environment_id = sgqlc.types.Field(
|
|
8899
|
-
id = sgqlc.types.Field(
|
|
8892
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8893
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8900
8894
|
status = sgqlc.types.Field(PromotionalEntitlementStatus, graphql_name='status')
|
|
8901
8895
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8902
8896
|
|
|
@@ -8905,8 +8899,8 @@ class PromotionalEntitlementMinAggregate(sgqlc.types.Type):
|
|
|
8905
8899
|
__schema__ = schema
|
|
8906
8900
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'updated_at')
|
|
8907
8901
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8908
|
-
environment_id = sgqlc.types.Field(
|
|
8909
|
-
id = sgqlc.types.Field(
|
|
8902
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8903
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8910
8904
|
status = sgqlc.types.Field(PromotionalEntitlementStatus, graphql_name='status')
|
|
8911
8905
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8912
8906
|
|
|
@@ -8965,7 +8959,7 @@ class Query(sgqlc.types.Type):
|
|
|
8965
8959
|
))
|
|
8966
8960
|
)
|
|
8967
8961
|
coupon = sgqlc.types.Field(Coupon, graphql_name='coupon', args=sgqlc.types.ArgDict((
|
|
8968
|
-
('id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
8962
|
+
('id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='id', default=None)),
|
|
8969
8963
|
))
|
|
8970
8964
|
)
|
|
8971
8965
|
coupons = sgqlc.types.Field(sgqlc.types.non_null(CouponConnection), graphql_name='coupons', args=sgqlc.types.ArgDict((
|
|
@@ -9035,7 +9029,7 @@ class Query(sgqlc.types.Type):
|
|
|
9035
9029
|
))
|
|
9036
9030
|
)
|
|
9037
9031
|
experiment = sgqlc.types.Field(Experiment, graphql_name='experiment', args=sgqlc.types.ArgDict((
|
|
9038
|
-
('id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
9032
|
+
('id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='id', default=None)),
|
|
9039
9033
|
))
|
|
9040
9034
|
)
|
|
9041
9035
|
experiments = sgqlc.types.Field(sgqlc.types.non_null(ExperimentConnection), graphql_name='experiments', args=sgqlc.types.ArgDict((
|
|
@@ -9103,7 +9097,7 @@ class Query(sgqlc.types.Type):
|
|
|
9103
9097
|
))
|
|
9104
9098
|
)
|
|
9105
9099
|
hook = sgqlc.types.Field(Hook, graphql_name='hook', args=sgqlc.types.ArgDict((
|
|
9106
|
-
('id', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
9100
|
+
('id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='id', default=None)),
|
|
9107
9101
|
))
|
|
9108
9102
|
)
|
|
9109
9103
|
hooks = sgqlc.types.Field(sgqlc.types.non_null(HookConnection), graphql_name='hooks', args=sgqlc.types.ArgDict((
|
|
@@ -9404,7 +9398,7 @@ class SubscriptionAddon(sgqlc.types.Type):
|
|
|
9404
9398
|
addon = sgqlc.types.Field(sgqlc.types.non_null(Addon), graphql_name='addon')
|
|
9405
9399
|
addon_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='addonId')
|
|
9406
9400
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9407
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
9401
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
9408
9402
|
price = sgqlc.types.Field(Price, graphql_name='price')
|
|
9409
9403
|
quantity = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='quantity')
|
|
9410
9404
|
subscription = sgqlc.types.Field(sgqlc.types.non_null(CustomerSubscription), graphql_name='subscription')
|
|
@@ -9415,7 +9409,7 @@ class SubscriptionAddonAggregateGroupBy(sgqlc.types.Type):
|
|
|
9415
9409
|
__schema__ = schema
|
|
9416
9410
|
__field_names__ = ('created_at', 'id', 'quantity', 'updated_at')
|
|
9417
9411
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9418
|
-
id = sgqlc.types.Field(
|
|
9412
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9419
9413
|
quantity = sgqlc.types.Field(Float, graphql_name='quantity')
|
|
9420
9414
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9421
9415
|
|
|
@@ -9446,7 +9440,7 @@ class SubscriptionAddonMaxAggregate(sgqlc.types.Type):
|
|
|
9446
9440
|
__schema__ = schema
|
|
9447
9441
|
__field_names__ = ('created_at', 'id', 'quantity', 'updated_at')
|
|
9448
9442
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9449
|
-
id = sgqlc.types.Field(
|
|
9443
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9450
9444
|
quantity = sgqlc.types.Field(Float, graphql_name='quantity')
|
|
9451
9445
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9452
9446
|
|
|
@@ -9455,7 +9449,7 @@ class SubscriptionAddonMinAggregate(sgqlc.types.Type):
|
|
|
9455
9449
|
__schema__ = schema
|
|
9456
9450
|
__field_names__ = ('created_at', 'id', 'quantity', 'updated_at')
|
|
9457
9451
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9458
|
-
id = sgqlc.types.Field(
|
|
9452
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9459
9453
|
quantity = sgqlc.types.Field(Float, graphql_name='quantity')
|
|
9460
9454
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9461
9455
|
|
|
@@ -9481,9 +9475,9 @@ class SubscriptionCoupon(sgqlc.types.Type):
|
|
|
9481
9475
|
amounts_off = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Money)), graphql_name='amountsOff')
|
|
9482
9476
|
discount_value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='discountValue')
|
|
9483
9477
|
duration_in_months = sgqlc.types.Field(Float, graphql_name='durationInMonths')
|
|
9484
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
9478
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
9485
9479
|
expiration_date = sgqlc.types.Field(DateTime, graphql_name='expirationDate')
|
|
9486
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
9480
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
9487
9481
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
9488
9482
|
percent_off = sgqlc.types.Field(Float, graphql_name='percentOff')
|
|
9489
9483
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
@@ -9497,12 +9491,12 @@ class SubscriptionEntitlement(sgqlc.types.Type):
|
|
|
9497
9491
|
__field_names__ = ('created_at', 'description', 'environment_id', 'feature', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'meter', 'reset_period', 'reset_period_configuration', 'subscription', 'subscription_id', 'updated_at', 'usage_limit')
|
|
9498
9492
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9499
9493
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
9500
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
9494
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
9501
9495
|
feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='feature')
|
|
9502
9496
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
9503
9497
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
9504
9498
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
9505
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
9499
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
9506
9500
|
meter = sgqlc.types.Field(Meter, graphql_name='meter')
|
|
9507
9501
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
9508
9502
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
@@ -9516,8 +9510,8 @@ class SubscriptionEntitlementAggregateGroupBy(sgqlc.types.Type):
|
|
|
9516
9510
|
__schema__ = schema
|
|
9517
9511
|
__field_names__ = ('created_at', 'environment_id', 'id', 'subscription_id', 'updated_at')
|
|
9518
9512
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9519
|
-
environment_id = sgqlc.types.Field(
|
|
9520
|
-
id = sgqlc.types.Field(
|
|
9513
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
9514
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9521
9515
|
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
9522
9516
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9523
9517
|
|
|
@@ -9550,8 +9544,8 @@ class SubscriptionEntitlementMaxAggregate(sgqlc.types.Type):
|
|
|
9550
9544
|
__schema__ = schema
|
|
9551
9545
|
__field_names__ = ('created_at', 'environment_id', 'id', 'subscription_id', 'updated_at')
|
|
9552
9546
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9553
|
-
environment_id = sgqlc.types.Field(
|
|
9554
|
-
id = sgqlc.types.Field(
|
|
9547
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
9548
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9555
9549
|
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
9556
9550
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9557
9551
|
|
|
@@ -9560,8 +9554,8 @@ class SubscriptionEntitlementMinAggregate(sgqlc.types.Type):
|
|
|
9560
9554
|
__schema__ = schema
|
|
9561
9555
|
__field_names__ = ('created_at', 'environment_id', 'id', 'subscription_id', 'updated_at')
|
|
9562
9556
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9563
|
-
environment_id = sgqlc.types.Field(
|
|
9564
|
-
id = sgqlc.types.Field(
|
|
9557
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
9558
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9565
9559
|
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
9566
9560
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9567
9561
|
|
|
@@ -9693,7 +9687,7 @@ class SubscriptionMigrationTask(sgqlc.types.Type):
|
|
|
9693
9687
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9694
9688
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
9695
9689
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
9696
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
9690
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
9697
9691
|
initiated_package_id = sgqlc.types.Field(String, graphql_name='initiatedPackageId')
|
|
9698
9692
|
migrated_customers_count = sgqlc.types.Field(Int, graphql_name='migratedCustomersCount')
|
|
9699
9693
|
packages = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PackageDTO))), graphql_name='packages', args=sgqlc.types.ArgDict((
|
|
@@ -9712,7 +9706,7 @@ class SubscriptionMigrationTaskAggregateGroupBy(sgqlc.types.Type):
|
|
|
9712
9706
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'task_type')
|
|
9713
9707
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9714
9708
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
9715
|
-
id = sgqlc.types.Field(
|
|
9709
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9716
9710
|
status = sgqlc.types.Field(TaskStatus, graphql_name='status')
|
|
9717
9711
|
task_type = sgqlc.types.Field(TaskType, graphql_name='taskType')
|
|
9718
9712
|
|
|
@@ -9746,7 +9740,7 @@ class SubscriptionMigrationTaskMaxAggregate(sgqlc.types.Type):
|
|
|
9746
9740
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'task_type')
|
|
9747
9741
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9748
9742
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
9749
|
-
id = sgqlc.types.Field(
|
|
9743
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9750
9744
|
status = sgqlc.types.Field(TaskStatus, graphql_name='status')
|
|
9751
9745
|
task_type = sgqlc.types.Field(TaskType, graphql_name='taskType')
|
|
9752
9746
|
|
|
@@ -9756,7 +9750,7 @@ class SubscriptionMigrationTaskMinAggregate(sgqlc.types.Type):
|
|
|
9756
9750
|
__field_names__ = ('created_at', 'environment_id', 'id', 'status', 'task_type')
|
|
9757
9751
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9758
9752
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
9759
|
-
id = sgqlc.types.Field(
|
|
9753
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9760
9754
|
status = sgqlc.types.Field(TaskStatus, graphql_name='status')
|
|
9761
9755
|
task_type = sgqlc.types.Field(TaskType, graphql_name='taskType')
|
|
9762
9756
|
|
|
@@ -9872,7 +9866,7 @@ class SubscriptionPrice(sgqlc.types.Type):
|
|
|
9872
9866
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9873
9867
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
9874
9868
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
9875
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
9869
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
9876
9870
|
price = sgqlc.types.Field(Price, graphql_name='price')
|
|
9877
9871
|
subscription = sgqlc.types.Field(sgqlc.types.non_null(CustomerSubscription), graphql_name='subscription')
|
|
9878
9872
|
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
@@ -9886,7 +9880,7 @@ class SubscriptionPriceAggregateGroupBy(sgqlc.types.Type):
|
|
|
9886
9880
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9887
9881
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
9888
9882
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
9889
|
-
id = sgqlc.types.Field(
|
|
9883
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9890
9884
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9891
9885
|
usage_limit = sgqlc.types.Field(Float, graphql_name='usageLimit')
|
|
9892
9886
|
|
|
@@ -9922,7 +9916,7 @@ class SubscriptionPriceMaxAggregate(sgqlc.types.Type):
|
|
|
9922
9916
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
9923
9917
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9924
9918
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
9925
|
-
id = sgqlc.types.Field(
|
|
9919
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9926
9920
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9927
9921
|
usage_limit = sgqlc.types.Field(Float, graphql_name='usageLimit')
|
|
9928
9922
|
|
|
@@ -9933,7 +9927,7 @@ class SubscriptionPriceMinAggregate(sgqlc.types.Type):
|
|
|
9933
9927
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
9934
9928
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9935
9929
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
9936
|
-
id = sgqlc.types.Field(
|
|
9930
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9937
9931
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
9938
9932
|
usage_limit = sgqlc.types.Field(Float, graphql_name='usageLimit')
|
|
9939
9933
|
|
|
@@ -10236,7 +10230,7 @@ class UnsupportedVendorIdentifierError(sgqlc.types.Type):
|
|
|
10236
10230
|
class UpdateEntitlementsOrderDTO(sgqlc.types.Type):
|
|
10237
10231
|
__schema__ = schema
|
|
10238
10232
|
__field_names__ = ('id', 'order')
|
|
10239
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10233
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
10240
10234
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
10241
10235
|
|
|
10242
10236
|
|
|
@@ -10317,12 +10311,12 @@ class UsageMeasurement(sgqlc.types.Type):
|
|
|
10317
10311
|
__field_names__ = ('created_at', 'customer', 'customer_id', 'environment', 'environment_id', 'feature', 'feature_id', 'id', 'value')
|
|
10318
10312
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
10319
10313
|
customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='customer')
|
|
10320
|
-
customer_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10314
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='customerId')
|
|
10321
10315
|
environment = sgqlc.types.Field(sgqlc.types.non_null(Environment), graphql_name='environment')
|
|
10322
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10316
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
10323
10317
|
feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='feature')
|
|
10324
|
-
feature_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10325
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10318
|
+
feature_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='featureId')
|
|
10319
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
10326
10320
|
value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value')
|
|
10327
10321
|
|
|
10328
10322
|
|
|
@@ -10330,14 +10324,8 @@ class UsageMeasurementAggregateGroupBy(sgqlc.types.Type):
|
|
|
10330
10324
|
__schema__ = schema
|
|
10331
10325
|
__field_names__ = ('created_at', 'environment_id', 'id')
|
|
10332
10326
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10333
|
-
environment_id = sgqlc.types.Field(
|
|
10334
|
-
id = sgqlc.types.Field(
|
|
10335
|
-
|
|
10336
|
-
|
|
10337
|
-
class UsageMeasurementAvgAggregate(sgqlc.types.Type):
|
|
10338
|
-
__schema__ = schema
|
|
10339
|
-
__field_names__ = ('id',)
|
|
10340
|
-
id = sgqlc.types.Field(Float, graphql_name='id')
|
|
10327
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10328
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
10341
10329
|
|
|
10342
10330
|
|
|
10343
10331
|
class UsageMeasurementConnection(sgqlc.types.relay.Connection):
|
|
@@ -10367,16 +10355,16 @@ class UsageMeasurementMaxAggregate(sgqlc.types.Type):
|
|
|
10367
10355
|
__schema__ = schema
|
|
10368
10356
|
__field_names__ = ('created_at', 'environment_id', 'id')
|
|
10369
10357
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10370
|
-
environment_id = sgqlc.types.Field(
|
|
10371
|
-
id = sgqlc.types.Field(
|
|
10358
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10359
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
10372
10360
|
|
|
10373
10361
|
|
|
10374
10362
|
class UsageMeasurementMinAggregate(sgqlc.types.Type):
|
|
10375
10363
|
__schema__ = schema
|
|
10376
10364
|
__field_names__ = ('created_at', 'environment_id', 'id')
|
|
10377
10365
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10378
|
-
environment_id = sgqlc.types.Field(
|
|
10379
|
-
id = sgqlc.types.Field(
|
|
10366
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10367
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
10380
10368
|
|
|
10381
10369
|
|
|
10382
10370
|
class UsageMeasurementPoint(sgqlc.types.Type):
|
|
@@ -10387,19 +10375,13 @@ class UsageMeasurementPoint(sgqlc.types.Type):
|
|
|
10387
10375
|
value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value')
|
|
10388
10376
|
|
|
10389
10377
|
|
|
10390
|
-
class UsageMeasurementSumAggregate(sgqlc.types.Type):
|
|
10391
|
-
__schema__ = schema
|
|
10392
|
-
__field_names__ = ('id',)
|
|
10393
|
-
id = sgqlc.types.Field(Float, graphql_name='id')
|
|
10394
|
-
|
|
10395
|
-
|
|
10396
10378
|
class UsageMeasurementUpdated(sgqlc.types.Type):
|
|
10397
10379
|
__schema__ = schema
|
|
10398
10380
|
__field_names__ = ('account_id', 'current_usage', 'customer_id', 'environment_id', 'feature_id', 'next_reset_date', 'resource_id', 'usage_period_end', 'usage_period_start')
|
|
10399
10381
|
account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountId')
|
|
10400
10382
|
current_usage = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='currentUsage')
|
|
10401
10383
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
10402
|
-
environment_id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10384
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
10403
10385
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
10404
10386
|
next_reset_date = sgqlc.types.Field(Float, graphql_name='nextResetDate')
|
|
10405
10387
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
@@ -10415,7 +10397,7 @@ class UsageMeasurementWithCurrentUsage(sgqlc.types.Type):
|
|
|
10415
10397
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
10416
10398
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
10417
10399
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
10418
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10400
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
10419
10401
|
next_reset_date = sgqlc.types.Field(DateTime, graphql_name='nextResetDate')
|
|
10420
10402
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10421
10403
|
timestamp = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='timestamp')
|
|
@@ -10436,7 +10418,7 @@ class User(sgqlc.types.Type):
|
|
|
10436
10418
|
__field_names__ = ('department', 'email', 'id', 'last_seen_at', 'memberships', 'name', 'profile_image_url', 'support_chat_token')
|
|
10437
10419
|
department = sgqlc.types.Field(Department, graphql_name='department')
|
|
10438
10420
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
10439
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10421
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
10440
10422
|
last_seen_at = sgqlc.types.Field(DateTime, graphql_name='lastSeenAt')
|
|
10441
10423
|
memberships = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Member))), graphql_name='memberships')
|
|
10442
10424
|
name = sgqlc.types.Field(String, graphql_name='name')
|