stigg-api-client 2.451.2__tar.gz → 2.458.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of stigg-api-client might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.451.2
3
+ Version: 2.458.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "stigg-api-client"
3
- version = "2.451.2"
3
+ version = "2.458.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -555,6 +555,10 @@ class TrialPeriodUnits(sgqlc.types.Enum):
555
555
  __choices__ = ('DAY', 'MONTH')
556
556
 
557
557
 
558
+ class UUID(sgqlc.types.Scalar):
559
+ __schema__ = schema
560
+
561
+
558
562
  class UnitTransformationRound(sgqlc.types.Enum):
559
563
  __schema__ = schema
560
564
  __choices__ = ('DOWN', 'UP')
@@ -952,7 +956,7 @@ class BudgetConfigurationInput(sgqlc.types.Input):
952
956
  class ChargeSubscriptionUsageInput(sgqlc.types.Input):
953
957
  __schema__ = schema
954
958
  __field_names__ = ('environment_id', 'subscription_id', 'until_date')
955
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
959
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
956
960
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
957
961
  until_date = sgqlc.types.Field(DateTime, graphql_name='untilDate')
958
962
 
@@ -1329,18 +1333,18 @@ class CustomerFilterCustomerSubscriptionFilter(sgqlc.types.Input):
1329
1333
  crm_link_url = sgqlc.types.Field('StringFieldComparison', graphql_name='crmLinkUrl')
1330
1334
  current_billing_period_end = sgqlc.types.Field('DateFieldComparison', graphql_name='currentBillingPeriodEnd')
1331
1335
  current_billing_period_start = sgqlc.types.Field('DateFieldComparison', graphql_name='currentBillingPeriodStart')
1332
- customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='customerId')
1336
+ customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='customerId')
1333
1337
  effective_end_date = sgqlc.types.Field('DateFieldComparison', graphql_name='effectiveEndDate')
1334
1338
  end_date = sgqlc.types.Field('DateFieldComparison', graphql_name='endDate')
1335
- environment_id = sgqlc.types.Field('StringFieldComparison', graphql_name='environmentId')
1336
- id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
1339
+ environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
1340
+ id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
1337
1341
  old_billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='oldBillingId')
1338
1342
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerFilterCustomerSubscriptionFilter')), graphql_name='or')
1339
- paying_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='payingCustomerId')
1343
+ paying_customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='payingCustomerId')
1340
1344
  payment_collection = sgqlc.types.Field('PaymentCollectionFilterComparison', graphql_name='paymentCollection')
1341
1345
  pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
1342
1346
  ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
1343
- resource_id = sgqlc.types.Field('StringFieldComparison', graphql_name='resourceId')
1347
+ resource_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='resourceId')
1344
1348
  salesforce_id = sgqlc.types.Field('StringFieldComparison', graphql_name='salesforceId')
1345
1349
  start_date = sgqlc.types.Field('DateFieldComparison', graphql_name='startDate')
1346
1350
  status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
@@ -1454,18 +1458,18 @@ class CustomerResourceFilterCustomerSubscriptionFilter(sgqlc.types.Input):
1454
1458
  crm_link_url = sgqlc.types.Field('StringFieldComparison', graphql_name='crmLinkUrl')
1455
1459
  current_billing_period_end = sgqlc.types.Field('DateFieldComparison', graphql_name='currentBillingPeriodEnd')
1456
1460
  current_billing_period_start = sgqlc.types.Field('DateFieldComparison', graphql_name='currentBillingPeriodStart')
1457
- customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='customerId')
1461
+ customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='customerId')
1458
1462
  effective_end_date = sgqlc.types.Field('DateFieldComparison', graphql_name='effectiveEndDate')
1459
1463
  end_date = sgqlc.types.Field('DateFieldComparison', graphql_name='endDate')
1460
- environment_id = sgqlc.types.Field('StringFieldComparison', graphql_name='environmentId')
1461
- id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
1464
+ environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
1465
+ id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
1462
1466
  old_billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='oldBillingId')
1463
1467
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerResourceFilterCustomerSubscriptionFilter')), graphql_name='or')
1464
- paying_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='payingCustomerId')
1468
+ paying_customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='payingCustomerId')
1465
1469
  payment_collection = sgqlc.types.Field('PaymentCollectionFilterComparison', graphql_name='paymentCollection')
1466
1470
  pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
1467
1471
  ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
1468
- resource_id = sgqlc.types.Field('StringFieldComparison', graphql_name='resourceId')
1472
+ resource_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='resourceId')
1469
1473
  salesforce_id = sgqlc.types.Field('StringFieldComparison', graphql_name='salesforceId')
1470
1474
  start_date = sgqlc.types.Field('DateFieldComparison', graphql_name='startDate')
1471
1475
  status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
@@ -1510,22 +1514,22 @@ class CustomerSubscriptionFilter(sgqlc.types.Input):
1510
1514
  current_billing_period_end = sgqlc.types.Field('DateFieldComparison', graphql_name='currentBillingPeriodEnd')
1511
1515
  current_billing_period_start = sgqlc.types.Field('DateFieldComparison', graphql_name='currentBillingPeriodStart')
1512
1516
  customer = sgqlc.types.Field('CustomerSubscriptionFilterCustomerFilter', graphql_name='customer')
1513
- customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='customerId')
1517
+ customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='customerId')
1514
1518
  effective_end_date = sgqlc.types.Field('DateFieldComparison', graphql_name='effectiveEndDate')
1515
1519
  end_date = sgqlc.types.Field('DateFieldComparison', graphql_name='endDate')
1516
- environment_id = sgqlc.types.Field('StringFieldComparison', graphql_name='environmentId')
1517
- id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
1520
+ environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
1521
+ id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
1518
1522
  old_billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='oldBillingId')
1519
1523
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilter')), graphql_name='or')
1520
1524
  paying_customer = sgqlc.types.Field('CustomerSubscriptionFilterCustomerFilter', graphql_name='payingCustomer')
1521
- paying_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='payingCustomerId')
1525
+ paying_customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='payingCustomerId')
1522
1526
  payment_collection = sgqlc.types.Field('PaymentCollectionFilterComparison', graphql_name='paymentCollection')
1523
1527
  plan = sgqlc.types.Field('CustomerSubscriptionFilterPlanFilter', graphql_name='plan')
1524
1528
  prices = sgqlc.types.Field('CustomerSubscriptionFilterSubscriptionPriceFilter', graphql_name='prices')
1525
1529
  pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
1526
1530
  ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
1527
1531
  resource = sgqlc.types.Field('CustomerSubscriptionFilterCustomerResourceFilter', graphql_name='resource')
1528
- resource_id = sgqlc.types.Field('StringFieldComparison', graphql_name='resourceId')
1532
+ resource_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='resourceId')
1529
1533
  salesforce_id = sgqlc.types.Field('StringFieldComparison', graphql_name='salesforceId')
1530
1534
  start_date = sgqlc.types.Field('DateFieldComparison', graphql_name='startDate')
1531
1535
  status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
@@ -1676,7 +1680,7 @@ class DelegateSubscriptionToCustomerInput(sgqlc.types.Input):
1676
1680
  __schema__ = schema
1677
1681
  __field_names__ = ('destination_customer_id', 'environment_id', 'subscription_id')
1678
1682
  destination_customer_id = sgqlc.types.Field(String, graphql_name='destinationCustomerId')
1679
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
1683
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
1680
1684
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
1681
1685
 
1682
1686
 
@@ -1873,7 +1877,7 @@ class EstimateSubscriptionInput(sgqlc.types.Input):
1873
1877
  billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
1874
1878
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
1875
1879
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
1876
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
1880
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
1877
1881
  paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
1878
1882
  plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
1879
1883
  price_unit_amount = sgqlc.types.Field(Float, graphql_name='priceUnitAmount')
@@ -1891,7 +1895,7 @@ class EstimateSubscriptionUpdateInput(sgqlc.types.Input):
1891
1895
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
1892
1896
  applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
1893
1897
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
1894
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
1898
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
1895
1899
  promotion_code = sgqlc.types.Field(String, graphql_name='promotionCode')
1896
1900
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
1897
1901
  unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
@@ -2159,7 +2163,7 @@ class GetActiveSubscriptionsInput(sgqlc.types.Input):
2159
2163
  __schema__ = schema
2160
2164
  __field_names__ = ('customer_id', 'environment_id', 'resource_id', 'resource_ids')
2161
2165
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
2162
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
2166
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
2163
2167
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
2164
2168
  resource_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='resourceIds')
2165
2169
 
@@ -2212,7 +2216,7 @@ class GetPaywallInput(sgqlc.types.Input):
2212
2216
  class GetSubscriptionInput(sgqlc.types.Input):
2213
2217
  __schema__ = schema
2214
2218
  __field_names__ = ('environment_id', 'subscription_id')
2215
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
2219
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
2216
2220
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
2217
2221
 
2218
2222
 
@@ -2391,7 +2395,7 @@ class ImportSubscriptionInput(sgqlc.types.Input):
2391
2395
  class ImportSubscriptionsBulkInput(sgqlc.types.Input):
2392
2396
  __schema__ = schema
2393
2397
  __field_names__ = ('environment_id', 'subscriptions')
2394
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
2398
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
2395
2399
  subscriptions = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ImportSubscriptionInput))), graphql_name='subscriptions')
2396
2400
 
2397
2401
 
@@ -2481,7 +2485,7 @@ class ListAwsProductsInput(sgqlc.types.Input):
2481
2485
  class MarkInvoiceAsPaidInput(sgqlc.types.Input):
2482
2486
  __schema__ = schema
2483
2487
  __field_names__ = ('environment_id', 'subscription_id')
2484
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
2488
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
2485
2489
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
2486
2490
 
2487
2491
 
@@ -3035,7 +3039,7 @@ class PreparePaymentMethodFormInput(sgqlc.types.Input):
3035
3039
  class PreviewNextInvoiceInput(sgqlc.types.Input):
3036
3040
  __schema__ = schema
3037
3041
  __field_names__ = ('environment_id', 'subscription_id')
3038
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
3042
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
3039
3043
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
3040
3044
 
3041
3045
 
@@ -3049,7 +3053,7 @@ class PreviewSubscriptionInput(sgqlc.types.Input):
3049
3053
  billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
3050
3054
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
3051
3055
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
3052
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
3056
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
3053
3057
  paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
3054
3058
  plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
3055
3059
  promotion_code = sgqlc.types.Field(String, graphql_name='promotionCode')
@@ -3475,7 +3479,7 @@ class RemoveExperimentFromCustomerInput(sgqlc.types.Input):
3475
3479
  class RemoveExperimentFromCustomerSubscriptionInput(sgqlc.types.Input):
3476
3480
  __schema__ = schema
3477
3481
  __field_names__ = ('id', 'relation_id')
3478
- id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
3482
+ id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
3479
3483
  relation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='relationId')
3480
3484
 
3481
3485
 
@@ -3574,7 +3578,7 @@ class SetExperimentOnCustomerInput(sgqlc.types.Input):
3574
3578
  class SetExperimentOnCustomerSubscriptionInput(sgqlc.types.Input):
3575
3579
  __schema__ = schema
3576
3580
  __field_names__ = ('id', 'relation_id')
3577
- id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
3581
+ id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
3578
3582
  relation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='relationId')
3579
3583
 
3580
3584
 
@@ -3711,18 +3715,18 @@ class SubscriptionAddonFilterCustomerSubscriptionFilter(sgqlc.types.Input):
3711
3715
  crm_link_url = sgqlc.types.Field(StringFieldComparison, graphql_name='crmLinkUrl')
3712
3716
  current_billing_period_end = sgqlc.types.Field(DateFieldComparison, graphql_name='currentBillingPeriodEnd')
3713
3717
  current_billing_period_start = sgqlc.types.Field(DateFieldComparison, graphql_name='currentBillingPeriodStart')
3714
- customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
3718
+ customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='customerId')
3715
3719
  effective_end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='effectiveEndDate')
3716
3720
  end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='endDate')
3717
- environment_id = sgqlc.types.Field(StringFieldComparison, graphql_name='environmentId')
3718
- id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
3721
+ environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
3722
+ id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
3719
3723
  old_billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='oldBillingId')
3720
3724
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilterCustomerSubscriptionFilter')), graphql_name='or')
3721
- paying_customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='payingCustomerId')
3725
+ paying_customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='payingCustomerId')
3722
3726
  payment_collection = sgqlc.types.Field(PaymentCollectionFilterComparison, graphql_name='paymentCollection')
3723
3727
  pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
3724
3728
  ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
3725
- resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
3729
+ resource_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='resourceId')
3726
3730
  salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
3727
3731
  start_date = sgqlc.types.Field(DateFieldComparison, graphql_name='startDate')
3728
3732
  status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
@@ -3797,7 +3801,7 @@ class SubscriptionCancellationInput(sgqlc.types.Input):
3797
3801
  __schema__ = schema
3798
3802
  __field_names__ = ('end_date', 'environment_id', 'prorate', 'subscription_cancellation_action', 'subscription_cancellation_time', 'subscription_ref_id')
3799
3803
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
3800
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
3804
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
3801
3805
  prorate = sgqlc.types.Field(Boolean, graphql_name='prorate')
3802
3806
  subscription_cancellation_action = sgqlc.types.Field(SubscriptionCancellationAction, graphql_name='subscriptionCancellationAction')
3803
3807
  subscription_cancellation_time = sgqlc.types.Field(SubscriptionCancellationTime, graphql_name='subscriptionCancellationTime')
@@ -3857,18 +3861,18 @@ class SubscriptionEntitlementFilterCustomerSubscriptionFilter(sgqlc.types.Input)
3857
3861
  crm_link_url = sgqlc.types.Field(StringFieldComparison, graphql_name='crmLinkUrl')
3858
3862
  current_billing_period_end = sgqlc.types.Field(DateFieldComparison, graphql_name='currentBillingPeriodEnd')
3859
3863
  current_billing_period_start = sgqlc.types.Field(DateFieldComparison, graphql_name='currentBillingPeriodStart')
3860
- customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
3864
+ customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='customerId')
3861
3865
  effective_end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='effectiveEndDate')
3862
3866
  end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='endDate')
3863
- environment_id = sgqlc.types.Field(StringFieldComparison, graphql_name='environmentId')
3864
- id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
3867
+ environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
3868
+ id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
3865
3869
  old_billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='oldBillingId')
3866
3870
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlementFilterCustomerSubscriptionFilter')), graphql_name='or')
3867
- paying_customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='payingCustomerId')
3871
+ paying_customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='payingCustomerId')
3868
3872
  payment_collection = sgqlc.types.Field(PaymentCollectionFilterComparison, graphql_name='paymentCollection')
3869
3873
  pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
3870
3874
  ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
3871
- resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
3875
+ resource_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='resourceId')
3872
3876
  salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
3873
3877
  start_date = sgqlc.types.Field(DateFieldComparison, graphql_name='startDate')
3874
3878
  status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
@@ -3931,7 +3935,7 @@ class SubscriptionInput(sgqlc.types.Input):
3931
3935
  crm_id = sgqlc.types.Field(String, graphql_name='crmId')
3932
3936
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
3933
3937
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
3934
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
3938
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
3935
3939
  is_custom_price_subscription = sgqlc.types.Field(Boolean, graphql_name='isCustomPriceSubscription')
3936
3940
  is_overriding_trial_config = sgqlc.types.Field(Boolean, graphql_name='isOverridingTrialConfig')
3937
3941
  is_trial = sgqlc.types.Field(Boolean, graphql_name='isTrial')
@@ -3956,7 +3960,7 @@ class SubscriptionInput(sgqlc.types.Input):
3956
3960
  class SubscriptionMigrationInput(sgqlc.types.Input):
3957
3961
  __schema__ = schema
3958
3962
  __field_names__ = ('environment_id', 'subscription_id', 'subscription_migration_time')
3959
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
3963
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
3960
3964
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
3961
3965
  subscription_migration_time = sgqlc.types.Field(SubscriptionMigrationTime, graphql_name='subscriptionMigrationTime')
3962
3966
 
@@ -4016,18 +4020,18 @@ class SubscriptionPriceFilterCustomerSubscriptionFilter(sgqlc.types.Input):
4016
4020
  crm_link_url = sgqlc.types.Field(StringFieldComparison, graphql_name='crmLinkUrl')
4017
4021
  current_billing_period_end = sgqlc.types.Field(DateFieldComparison, graphql_name='currentBillingPeriodEnd')
4018
4022
  current_billing_period_start = sgqlc.types.Field(DateFieldComparison, graphql_name='currentBillingPeriodStart')
4019
- customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
4023
+ customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='customerId')
4020
4024
  effective_end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='effectiveEndDate')
4021
4025
  end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='endDate')
4022
- environment_id = sgqlc.types.Field(StringFieldComparison, graphql_name='environmentId')
4023
- id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
4026
+ environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
4027
+ id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
4024
4028
  old_billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='oldBillingId')
4025
4029
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionPriceFilterCustomerSubscriptionFilter')), graphql_name='or')
4026
- paying_customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='payingCustomerId')
4030
+ paying_customer_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='payingCustomerId')
4027
4031
  payment_collection = sgqlc.types.Field(PaymentCollectionFilterComparison, graphql_name='paymentCollection')
4028
4032
  pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
4029
4033
  ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
4030
- resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
4034
+ resource_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='resourceId')
4031
4035
  salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
4032
4036
  start_date = sgqlc.types.Field(DateFieldComparison, graphql_name='startDate')
4033
4037
  status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
@@ -4063,7 +4067,7 @@ class SubscriptionQueryFilter(sgqlc.types.Input):
4063
4067
  and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='and')
4064
4068
  created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
4065
4069
  customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
4066
- environment_id = sgqlc.types.Field(StringFieldComparison, graphql_name='environmentId')
4070
+ environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
4067
4071
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='or')
4068
4072
  product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
4069
4073
  resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
@@ -4100,7 +4104,7 @@ class SubscriptionStatusFilterComparison(sgqlc.types.Input):
4100
4104
  class SubscriptionUpdateScheduleCancellationInput(sgqlc.types.Input):
4101
4105
  __schema__ = schema
4102
4106
  __field_names__ = ('environment_id', 'status', 'subscription_id')
4103
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
4107
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
4104
4108
  status = sgqlc.types.Field(SubscriptionScheduleStatus, graphql_name='status')
4105
4109
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
4106
4110
 
@@ -4239,7 +4243,7 @@ class TriggerSubscriptionUsageSyncInput(sgqlc.types.Input):
4239
4243
  __schema__ = schema
4240
4244
  __field_names__ = ('customer_id', 'environment_id', 'resource_id')
4241
4245
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
4242
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
4246
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
4243
4247
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
4244
4248
 
4245
4249
 
@@ -4261,6 +4265,25 @@ class TypographyConfigurationInput(sgqlc.types.Input):
4261
4265
  h3 = sgqlc.types.Field(FontVariantInput, graphql_name='h3')
4262
4266
 
4263
4267
 
4268
+ class UUIDFilterComparison(sgqlc.types.Input):
4269
+ __schema__ = schema
4270
+ __field_names__ = ('eq', 'gt', 'gte', 'i_like', 'in_', 'is_', 'is_not', 'like', 'lt', 'lte', 'neq', 'not_ilike', 'not_in', 'not_like')
4271
+ eq = sgqlc.types.Field(UUID, graphql_name='eq')
4272
+ gt = sgqlc.types.Field(UUID, graphql_name='gt')
4273
+ gte = sgqlc.types.Field(UUID, graphql_name='gte')
4274
+ i_like = sgqlc.types.Field(UUID, graphql_name='iLike')
4275
+ in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name='in')
4276
+ is_ = sgqlc.types.Field(Boolean, graphql_name='is')
4277
+ is_not = sgqlc.types.Field(Boolean, graphql_name='isNot')
4278
+ like = sgqlc.types.Field(UUID, graphql_name='like')
4279
+ lt = sgqlc.types.Field(UUID, graphql_name='lt')
4280
+ lte = sgqlc.types.Field(UUID, graphql_name='lte')
4281
+ neq = sgqlc.types.Field(UUID, graphql_name='neq')
4282
+ not_ilike = sgqlc.types.Field(UUID, graphql_name='notILike')
4283
+ not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name='notIn')
4284
+ not_like = sgqlc.types.Field(UUID, graphql_name='notLike')
4285
+
4286
+
4264
4287
  class UnArchiveFeatureInput(sgqlc.types.Input):
4265
4288
  __schema__ = schema
4266
4289
  __field_names__ = ('environment_id', 'id')
@@ -4481,7 +4504,7 @@ class UpdateSubscriptionInput(sgqlc.types.Input):
4481
4504
  billing_information = sgqlc.types.Field(SubscriptionBillingInfo, graphql_name='billingInformation')
4482
4505
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
4483
4506
  budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
4484
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
4507
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
4485
4508
  minimum_spend = sgqlc.types.Field(SubscriptionMinimumSpendValueInput, graphql_name='minimumSpend')
4486
4509
  price_overrides = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PriceOverrideInput)), graphql_name='priceOverrides')
4487
4510
  promotion_code = sgqlc.types.Field(String, graphql_name='promotionCode')
@@ -5641,16 +5664,16 @@ class CustomerSubscription(sgqlc.types.Type):
5641
5664
  current_billing_period_end = sgqlc.types.Field(DateTime, graphql_name='currentBillingPeriodEnd')
5642
5665
  current_billing_period_start = sgqlc.types.Field(DateTime, graphql_name='currentBillingPeriodStart')
5643
5666
  customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='customer')
5644
- customer_id = sgqlc.types.Field(String, graphql_name='customerId')
5667
+ customer_id = sgqlc.types.Field(UUID, graphql_name='customerId')
5645
5668
  effective_end_date = sgqlc.types.Field(DateTime, graphql_name='effectiveEndDate')
5646
5669
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
5647
5670
  environment = sgqlc.types.Field(sgqlc.types.non_null('Environment'), graphql_name='environment')
5648
- environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
5671
+ environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
5649
5672
  experiment = sgqlc.types.Field('Experiment', graphql_name='experiment')
5650
5673
  experiment_info = sgqlc.types.Field('experimentInfo', graphql_name='experimentInfo')
5651
5674
  free_items = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FreeSubscriptionItem')), graphql_name='freeItems')
5652
5675
  future_updates = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionFutureUpdate'))), graphql_name='futureUpdates')
5653
- id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
5676
+ id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
5654
5677
  is_custom_price_subscription = sgqlc.types.Field(Boolean, graphql_name='isCustomPriceSubscription')
5655
5678
  last_usage_invoice = sgqlc.types.Field('SubscriptionInvoice', graphql_name='lastUsageInvoice')
5656
5679
  latest_invoice = sgqlc.types.Field('SubscriptionInvoice', graphql_name='latestInvoice')
@@ -5658,7 +5681,7 @@ class CustomerSubscription(sgqlc.types.Type):
5658
5681
  old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
5659
5682
  outdated_price_packages = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='outdatedPricePackages')
5660
5683
  paying_customer = sgqlc.types.Field(Customer, graphql_name='payingCustomer')
5661
- paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
5684
+ paying_customer_id = sgqlc.types.Field(UUID, graphql_name='payingCustomerId')
5662
5685
  payment_collection = sgqlc.types.Field(sgqlc.types.non_null(PaymentCollection), graphql_name='paymentCollection')
5663
5686
  payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
5664
5687
  plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='plan')
@@ -5670,7 +5693,7 @@ class CustomerSubscription(sgqlc.types.Type):
5670
5693
  pricing_type = sgqlc.types.Field(sgqlc.types.non_null(PricingType), graphql_name='pricingType')
5671
5694
  ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
5672
5695
  resource = sgqlc.types.Field(CustomerResource, graphql_name='resource')
5673
- resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
5696
+ resource_id = sgqlc.types.Field(UUID, graphql_name='resourceId')
5674
5697
  salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
5675
5698
  scheduled_updates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionScheduledUpdate')), graphql_name='scheduledUpdates')
5676
5699
  start_date = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='startDate')
@@ -5700,17 +5723,17 @@ class CustomerSubscriptionAggregateGroupBy(sgqlc.types.Type):
5700
5723
  crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
5701
5724
  current_billing_period_end = sgqlc.types.Field(DateTime, graphql_name='currentBillingPeriodEnd')
5702
5725
  current_billing_period_start = sgqlc.types.Field(DateTime, graphql_name='currentBillingPeriodStart')
5703
- customer_id = sgqlc.types.Field(String, graphql_name='customerId')
5726
+ customer_id = sgqlc.types.Field(UUID, graphql_name='customerId')
5704
5727
  effective_end_date = sgqlc.types.Field(DateTime, graphql_name='effectiveEndDate')
5705
5728
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
5706
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
5707
- id = sgqlc.types.Field(String, graphql_name='id')
5729
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
5730
+ id = sgqlc.types.Field(UUID, graphql_name='id')
5708
5731
  old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
5709
- paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
5732
+ paying_customer_id = sgqlc.types.Field(UUID, graphql_name='payingCustomerId')
5710
5733
  payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
5711
5734
  pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
5712
5735
  ref_id = sgqlc.types.Field(String, graphql_name='refId')
5713
- resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
5736
+ resource_id = sgqlc.types.Field(UUID, graphql_name='resourceId')
5714
5737
  salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
5715
5738
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
5716
5739
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
@@ -5775,17 +5798,17 @@ class CustomerSubscriptionMaxAggregate(sgqlc.types.Type):
5775
5798
  crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
5776
5799
  current_billing_period_end = sgqlc.types.Field(DateTime, graphql_name='currentBillingPeriodEnd')
5777
5800
  current_billing_period_start = sgqlc.types.Field(DateTime, graphql_name='currentBillingPeriodStart')
5778
- customer_id = sgqlc.types.Field(String, graphql_name='customerId')
5801
+ customer_id = sgqlc.types.Field(UUID, graphql_name='customerId')
5779
5802
  effective_end_date = sgqlc.types.Field(DateTime, graphql_name='effectiveEndDate')
5780
5803
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
5781
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
5782
- id = sgqlc.types.Field(String, graphql_name='id')
5804
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
5805
+ id = sgqlc.types.Field(UUID, graphql_name='id')
5783
5806
  old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
5784
- paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
5807
+ paying_customer_id = sgqlc.types.Field(UUID, graphql_name='payingCustomerId')
5785
5808
  payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
5786
5809
  pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
5787
5810
  ref_id = sgqlc.types.Field(String, graphql_name='refId')
5788
- resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
5811
+ resource_id = sgqlc.types.Field(UUID, graphql_name='resourceId')
5789
5812
  salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
5790
5813
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
5791
5814
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
@@ -5805,17 +5828,17 @@ class CustomerSubscriptionMinAggregate(sgqlc.types.Type):
5805
5828
  crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
5806
5829
  current_billing_period_end = sgqlc.types.Field(DateTime, graphql_name='currentBillingPeriodEnd')
5807
5830
  current_billing_period_start = sgqlc.types.Field(DateTime, graphql_name='currentBillingPeriodStart')
5808
- customer_id = sgqlc.types.Field(String, graphql_name='customerId')
5831
+ customer_id = sgqlc.types.Field(UUID, graphql_name='customerId')
5809
5832
  effective_end_date = sgqlc.types.Field(DateTime, graphql_name='effectiveEndDate')
5810
5833
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
5811
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
5812
- id = sgqlc.types.Field(String, graphql_name='id')
5834
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
5835
+ id = sgqlc.types.Field(UUID, graphql_name='id')
5813
5836
  old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
5814
- paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
5837
+ paying_customer_id = sgqlc.types.Field(UUID, graphql_name='payingCustomerId')
5815
5838
  payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
5816
5839
  pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
5817
5840
  ref_id = sgqlc.types.Field(String, graphql_name='refId')
5818
- resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
5841
+ resource_id = sgqlc.types.Field(UUID, graphql_name='resourceId')
5819
5842
  salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
5820
5843
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
5821
5844
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
@@ -9747,17 +9770,17 @@ class SubscriptionQuery(sgqlc.types.Type):
9747
9770
  effective_end_date = sgqlc.types.Field(DateTime, graphql_name='effectiveEndDate')
9748
9771
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
9749
9772
  environment = sgqlc.types.Field(sgqlc.types.non_null(Environment), graphql_name='environment')
9750
- environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
9773
+ environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
9751
9774
  experiment = sgqlc.types.Field(Experiment, graphql_name='experiment')
9752
9775
  experiment_info = sgqlc.types.Field('experimentInfo', graphql_name='experimentInfo')
9753
9776
  free_items = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FreeSubscriptionItem)), graphql_name='freeItems')
9754
- id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
9777
+ id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
9755
9778
  last_usage_invoice = sgqlc.types.Field(SubscriptionInvoice, graphql_name='lastUsageInvoice')
9756
9779
  latest_invoice = sgqlc.types.Field(SubscriptionInvoice, graphql_name='latestInvoice')
9757
9780
  minimum_spend = sgqlc.types.Field(SubscriptionMinimumSpend, graphql_name='minimumSpend')
9758
9781
  old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
9759
9782
  paying_customer = sgqlc.types.Field(Customer, graphql_name='payingCustomer')
9760
- paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
9783
+ paying_customer_id = sgqlc.types.Field(UUID, graphql_name='payingCustomerId')
9761
9784
  payment_collection = sgqlc.types.Field(sgqlc.types.non_null(PaymentCollection), graphql_name='paymentCollection')
9762
9785
  payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
9763
9786
  plan = sgqlc.types.Field(sgqlc.types.non_null(Plan), graphql_name='plan')
@@ -9792,7 +9815,7 @@ class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
9792
9815
  __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
9793
9816
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
9794
9817
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
9795
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
9818
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
9796
9819
  product_id = sgqlc.types.Field(String, graphql_name='productId')
9797
9820
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
9798
9821
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
@@ -9829,7 +9852,7 @@ class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
9829
9852
  __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
9830
9853
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
9831
9854
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
9832
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
9855
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
9833
9856
  product_id = sgqlc.types.Field(String, graphql_name='productId')
9834
9857
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
9835
9858
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
@@ -9840,7 +9863,7 @@ class SubscriptionQueryMinAggregate(sgqlc.types.Type):
9840
9863
  __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
9841
9864
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
9842
9865
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
9843
- environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
9866
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
9844
9867
  product_id = sgqlc.types.Field(String, graphql_name='productId')
9845
9868
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
9846
9869
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')