@stigg/api-client-js 2.467.0 → 2.472.0

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.
@@ -41,6 +41,8 @@ export declare enum AccessDeniedReason {
41
41
  CustomerResourceNotFound = "CustomerResourceNotFound",
42
42
  /** The requested feature does not exist or is not defined in the current environment. */
43
43
  FeatureNotFound = "FeatureNotFound",
44
+ /** The requested entitlement type does not match the feature type */
45
+ FeatureTypeMismatch = "FeatureTypeMismatch",
44
46
  /** The customer does not have any active subscription linked to the feature. */
45
47
  NoActiveSubscription = "NoActiveSubscription",
46
48
  /** The current subscription does not include entitlement to the requested feature. */
@@ -75,14 +77,14 @@ export declare enum AccountStatus {
75
77
  }
76
78
  export declare type AddCompatibleAddonsToPlanInput = {
77
79
  /** The id of the record. */
78
- id: Scalars['String'];
80
+ id: Scalars['UUID'];
79
81
  /** The ids of the relations. */
80
- relationIds: Array<Scalars['String']>;
82
+ relationIds: Array<Scalars['UUID']>;
81
83
  };
82
84
  /** Archive addon input */
83
85
  export declare type AddonArchiveInput = {
84
86
  /** The unique identifier for the environment */
85
- environmentId?: InputMaybe<Scalars['String']>;
87
+ environmentId?: InputMaybe<Scalars['UUID']>;
86
88
  /** Addon id */
87
89
  refId: Scalars['String'];
88
90
  };
@@ -108,7 +110,7 @@ export declare type AddonCreateInput = {
108
110
  /** The display name of the package */
109
111
  displayName: Scalars['String'];
110
112
  /** The unique identifier for the environment */
111
- environmentId?: InputMaybe<Scalars['String']>;
113
+ environmentId?: InputMaybe<Scalars['UUID']>;
112
114
  /** List of hidden widgets of the package */
113
115
  hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
114
116
  /** The maximum quantity of this addon that can be added to a subscription */
@@ -128,8 +130,8 @@ export declare type AddonFilter = {
128
130
  createdAt?: InputMaybe<DateFieldComparison>;
129
131
  description?: InputMaybe<StringFieldComparison>;
130
132
  displayName?: InputMaybe<StringFieldComparison>;
131
- environmentId?: InputMaybe<StringFieldComparison>;
132
- id?: InputMaybe<StringFieldComparison>;
133
+ environmentId?: InputMaybe<UuidFilterComparison>;
134
+ id?: InputMaybe<UuidFilterComparison>;
133
135
  isLatest?: InputMaybe<BooleanFieldComparison>;
134
136
  or?: InputMaybe<Array<AddonFilter>>;
135
137
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -162,7 +164,7 @@ export declare enum AddonSortFields {
162
164
  /** Un-archive addon input */
163
165
  export declare type AddonUnArchiveInput = {
164
166
  /** The unique identifier for the environment */
165
- environmentId?: InputMaybe<Scalars['String']>;
167
+ environmentId?: InputMaybe<Scalars['UUID']>;
166
168
  /** Add-on ID to unarchive */
167
169
  id: Scalars['String'];
168
170
  };
@@ -174,7 +176,7 @@ export declare type AddonUpdateInput = {
174
176
  description?: InputMaybe<Scalars['String']>;
175
177
  displayName?: InputMaybe<Scalars['String']>;
176
178
  hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
177
- id: Scalars['String'];
179
+ id: Scalars['UUID'];
178
180
  /** The maximum quantity of this addon that can be added to a subscription */
179
181
  maxQuantity?: InputMaybe<Scalars['Float']>;
180
182
  status?: InputMaybe<PackageStatus>;
@@ -203,7 +205,7 @@ export declare type AggregatedEventsByCustomerInput = {
203
205
  /** Customer id */
204
206
  customerId?: InputMaybe<Scalars['String']>;
205
207
  /** The unique identifier for the environment */
206
- environmentId: Scalars['String'];
208
+ environmentId: Scalars['UUID'];
207
209
  /** List of event filters */
208
210
  filters: Array<MeterFilterDefinitionInput>;
209
211
  };
@@ -233,7 +235,7 @@ export declare enum Alignment {
233
235
  }
234
236
  export declare type ApiKeyFilter = {
235
237
  and?: InputMaybe<Array<ApiKeyFilter>>;
236
- id?: InputMaybe<StringFieldComparison>;
238
+ id?: InputMaybe<UuidFilterComparison>;
237
239
  or?: InputMaybe<Array<ApiKeyFilter>>;
238
240
  };
239
241
  export declare type ApiKeySort = {
@@ -296,7 +298,7 @@ export declare type ApplySubscriptionInput = {
296
298
  /** Archive a coupon input */
297
299
  export declare type ArchiveCouponInput = {
298
300
  /** The unique identifier for the environment */
299
- environmentId?: InputMaybe<Scalars['String']>;
301
+ environmentId?: InputMaybe<Scalars['UUID']>;
300
302
  /** The unique identifier for the entity */
301
303
  refId: Scalars['String'];
302
304
  };
@@ -304,7 +306,7 @@ export declare type ArchiveCustomerInput = {
304
306
  /** Customer slug */
305
307
  customerId: Scalars['String'];
306
308
  /** The unique identifier for the environment */
307
- environmentId?: InputMaybe<Scalars['String']>;
309
+ environmentId?: InputMaybe<Scalars['UUID']>;
308
310
  };
309
311
  /** Input for archiving an environment */
310
312
  export declare type ArchiveEnvironmentInput = {
@@ -323,7 +325,7 @@ export declare type ArchiveFeatureGroupInput = {
323
325
  /** Input for archiving a feature */
324
326
  export declare type ArchiveFeatureInput = {
325
327
  /** The unique identifier for the environment */
326
- environmentId?: InputMaybe<Scalars['String']>;
328
+ environmentId?: InputMaybe<Scalars['UUID']>;
327
329
  /** Unique identifier for the entity */
328
330
  id: Scalars['String'];
329
331
  };
@@ -337,7 +339,7 @@ export declare type ArchivePackageGroup = {
337
339
  /** Input for archiving a plan */
338
340
  export declare type ArchivePlanInput = {
339
341
  /** The unique identifier for the environment */
340
- environmentId?: InputMaybe<Scalars['String']>;
342
+ environmentId?: InputMaybe<Scalars['UUID']>;
341
343
  /** Plan ID to archive */
342
344
  id: Scalars['String'];
343
345
  };
@@ -348,7 +350,7 @@ export declare type AttachCustomerPaymentMethodInput = {
348
350
  /** Customer slug */
349
351
  customerId?: InputMaybe<Scalars['String']>;
350
352
  /** The unique identifier for the environment */
351
- environmentId?: InputMaybe<Scalars['String']>;
353
+ environmentId?: InputMaybe<Scalars['UUID']>;
352
354
  /** The billing integration to use for this payment method */
353
355
  integrationId?: InputMaybe<Scalars['String']>;
354
356
  /** Billing provider payment method id */
@@ -607,7 +609,7 @@ export declare type ClearCustomerPersistentCacheInput = {
607
609
  /** The unique identifier of the customer whose cache should be cleared. */
608
610
  customerId: Scalars['String'];
609
611
  /** The unique identifier for the environment */
610
- environmentId?: InputMaybe<Scalars['String']>;
612
+ environmentId?: InputMaybe<Scalars['UUID']>;
611
613
  /** The resource ID scoped to the customer. */
612
614
  resourceId?: InputMaybe<Scalars['String']>;
613
615
  };
@@ -636,8 +638,8 @@ export declare type CouponFilter = {
636
638
  createdAt?: InputMaybe<DateFieldComparison>;
637
639
  customers?: InputMaybe<CouponFilterCustomerFilter>;
638
640
  description?: InputMaybe<StringFieldComparison>;
639
- environmentId?: InputMaybe<StringFieldComparison>;
640
- id?: InputMaybe<StringFieldComparison>;
641
+ environmentId?: InputMaybe<UuidFilterComparison>;
642
+ id?: InputMaybe<UuidFilterComparison>;
641
643
  name?: InputMaybe<StringFieldComparison>;
642
644
  or?: InputMaybe<Array<CouponFilter>>;
643
645
  refId?: InputMaybe<StringFieldComparison>;
@@ -656,8 +658,8 @@ export declare type CouponFilterCustomerFilter = {
656
658
  customerId?: InputMaybe<StringFieldComparison>;
657
659
  deletedAt?: InputMaybe<DateFieldComparison>;
658
660
  email?: InputMaybe<StringFieldComparison>;
659
- environmentId?: InputMaybe<StringFieldComparison>;
660
- id?: InputMaybe<StringFieldComparison>;
661
+ environmentId?: InputMaybe<UuidFilterComparison>;
662
+ id?: InputMaybe<UuidFilterComparison>;
661
663
  name?: InputMaybe<StringFieldComparison>;
662
664
  or?: InputMaybe<Array<CouponFilterCustomerFilter>>;
663
665
  refId?: InputMaybe<StringFieldComparison>;
@@ -755,7 +757,7 @@ export declare type CreateCouponInput = {
755
757
  /** Duration of the coupon validity in months */
756
758
  durationInMonths?: InputMaybe<Scalars['Float']>;
757
759
  /** The unique identifier for the environment */
758
- environmentId?: InputMaybe<Scalars['String']>;
760
+ environmentId?: InputMaybe<Scalars['UUID']>;
759
761
  /** Name of the coupon */
760
762
  name: Scalars['String'];
761
763
  /** Percentage discount off the original price */
@@ -798,7 +800,7 @@ export declare type CreateExperimentInput = {
798
800
  /** Description of the experiements */
799
801
  description?: InputMaybe<Scalars['String']>;
800
802
  /** The unique identifier for the environment */
801
- environmentId?: InputMaybe<Scalars['String']>;
803
+ environmentId?: InputMaybe<Scalars['UUID']>;
802
804
  /** Name of the experiment */
803
805
  name: Scalars['String'];
804
806
  /** Internal identifier for the product experiment is associated with */
@@ -833,11 +835,11 @@ export declare type CreateHook = {
833
835
  /** The Webhook endpoint URL */
834
836
  endpoint?: InputMaybe<Scalars['String']>;
835
837
  /** The unique identifier for the environment */
836
- environmentId?: InputMaybe<Scalars['String']>;
838
+ environmentId?: InputMaybe<Scalars['UUID']>;
837
839
  /** The event types that the webhook will be triggered on */
838
840
  eventLogTypes?: InputMaybe<Array<EventLogType>>;
839
841
  /** Unique identifier for the entity */
840
- id?: InputMaybe<Scalars['String']>;
842
+ id?: InputMaybe<Scalars['UUID']>;
841
843
  /** Secret key for the webhook */
842
844
  secretKey?: InputMaybe<Scalars['String']>;
843
845
  /** The status of the webhook */
@@ -922,7 +924,7 @@ export declare type CreateOrUpdateAwsMarketplaceProductInput = {
922
924
  /** Display name of the product */
923
925
  displayName?: InputMaybe<Scalars['String']>;
924
926
  /** The unique identifier for the environment */
925
- environmentId?: InputMaybe<Scalars['String']>;
927
+ environmentId?: InputMaybe<Scalars['UUID']>;
926
928
  /** Indicates if multiple subscriptions to this product are allowed */
927
929
  multipleSubscriptions?: InputMaybe<Scalars['Boolean']>;
928
930
  /** Stigg product ID to be mapped to AWS Marketplace */
@@ -941,7 +943,7 @@ export declare type CreatePackageGroup = {
941
943
  /** The display name of the package group */
942
944
  displayName: Scalars['String'];
943
945
  /** The unique identifier for the environment */
944
- environmentId?: InputMaybe<Scalars['String']>;
946
+ environmentId?: InputMaybe<Scalars['UUID']>;
945
947
  /** The id of the package group */
946
948
  packageGroupId: Scalars['String'];
947
949
  /** The id of the related product */
@@ -954,7 +956,7 @@ export declare type CreateWorkflowTriggerInput = {
954
956
  /** Workflow trigger endpoint */
955
957
  endpoint: Scalars['String'];
956
958
  /** The unique identifier for the environment */
957
- environmentId?: InputMaybe<Scalars['String']>;
959
+ environmentId?: InputMaybe<Scalars['UUID']>;
958
960
  /** Event log types */
959
961
  eventLogTypes: Array<EventLogType>;
960
962
  /** Workflow trigger id */
@@ -1240,8 +1242,8 @@ export declare type CustomerFilter = {
1240
1242
  customerId?: InputMaybe<StringFieldComparison>;
1241
1243
  deletedAt?: InputMaybe<DateFieldComparison>;
1242
1244
  email?: InputMaybe<StringFieldComparison>;
1243
- environmentId?: InputMaybe<StringFieldComparison>;
1244
- id?: InputMaybe<StringFieldComparison>;
1245
+ environmentId?: InputMaybe<UuidFilterComparison>;
1246
+ id?: InputMaybe<UuidFilterComparison>;
1245
1247
  name?: InputMaybe<StringFieldComparison>;
1246
1248
  or?: InputMaybe<Array<CustomerFilter>>;
1247
1249
  promotionalEntitlements?: InputMaybe<CustomerFilterPromotionalEntitlementFilter>;
@@ -1283,8 +1285,8 @@ export declare type CustomerFilterCustomerSubscriptionFilter = {
1283
1285
  export declare type CustomerFilterPromotionalEntitlementFilter = {
1284
1286
  and?: InputMaybe<Array<CustomerFilterPromotionalEntitlementFilter>>;
1285
1287
  createdAt?: InputMaybe<DateFieldComparison>;
1286
- environmentId?: InputMaybe<StringFieldComparison>;
1287
- id?: InputMaybe<StringFieldComparison>;
1288
+ environmentId?: InputMaybe<UuidFilterComparison>;
1289
+ id?: InputMaybe<UuidFilterComparison>;
1288
1290
  or?: InputMaybe<Array<CustomerFilterPromotionalEntitlementFilter>>;
1289
1291
  status?: InputMaybe<PromotionalEntitlementStatusFilterComparison>;
1290
1292
  updatedAt?: InputMaybe<DateFieldComparison>;
@@ -1310,7 +1312,7 @@ export declare type CustomerInput = {
1310
1312
  /** The email of the customer */
1311
1313
  email?: InputMaybe<Scalars['String']>;
1312
1314
  /** The unique identifier for the environment */
1313
- environmentId?: InputMaybe<Scalars['String']>;
1315
+ environmentId?: InputMaybe<Scalars['UUID']>;
1314
1316
  /** The name of the customer */
1315
1317
  name?: InputMaybe<Scalars['String']>;
1316
1318
  /** Customer slug */
@@ -1359,7 +1361,7 @@ export declare type CustomerResourceFilter = {
1359
1361
  and?: InputMaybe<Array<CustomerResourceFilter>>;
1360
1362
  createdAt?: InputMaybe<DateFieldComparison>;
1361
1363
  customer?: InputMaybe<CustomerResourceFilterCustomerFilter>;
1362
- environmentId?: InputMaybe<StringFieldComparison>;
1364
+ environmentId?: InputMaybe<UuidFilterComparison>;
1363
1365
  or?: InputMaybe<Array<CustomerResourceFilter>>;
1364
1366
  resourceId?: InputMaybe<StringFieldComparison>;
1365
1367
  subscriptions?: InputMaybe<CustomerResourceFilterCustomerSubscriptionFilter>;
@@ -1374,8 +1376,8 @@ export declare type CustomerResourceFilterCustomerFilter = {
1374
1376
  customerId?: InputMaybe<StringFieldComparison>;
1375
1377
  deletedAt?: InputMaybe<DateFieldComparison>;
1376
1378
  email?: InputMaybe<StringFieldComparison>;
1377
- environmentId?: InputMaybe<StringFieldComparison>;
1378
- id?: InputMaybe<StringFieldComparison>;
1379
+ environmentId?: InputMaybe<UuidFilterComparison>;
1380
+ id?: InputMaybe<UuidFilterComparison>;
1379
1381
  name?: InputMaybe<StringFieldComparison>;
1380
1382
  or?: InputMaybe<Array<CustomerResourceFilterCustomerFilter>>;
1381
1383
  refId?: InputMaybe<StringFieldComparison>;
@@ -1493,8 +1495,8 @@ export declare type CustomerSubscriptionFilterCustomerFilter = {
1493
1495
  customerId?: InputMaybe<StringFieldComparison>;
1494
1496
  deletedAt?: InputMaybe<DateFieldComparison>;
1495
1497
  email?: InputMaybe<StringFieldComparison>;
1496
- environmentId?: InputMaybe<StringFieldComparison>;
1497
- id?: InputMaybe<StringFieldComparison>;
1498
+ environmentId?: InputMaybe<UuidFilterComparison>;
1499
+ id?: InputMaybe<UuidFilterComparison>;
1498
1500
  name?: InputMaybe<StringFieldComparison>;
1499
1501
  or?: InputMaybe<Array<CustomerSubscriptionFilterCustomerFilter>>;
1500
1502
  refId?: InputMaybe<StringFieldComparison>;
@@ -1505,7 +1507,7 @@ export declare type CustomerSubscriptionFilterCustomerFilter = {
1505
1507
  export declare type CustomerSubscriptionFilterCustomerResourceFilter = {
1506
1508
  and?: InputMaybe<Array<CustomerSubscriptionFilterCustomerResourceFilter>>;
1507
1509
  createdAt?: InputMaybe<DateFieldComparison>;
1508
- environmentId?: InputMaybe<StringFieldComparison>;
1510
+ environmentId?: InputMaybe<UuidFilterComparison>;
1509
1511
  or?: InputMaybe<Array<CustomerSubscriptionFilterCustomerResourceFilter>>;
1510
1512
  resourceId?: InputMaybe<StringFieldComparison>;
1511
1513
  };
@@ -1515,8 +1517,8 @@ export declare type CustomerSubscriptionFilterPlanFilter = {
1515
1517
  createdAt?: InputMaybe<DateFieldComparison>;
1516
1518
  description?: InputMaybe<StringFieldComparison>;
1517
1519
  displayName?: InputMaybe<StringFieldComparison>;
1518
- environmentId?: InputMaybe<StringFieldComparison>;
1519
- id?: InputMaybe<StringFieldComparison>;
1520
+ environmentId?: InputMaybe<UuidFilterComparison>;
1521
+ id?: InputMaybe<UuidFilterComparison>;
1520
1522
  isLatest?: InputMaybe<BooleanFieldComparison>;
1521
1523
  or?: InputMaybe<Array<CustomerSubscriptionFilterPlanFilter>>;
1522
1524
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -1529,7 +1531,7 @@ export declare type CustomerSubscriptionFilterPlanFilter = {
1529
1531
  export declare type CustomerSubscriptionFilterSubscriptionAddonFilter = {
1530
1532
  and?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionAddonFilter>>;
1531
1533
  createdAt?: InputMaybe<DateFieldComparison>;
1532
- id?: InputMaybe<StringFieldComparison>;
1534
+ id?: InputMaybe<UuidFilterComparison>;
1533
1535
  or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionAddonFilter>>;
1534
1536
  quantity?: InputMaybe<NumberFieldComparison>;
1535
1537
  updatedAt?: InputMaybe<DateFieldComparison>;
@@ -1537,8 +1539,8 @@ export declare type CustomerSubscriptionFilterSubscriptionAddonFilter = {
1537
1539
  export declare type CustomerSubscriptionFilterSubscriptionEntitlementFilter = {
1538
1540
  and?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionEntitlementFilter>>;
1539
1541
  createdAt?: InputMaybe<DateFieldComparison>;
1540
- environmentId?: InputMaybe<StringFieldComparison>;
1541
- id?: InputMaybe<StringFieldComparison>;
1542
+ environmentId?: InputMaybe<UuidFilterComparison>;
1543
+ id?: InputMaybe<UuidFilterComparison>;
1542
1544
  or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionEntitlementFilter>>;
1543
1545
  subscriptionId?: InputMaybe<StringFieldComparison>;
1544
1546
  updatedAt?: InputMaybe<DateFieldComparison>;
@@ -1549,7 +1551,7 @@ export declare type CustomerSubscriptionFilterSubscriptionPriceFilter = {
1549
1551
  createdAt?: InputMaybe<DateFieldComparison>;
1550
1552
  featureId?: InputMaybe<StringFieldComparison>;
1551
1553
  hasSoftLimit?: InputMaybe<BooleanFieldComparison>;
1552
- id?: InputMaybe<StringFieldComparison>;
1554
+ id?: InputMaybe<UuidFilterComparison>;
1553
1555
  or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionPriceFilter>>;
1554
1556
  updatedAt?: InputMaybe<DateFieldComparison>;
1555
1557
  usageLimit?: InputMaybe<NumberFieldComparison>;
@@ -1636,25 +1638,25 @@ export declare type DelegateSubscriptionToCustomerInput = {
1636
1638
  /** Input for deleting a feature */
1637
1639
  export declare type DeleteFeatureInput = {
1638
1640
  /** The unique identifier for the environment */
1639
- environmentId?: InputMaybe<Scalars['String']>;
1641
+ environmentId?: InputMaybe<Scalars['UUID']>;
1640
1642
  /** Unique identifier for the entity */
1641
1643
  id: Scalars['String'];
1642
1644
  };
1643
1645
  export declare type DeleteOneHookInput = {
1644
1646
  /** The id of the record to delete. */
1645
- id: Scalars['String'];
1647
+ id: Scalars['UUID'];
1646
1648
  };
1647
1649
  export declare type DeleteOneIntegrationInput = {
1648
1650
  /** The id of the record to delete. */
1649
- id: Scalars['String'];
1651
+ id: Scalars['UUID'];
1650
1652
  };
1651
1653
  export declare type DeleteOnePackageEntitlementInput = {
1652
1654
  /** The id of the record to delete. */
1653
- id: Scalars['String'];
1655
+ id: Scalars['UUID'];
1654
1656
  };
1655
1657
  export declare type DeleteOnePriceInput = {
1656
1658
  /** The id of the record to delete. */
1657
- id: Scalars['String'];
1659
+ id: Scalars['UUID'];
1658
1660
  };
1659
1661
  /** Input for deleting a product */
1660
1662
  export declare type DeleteOneProductInput = {
@@ -1663,12 +1665,12 @@ export declare type DeleteOneProductInput = {
1663
1665
  };
1664
1666
  export declare type DeleteOnePromotionalEntitlementInput = {
1665
1667
  /** The id of the record to delete. */
1666
- id: Scalars['String'];
1668
+ id: Scalars['UUID'];
1667
1669
  };
1668
1670
  /** Delete workflow trigger input */
1669
1671
  export declare type DeleteWorkflowTriggerInput = {
1670
1672
  /** The unique identifier for the environment */
1671
- environmentId?: InputMaybe<Scalars['String']>;
1673
+ environmentId?: InputMaybe<Scalars['UUID']>;
1672
1674
  /** Workflow trigger id */
1673
1675
  workflowTriggerId: Scalars['String'];
1674
1676
  };
@@ -1694,7 +1696,7 @@ export declare type DetachCustomerPaymentMethodInput = {
1694
1696
  /** Customer slug */
1695
1697
  customerId: Scalars['String'];
1696
1698
  /** The unique identifier for the environment */
1697
- environmentId?: InputMaybe<Scalars['String']>;
1699
+ environmentId?: InputMaybe<Scalars['UUID']>;
1698
1700
  };
1699
1701
  /** Configuration for mapping AWS Marketplace dimensions to Stigg plans */
1700
1702
  export declare type DimensionsMappingInput = {
@@ -1726,7 +1728,7 @@ export declare enum DiscountType {
1726
1728
  /** Input for checking if a feature exists */
1727
1729
  export declare type DoesFeatureExist = {
1728
1730
  /** The unique identifier for the environment */
1729
- environmentId: Scalars['String'];
1731
+ environmentId: Scalars['UUID'];
1730
1732
  /** The unique identifier for the feature */
1731
1733
  refId: Scalars['String'];
1732
1734
  };
@@ -1764,7 +1766,7 @@ export declare type EditPackageGroupDetailsInput = {
1764
1766
  /** The display name of the package group */
1765
1767
  displayName: Scalars['String'];
1766
1768
  /** The unique identifier for the environment */
1767
- environmentId?: InputMaybe<Scalars['String']>;
1769
+ environmentId?: InputMaybe<Scalars['UUID']>;
1768
1770
  /** The id of the package group */
1769
1771
  packageGroupId: Scalars['String'];
1770
1772
  };
@@ -1782,7 +1784,7 @@ export declare type EntitlementCheckRequested = {
1782
1784
  /** Result object of an entitlement access check. */
1783
1785
  entitlementCheckResult: EntitlementCheckResult;
1784
1786
  /** The environment context in which the check occurred. */
1785
- environmentId?: InputMaybe<Scalars['String']>;
1787
+ environmentId?: InputMaybe<Scalars['UUID']>;
1786
1788
  /** The internal ID of the feature linked to this entitlement. */
1787
1789
  featureId: Scalars['String'];
1788
1790
  /** The amount of usage requested by the customer. */
@@ -1866,7 +1868,7 @@ export declare type EnvironmentFilter = {
1866
1868
  and?: InputMaybe<Array<EnvironmentFilter>>;
1867
1869
  createdAt?: InputMaybe<DateFieldComparison>;
1868
1870
  displayName?: InputMaybe<StringFieldComparison>;
1869
- id?: InputMaybe<StringFieldComparison>;
1871
+ id?: InputMaybe<UuidFilterComparison>;
1870
1872
  or?: InputMaybe<Array<EnvironmentFilter>>;
1871
1873
  permanentDeletionDate?: InputMaybe<DateFieldComparison>;
1872
1874
  slug?: InputMaybe<StringFieldComparison>;
@@ -2202,7 +2204,7 @@ export declare type EventLogEntityIdFilterComparison = {
2202
2204
  in?: InputMaybe<Array<Scalars['String']>>;
2203
2205
  };
2204
2206
  export declare type EventLogEnvironmentIdFilterComparison = {
2205
- eq?: InputMaybe<Scalars['String']>;
2207
+ eq?: InputMaybe<Scalars['UUID']>;
2206
2208
  };
2207
2209
  export declare type EventLogEventLogTypeFilterComparison = {
2208
2210
  eq?: InputMaybe<EventLogType>;
@@ -2374,7 +2376,7 @@ export declare type EventsFieldsInput = {
2374
2376
  /** Customer id */
2375
2377
  customerId?: InputMaybe<Scalars['String']>;
2376
2378
  /** The unique identifier for the environment */
2377
- environmentId: Scalars['String'];
2379
+ environmentId: Scalars['UUID'];
2378
2380
  /** Reference identifier for the feature */
2379
2381
  featureId?: InputMaybe<Scalars['String']>;
2380
2382
  /** Filters to apply to the events fields */
@@ -2390,8 +2392,8 @@ export declare type ExperimentFilter = {
2390
2392
  and?: InputMaybe<Array<ExperimentFilter>>;
2391
2393
  createdAt?: InputMaybe<DateFieldComparison>;
2392
2394
  customers?: InputMaybe<ExperimentFilterCustomerFilter>;
2393
- environmentId?: InputMaybe<StringFieldComparison>;
2394
- id?: InputMaybe<StringFieldComparison>;
2395
+ environmentId?: InputMaybe<UuidFilterComparison>;
2396
+ id?: InputMaybe<UuidFilterComparison>;
2395
2397
  name?: InputMaybe<StringFieldComparison>;
2396
2398
  or?: InputMaybe<Array<ExperimentFilter>>;
2397
2399
  productId?: InputMaybe<StringFieldComparison>;
@@ -2408,8 +2410,8 @@ export declare type ExperimentFilterCustomerFilter = {
2408
2410
  customerId?: InputMaybe<StringFieldComparison>;
2409
2411
  deletedAt?: InputMaybe<DateFieldComparison>;
2410
2412
  email?: InputMaybe<StringFieldComparison>;
2411
- environmentId?: InputMaybe<StringFieldComparison>;
2412
- id?: InputMaybe<StringFieldComparison>;
2413
+ environmentId?: InputMaybe<UuidFilterComparison>;
2414
+ id?: InputMaybe<UuidFilterComparison>;
2413
2415
  name?: InputMaybe<StringFieldComparison>;
2414
2416
  or?: InputMaybe<Array<ExperimentFilterCustomerFilter>>;
2415
2417
  refId?: InputMaybe<StringFieldComparison>;
@@ -2434,7 +2436,7 @@ export declare enum ExperimentSortFields {
2434
2436
  /** Query parameters for retrieving experiment statistics */
2435
2437
  export declare type ExperimentStatsQuery = {
2436
2438
  /** The unique identifier for the environment */
2437
- environmentId?: InputMaybe<Scalars['String']>;
2439
+ environmentId?: InputMaybe<Scalars['UUID']>;
2438
2440
  /** The unique identifier for the experiment */
2439
2441
  experimentRefId: Scalars['String'];
2440
2442
  };
@@ -2466,7 +2468,7 @@ export declare type ExperimentStatusFilterComparison = {
2466
2468
  /** Input for getting the associated latest packages for a feature */
2467
2469
  export declare type FeatureAssociatedLatestPackages = {
2468
2470
  /** The unique identifier for the environment */
2469
- environmentId: Scalars['String'];
2471
+ environmentId: Scalars['UUID'];
2470
2472
  /** The ID of the feature */
2471
2473
  featureId: Scalars['String'];
2472
2474
  };
@@ -2475,10 +2477,10 @@ export declare type FeatureFilter = {
2475
2477
  createdAt?: InputMaybe<DateFieldComparison>;
2476
2478
  description?: InputMaybe<StringFieldComparison>;
2477
2479
  displayName?: InputMaybe<StringFieldComparison>;
2478
- environmentId?: InputMaybe<StringFieldComparison>;
2480
+ environmentId?: InputMaybe<UuidFilterComparison>;
2479
2481
  featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
2480
2482
  featureType?: InputMaybe<FeatureTypeFilterComparison>;
2481
- id?: InputMaybe<StringFieldComparison>;
2483
+ id?: InputMaybe<UuidFilterComparison>;
2482
2484
  meterType?: InputMaybe<MeterTypeFilterComparison>;
2483
2485
  or?: InputMaybe<Array<FeatureFilter>>;
2484
2486
  refId?: InputMaybe<StringFieldComparison>;
@@ -2547,7 +2549,7 @@ export declare type FeatureInput = {
2547
2549
  /** The configuration data for the feature */
2548
2550
  enumConfiguration?: InputMaybe<Array<EnumConfigurationEntityInput>>;
2549
2551
  /** The unique identifier for the environment */
2550
- environmentId: Scalars['String'];
2552
+ environmentId: Scalars['UUID'];
2551
2553
  /** The status of the feature */
2552
2554
  featureStatus?: InputMaybe<FeatureStatus>;
2553
2555
  /** The type of the feature */
@@ -2683,14 +2685,14 @@ export declare type GetAuth0ApplicationsInput = {
2683
2685
  /** Secret of the Auth0 client */
2684
2686
  clientSecret: Scalars['String'];
2685
2687
  /** The unique identifier for the environment */
2686
- environmentId?: InputMaybe<Scalars['String']>;
2688
+ environmentId?: InputMaybe<Scalars['UUID']>;
2687
2689
  };
2688
2690
  /** Get a customer by slug */
2689
2691
  export declare type GetCustomerByRefIdInput = {
2690
2692
  /** Customer slug */
2691
2693
  customerId: Scalars['String'];
2692
2694
  /** The unique identifier for the environment */
2693
- environmentId?: InputMaybe<Scalars['String']>;
2695
+ environmentId?: InputMaybe<Scalars['UUID']>;
2694
2696
  };
2695
2697
  /** Get Package By Ref Id Input */
2696
2698
  export declare type GetPackageByRefIdInput = {
@@ -2719,7 +2721,7 @@ export declare type GetPaywallInput = {
2719
2721
  /** The customer ID for whom the paywall is being fetched */
2720
2722
  customerId?: InputMaybe<Scalars['String']>;
2721
2723
  /** The unique identifier for the environment */
2722
- environmentId?: InputMaybe<Scalars['String']>;
2724
+ environmentId?: InputMaybe<Scalars['UUID']>;
2723
2725
  /** Whether to fetch prices for all countries or just the specified billing country */
2724
2726
  fetchAllCountriesPrices?: InputMaybe<Scalars['Boolean']>;
2725
2727
  /** Whether to include hidden plans in the paywall */
@@ -2739,12 +2741,12 @@ export declare type GetSubscriptionInput = {
2739
2741
  /** Input object used to retrieve current widget configuration for the environment. */
2740
2742
  export declare type GetWidgetConfigurationInput = {
2741
2743
  /** The unique identifier for the environment */
2742
- environmentId?: InputMaybe<Scalars['String']>;
2744
+ environmentId?: InputMaybe<Scalars['UUID']>;
2743
2745
  };
2744
2746
  /** Get workflow triggers input */
2745
2747
  export declare type GetWorkflowTriggersInput = {
2746
2748
  /** The unique identifier for the environment */
2747
- environmentId?: InputMaybe<Scalars['String']>;
2749
+ environmentId?: InputMaybe<Scalars['UUID']>;
2748
2750
  /** Trigger id */
2749
2751
  triggerId?: InputMaybe<Scalars['String']>;
2750
2752
  /** Workflow trigger id */
@@ -2780,7 +2782,7 @@ export declare type GrantPromotionalEntitlementsInput = {
2780
2782
  /** The unique identifier of the entitlement customer */
2781
2783
  customerId: Scalars['String'];
2782
2784
  /** The unique identifier for the environment */
2783
- environmentId?: InputMaybe<Scalars['String']>;
2785
+ environmentId?: InputMaybe<Scalars['UUID']>;
2784
2786
  /** Promotional entitlements to grant */
2785
2787
  promotionalEntitlements: Array<GrantPromotionalEntitlementInput>;
2786
2788
  };
@@ -2788,8 +2790,8 @@ export declare type HookFilter = {
2788
2790
  and?: InputMaybe<Array<HookFilter>>;
2789
2791
  createdAt?: InputMaybe<DateFieldComparison>;
2790
2792
  endpoint?: InputMaybe<StringFieldComparison>;
2791
- environmentId?: InputMaybe<StringFieldComparison>;
2792
- id?: InputMaybe<StringFieldComparison>;
2793
+ environmentId?: InputMaybe<UuidFilterComparison>;
2794
+ id?: InputMaybe<UuidFilterComparison>;
2793
2795
  or?: InputMaybe<Array<HookFilter>>;
2794
2796
  status?: InputMaybe<HookStatusFilterComparison>;
2795
2797
  };
@@ -2840,7 +2842,7 @@ export declare type ImportCustomerBulkInput = {
2840
2842
  /** List of customers to import */
2841
2843
  customers: Array<ImportCustomerInput>;
2842
2844
  /** The unique identifier for the environment */
2843
- environmentId?: InputMaybe<Scalars['String']>;
2845
+ environmentId?: InputMaybe<Scalars['UUID']>;
2844
2846
  };
2845
2847
  /** Input for importing a customer */
2846
2848
  export declare type ImportCustomerInput = {
@@ -2853,7 +2855,7 @@ export declare type ImportCustomerInput = {
2853
2855
  /** Customer email */
2854
2856
  email?: InputMaybe<Scalars['String']>;
2855
2857
  /** The unique identifier for the environment */
2856
- environmentId?: InputMaybe<Scalars['String']>;
2858
+ environmentId?: InputMaybe<Scalars['UUID']>;
2857
2859
  /** Customer name */
2858
2860
  name?: InputMaybe<Scalars['String']>;
2859
2861
  /** Payment method Id in the billing provider */
@@ -2907,7 +2909,7 @@ export declare type ImportIntegrationTaskFilter = {
2907
2909
  and?: InputMaybe<Array<ImportIntegrationTaskFilter>>;
2908
2910
  createdAt?: InputMaybe<DateFieldComparison>;
2909
2911
  environmentId?: InputMaybe<StringFieldComparison>;
2910
- id?: InputMaybe<StringFieldComparison>;
2912
+ id?: InputMaybe<UuidFilterComparison>;
2911
2913
  or?: InputMaybe<Array<ImportIntegrationTaskFilter>>;
2912
2914
  status?: InputMaybe<TaskStatusFilterComparison>;
2913
2915
  taskType?: InputMaybe<TaskTypeFilterComparison>;
@@ -2951,7 +2953,7 @@ export declare type InitAddStripeCustomerPaymentMethodInput = {
2951
2953
  /** Customer slug */
2952
2954
  customerRefId: Scalars['String'];
2953
2955
  /** The unique identifier for the environment */
2954
- environmentId?: InputMaybe<Scalars['String']>;
2956
+ environmentId?: InputMaybe<Scalars['UUID']>;
2955
2957
  /** The billing integration to use for this payment method */
2956
2958
  integrationId?: InputMaybe<Scalars['String']>;
2957
2959
  };
@@ -2976,8 +2978,8 @@ export declare type IntFieldComparisonBetween = {
2976
2978
  export declare type IntegrationFilter = {
2977
2979
  and?: InputMaybe<Array<IntegrationFilter>>;
2978
2980
  createdAt?: InputMaybe<DateFieldComparison>;
2979
- environmentId?: InputMaybe<StringFieldComparison>;
2980
- id?: InputMaybe<StringFieldComparison>;
2981
+ environmentId?: InputMaybe<UuidFilterComparison>;
2982
+ id?: InputMaybe<UuidFilterComparison>;
2981
2983
  or?: InputMaybe<Array<IntegrationFilter>>;
2982
2984
  vendorIdentifier?: InputMaybe<VendorIdentifierFilterComparison>;
2983
2985
  vendorType?: InputMaybe<IntegrationVendorTypeFilterComparison>;
@@ -3027,14 +3029,14 @@ export declare enum InvoiceLineItemType {
3027
3029
  /** Input for retrieving AWS Marketplace product dimensions */
3028
3030
  export declare type ListAwsProductDimensionsInput = {
3029
3031
  /** The unique identifier for the environment */
3030
- environmentId?: InputMaybe<Scalars['String']>;
3032
+ environmentId?: InputMaybe<Scalars['UUID']>;
3031
3033
  /** AWS product ID to fetch dimensions for */
3032
3034
  productId: Scalars['String'];
3033
3035
  };
3034
3036
  /** Input parameters for listing available AWS Marketplace products */
3035
3037
  export declare type ListAwsProductsInput = {
3036
3038
  /** The unique identifier for the environment */
3037
- environmentId?: InputMaybe<Scalars['String']>;
3039
+ environmentId?: InputMaybe<Scalars['UUID']>;
3038
3040
  };
3039
3041
  /** Input for triggering the subscription invoice as paid */
3040
3042
  export declare type MarkInvoiceAsPaidInput = {
@@ -3047,14 +3049,14 @@ export declare type MemberFilter = {
3047
3049
  and?: InputMaybe<Array<MemberFilter>>;
3048
3050
  createdAt?: InputMaybe<DateFieldComparison>;
3049
3051
  email?: InputMaybe<StringFieldComparison>;
3050
- id?: InputMaybe<StringFieldComparison>;
3052
+ id?: InputMaybe<UuidFilterComparison>;
3051
3053
  or?: InputMaybe<Array<MemberFilter>>;
3052
3054
  user?: InputMaybe<MemberFilterUserFilter>;
3053
3055
  };
3054
3056
  export declare type MemberFilterUserFilter = {
3055
3057
  and?: InputMaybe<Array<MemberFilterUserFilter>>;
3056
3058
  email?: InputMaybe<StringFieldComparison>;
3057
- id?: InputMaybe<StringFieldComparison>;
3059
+ id?: InputMaybe<UuidFilterComparison>;
3058
3060
  name?: InputMaybe<StringFieldComparison>;
3059
3061
  or?: InputMaybe<Array<MemberFilterUserFilter>>;
3060
3062
  };
@@ -3213,7 +3215,7 @@ export declare type OverageEntitlementCreateInput = {
3213
3215
  /** The enum values of the entitlement */
3214
3216
  enumValues?: InputMaybe<Array<Scalars['String']>>;
3215
3217
  /** The unique identifier of the entitlement feature */
3216
- featureId: Scalars['String'];
3218
+ featureId: Scalars['UUID'];
3217
3219
  /** Whether the entitlement has a soft limit */
3218
3220
  hasSoftLimit?: InputMaybe<Scalars['Boolean']>;
3219
3221
  /** Whether the entitlement has an unlimited usage */
@@ -3254,8 +3256,8 @@ export declare type PackageDtoFilter = {
3254
3256
  createdAt?: InputMaybe<DateFieldComparison>;
3255
3257
  description?: InputMaybe<StringFieldComparison>;
3256
3258
  displayName?: InputMaybe<StringFieldComparison>;
3257
- environmentId?: InputMaybe<StringFieldComparison>;
3258
- id?: InputMaybe<StringFieldComparison>;
3259
+ environmentId?: InputMaybe<UuidFilterComparison>;
3260
+ id?: InputMaybe<UuidFilterComparison>;
3259
3261
  isLatest?: InputMaybe<BooleanFieldComparison>;
3260
3262
  or?: InputMaybe<Array<PackageDtoFilter>>;
3261
3263
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3288,9 +3290,9 @@ export declare enum PackageDtoSortFields {
3288
3290
  export declare type PackageEntitlementFilter = {
3289
3291
  and?: InputMaybe<Array<PackageEntitlementFilter>>;
3290
3292
  createdAt?: InputMaybe<DateFieldComparison>;
3291
- environmentId?: InputMaybe<StringFieldComparison>;
3293
+ environmentId?: InputMaybe<UuidFilterComparison>;
3292
3294
  feature?: InputMaybe<PackageEntitlementFilterFeatureFilter>;
3293
- id?: InputMaybe<StringFieldComparison>;
3295
+ id?: InputMaybe<UuidFilterComparison>;
3294
3296
  or?: InputMaybe<Array<PackageEntitlementFilter>>;
3295
3297
  package?: InputMaybe<PackageEntitlementFilterPackageDtoFilter>;
3296
3298
  packageId?: InputMaybe<StringFieldComparison>;
@@ -3301,10 +3303,10 @@ export declare type PackageEntitlementFilterFeatureFilter = {
3301
3303
  createdAt?: InputMaybe<DateFieldComparison>;
3302
3304
  description?: InputMaybe<StringFieldComparison>;
3303
3305
  displayName?: InputMaybe<StringFieldComparison>;
3304
- environmentId?: InputMaybe<StringFieldComparison>;
3306
+ environmentId?: InputMaybe<UuidFilterComparison>;
3305
3307
  featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
3306
3308
  featureType?: InputMaybe<FeatureTypeFilterComparison>;
3307
- id?: InputMaybe<StringFieldComparison>;
3309
+ id?: InputMaybe<UuidFilterComparison>;
3308
3310
  meterType?: InputMaybe<MeterTypeFilterComparison>;
3309
3311
  or?: InputMaybe<Array<PackageEntitlementFilterFeatureFilter>>;
3310
3312
  refId?: InputMaybe<StringFieldComparison>;
@@ -3316,8 +3318,8 @@ export declare type PackageEntitlementFilterPackageDtoFilter = {
3316
3318
  createdAt?: InputMaybe<DateFieldComparison>;
3317
3319
  description?: InputMaybe<StringFieldComparison>;
3318
3320
  displayName?: InputMaybe<StringFieldComparison>;
3319
- environmentId?: InputMaybe<StringFieldComparison>;
3320
- id?: InputMaybe<StringFieldComparison>;
3321
+ environmentId?: InputMaybe<UuidFilterComparison>;
3322
+ id?: InputMaybe<UuidFilterComparison>;
3321
3323
  isLatest?: InputMaybe<BooleanFieldComparison>;
3322
3324
  or?: InputMaybe<Array<PackageEntitlementFilterPackageDtoFilter>>;
3323
3325
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3338,9 +3340,9 @@ export declare type PackageEntitlementInput = {
3338
3340
  /** The enum values of the entitlement */
3339
3341
  enumValues?: InputMaybe<Array<Scalars['String']>>;
3340
3342
  /** The unique identifier for the environment */
3341
- environmentId: Scalars['String'];
3343
+ environmentId: Scalars['UUID'];
3342
3344
  /** The unique identifier of the entitlement feature */
3343
- featureId: Scalars['String'];
3345
+ featureId: Scalars['UUID'];
3344
3346
  /** Whether the entitlement has a soft limit */
3345
3347
  hasSoftLimit?: InputMaybe<Scalars['Boolean']>;
3346
3348
  /** Whether the entitlement has an unlimited usage */
@@ -3354,7 +3356,7 @@ export declare type PackageEntitlementInput = {
3354
3356
  /** The order of the entitlement in the entitlement list */
3355
3357
  order?: InputMaybe<Scalars['Float']>;
3356
3358
  /** The unique identifier of the entitlement package */
3357
- packageId: Scalars['String'];
3359
+ packageId: Scalars['UUID'];
3358
3360
  /** The reset period of the entitlement */
3359
3361
  resetPeriod?: InputMaybe<EntitlementResetPeriod>;
3360
3362
  /** The usage limit of the entitlement */
@@ -3411,7 +3413,7 @@ export declare type PackageGroupFilter = {
3411
3413
  and?: InputMaybe<Array<PackageGroupFilter>>;
3412
3414
  createdAt?: InputMaybe<DateFieldComparison>;
3413
3415
  displayName?: InputMaybe<StringFieldComparison>;
3414
- environmentId?: InputMaybe<StringFieldComparison>;
3416
+ environmentId?: InputMaybe<UuidFilterComparison>;
3415
3417
  isLatest?: InputMaybe<BooleanFieldComparison>;
3416
3418
  or?: InputMaybe<Array<PackageGroupFilter>>;
3417
3419
  packageGroupId?: InputMaybe<StringFieldComparison>;
@@ -3428,8 +3430,8 @@ export declare type PackageGroupFilterProductFilter = {
3428
3430
  createdAt?: InputMaybe<DateFieldComparison>;
3429
3431
  description?: InputMaybe<StringFieldComparison>;
3430
3432
  displayName?: InputMaybe<StringFieldComparison>;
3431
- environmentId?: InputMaybe<StringFieldComparison>;
3432
- id?: InputMaybe<StringFieldComparison>;
3433
+ environmentId?: InputMaybe<UuidFilterComparison>;
3434
+ id?: InputMaybe<UuidFilterComparison>;
3433
3435
  isDefaultProduct?: InputMaybe<BooleanFieldComparison>;
3434
3436
  multipleSubscriptions?: InputMaybe<BooleanFieldComparison>;
3435
3437
  or?: InputMaybe<Array<PackageGroupFilterProductFilter>>;
@@ -3499,7 +3501,7 @@ export declare type PackagePricingInput = {
3499
3501
  /** Package Publish Input */
3500
3502
  export declare type PackagePublishInput = {
3501
3503
  /** Unique identifier for the entity */
3502
- id: Scalars['ID'];
3504
+ id: Scalars['UUID'];
3503
3505
  /** The migration type of the package */
3504
3506
  migrationType: PublishMigrationType;
3505
3507
  };
@@ -3623,7 +3625,7 @@ export declare type PlanCreateInput = {
3623
3625
  /** The display name of the package */
3624
3626
  displayName: Scalars['String'];
3625
3627
  /** The unique identifier for the environment */
3626
- environmentId?: InputMaybe<Scalars['String']>;
3628
+ environmentId?: InputMaybe<Scalars['UUID']>;
3627
3629
  /** List of hidden widgets of the package */
3628
3630
  hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
3629
3631
  /** The ID of the parent plan, if applicable */
@@ -3644,8 +3646,8 @@ export declare type PlanFilter = {
3644
3646
  createdAt?: InputMaybe<DateFieldComparison>;
3645
3647
  description?: InputMaybe<StringFieldComparison>;
3646
3648
  displayName?: InputMaybe<StringFieldComparison>;
3647
- environmentId?: InputMaybe<StringFieldComparison>;
3648
- id?: InputMaybe<StringFieldComparison>;
3649
+ environmentId?: InputMaybe<UuidFilterComparison>;
3650
+ id?: InputMaybe<UuidFilterComparison>;
3649
3651
  isLatest?: InputMaybe<BooleanFieldComparison>;
3650
3652
  or?: InputMaybe<Array<PlanFilter>>;
3651
3653
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3662,8 +3664,8 @@ export declare type PlanFilterAddonFilter = {
3662
3664
  createdAt?: InputMaybe<DateFieldComparison>;
3663
3665
  description?: InputMaybe<StringFieldComparison>;
3664
3666
  displayName?: InputMaybe<StringFieldComparison>;
3665
- environmentId?: InputMaybe<StringFieldComparison>;
3666
- id?: InputMaybe<StringFieldComparison>;
3667
+ environmentId?: InputMaybe<UuidFilterComparison>;
3668
+ id?: InputMaybe<UuidFilterComparison>;
3667
3669
  isLatest?: InputMaybe<BooleanFieldComparison>;
3668
3670
  or?: InputMaybe<Array<PlanFilterAddonFilter>>;
3669
3671
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3680,8 +3682,8 @@ export declare type PlanFilterProductFilter = {
3680
3682
  createdAt?: InputMaybe<DateFieldComparison>;
3681
3683
  description?: InputMaybe<StringFieldComparison>;
3682
3684
  displayName?: InputMaybe<StringFieldComparison>;
3683
- environmentId?: InputMaybe<StringFieldComparison>;
3684
- id?: InputMaybe<StringFieldComparison>;
3685
+ environmentId?: InputMaybe<UuidFilterComparison>;
3686
+ id?: InputMaybe<UuidFilterComparison>;
3685
3687
  isDefaultProduct?: InputMaybe<BooleanFieldComparison>;
3686
3688
  multipleSubscriptions?: InputMaybe<BooleanFieldComparison>;
3687
3689
  or?: InputMaybe<Array<PlanFilterProductFilter>>;
@@ -3723,7 +3725,7 @@ export declare type PlanUpdateInput = {
3723
3725
  /** Indicates if the plan should be hidden from widgets */
3724
3726
  hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
3725
3727
  /** The ID of the plan to update */
3726
- id: Scalars['String'];
3728
+ id: Scalars['UUID'];
3727
3729
  /** The minimum spend configuration per each billing period */
3728
3730
  minimumSpend?: InputMaybe<Array<MinimumSpendInput>>;
3729
3731
  /** The ID of the parent plan, if applicable */
@@ -3736,7 +3738,7 @@ export declare type PreparePaymentMethodFormInput = {
3736
3738
  /** Customer slug */
3737
3739
  customerId: Scalars['String'];
3738
3740
  /** The unique identifier for the environment */
3739
- environmentId?: InputMaybe<Scalars['String']>;
3741
+ environmentId?: InputMaybe<Scalars['UUID']>;
3740
3742
  /** The billing integration to use for this payment method */
3741
3743
  integrationId?: InputMaybe<Scalars['String']>;
3742
3744
  };
@@ -3775,7 +3777,7 @@ export declare type PriceFilter = {
3775
3777
  billingModel?: InputMaybe<BillingModelFilterComparison>;
3776
3778
  billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
3777
3779
  createdAt?: InputMaybe<DateFieldComparison>;
3778
- id?: InputMaybe<StringFieldComparison>;
3780
+ id?: InputMaybe<UuidFilterComparison>;
3779
3781
  or?: InputMaybe<Array<PriceFilter>>;
3780
3782
  package?: InputMaybe<PriceFilterPackageDtoFilter>;
3781
3783
  tiersMode?: InputMaybe<TiersModeFilterComparison>;
@@ -3786,8 +3788,8 @@ export declare type PriceFilterPackageDtoFilter = {
3786
3788
  createdAt?: InputMaybe<DateFieldComparison>;
3787
3789
  description?: InputMaybe<StringFieldComparison>;
3788
3790
  displayName?: InputMaybe<StringFieldComparison>;
3789
- environmentId?: InputMaybe<StringFieldComparison>;
3790
- id?: InputMaybe<StringFieldComparison>;
3791
+ environmentId?: InputMaybe<UuidFilterComparison>;
3792
+ id?: InputMaybe<UuidFilterComparison>;
3791
3793
  isLatest?: InputMaybe<BooleanFieldComparison>;
3792
3794
  or?: InputMaybe<Array<PriceFilterPackageDtoFilter>>;
3793
3795
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3903,7 +3905,7 @@ export declare type ProductCreateInput = {
3903
3905
  /** Display name of the product */
3904
3906
  displayName?: InputMaybe<Scalars['String']>;
3905
3907
  /** The unique identifier for the environment */
3906
- environmentId: Scalars['String'];
3908
+ environmentId: Scalars['UUID'];
3907
3909
  /** Indicates if multiple subscriptions to this product are allowed */
3908
3910
  multipleSubscriptions?: InputMaybe<Scalars['Boolean']>;
3909
3911
  /** The unique identifier for the entity */
@@ -3916,8 +3918,8 @@ export declare type ProductFilter = {
3916
3918
  createdAt?: InputMaybe<DateFieldComparison>;
3917
3919
  description?: InputMaybe<StringFieldComparison>;
3918
3920
  displayName?: InputMaybe<StringFieldComparison>;
3919
- environmentId?: InputMaybe<StringFieldComparison>;
3920
- id?: InputMaybe<StringFieldComparison>;
3921
+ environmentId?: InputMaybe<UuidFilterComparison>;
3922
+ id?: InputMaybe<UuidFilterComparison>;
3921
3923
  isDefaultProduct?: InputMaybe<BooleanFieldComparison>;
3922
3924
  multipleSubscriptions?: InputMaybe<BooleanFieldComparison>;
3923
3925
  or?: InputMaybe<Array<ProductFilter>>;
@@ -3979,8 +3981,8 @@ export declare type ProductUpdateInput = {
3979
3981
  export declare type PromotionalEntitlementFilter = {
3980
3982
  and?: InputMaybe<Array<PromotionalEntitlementFilter>>;
3981
3983
  createdAt?: InputMaybe<DateFieldComparison>;
3982
- environmentId?: InputMaybe<StringFieldComparison>;
3983
- id?: InputMaybe<StringFieldComparison>;
3984
+ environmentId?: InputMaybe<UuidFilterComparison>;
3985
+ id?: InputMaybe<UuidFilterComparison>;
3984
3986
  or?: InputMaybe<Array<PromotionalEntitlementFilter>>;
3985
3987
  status?: InputMaybe<PromotionalEntitlementStatusFilterComparison>;
3986
3988
  updatedAt?: InputMaybe<DateFieldComparison>;
@@ -3994,7 +3996,7 @@ export declare type PromotionalEntitlementInput = {
3994
3996
  /** The end date of the promotional entitlement */
3995
3997
  endDate?: InputMaybe<Scalars['DateTime']>;
3996
3998
  /** The unique identifier for the environment */
3997
- environmentId: Scalars['String'];
3999
+ environmentId: Scalars['UUID'];
3998
4000
  /** The unique identifier of the entitlement feature */
3999
4001
  featureId: Scalars['String'];
4000
4002
  /** Whether the entitlement has a soft limit */
@@ -4118,7 +4120,7 @@ export declare type ProvisionCustomerInput = {
4118
4120
  /** The email of the customer */
4119
4121
  email?: InputMaybe<Scalars['String']>;
4120
4122
  /** The unique identifier for the environment */
4121
- environmentId?: InputMaybe<Scalars['String']>;
4123
+ environmentId?: InputMaybe<Scalars['UUID']>;
4122
4124
  /** Wether the customer should be excluded from the experiment */
4123
4125
  excludeFromExperiment?: InputMaybe<Scalars['Boolean']>;
4124
4126
  /** The name of the customer */
@@ -4260,7 +4262,7 @@ export declare type RecalculateEntitlementsInput = {
4260
4262
  /** List of customer IDs for which to recalculate entitlements. */
4261
4263
  customerIds?: InputMaybe<Array<Scalars['String']>>;
4262
4264
  /** Identifier of the environment where recalculation should occur. */
4263
- environmentId: Scalars['String'];
4265
+ environmentId: Scalars['UUID'];
4264
4266
  /** If true, recalculates entitlements for all customers in the environment. */
4265
4267
  forAllCustomers?: InputMaybe<Scalars['Boolean']>;
4266
4268
  /** Optional flags to control recalculation side effects. */
@@ -4279,33 +4281,33 @@ export declare type RecalculateEntitlementsSideEffectsOptionsInput = {
4279
4281
  };
4280
4282
  export declare type RemoveBasePlanFromPlanInput = {
4281
4283
  /** The id of the record. */
4282
- id: Scalars['String'];
4284
+ id: Scalars['UUID'];
4283
4285
  /** The id of relation. */
4284
- relationId: Scalars['String'];
4286
+ relationId: Scalars['UUID'];
4285
4287
  };
4286
4288
  export declare type RemoveCompatibleAddonsFromPlanInput = {
4287
4289
  /** The id of the record. */
4288
- id: Scalars['String'];
4290
+ id: Scalars['UUID'];
4289
4291
  /** The ids of the relations. */
4290
- relationIds: Array<Scalars['String']>;
4292
+ relationIds: Array<Scalars['UUID']>;
4291
4293
  };
4292
4294
  export declare type RemoveCouponFromCustomerInput = {
4293
4295
  /** The id of the record. */
4294
- id: Scalars['String'];
4296
+ id: Scalars['UUID'];
4295
4297
  /** The id of relation. */
4296
- relationId: Scalars['String'];
4298
+ relationId: Scalars['UUID'];
4297
4299
  };
4298
4300
  export declare type RemoveExperimentFromCustomerInput = {
4299
4301
  /** The id of the record. */
4300
- id: Scalars['String'];
4302
+ id: Scalars['UUID'];
4301
4303
  /** The id of relation. */
4302
- relationId: Scalars['String'];
4304
+ relationId: Scalars['UUID'];
4303
4305
  };
4304
4306
  export declare type RemoveExperimentFromCustomerSubscriptionInput = {
4305
4307
  /** The id of the record. */
4306
4308
  id: Scalars['UUID'];
4307
4309
  /** The id of relation. */
4308
- relationId: Scalars['String'];
4310
+ relationId: Scalars['UUID'];
4309
4311
  };
4310
4312
  /** Report usage base input */
4311
4313
  export declare type ReportUsageBaseInput = {
@@ -4327,7 +4329,7 @@ export declare type ReportUsageBaseInput = {
4327
4329
  /** Input for reporting usage in bulk */
4328
4330
  export declare type ReportUsageBulkInput = {
4329
4331
  /** The unique identifier for the environment */
4330
- environmentId?: InputMaybe<Scalars['String']>;
4332
+ environmentId?: InputMaybe<Scalars['UUID']>;
4331
4333
  /** A list of usage reports to be submitted in bulk */
4332
4334
  usages: Array<ReportUsageBaseInput>;
4333
4335
  };
@@ -4340,7 +4342,7 @@ export declare type ReportUsageInput = {
4340
4342
  /** Additional dimensions for the usage report */
4341
4343
  dimensions?: InputMaybe<Scalars['JSON']>;
4342
4344
  /** The unique identifier for the environment */
4343
- environmentId?: InputMaybe<Scalars['String']>;
4345
+ environmentId?: InputMaybe<Scalars['UUID']>;
4344
4346
  /** Feature id */
4345
4347
  featureId: Scalars['String'];
4346
4348
  /** Resource id */
@@ -4366,7 +4368,7 @@ export declare type RevokePromotionalEntitlementInput = {
4366
4368
  /** The unique identifier of the entitlement customer */
4367
4369
  customerId: Scalars['String'];
4368
4370
  /** The unique identifier for the environment */
4369
- environmentId?: InputMaybe<Scalars['String']>;
4371
+ environmentId?: InputMaybe<Scalars['UUID']>;
4370
4372
  /** The unique identifier of the entitlement feature */
4371
4373
  featureId: Scalars['String'];
4372
4374
  };
@@ -4397,40 +4399,40 @@ export declare type SetAccessRolesInput = {
4397
4399
  };
4398
4400
  export declare type SetBasePlanOnPlanInput = {
4399
4401
  /** The id of the record. */
4400
- id: Scalars['String'];
4402
+ id: Scalars['UUID'];
4401
4403
  /** The id of relation. */
4402
- relationId: Scalars['String'];
4404
+ relationId: Scalars['UUID'];
4403
4405
  };
4404
4406
  export declare type SetCompatibleAddonsOnPlanInput = {
4405
4407
  /** The id of the record. */
4406
- id: Scalars['String'];
4408
+ id: Scalars['UUID'];
4407
4409
  /** The ids of the relations. */
4408
- relationIds: Array<Scalars['String']>;
4410
+ relationIds: Array<Scalars['UUID']>;
4409
4411
  };
4410
4412
  export declare type SetCouponOnCustomerInput = {
4411
4413
  /** The id of the record. */
4412
- id: Scalars['String'];
4414
+ id: Scalars['UUID'];
4413
4415
  /** The id of relation. */
4414
- relationId: Scalars['String'];
4416
+ relationId: Scalars['UUID'];
4415
4417
  };
4416
4418
  export declare type SetExperimentOnCustomerInput = {
4417
4419
  /** The id of the record. */
4418
- id: Scalars['String'];
4420
+ id: Scalars['UUID'];
4419
4421
  /** The id of relation. */
4420
- relationId: Scalars['String'];
4422
+ relationId: Scalars['UUID'];
4421
4423
  };
4422
4424
  export declare type SetExperimentOnCustomerSubscriptionInput = {
4423
4425
  /** The id of the record. */
4424
4426
  id: Scalars['UUID'];
4425
4427
  /** The id of relation. */
4426
- relationId: Scalars['String'];
4428
+ relationId: Scalars['UUID'];
4427
4429
  };
4428
4430
  /** The input type for setting the addons of an package group */
4429
4431
  export declare type SetPackageGroupAddons = {
4430
4432
  /** The addons to set on the package group */
4431
4433
  addons: Array<Scalars['String']>;
4432
4434
  /** The unique identifier for the environment */
4433
- environmentId?: InputMaybe<Scalars['String']>;
4435
+ environmentId?: InputMaybe<Scalars['UUID']>;
4434
4436
  /** The id of the package group */
4435
4437
  packageGroupId: Scalars['String'];
4436
4438
  };
@@ -4451,7 +4453,7 @@ export declare type SetPlanCompatiblePackageGroupOptions = {
4451
4453
  /** Set plan compatible package groups input */
4452
4454
  export declare type SetPlanCompatiblePackageGroups = {
4453
4455
  /** The unique identifier for the environment */
4454
- environmentId?: InputMaybe<Scalars['String']>;
4456
+ environmentId?: InputMaybe<Scalars['UUID']>;
4455
4457
  /** The id of the plan */
4456
4458
  id: Scalars['String'];
4457
4459
  /** The package groups with optional options */
@@ -4492,14 +4494,14 @@ export declare enum SourceType {
4492
4494
  /** Input parameters for starting an experiment */
4493
4495
  export declare type StartExperimentInput = {
4494
4496
  /** The unique identifier for the environment */
4495
- environmentId?: InputMaybe<Scalars['String']>;
4497
+ environmentId?: InputMaybe<Scalars['UUID']>;
4496
4498
  /** The unique identifier for the experiment */
4497
4499
  refId: Scalars['String'];
4498
4500
  };
4499
4501
  /** Input parameters for stopping an experiment */
4500
4502
  export declare type StopExperimentInput = {
4501
4503
  /** The unique identifier for the environment */
4502
- environmentId?: InputMaybe<Scalars['String']>;
4504
+ environmentId?: InputMaybe<Scalars['UUID']>;
4503
4505
  /** The unique identifier for the experiment */
4504
4506
  refId: Scalars['String'];
4505
4507
  };
@@ -4558,7 +4560,7 @@ export declare type StripeSubscriptionSearchInput = {
4558
4560
  export declare type SubscriptionAddonFilter = {
4559
4561
  and?: InputMaybe<Array<SubscriptionAddonFilter>>;
4560
4562
  createdAt?: InputMaybe<DateFieldComparison>;
4561
- id?: InputMaybe<StringFieldComparison>;
4563
+ id?: InputMaybe<UuidFilterComparison>;
4562
4564
  or?: InputMaybe<Array<SubscriptionAddonFilter>>;
4563
4565
  price?: InputMaybe<SubscriptionAddonFilterPriceFilter>;
4564
4566
  quantity?: InputMaybe<NumberFieldComparison>;
@@ -4601,7 +4603,7 @@ export declare type SubscriptionAddonFilterPriceFilter = {
4601
4603
  billingModel?: InputMaybe<BillingModelFilterComparison>;
4602
4604
  billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
4603
4605
  createdAt?: InputMaybe<DateFieldComparison>;
4604
- id?: InputMaybe<StringFieldComparison>;
4606
+ id?: InputMaybe<UuidFilterComparison>;
4605
4607
  or?: InputMaybe<Array<SubscriptionAddonFilterPriceFilter>>;
4606
4608
  tiersMode?: InputMaybe<TiersModeFilterComparison>;
4607
4609
  };
@@ -4742,9 +4744,9 @@ export declare enum SubscriptionEndSetup {
4742
4744
  export declare type SubscriptionEntitlementFilter = {
4743
4745
  and?: InputMaybe<Array<SubscriptionEntitlementFilter>>;
4744
4746
  createdAt?: InputMaybe<DateFieldComparison>;
4745
- environmentId?: InputMaybe<StringFieldComparison>;
4747
+ environmentId?: InputMaybe<UuidFilterComparison>;
4746
4748
  feature?: InputMaybe<SubscriptionEntitlementFilterFeatureFilter>;
4747
- id?: InputMaybe<StringFieldComparison>;
4749
+ id?: InputMaybe<UuidFilterComparison>;
4748
4750
  or?: InputMaybe<Array<SubscriptionEntitlementFilter>>;
4749
4751
  subscription?: InputMaybe<SubscriptionEntitlementFilterCustomerSubscriptionFilter>;
4750
4752
  subscriptionId?: InputMaybe<StringFieldComparison>;
@@ -4784,10 +4786,10 @@ export declare type SubscriptionEntitlementFilterFeatureFilter = {
4784
4786
  createdAt?: InputMaybe<DateFieldComparison>;
4785
4787
  description?: InputMaybe<StringFieldComparison>;
4786
4788
  displayName?: InputMaybe<StringFieldComparison>;
4787
- environmentId?: InputMaybe<StringFieldComparison>;
4789
+ environmentId?: InputMaybe<UuidFilterComparison>;
4788
4790
  featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
4789
4791
  featureType?: InputMaybe<FeatureTypeFilterComparison>;
4790
- id?: InputMaybe<StringFieldComparison>;
4792
+ id?: InputMaybe<UuidFilterComparison>;
4791
4793
  meterType?: InputMaybe<MeterTypeFilterComparison>;
4792
4794
  or?: InputMaybe<Array<SubscriptionEntitlementFilterFeatureFilter>>;
4793
4795
  refId?: InputMaybe<StringFieldComparison>;
@@ -4897,7 +4899,7 @@ export declare type SubscriptionMigrationTaskFilter = {
4897
4899
  and?: InputMaybe<Array<SubscriptionMigrationTaskFilter>>;
4898
4900
  createdAt?: InputMaybe<DateFieldComparison>;
4899
4901
  environmentId?: InputMaybe<StringFieldComparison>;
4900
- id?: InputMaybe<StringFieldComparison>;
4902
+ id?: InputMaybe<UuidFilterComparison>;
4901
4903
  or?: InputMaybe<Array<SubscriptionMigrationTaskFilter>>;
4902
4904
  status?: InputMaybe<TaskStatusFilterComparison>;
4903
4905
  taskType?: InputMaybe<TaskTypeFilterComparison>;
@@ -4930,7 +4932,7 @@ export declare type SubscriptionPriceFilter = {
4930
4932
  createdAt?: InputMaybe<DateFieldComparison>;
4931
4933
  featureId?: InputMaybe<StringFieldComparison>;
4932
4934
  hasSoftLimit?: InputMaybe<BooleanFieldComparison>;
4933
- id?: InputMaybe<StringFieldComparison>;
4935
+ id?: InputMaybe<UuidFilterComparison>;
4934
4936
  or?: InputMaybe<Array<SubscriptionPriceFilter>>;
4935
4937
  price?: InputMaybe<SubscriptionPriceFilterPriceFilter>;
4936
4938
  subscription?: InputMaybe<SubscriptionPriceFilterCustomerSubscriptionFilter>;
@@ -4973,7 +4975,7 @@ export declare type SubscriptionPriceFilterPriceFilter = {
4973
4975
  billingModel?: InputMaybe<BillingModelFilterComparison>;
4974
4976
  billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
4975
4977
  createdAt?: InputMaybe<DateFieldComparison>;
4976
- id?: InputMaybe<StringFieldComparison>;
4978
+ id?: InputMaybe<UuidFilterComparison>;
4977
4979
  or?: InputMaybe<Array<SubscriptionPriceFilterPriceFilter>>;
4978
4980
  tiersMode?: InputMaybe<TiersModeFilterComparison>;
4979
4981
  };
@@ -5112,7 +5114,7 @@ export declare enum SyncStatus {
5112
5114
  /** Input for triggering a sync of tax rates from the billing provider. */
5113
5115
  export declare type SyncTaxRatesInput = {
5114
5116
  /** The ID of the environment for which tax rates should be synced. */
5115
- environmentId?: InputMaybe<Scalars['String']>;
5117
+ environmentId?: InputMaybe<Scalars['UUID']>;
5116
5118
  };
5117
5119
  /** The status of the task */
5118
5120
  export declare enum TaskStatus {
@@ -5201,7 +5203,7 @@ export declare type TestWorkflowInput = {
5201
5203
  /** Workflow trigger endpoint */
5202
5204
  endpointUrl: Scalars['String'];
5203
5205
  /** The unique identifier for the environment */
5204
- environmentId?: InputMaybe<Scalars['String']>;
5206
+ environmentId?: InputMaybe<Scalars['UUID']>;
5205
5207
  /** The event type to trigger the workflow on */
5206
5208
  hookEventType: EventLogType;
5207
5209
  };
@@ -5238,7 +5240,7 @@ export declare type TransferSubscriptionToResourceInput = {
5238
5240
  /** The resource ID to transfer the subscription to */
5239
5241
  destinationResourceId?: InputMaybe<Scalars['String']>;
5240
5242
  /** The environment ID of the subscription to transfer */
5241
- environmentId?: InputMaybe<Scalars['String']>;
5243
+ environmentId?: InputMaybe<Scalars['UUID']>;
5242
5244
  /** The ID of the subscription to transfer */
5243
5245
  subscriptionId: Scalars['String'];
5244
5246
  };
@@ -5331,14 +5333,14 @@ export declare type UnArchiveFeatureGroupInput = {
5331
5333
  /** Input for un-archiving a feature */
5332
5334
  export declare type UnArchiveFeatureInput = {
5333
5335
  /** The unique identifier for the environment */
5334
- environmentId?: InputMaybe<Scalars['String']>;
5336
+ environmentId?: InputMaybe<Scalars['UUID']>;
5335
5337
  /** Unique identifier for the entity */
5336
5338
  id: Scalars['String'];
5337
5339
  };
5338
5340
  /** Input for un-archiving a plan */
5339
5341
  export declare type UnArchivePlanInput = {
5340
5342
  /** The unique identifier for the environment */
5341
- environmentId?: InputMaybe<Scalars['String']>;
5343
+ environmentId?: InputMaybe<Scalars['UUID']>;
5342
5344
  /** Plan ID to unarchive */
5343
5345
  id: Scalars['String'];
5344
5346
  };
@@ -5347,7 +5349,7 @@ export declare type UnarchiveCustomerInput = {
5347
5349
  /** Customer slug */
5348
5350
  customerId: Scalars['String'];
5349
5351
  /** The unique identifier for the environment */
5350
- environmentId?: InputMaybe<Scalars['String']>;
5352
+ environmentId?: InputMaybe<Scalars['UUID']>;
5351
5353
  };
5352
5354
  /** Input for unarchiving an environment */
5353
5355
  export declare type UnarchiveEnvironmentInput = {
@@ -5398,7 +5400,7 @@ export declare type UpdateCouponInput = {
5398
5400
  /** Description of the coupon */
5399
5401
  description?: InputMaybe<Scalars['String']>;
5400
5402
  /** The unique identifier for the environment */
5401
- environmentId?: InputMaybe<Scalars['String']>;
5403
+ environmentId?: InputMaybe<Scalars['UUID']>;
5402
5404
  /** Name of the coupon */
5403
5405
  name?: InputMaybe<Scalars['String']>;
5404
5406
  /** The unique identifier for the entity */
@@ -5423,7 +5425,7 @@ export declare type UpdateCustomerInput = {
5423
5425
  /** The email of the customer */
5424
5426
  email?: InputMaybe<Scalars['String']>;
5425
5427
  /** The unique identifier for the environment */
5426
- environmentId?: InputMaybe<Scalars['String']>;
5428
+ environmentId?: InputMaybe<Scalars['UUID']>;
5427
5429
  /** The name of the customer */
5428
5430
  name?: InputMaybe<Scalars['String']>;
5429
5431
  /** Customer slug */
@@ -5440,7 +5442,7 @@ export declare type UpdateExperimentInput = {
5440
5442
  /** Description of the experiements */
5441
5443
  description?: InputMaybe<Scalars['String']>;
5442
5444
  /** The unique identifier for the environment */
5443
- environmentId?: InputMaybe<Scalars['String']>;
5445
+ environmentId?: InputMaybe<Scalars['UUID']>;
5444
5446
  /** Name of the experiment */
5445
5447
  name?: InputMaybe<Scalars['String']>;
5446
5448
  /** Internal identifier for the product experiment is associated with */
@@ -5465,7 +5467,7 @@ export declare type UpdateFeatureInput = {
5465
5467
  /** The configuration data for the feature */
5466
5468
  enumConfiguration?: InputMaybe<Array<EnumConfigurationEntityInput>>;
5467
5469
  /** The unique identifier for the environment */
5468
- environmentId: Scalars['String'];
5470
+ environmentId: Scalars['UUID'];
5469
5471
  /** The units for the feature */
5470
5472
  featureUnits?: InputMaybe<Scalars['String']>;
5471
5473
  /** The plural units for the feature */
@@ -5487,11 +5489,11 @@ export declare type UpdateHook = {
5487
5489
  /** The Webhook endpoint URL */
5488
5490
  endpoint?: InputMaybe<Scalars['String']>;
5489
5491
  /** The unique identifier for the environment */
5490
- environmentId?: InputMaybe<Scalars['String']>;
5492
+ environmentId?: InputMaybe<Scalars['UUID']>;
5491
5493
  /** The event types that the webhook will be triggered on */
5492
5494
  eventLogTypes?: InputMaybe<Array<EventLogType>>;
5493
5495
  /** Unique identifier for the entity */
5494
- id?: InputMaybe<Scalars['String']>;
5496
+ id?: InputMaybe<Scalars['UUID']>;
5495
5497
  /** Secret key for the webhook */
5496
5498
  secretKey?: InputMaybe<Scalars['String']>;
5497
5499
  /** The status of the webhook */
@@ -5518,37 +5520,37 @@ export declare type UpdateIntegrationInput = {
5518
5520
  };
5519
5521
  export declare type UpdateOneEnvironmentInput = {
5520
5522
  /** The id of the record to update */
5521
- id: Scalars['String'];
5523
+ id: Scalars['UUID'];
5522
5524
  /** The update to apply. */
5523
5525
  update: EnvironmentInput;
5524
5526
  };
5525
5527
  export declare type UpdateOneHookInput = {
5526
5528
  /** The id of the record to update */
5527
- id: Scalars['String'];
5529
+ id: Scalars['UUID'];
5528
5530
  /** The update to apply. */
5529
5531
  update: UpdateHook;
5530
5532
  };
5531
5533
  export declare type UpdateOneIntegrationInput = {
5532
5534
  /** The id of the record to update */
5533
- id: Scalars['String'];
5535
+ id: Scalars['UUID'];
5534
5536
  /** The update to apply. */
5535
5537
  update: UpdateIntegrationInput;
5536
5538
  };
5537
5539
  export declare type UpdateOnePackageEntitlementInput = {
5538
5540
  /** The id of the record to update */
5539
- id: Scalars['String'];
5541
+ id: Scalars['UUID'];
5540
5542
  /** The update to apply. */
5541
5543
  update: PackageEntitlementUpdateInput;
5542
5544
  };
5543
5545
  export declare type UpdateOneProductInput = {
5544
5546
  /** The id of the record to update */
5545
- id: Scalars['String'];
5547
+ id: Scalars['UUID'];
5546
5548
  /** The update to apply. */
5547
5549
  update: ProductUpdateInput;
5548
5550
  };
5549
5551
  export declare type UpdateOnePromotionalEntitlementInput = {
5550
5552
  /** The id of the record to update */
5551
- id: Scalars['String'];
5553
+ id: Scalars['UUID'];
5552
5554
  /** The update to apply. */
5553
5555
  update: PromotionalEntitlementUpdateInput;
5554
5556
  };
@@ -5557,14 +5559,14 @@ export declare type UpdatePackageEntitlementOrderInput = {
5557
5559
  /** Entitlements to update */
5558
5560
  entitlements: Array<UpdatePackageEntitlementOrderItemInput>;
5559
5561
  /** The unique identifier for the environment */
5560
- environmentId?: InputMaybe<Scalars['String']>;
5562
+ environmentId?: InputMaybe<Scalars['UUID']>;
5561
5563
  /** The unique identifier of the entitlement package */
5562
5564
  packageId: Scalars['String'];
5563
5565
  };
5564
5566
  /** Update package entitlement order item input */
5565
5567
  export declare type UpdatePackageEntitlementOrderItemInput = {
5566
5568
  /** Unique identifier for the entity */
5567
- id: Scalars['String'];
5569
+ id: Scalars['UUID'];
5568
5570
  /** The order of the entitlement in the entitlement list */
5569
5571
  order?: InputMaybe<Scalars['Float']>;
5570
5572
  };
@@ -5645,14 +5647,14 @@ export declare type UsageEventsInput = {
5645
5647
  /** Customer id filter */
5646
5648
  customerId?: InputMaybe<Scalars['String']>;
5647
5649
  /** Environment id filter */
5648
- environmentId: Scalars['String'];
5650
+ environmentId: Scalars['UUID'];
5649
5651
  /** List of event filters */
5650
5652
  filters?: InputMaybe<Array<MeterFilterDefinitionInput>>;
5651
5653
  };
5652
5654
  /** Input parameters for reporting usage events */
5653
5655
  export declare type UsageEventsReportInput = {
5654
5656
  /** The unique identifier for the environment */
5655
- environmentId?: InputMaybe<Scalars['String']>;
5657
+ environmentId?: InputMaybe<Scalars['UUID']>;
5656
5658
  /** A list of usage events to report */
5657
5659
  usageEvents: Array<UsageEventReportInput>;
5658
5660
  };
@@ -5663,7 +5665,7 @@ export declare type UsageHistoryInput = {
5663
5665
  /** The end date of the range */
5664
5666
  endDate?: InputMaybe<Scalars['DateTime']>;
5665
5667
  /** The unique identifier for the environment */
5666
- environmentId?: InputMaybe<Scalars['String']>;
5668
+ environmentId?: InputMaybe<Scalars['UUID']>;
5667
5669
  /** Reference identifier for the feature */
5668
5670
  featureRefId: Scalars['String'];
5669
5671
  /** Criteria by which to group the usage history */
@@ -5688,7 +5690,7 @@ export declare type UsageHistoryV2Input = {
5688
5690
  /** The end date of the range */
5689
5691
  endDate?: InputMaybe<Scalars['DateTime']>;
5690
5692
  /** The unique identifier for the environment */
5691
- environmentId?: InputMaybe<Scalars['String']>;
5693
+ environmentId?: InputMaybe<Scalars['UUID']>;
5692
5694
  /** Feature id */
5693
5695
  featureId: Scalars['String'];
5694
5696
  /** Criteria by which to group the usage history */
@@ -5714,7 +5716,7 @@ export declare type UsageMeasurementCreateInput = {
5714
5716
  /** Additional dimensions for the usage report */
5715
5717
  dimensions?: InputMaybe<Scalars['JSON']>;
5716
5718
  /** The unique identifier for the environment */
5717
- environmentId?: InputMaybe<Scalars['String']>;
5719
+ environmentId?: InputMaybe<Scalars['UUID']>;
5718
5720
  /** Feature id */
5719
5721
  featureId: Scalars['String'];
5720
5722
  /** Resource id */
@@ -5728,9 +5730,9 @@ export declare type UsageMeasurementFilter = {
5728
5730
  and?: InputMaybe<Array<UsageMeasurementFilter>>;
5729
5731
  createdAt?: InputMaybe<DateFieldComparison>;
5730
5732
  customer?: InputMaybe<UsageMeasurementFilterCustomerFilter>;
5731
- environmentId?: InputMaybe<StringFieldComparison>;
5733
+ environmentId?: InputMaybe<UuidFilterComparison>;
5732
5734
  feature?: InputMaybe<UsageMeasurementFilterFeatureFilter>;
5733
- id?: InputMaybe<StringFieldComparison>;
5735
+ id?: InputMaybe<UuidFilterComparison>;
5734
5736
  or?: InputMaybe<Array<UsageMeasurementFilter>>;
5735
5737
  };
5736
5738
  export declare type UsageMeasurementFilterCustomerFilter = {
@@ -5743,8 +5745,8 @@ export declare type UsageMeasurementFilterCustomerFilter = {
5743
5745
  customerId?: InputMaybe<StringFieldComparison>;
5744
5746
  deletedAt?: InputMaybe<DateFieldComparison>;
5745
5747
  email?: InputMaybe<StringFieldComparison>;
5746
- environmentId?: InputMaybe<StringFieldComparison>;
5747
- id?: InputMaybe<StringFieldComparison>;
5748
+ environmentId?: InputMaybe<UuidFilterComparison>;
5749
+ id?: InputMaybe<UuidFilterComparison>;
5748
5750
  name?: InputMaybe<StringFieldComparison>;
5749
5751
  or?: InputMaybe<Array<UsageMeasurementFilterCustomerFilter>>;
5750
5752
  refId?: InputMaybe<StringFieldComparison>;
@@ -5757,10 +5759,10 @@ export declare type UsageMeasurementFilterFeatureFilter = {
5757
5759
  createdAt?: InputMaybe<DateFieldComparison>;
5758
5760
  description?: InputMaybe<StringFieldComparison>;
5759
5761
  displayName?: InputMaybe<StringFieldComparison>;
5760
- environmentId?: InputMaybe<StringFieldComparison>;
5762
+ environmentId?: InputMaybe<UuidFilterComparison>;
5761
5763
  featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
5762
5764
  featureType?: InputMaybe<FeatureTypeFilterComparison>;
5763
- id?: InputMaybe<StringFieldComparison>;
5765
+ id?: InputMaybe<UuidFilterComparison>;
5764
5766
  meterType?: InputMaybe<MeterTypeFilterComparison>;
5765
5767
  or?: InputMaybe<Array<UsageMeasurementFilterFeatureFilter>>;
5766
5768
  refId?: InputMaybe<StringFieldComparison>;
@@ -5871,7 +5873,7 @@ export declare type WidgetConfigurationUpdateInput = {
5871
5873
  /** Updated configuration for the customer portal widget. */
5872
5874
  customerPortalConfiguration?: InputMaybe<CustomerPortalConfigurationInput>;
5873
5875
  /** The unique identifier for the environment */
5874
- environmentId?: InputMaybe<Scalars['String']>;
5876
+ environmentId?: InputMaybe<Scalars['UUID']>;
5875
5877
  /** Updated configuration for the paywall widget. */
5876
5878
  paywallConfiguration?: InputMaybe<PaywallConfigurationInput>;
5877
5879
  };
@@ -5884,7 +5886,7 @@ export declare enum WidgetType {
5884
5886
  /** Workflow login input */
5885
5887
  export declare type WorkflowsLoginInput = {
5886
5888
  /** The unique identifier for the environment */
5887
- environmentId?: InputMaybe<Scalars['String']>;
5889
+ environmentId?: InputMaybe<Scalars['UUID']>;
5888
5890
  };
5889
5891
  /** Yearly reset period according to configuration */
5890
5892
  export declare enum YearlyAccordingTo {
@@ -5922,7 +5924,7 @@ export declare enum ExperimentGroupType {
5922
5924
  }
5923
5925
  export declare type CouponFragment = {
5924
5926
  __typename?: 'Coupon';
5925
- id: string;
5927
+ id: any;
5926
5928
  discountValue: number;
5927
5929
  percentOff?: number | null;
5928
5930
  type: CouponType;
@@ -6049,7 +6051,7 @@ export declare type PackageEntitlementFragment = {
6049
6051
  };
6050
6052
  export declare type AddonFragment = {
6051
6053
  __typename?: 'Addon';
6052
- id: string;
6054
+ id: any;
6053
6055
  refId: string;
6054
6056
  billingId?: string | null;
6055
6057
  displayName: string;
@@ -6073,14 +6075,14 @@ export declare type AddonFragment = {
6073
6075
  };
6074
6076
  export declare type AddonDependencyFragment = {
6075
6077
  __typename?: 'Addon';
6076
- id: string;
6078
+ id: any;
6077
6079
  refId: string;
6078
6080
  displayName: string;
6079
6081
  description?: string | null;
6080
6082
  };
6081
6083
  export declare type PlanFragment = {
6082
6084
  __typename?: 'Plan';
6083
- id: string;
6085
+ id: any;
6084
6086
  refId: string;
6085
6087
  displayName: string;
6086
6088
  description?: string | null;
@@ -6265,7 +6267,7 @@ export declare type SlimSubscriptionFragment = {
6265
6267
  } & TotalPriceFragment) | null;
6266
6268
  plan: {
6267
6269
  __typename?: 'Plan';
6268
- id: string;
6270
+ id: any;
6269
6271
  refId: string;
6270
6272
  };
6271
6273
  addons?: Array<{
@@ -6273,13 +6275,13 @@ export declare type SlimSubscriptionFragment = {
6273
6275
  quantity: number;
6274
6276
  addon: {
6275
6277
  __typename?: 'Addon';
6276
- id: string;
6278
+ id: any;
6277
6279
  refId: string;
6278
6280
  };
6279
6281
  }> | null;
6280
6282
  customer: {
6281
6283
  __typename?: 'Customer';
6282
- id: string;
6284
+ id: any;
6283
6285
  refId: string;
6284
6286
  };
6285
6287
  };
@@ -6290,7 +6292,7 @@ export declare type SubscriptionScheduledUpdateDataFragment = {
6290
6292
  scheduledExecutionTime: any;
6291
6293
  targetPackage?: {
6292
6294
  __typename?: 'PackageDTO';
6293
- id: string;
6295
+ id: any;
6294
6296
  refId: string;
6295
6297
  displayName: string;
6296
6298
  } | null;
@@ -6319,7 +6321,7 @@ export declare type SubscriptionFutureUpdateDataFragment = {
6319
6321
  scheduledExecutionTime: any;
6320
6322
  targetPackage?: {
6321
6323
  __typename?: 'PackageDTO';
6322
- id: string;
6324
+ id: any;
6323
6325
  refId: string;
6324
6326
  displayName: string;
6325
6327
  } | null;
@@ -6412,7 +6414,7 @@ export declare type SubscriptionFragment = {
6412
6414
  } & PlanFragment);
6413
6415
  addons?: Array<{
6414
6416
  __typename?: 'SubscriptionAddon';
6415
- id: string;
6417
+ id: any;
6416
6418
  quantity: number;
6417
6419
  addon: ({
6418
6420
  __typename?: 'Addon';
@@ -6436,7 +6438,7 @@ export declare type PromotionalEntitlementFragment = {
6436
6438
  __typename?: 'PromotionalEntitlement';
6437
6439
  status: PromotionalEntitlementStatus;
6438
6440
  usageLimit?: number | null;
6439
- featureId: string;
6441
+ featureId: any;
6440
6442
  hasUnlimitedUsage?: boolean | null;
6441
6443
  hasSoftLimit?: boolean | null;
6442
6444
  resetPeriod?: EntitlementResetPeriod | null;
@@ -6456,7 +6458,7 @@ export declare type PromotionalEntitlementFragment = {
6456
6458
  };
6457
6459
  export declare type SlimCustomerFragment = {
6458
6460
  __typename?: 'Customer';
6459
- id: string;
6461
+ id: any;
6460
6462
  name?: string | null;
6461
6463
  email?: string | null;
6462
6464
  createdAt?: any | null;
@@ -7156,7 +7158,7 @@ export declare type CustomerPortalSubscriptionPriceFragment = {
7156
7158
  } | null;
7157
7159
  feature?: {
7158
7160
  __typename?: 'CustomerPortalPricingFeature';
7159
- id: string;
7161
+ id: any;
7160
7162
  refId: string;
7161
7163
  displayName: string;
7162
7164
  featureUnits?: string | null;
@@ -7237,7 +7239,7 @@ export declare type CustomerPortalSubscriptionScheduledUpdateDataFragment = {
7237
7239
  scheduledExecutionTime: any;
7238
7240
  targetPackage?: {
7239
7241
  __typename?: 'PackageDTO';
7240
- id: string;
7242
+ id: any;
7241
7243
  refId: string;
7242
7244
  displayName: string;
7243
7245
  pricingType?: PricingType | null;
@@ -7563,7 +7565,7 @@ export declare type ProvisionSubscriptionFragment = {
7563
7565
  };
7564
7566
  export declare type ReportUsageFragment = {
7565
7567
  __typename?: 'UsageMeasurementWithCurrentUsage';
7566
- id: string;
7568
+ id: any;
7567
7569
  featureId: string;
7568
7570
  customerId: string;
7569
7571
  resourceId?: string | null;
@@ -7703,7 +7705,7 @@ export declare type RevokePromotionalEntitlementMutation = {
7703
7705
  __typename?: 'Mutation';
7704
7706
  revokePromotionalEntitlement: {
7705
7707
  __typename?: 'PromotionalEntitlement';
7706
- id: string;
7708
+ id: any;
7707
7709
  };
7708
7710
  };
7709
7711
  export declare type ProvisionSubscriptionMutationVariables = Exact<{