@stigg/api-client-js 2.470.0 → 2.475.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.
@@ -49,6 +49,8 @@ export declare enum AccessDeniedReason {
49
49
  NoFeatureEntitlementInSubscription = "NoFeatureEntitlementInSubscription",
50
50
  /** The customers usage request exceeds their entitled limit. */
51
51
  RequestedUsageExceedingLimit = "RequestedUsageExceedingLimit",
52
+ /** The requested values do not match the expected values for the feature. */
53
+ RequestedValuesMismatch = "RequestedValuesMismatch",
52
54
  /** The access denial occurred for an unknown or unexpected reason. */
53
55
  Unknown = "Unknown"
54
56
  }
@@ -77,14 +79,14 @@ export declare enum AccountStatus {
77
79
  }
78
80
  export declare type AddCompatibleAddonsToPlanInput = {
79
81
  /** The id of the record. */
80
- id: Scalars['String'];
82
+ id: Scalars['UUID'];
81
83
  /** The ids of the relations. */
82
- relationIds: Array<Scalars['String']>;
84
+ relationIds: Array<Scalars['UUID']>;
83
85
  };
84
86
  /** Archive addon input */
85
87
  export declare type AddonArchiveInput = {
86
88
  /** The unique identifier for the environment */
87
- environmentId?: InputMaybe<Scalars['String']>;
89
+ environmentId?: InputMaybe<Scalars['UUID']>;
88
90
  /** Addon id */
89
91
  refId: Scalars['String'];
90
92
  };
@@ -110,7 +112,7 @@ export declare type AddonCreateInput = {
110
112
  /** The display name of the package */
111
113
  displayName: Scalars['String'];
112
114
  /** The unique identifier for the environment */
113
- environmentId?: InputMaybe<Scalars['String']>;
115
+ environmentId?: InputMaybe<Scalars['UUID']>;
114
116
  /** List of hidden widgets of the package */
115
117
  hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
116
118
  /** The maximum quantity of this addon that can be added to a subscription */
@@ -130,8 +132,8 @@ export declare type AddonFilter = {
130
132
  createdAt?: InputMaybe<DateFieldComparison>;
131
133
  description?: InputMaybe<StringFieldComparison>;
132
134
  displayName?: InputMaybe<StringFieldComparison>;
133
- environmentId?: InputMaybe<StringFieldComparison>;
134
- id?: InputMaybe<StringFieldComparison>;
135
+ environmentId?: InputMaybe<UuidFilterComparison>;
136
+ id?: InputMaybe<UuidFilterComparison>;
135
137
  isLatest?: InputMaybe<BooleanFieldComparison>;
136
138
  or?: InputMaybe<Array<AddonFilter>>;
137
139
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -164,7 +166,7 @@ export declare enum AddonSortFields {
164
166
  /** Un-archive addon input */
165
167
  export declare type AddonUnArchiveInput = {
166
168
  /** The unique identifier for the environment */
167
- environmentId?: InputMaybe<Scalars['String']>;
169
+ environmentId?: InputMaybe<Scalars['UUID']>;
168
170
  /** Add-on ID to unarchive */
169
171
  id: Scalars['String'];
170
172
  };
@@ -176,7 +178,7 @@ export declare type AddonUpdateInput = {
176
178
  description?: InputMaybe<Scalars['String']>;
177
179
  displayName?: InputMaybe<Scalars['String']>;
178
180
  hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
179
- id: Scalars['String'];
181
+ id: Scalars['UUID'];
180
182
  /** The maximum quantity of this addon that can be added to a subscription */
181
183
  maxQuantity?: InputMaybe<Scalars['Float']>;
182
184
  status?: InputMaybe<PackageStatus>;
@@ -205,7 +207,7 @@ export declare type AggregatedEventsByCustomerInput = {
205
207
  /** Customer id */
206
208
  customerId?: InputMaybe<Scalars['String']>;
207
209
  /** The unique identifier for the environment */
208
- environmentId: Scalars['String'];
210
+ environmentId: Scalars['UUID'];
209
211
  /** List of event filters */
210
212
  filters: Array<MeterFilterDefinitionInput>;
211
213
  };
@@ -235,7 +237,7 @@ export declare enum Alignment {
235
237
  }
236
238
  export declare type ApiKeyFilter = {
237
239
  and?: InputMaybe<Array<ApiKeyFilter>>;
238
- id?: InputMaybe<StringFieldComparison>;
240
+ id?: InputMaybe<UuidFilterComparison>;
239
241
  or?: InputMaybe<Array<ApiKeyFilter>>;
240
242
  };
241
243
  export declare type ApiKeySort = {
@@ -298,7 +300,7 @@ export declare type ApplySubscriptionInput = {
298
300
  /** Archive a coupon input */
299
301
  export declare type ArchiveCouponInput = {
300
302
  /** The unique identifier for the environment */
301
- environmentId?: InputMaybe<Scalars['String']>;
303
+ environmentId?: InputMaybe<Scalars['UUID']>;
302
304
  /** The unique identifier for the entity */
303
305
  refId: Scalars['String'];
304
306
  };
@@ -306,7 +308,7 @@ export declare type ArchiveCustomerInput = {
306
308
  /** Customer slug */
307
309
  customerId: Scalars['String'];
308
310
  /** The unique identifier for the environment */
309
- environmentId?: InputMaybe<Scalars['String']>;
311
+ environmentId?: InputMaybe<Scalars['UUID']>;
310
312
  };
311
313
  /** Input for archiving an environment */
312
314
  export declare type ArchiveEnvironmentInput = {
@@ -325,7 +327,7 @@ export declare type ArchiveFeatureGroupInput = {
325
327
  /** Input for archiving a feature */
326
328
  export declare type ArchiveFeatureInput = {
327
329
  /** The unique identifier for the environment */
328
- environmentId?: InputMaybe<Scalars['String']>;
330
+ environmentId?: InputMaybe<Scalars['UUID']>;
329
331
  /** Unique identifier for the entity */
330
332
  id: Scalars['String'];
331
333
  };
@@ -339,7 +341,7 @@ export declare type ArchivePackageGroup = {
339
341
  /** Input for archiving a plan */
340
342
  export declare type ArchivePlanInput = {
341
343
  /** The unique identifier for the environment */
342
- environmentId?: InputMaybe<Scalars['String']>;
344
+ environmentId?: InputMaybe<Scalars['UUID']>;
343
345
  /** Plan ID to archive */
344
346
  id: Scalars['String'];
345
347
  };
@@ -350,7 +352,7 @@ export declare type AttachCustomerPaymentMethodInput = {
350
352
  /** Customer slug */
351
353
  customerId?: InputMaybe<Scalars['String']>;
352
354
  /** The unique identifier for the environment */
353
- environmentId?: InputMaybe<Scalars['String']>;
355
+ environmentId?: InputMaybe<Scalars['UUID']>;
354
356
  /** The billing integration to use for this payment method */
355
357
  integrationId?: InputMaybe<Scalars['String']>;
356
358
  /** Billing provider payment method id */
@@ -609,7 +611,7 @@ export declare type ClearCustomerPersistentCacheInput = {
609
611
  /** The unique identifier of the customer whose cache should be cleared. */
610
612
  customerId: Scalars['String'];
611
613
  /** The unique identifier for the environment */
612
- environmentId?: InputMaybe<Scalars['String']>;
614
+ environmentId?: InputMaybe<Scalars['UUID']>;
613
615
  /** The resource ID scoped to the customer. */
614
616
  resourceId?: InputMaybe<Scalars['String']>;
615
617
  };
@@ -638,8 +640,8 @@ export declare type CouponFilter = {
638
640
  createdAt?: InputMaybe<DateFieldComparison>;
639
641
  customers?: InputMaybe<CouponFilterCustomerFilter>;
640
642
  description?: InputMaybe<StringFieldComparison>;
641
- environmentId?: InputMaybe<StringFieldComparison>;
642
- id?: InputMaybe<StringFieldComparison>;
643
+ environmentId?: InputMaybe<UuidFilterComparison>;
644
+ id?: InputMaybe<UuidFilterComparison>;
643
645
  name?: InputMaybe<StringFieldComparison>;
644
646
  or?: InputMaybe<Array<CouponFilter>>;
645
647
  refId?: InputMaybe<StringFieldComparison>;
@@ -658,8 +660,8 @@ export declare type CouponFilterCustomerFilter = {
658
660
  customerId?: InputMaybe<StringFieldComparison>;
659
661
  deletedAt?: InputMaybe<DateFieldComparison>;
660
662
  email?: InputMaybe<StringFieldComparison>;
661
- environmentId?: InputMaybe<StringFieldComparison>;
662
- id?: InputMaybe<StringFieldComparison>;
663
+ environmentId?: InputMaybe<UuidFilterComparison>;
664
+ id?: InputMaybe<UuidFilterComparison>;
663
665
  name?: InputMaybe<StringFieldComparison>;
664
666
  or?: InputMaybe<Array<CouponFilterCustomerFilter>>;
665
667
  refId?: InputMaybe<StringFieldComparison>;
@@ -757,7 +759,7 @@ export declare type CreateCouponInput = {
757
759
  /** Duration of the coupon validity in months */
758
760
  durationInMonths?: InputMaybe<Scalars['Float']>;
759
761
  /** The unique identifier for the environment */
760
- environmentId?: InputMaybe<Scalars['String']>;
762
+ environmentId?: InputMaybe<Scalars['UUID']>;
761
763
  /** Name of the coupon */
762
764
  name: Scalars['String'];
763
765
  /** Percentage discount off the original price */
@@ -800,7 +802,7 @@ export declare type CreateExperimentInput = {
800
802
  /** Description of the experiements */
801
803
  description?: InputMaybe<Scalars['String']>;
802
804
  /** The unique identifier for the environment */
803
- environmentId?: InputMaybe<Scalars['String']>;
805
+ environmentId?: InputMaybe<Scalars['UUID']>;
804
806
  /** Name of the experiment */
805
807
  name: Scalars['String'];
806
808
  /** Internal identifier for the product experiment is associated with */
@@ -835,11 +837,11 @@ export declare type CreateHook = {
835
837
  /** The Webhook endpoint URL */
836
838
  endpoint?: InputMaybe<Scalars['String']>;
837
839
  /** The unique identifier for the environment */
838
- environmentId?: InputMaybe<Scalars['String']>;
840
+ environmentId?: InputMaybe<Scalars['UUID']>;
839
841
  /** The event types that the webhook will be triggered on */
840
842
  eventLogTypes?: InputMaybe<Array<EventLogType>>;
841
843
  /** Unique identifier for the entity */
842
- id?: InputMaybe<Scalars['String']>;
844
+ id?: InputMaybe<Scalars['UUID']>;
843
845
  /** Secret key for the webhook */
844
846
  secretKey?: InputMaybe<Scalars['String']>;
845
847
  /** The status of the webhook */
@@ -924,7 +926,7 @@ export declare type CreateOrUpdateAwsMarketplaceProductInput = {
924
926
  /** Display name of the product */
925
927
  displayName?: InputMaybe<Scalars['String']>;
926
928
  /** The unique identifier for the environment */
927
- environmentId?: InputMaybe<Scalars['String']>;
929
+ environmentId?: InputMaybe<Scalars['UUID']>;
928
930
  /** Indicates if multiple subscriptions to this product are allowed */
929
931
  multipleSubscriptions?: InputMaybe<Scalars['Boolean']>;
930
932
  /** Stigg product ID to be mapped to AWS Marketplace */
@@ -943,7 +945,7 @@ export declare type CreatePackageGroup = {
943
945
  /** The display name of the package group */
944
946
  displayName: Scalars['String'];
945
947
  /** The unique identifier for the environment */
946
- environmentId?: InputMaybe<Scalars['String']>;
948
+ environmentId?: InputMaybe<Scalars['UUID']>;
947
949
  /** The id of the package group */
948
950
  packageGroupId: Scalars['String'];
949
951
  /** The id of the related product */
@@ -956,7 +958,7 @@ export declare type CreateWorkflowTriggerInput = {
956
958
  /** Workflow trigger endpoint */
957
959
  endpoint: Scalars['String'];
958
960
  /** The unique identifier for the environment */
959
- environmentId?: InputMaybe<Scalars['String']>;
961
+ environmentId?: InputMaybe<Scalars['UUID']>;
960
962
  /** Event log types */
961
963
  eventLogTypes: Array<EventLogType>;
962
964
  /** Workflow trigger id */
@@ -1242,8 +1244,8 @@ export declare type CustomerFilter = {
1242
1244
  customerId?: InputMaybe<StringFieldComparison>;
1243
1245
  deletedAt?: InputMaybe<DateFieldComparison>;
1244
1246
  email?: InputMaybe<StringFieldComparison>;
1245
- environmentId?: InputMaybe<StringFieldComparison>;
1246
- id?: InputMaybe<StringFieldComparison>;
1247
+ environmentId?: InputMaybe<UuidFilterComparison>;
1248
+ id?: InputMaybe<UuidFilterComparison>;
1247
1249
  name?: InputMaybe<StringFieldComparison>;
1248
1250
  or?: InputMaybe<Array<CustomerFilter>>;
1249
1251
  promotionalEntitlements?: InputMaybe<CustomerFilterPromotionalEntitlementFilter>;
@@ -1285,8 +1287,8 @@ export declare type CustomerFilterCustomerSubscriptionFilter = {
1285
1287
  export declare type CustomerFilterPromotionalEntitlementFilter = {
1286
1288
  and?: InputMaybe<Array<CustomerFilterPromotionalEntitlementFilter>>;
1287
1289
  createdAt?: InputMaybe<DateFieldComparison>;
1288
- environmentId?: InputMaybe<StringFieldComparison>;
1289
- id?: InputMaybe<StringFieldComparison>;
1290
+ environmentId?: InputMaybe<UuidFilterComparison>;
1291
+ id?: InputMaybe<UuidFilterComparison>;
1290
1292
  or?: InputMaybe<Array<CustomerFilterPromotionalEntitlementFilter>>;
1291
1293
  status?: InputMaybe<PromotionalEntitlementStatusFilterComparison>;
1292
1294
  updatedAt?: InputMaybe<DateFieldComparison>;
@@ -1312,7 +1314,7 @@ export declare type CustomerInput = {
1312
1314
  /** The email of the customer */
1313
1315
  email?: InputMaybe<Scalars['String']>;
1314
1316
  /** The unique identifier for the environment */
1315
- environmentId?: InputMaybe<Scalars['String']>;
1317
+ environmentId?: InputMaybe<Scalars['UUID']>;
1316
1318
  /** The name of the customer */
1317
1319
  name?: InputMaybe<Scalars['String']>;
1318
1320
  /** Customer slug */
@@ -1361,7 +1363,7 @@ export declare type CustomerResourceFilter = {
1361
1363
  and?: InputMaybe<Array<CustomerResourceFilter>>;
1362
1364
  createdAt?: InputMaybe<DateFieldComparison>;
1363
1365
  customer?: InputMaybe<CustomerResourceFilterCustomerFilter>;
1364
- environmentId?: InputMaybe<StringFieldComparison>;
1366
+ environmentId?: InputMaybe<UuidFilterComparison>;
1365
1367
  or?: InputMaybe<Array<CustomerResourceFilter>>;
1366
1368
  resourceId?: InputMaybe<StringFieldComparison>;
1367
1369
  subscriptions?: InputMaybe<CustomerResourceFilterCustomerSubscriptionFilter>;
@@ -1376,8 +1378,8 @@ export declare type CustomerResourceFilterCustomerFilter = {
1376
1378
  customerId?: InputMaybe<StringFieldComparison>;
1377
1379
  deletedAt?: InputMaybe<DateFieldComparison>;
1378
1380
  email?: InputMaybe<StringFieldComparison>;
1379
- environmentId?: InputMaybe<StringFieldComparison>;
1380
- id?: InputMaybe<StringFieldComparison>;
1381
+ environmentId?: InputMaybe<UuidFilterComparison>;
1382
+ id?: InputMaybe<UuidFilterComparison>;
1381
1383
  name?: InputMaybe<StringFieldComparison>;
1382
1384
  or?: InputMaybe<Array<CustomerResourceFilterCustomerFilter>>;
1383
1385
  refId?: InputMaybe<StringFieldComparison>;
@@ -1495,8 +1497,8 @@ export declare type CustomerSubscriptionFilterCustomerFilter = {
1495
1497
  customerId?: InputMaybe<StringFieldComparison>;
1496
1498
  deletedAt?: InputMaybe<DateFieldComparison>;
1497
1499
  email?: InputMaybe<StringFieldComparison>;
1498
- environmentId?: InputMaybe<StringFieldComparison>;
1499
- id?: InputMaybe<StringFieldComparison>;
1500
+ environmentId?: InputMaybe<UuidFilterComparison>;
1501
+ id?: InputMaybe<UuidFilterComparison>;
1500
1502
  name?: InputMaybe<StringFieldComparison>;
1501
1503
  or?: InputMaybe<Array<CustomerSubscriptionFilterCustomerFilter>>;
1502
1504
  refId?: InputMaybe<StringFieldComparison>;
@@ -1507,7 +1509,7 @@ export declare type CustomerSubscriptionFilterCustomerFilter = {
1507
1509
  export declare type CustomerSubscriptionFilterCustomerResourceFilter = {
1508
1510
  and?: InputMaybe<Array<CustomerSubscriptionFilterCustomerResourceFilter>>;
1509
1511
  createdAt?: InputMaybe<DateFieldComparison>;
1510
- environmentId?: InputMaybe<StringFieldComparison>;
1512
+ environmentId?: InputMaybe<UuidFilterComparison>;
1511
1513
  or?: InputMaybe<Array<CustomerSubscriptionFilterCustomerResourceFilter>>;
1512
1514
  resourceId?: InputMaybe<StringFieldComparison>;
1513
1515
  };
@@ -1517,8 +1519,8 @@ export declare type CustomerSubscriptionFilterPlanFilter = {
1517
1519
  createdAt?: InputMaybe<DateFieldComparison>;
1518
1520
  description?: InputMaybe<StringFieldComparison>;
1519
1521
  displayName?: InputMaybe<StringFieldComparison>;
1520
- environmentId?: InputMaybe<StringFieldComparison>;
1521
- id?: InputMaybe<StringFieldComparison>;
1522
+ environmentId?: InputMaybe<UuidFilterComparison>;
1523
+ id?: InputMaybe<UuidFilterComparison>;
1522
1524
  isLatest?: InputMaybe<BooleanFieldComparison>;
1523
1525
  or?: InputMaybe<Array<CustomerSubscriptionFilterPlanFilter>>;
1524
1526
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -1531,7 +1533,7 @@ export declare type CustomerSubscriptionFilterPlanFilter = {
1531
1533
  export declare type CustomerSubscriptionFilterSubscriptionAddonFilter = {
1532
1534
  and?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionAddonFilter>>;
1533
1535
  createdAt?: InputMaybe<DateFieldComparison>;
1534
- id?: InputMaybe<StringFieldComparison>;
1536
+ id?: InputMaybe<UuidFilterComparison>;
1535
1537
  or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionAddonFilter>>;
1536
1538
  quantity?: InputMaybe<NumberFieldComparison>;
1537
1539
  updatedAt?: InputMaybe<DateFieldComparison>;
@@ -1539,8 +1541,8 @@ export declare type CustomerSubscriptionFilterSubscriptionAddonFilter = {
1539
1541
  export declare type CustomerSubscriptionFilterSubscriptionEntitlementFilter = {
1540
1542
  and?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionEntitlementFilter>>;
1541
1543
  createdAt?: InputMaybe<DateFieldComparison>;
1542
- environmentId?: InputMaybe<StringFieldComparison>;
1543
- id?: InputMaybe<StringFieldComparison>;
1544
+ environmentId?: InputMaybe<UuidFilterComparison>;
1545
+ id?: InputMaybe<UuidFilterComparison>;
1544
1546
  or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionEntitlementFilter>>;
1545
1547
  subscriptionId?: InputMaybe<StringFieldComparison>;
1546
1548
  updatedAt?: InputMaybe<DateFieldComparison>;
@@ -1551,7 +1553,7 @@ export declare type CustomerSubscriptionFilterSubscriptionPriceFilter = {
1551
1553
  createdAt?: InputMaybe<DateFieldComparison>;
1552
1554
  featureId?: InputMaybe<StringFieldComparison>;
1553
1555
  hasSoftLimit?: InputMaybe<BooleanFieldComparison>;
1554
- id?: InputMaybe<StringFieldComparison>;
1556
+ id?: InputMaybe<UuidFilterComparison>;
1555
1557
  or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionPriceFilter>>;
1556
1558
  updatedAt?: InputMaybe<DateFieldComparison>;
1557
1559
  usageLimit?: InputMaybe<NumberFieldComparison>;
@@ -1638,25 +1640,25 @@ export declare type DelegateSubscriptionToCustomerInput = {
1638
1640
  /** Input for deleting a feature */
1639
1641
  export declare type DeleteFeatureInput = {
1640
1642
  /** The unique identifier for the environment */
1641
- environmentId?: InputMaybe<Scalars['String']>;
1643
+ environmentId?: InputMaybe<Scalars['UUID']>;
1642
1644
  /** Unique identifier for the entity */
1643
1645
  id: Scalars['String'];
1644
1646
  };
1645
1647
  export declare type DeleteOneHookInput = {
1646
1648
  /** The id of the record to delete. */
1647
- id: Scalars['String'];
1649
+ id: Scalars['UUID'];
1648
1650
  };
1649
1651
  export declare type DeleteOneIntegrationInput = {
1650
1652
  /** The id of the record to delete. */
1651
- id: Scalars['String'];
1653
+ id: Scalars['UUID'];
1652
1654
  };
1653
1655
  export declare type DeleteOnePackageEntitlementInput = {
1654
1656
  /** The id of the record to delete. */
1655
- id: Scalars['String'];
1657
+ id: Scalars['UUID'];
1656
1658
  };
1657
1659
  export declare type DeleteOnePriceInput = {
1658
1660
  /** The id of the record to delete. */
1659
- id: Scalars['String'];
1661
+ id: Scalars['UUID'];
1660
1662
  };
1661
1663
  /** Input for deleting a product */
1662
1664
  export declare type DeleteOneProductInput = {
@@ -1665,12 +1667,12 @@ export declare type DeleteOneProductInput = {
1665
1667
  };
1666
1668
  export declare type DeleteOnePromotionalEntitlementInput = {
1667
1669
  /** The id of the record to delete. */
1668
- id: Scalars['String'];
1670
+ id: Scalars['UUID'];
1669
1671
  };
1670
1672
  /** Delete workflow trigger input */
1671
1673
  export declare type DeleteWorkflowTriggerInput = {
1672
1674
  /** The unique identifier for the environment */
1673
- environmentId?: InputMaybe<Scalars['String']>;
1675
+ environmentId?: InputMaybe<Scalars['UUID']>;
1674
1676
  /** Workflow trigger id */
1675
1677
  workflowTriggerId: Scalars['String'];
1676
1678
  };
@@ -1696,7 +1698,7 @@ export declare type DetachCustomerPaymentMethodInput = {
1696
1698
  /** Customer slug */
1697
1699
  customerId: Scalars['String'];
1698
1700
  /** The unique identifier for the environment */
1699
- environmentId?: InputMaybe<Scalars['String']>;
1701
+ environmentId?: InputMaybe<Scalars['UUID']>;
1700
1702
  };
1701
1703
  /** Configuration for mapping AWS Marketplace dimensions to Stigg plans */
1702
1704
  export declare type DimensionsMappingInput = {
@@ -1728,7 +1730,7 @@ export declare enum DiscountType {
1728
1730
  /** Input for checking if a feature exists */
1729
1731
  export declare type DoesFeatureExist = {
1730
1732
  /** The unique identifier for the environment */
1731
- environmentId: Scalars['String'];
1733
+ environmentId: Scalars['UUID'];
1732
1734
  /** The unique identifier for the feature */
1733
1735
  refId: Scalars['String'];
1734
1736
  };
@@ -1766,7 +1768,7 @@ export declare type EditPackageGroupDetailsInput = {
1766
1768
  /** The display name of the package group */
1767
1769
  displayName: Scalars['String'];
1768
1770
  /** The unique identifier for the environment */
1769
- environmentId?: InputMaybe<Scalars['String']>;
1771
+ environmentId?: InputMaybe<Scalars['UUID']>;
1770
1772
  /** The id of the package group */
1771
1773
  packageGroupId: Scalars['String'];
1772
1774
  };
@@ -1784,11 +1786,13 @@ export declare type EntitlementCheckRequested = {
1784
1786
  /** Result object of an entitlement access check. */
1785
1787
  entitlementCheckResult: EntitlementCheckResult;
1786
1788
  /** The environment context in which the check occurred. */
1787
- environmentId?: InputMaybe<Scalars['String']>;
1789
+ environmentId?: InputMaybe<Scalars['UUID']>;
1788
1790
  /** The internal ID of the feature linked to this entitlement. */
1789
1791
  featureId: Scalars['String'];
1790
1792
  /** The amount of usage requested by the customer. */
1791
1793
  requestedUsage?: InputMaybe<Scalars['Float']>;
1794
+ /** The values requested by the customer, if applicable. */
1795
+ requestedValues?: InputMaybe<Array<Scalars['String']>>;
1792
1796
  /** The specific resource identifier scoped for the entitlement check. */
1793
1797
  resourceId?: InputMaybe<Scalars['String']>;
1794
1798
  };
@@ -1798,6 +1802,8 @@ export declare type EntitlementCheckResult = {
1798
1802
  accessDeniedReason?: InputMaybe<AccessDeniedReason>;
1799
1803
  /** The amount of the feature the customer has used so far in the current period. */
1800
1804
  currentUsage?: InputMaybe<Scalars['Float']>;
1805
+ /** List of enum values applicable to this entitlement, if it is an enum feature. */
1806
+ enumValues?: InputMaybe<Array<Scalars['String']>>;
1801
1807
  /** Indicates whether the customer currently has access to the feature. */
1802
1808
  hasAccess: Scalars['Boolean'];
1803
1809
  /** Indicates whether the usage limit is soft — usage can exceed the limit, but will be tracked. */
@@ -1810,6 +1816,8 @@ export declare type EntitlementCheckResult = {
1810
1816
  nextResetDate?: InputMaybe<Scalars['DateTime']>;
1811
1817
  /** The amount of usage requested by the customer. */
1812
1818
  requestedUsage?: InputMaybe<Scalars['Float']>;
1819
+ /** The values requested by the customer, if applicable. */
1820
+ requestedValues?: InputMaybe<Array<Scalars['String']>>;
1813
1821
  /** The interval at which usage resets automatically, such as monthly or yearly. */
1814
1822
  resetPeriod?: InputMaybe<EntitlementResetPeriod>;
1815
1823
  /** The maximum allowed usage for this entitlement before restrictions apply. */
@@ -1823,6 +1831,8 @@ export declare type EntitlementCheckResult = {
1823
1831
  export declare type EntitlementOptions = {
1824
1832
  /** The amount of usage requested by the customer. */
1825
1833
  requestedUsage?: InputMaybe<Scalars['Float']>;
1834
+ /** The values requested by the customer, if applicable. */
1835
+ requestedValues?: InputMaybe<Array<Scalars['String']>>;
1826
1836
  /** Not in use anymore */
1827
1837
  shouldTrack?: InputMaybe<Scalars['Boolean']>;
1828
1838
  };
@@ -1868,7 +1878,7 @@ export declare type EnvironmentFilter = {
1868
1878
  and?: InputMaybe<Array<EnvironmentFilter>>;
1869
1879
  createdAt?: InputMaybe<DateFieldComparison>;
1870
1880
  displayName?: InputMaybe<StringFieldComparison>;
1871
- id?: InputMaybe<StringFieldComparison>;
1881
+ id?: InputMaybe<UuidFilterComparison>;
1872
1882
  or?: InputMaybe<Array<EnvironmentFilter>>;
1873
1883
  permanentDeletionDate?: InputMaybe<DateFieldComparison>;
1874
1884
  slug?: InputMaybe<StringFieldComparison>;
@@ -2204,7 +2214,7 @@ export declare type EventLogEntityIdFilterComparison = {
2204
2214
  in?: InputMaybe<Array<Scalars['String']>>;
2205
2215
  };
2206
2216
  export declare type EventLogEnvironmentIdFilterComparison = {
2207
- eq?: InputMaybe<Scalars['String']>;
2217
+ eq?: InputMaybe<Scalars['UUID']>;
2208
2218
  };
2209
2219
  export declare type EventLogEventLogTypeFilterComparison = {
2210
2220
  eq?: InputMaybe<EventLogType>;
@@ -2376,7 +2386,7 @@ export declare type EventsFieldsInput = {
2376
2386
  /** Customer id */
2377
2387
  customerId?: InputMaybe<Scalars['String']>;
2378
2388
  /** The unique identifier for the environment */
2379
- environmentId: Scalars['String'];
2389
+ environmentId: Scalars['UUID'];
2380
2390
  /** Reference identifier for the feature */
2381
2391
  featureId?: InputMaybe<Scalars['String']>;
2382
2392
  /** Filters to apply to the events fields */
@@ -2392,8 +2402,8 @@ export declare type ExperimentFilter = {
2392
2402
  and?: InputMaybe<Array<ExperimentFilter>>;
2393
2403
  createdAt?: InputMaybe<DateFieldComparison>;
2394
2404
  customers?: InputMaybe<ExperimentFilterCustomerFilter>;
2395
- environmentId?: InputMaybe<StringFieldComparison>;
2396
- id?: InputMaybe<StringFieldComparison>;
2405
+ environmentId?: InputMaybe<UuidFilterComparison>;
2406
+ id?: InputMaybe<UuidFilterComparison>;
2397
2407
  name?: InputMaybe<StringFieldComparison>;
2398
2408
  or?: InputMaybe<Array<ExperimentFilter>>;
2399
2409
  productId?: InputMaybe<StringFieldComparison>;
@@ -2410,8 +2420,8 @@ export declare type ExperimentFilterCustomerFilter = {
2410
2420
  customerId?: InputMaybe<StringFieldComparison>;
2411
2421
  deletedAt?: InputMaybe<DateFieldComparison>;
2412
2422
  email?: InputMaybe<StringFieldComparison>;
2413
- environmentId?: InputMaybe<StringFieldComparison>;
2414
- id?: InputMaybe<StringFieldComparison>;
2423
+ environmentId?: InputMaybe<UuidFilterComparison>;
2424
+ id?: InputMaybe<UuidFilterComparison>;
2415
2425
  name?: InputMaybe<StringFieldComparison>;
2416
2426
  or?: InputMaybe<Array<ExperimentFilterCustomerFilter>>;
2417
2427
  refId?: InputMaybe<StringFieldComparison>;
@@ -2436,7 +2446,7 @@ export declare enum ExperimentSortFields {
2436
2446
  /** Query parameters for retrieving experiment statistics */
2437
2447
  export declare type ExperimentStatsQuery = {
2438
2448
  /** The unique identifier for the environment */
2439
- environmentId?: InputMaybe<Scalars['String']>;
2449
+ environmentId?: InputMaybe<Scalars['UUID']>;
2440
2450
  /** The unique identifier for the experiment */
2441
2451
  experimentRefId: Scalars['String'];
2442
2452
  };
@@ -2468,7 +2478,7 @@ export declare type ExperimentStatusFilterComparison = {
2468
2478
  /** Input for getting the associated latest packages for a feature */
2469
2479
  export declare type FeatureAssociatedLatestPackages = {
2470
2480
  /** The unique identifier for the environment */
2471
- environmentId: Scalars['String'];
2481
+ environmentId: Scalars['UUID'];
2472
2482
  /** The ID of the feature */
2473
2483
  featureId: Scalars['String'];
2474
2484
  };
@@ -2477,10 +2487,10 @@ export declare type FeatureFilter = {
2477
2487
  createdAt?: InputMaybe<DateFieldComparison>;
2478
2488
  description?: InputMaybe<StringFieldComparison>;
2479
2489
  displayName?: InputMaybe<StringFieldComparison>;
2480
- environmentId?: InputMaybe<StringFieldComparison>;
2490
+ environmentId?: InputMaybe<UuidFilterComparison>;
2481
2491
  featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
2482
2492
  featureType?: InputMaybe<FeatureTypeFilterComparison>;
2483
- id?: InputMaybe<StringFieldComparison>;
2493
+ id?: InputMaybe<UuidFilterComparison>;
2484
2494
  meterType?: InputMaybe<MeterTypeFilterComparison>;
2485
2495
  or?: InputMaybe<Array<FeatureFilter>>;
2486
2496
  refId?: InputMaybe<StringFieldComparison>;
@@ -2549,7 +2559,7 @@ export declare type FeatureInput = {
2549
2559
  /** The configuration data for the feature */
2550
2560
  enumConfiguration?: InputMaybe<Array<EnumConfigurationEntityInput>>;
2551
2561
  /** The unique identifier for the environment */
2552
- environmentId: Scalars['String'];
2562
+ environmentId: Scalars['UUID'];
2553
2563
  /** The status of the feature */
2554
2564
  featureStatus?: InputMaybe<FeatureStatus>;
2555
2565
  /** The type of the feature */
@@ -2685,14 +2695,14 @@ export declare type GetAuth0ApplicationsInput = {
2685
2695
  /** Secret of the Auth0 client */
2686
2696
  clientSecret: Scalars['String'];
2687
2697
  /** The unique identifier for the environment */
2688
- environmentId?: InputMaybe<Scalars['String']>;
2698
+ environmentId?: InputMaybe<Scalars['UUID']>;
2689
2699
  };
2690
2700
  /** Get a customer by slug */
2691
2701
  export declare type GetCustomerByRefIdInput = {
2692
2702
  /** Customer slug */
2693
2703
  customerId: Scalars['String'];
2694
2704
  /** The unique identifier for the environment */
2695
- environmentId?: InputMaybe<Scalars['String']>;
2705
+ environmentId?: InputMaybe<Scalars['UUID']>;
2696
2706
  };
2697
2707
  /** Get Package By Ref Id Input */
2698
2708
  export declare type GetPackageByRefIdInput = {
@@ -2721,7 +2731,7 @@ export declare type GetPaywallInput = {
2721
2731
  /** The customer ID for whom the paywall is being fetched */
2722
2732
  customerId?: InputMaybe<Scalars['String']>;
2723
2733
  /** The unique identifier for the environment */
2724
- environmentId?: InputMaybe<Scalars['String']>;
2734
+ environmentId?: InputMaybe<Scalars['UUID']>;
2725
2735
  /** Whether to fetch prices for all countries or just the specified billing country */
2726
2736
  fetchAllCountriesPrices?: InputMaybe<Scalars['Boolean']>;
2727
2737
  /** Whether to include hidden plans in the paywall */
@@ -2741,12 +2751,12 @@ export declare type GetSubscriptionInput = {
2741
2751
  /** Input object used to retrieve current widget configuration for the environment. */
2742
2752
  export declare type GetWidgetConfigurationInput = {
2743
2753
  /** The unique identifier for the environment */
2744
- environmentId?: InputMaybe<Scalars['String']>;
2754
+ environmentId?: InputMaybe<Scalars['UUID']>;
2745
2755
  };
2746
2756
  /** Get workflow triggers input */
2747
2757
  export declare type GetWorkflowTriggersInput = {
2748
2758
  /** The unique identifier for the environment */
2749
- environmentId?: InputMaybe<Scalars['String']>;
2759
+ environmentId?: InputMaybe<Scalars['UUID']>;
2750
2760
  /** Trigger id */
2751
2761
  triggerId?: InputMaybe<Scalars['String']>;
2752
2762
  /** Workflow trigger id */
@@ -2782,7 +2792,7 @@ export declare type GrantPromotionalEntitlementsInput = {
2782
2792
  /** The unique identifier of the entitlement customer */
2783
2793
  customerId: Scalars['String'];
2784
2794
  /** The unique identifier for the environment */
2785
- environmentId?: InputMaybe<Scalars['String']>;
2795
+ environmentId?: InputMaybe<Scalars['UUID']>;
2786
2796
  /** Promotional entitlements to grant */
2787
2797
  promotionalEntitlements: Array<GrantPromotionalEntitlementInput>;
2788
2798
  };
@@ -2790,8 +2800,8 @@ export declare type HookFilter = {
2790
2800
  and?: InputMaybe<Array<HookFilter>>;
2791
2801
  createdAt?: InputMaybe<DateFieldComparison>;
2792
2802
  endpoint?: InputMaybe<StringFieldComparison>;
2793
- environmentId?: InputMaybe<StringFieldComparison>;
2794
- id?: InputMaybe<StringFieldComparison>;
2803
+ environmentId?: InputMaybe<UuidFilterComparison>;
2804
+ id?: InputMaybe<UuidFilterComparison>;
2795
2805
  or?: InputMaybe<Array<HookFilter>>;
2796
2806
  status?: InputMaybe<HookStatusFilterComparison>;
2797
2807
  };
@@ -2842,7 +2852,7 @@ export declare type ImportCustomerBulkInput = {
2842
2852
  /** List of customers to import */
2843
2853
  customers: Array<ImportCustomerInput>;
2844
2854
  /** The unique identifier for the environment */
2845
- environmentId?: InputMaybe<Scalars['String']>;
2855
+ environmentId?: InputMaybe<Scalars['UUID']>;
2846
2856
  };
2847
2857
  /** Input for importing a customer */
2848
2858
  export declare type ImportCustomerInput = {
@@ -2855,7 +2865,7 @@ export declare type ImportCustomerInput = {
2855
2865
  /** Customer email */
2856
2866
  email?: InputMaybe<Scalars['String']>;
2857
2867
  /** The unique identifier for the environment */
2858
- environmentId?: InputMaybe<Scalars['String']>;
2868
+ environmentId?: InputMaybe<Scalars['UUID']>;
2859
2869
  /** Customer name */
2860
2870
  name?: InputMaybe<Scalars['String']>;
2861
2871
  /** Payment method Id in the billing provider */
@@ -2909,7 +2919,7 @@ export declare type ImportIntegrationTaskFilter = {
2909
2919
  and?: InputMaybe<Array<ImportIntegrationTaskFilter>>;
2910
2920
  createdAt?: InputMaybe<DateFieldComparison>;
2911
2921
  environmentId?: InputMaybe<StringFieldComparison>;
2912
- id?: InputMaybe<StringFieldComparison>;
2922
+ id?: InputMaybe<UuidFilterComparison>;
2913
2923
  or?: InputMaybe<Array<ImportIntegrationTaskFilter>>;
2914
2924
  status?: InputMaybe<TaskStatusFilterComparison>;
2915
2925
  taskType?: InputMaybe<TaskTypeFilterComparison>;
@@ -2953,7 +2963,7 @@ export declare type InitAddStripeCustomerPaymentMethodInput = {
2953
2963
  /** Customer slug */
2954
2964
  customerRefId: Scalars['String'];
2955
2965
  /** The unique identifier for the environment */
2956
- environmentId?: InputMaybe<Scalars['String']>;
2966
+ environmentId?: InputMaybe<Scalars['UUID']>;
2957
2967
  /** The billing integration to use for this payment method */
2958
2968
  integrationId?: InputMaybe<Scalars['String']>;
2959
2969
  };
@@ -2978,8 +2988,8 @@ export declare type IntFieldComparisonBetween = {
2978
2988
  export declare type IntegrationFilter = {
2979
2989
  and?: InputMaybe<Array<IntegrationFilter>>;
2980
2990
  createdAt?: InputMaybe<DateFieldComparison>;
2981
- environmentId?: InputMaybe<StringFieldComparison>;
2982
- id?: InputMaybe<StringFieldComparison>;
2991
+ environmentId?: InputMaybe<UuidFilterComparison>;
2992
+ id?: InputMaybe<UuidFilterComparison>;
2983
2993
  or?: InputMaybe<Array<IntegrationFilter>>;
2984
2994
  vendorIdentifier?: InputMaybe<VendorIdentifierFilterComparison>;
2985
2995
  vendorType?: InputMaybe<IntegrationVendorTypeFilterComparison>;
@@ -3029,14 +3039,14 @@ export declare enum InvoiceLineItemType {
3029
3039
  /** Input for retrieving AWS Marketplace product dimensions */
3030
3040
  export declare type ListAwsProductDimensionsInput = {
3031
3041
  /** The unique identifier for the environment */
3032
- environmentId?: InputMaybe<Scalars['String']>;
3042
+ environmentId?: InputMaybe<Scalars['UUID']>;
3033
3043
  /** AWS product ID to fetch dimensions for */
3034
3044
  productId: Scalars['String'];
3035
3045
  };
3036
3046
  /** Input parameters for listing available AWS Marketplace products */
3037
3047
  export declare type ListAwsProductsInput = {
3038
3048
  /** The unique identifier for the environment */
3039
- environmentId?: InputMaybe<Scalars['String']>;
3049
+ environmentId?: InputMaybe<Scalars['UUID']>;
3040
3050
  };
3041
3051
  /** Input for triggering the subscription invoice as paid */
3042
3052
  export declare type MarkInvoiceAsPaidInput = {
@@ -3049,14 +3059,14 @@ export declare type MemberFilter = {
3049
3059
  and?: InputMaybe<Array<MemberFilter>>;
3050
3060
  createdAt?: InputMaybe<DateFieldComparison>;
3051
3061
  email?: InputMaybe<StringFieldComparison>;
3052
- id?: InputMaybe<StringFieldComparison>;
3062
+ id?: InputMaybe<UuidFilterComparison>;
3053
3063
  or?: InputMaybe<Array<MemberFilter>>;
3054
3064
  user?: InputMaybe<MemberFilterUserFilter>;
3055
3065
  };
3056
3066
  export declare type MemberFilterUserFilter = {
3057
3067
  and?: InputMaybe<Array<MemberFilterUserFilter>>;
3058
3068
  email?: InputMaybe<StringFieldComparison>;
3059
- id?: InputMaybe<StringFieldComparison>;
3069
+ id?: InputMaybe<UuidFilterComparison>;
3060
3070
  name?: InputMaybe<StringFieldComparison>;
3061
3071
  or?: InputMaybe<Array<MemberFilterUserFilter>>;
3062
3072
  };
@@ -3215,7 +3225,7 @@ export declare type OverageEntitlementCreateInput = {
3215
3225
  /** The enum values of the entitlement */
3216
3226
  enumValues?: InputMaybe<Array<Scalars['String']>>;
3217
3227
  /** The unique identifier of the entitlement feature */
3218
- featureId: Scalars['String'];
3228
+ featureId: Scalars['UUID'];
3219
3229
  /** Whether the entitlement has a soft limit */
3220
3230
  hasSoftLimit?: InputMaybe<Scalars['Boolean']>;
3221
3231
  /** Whether the entitlement has an unlimited usage */
@@ -3256,8 +3266,8 @@ export declare type PackageDtoFilter = {
3256
3266
  createdAt?: InputMaybe<DateFieldComparison>;
3257
3267
  description?: InputMaybe<StringFieldComparison>;
3258
3268
  displayName?: InputMaybe<StringFieldComparison>;
3259
- environmentId?: InputMaybe<StringFieldComparison>;
3260
- id?: InputMaybe<StringFieldComparison>;
3269
+ environmentId?: InputMaybe<UuidFilterComparison>;
3270
+ id?: InputMaybe<UuidFilterComparison>;
3261
3271
  isLatest?: InputMaybe<BooleanFieldComparison>;
3262
3272
  or?: InputMaybe<Array<PackageDtoFilter>>;
3263
3273
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3290,9 +3300,9 @@ export declare enum PackageDtoSortFields {
3290
3300
  export declare type PackageEntitlementFilter = {
3291
3301
  and?: InputMaybe<Array<PackageEntitlementFilter>>;
3292
3302
  createdAt?: InputMaybe<DateFieldComparison>;
3293
- environmentId?: InputMaybe<StringFieldComparison>;
3303
+ environmentId?: InputMaybe<UuidFilterComparison>;
3294
3304
  feature?: InputMaybe<PackageEntitlementFilterFeatureFilter>;
3295
- id?: InputMaybe<StringFieldComparison>;
3305
+ id?: InputMaybe<UuidFilterComparison>;
3296
3306
  or?: InputMaybe<Array<PackageEntitlementFilter>>;
3297
3307
  package?: InputMaybe<PackageEntitlementFilterPackageDtoFilter>;
3298
3308
  packageId?: InputMaybe<StringFieldComparison>;
@@ -3303,10 +3313,10 @@ export declare type PackageEntitlementFilterFeatureFilter = {
3303
3313
  createdAt?: InputMaybe<DateFieldComparison>;
3304
3314
  description?: InputMaybe<StringFieldComparison>;
3305
3315
  displayName?: InputMaybe<StringFieldComparison>;
3306
- environmentId?: InputMaybe<StringFieldComparison>;
3316
+ environmentId?: InputMaybe<UuidFilterComparison>;
3307
3317
  featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
3308
3318
  featureType?: InputMaybe<FeatureTypeFilterComparison>;
3309
- id?: InputMaybe<StringFieldComparison>;
3319
+ id?: InputMaybe<UuidFilterComparison>;
3310
3320
  meterType?: InputMaybe<MeterTypeFilterComparison>;
3311
3321
  or?: InputMaybe<Array<PackageEntitlementFilterFeatureFilter>>;
3312
3322
  refId?: InputMaybe<StringFieldComparison>;
@@ -3318,8 +3328,8 @@ export declare type PackageEntitlementFilterPackageDtoFilter = {
3318
3328
  createdAt?: InputMaybe<DateFieldComparison>;
3319
3329
  description?: InputMaybe<StringFieldComparison>;
3320
3330
  displayName?: InputMaybe<StringFieldComparison>;
3321
- environmentId?: InputMaybe<StringFieldComparison>;
3322
- id?: InputMaybe<StringFieldComparison>;
3331
+ environmentId?: InputMaybe<UuidFilterComparison>;
3332
+ id?: InputMaybe<UuidFilterComparison>;
3323
3333
  isLatest?: InputMaybe<BooleanFieldComparison>;
3324
3334
  or?: InputMaybe<Array<PackageEntitlementFilterPackageDtoFilter>>;
3325
3335
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3340,9 +3350,9 @@ export declare type PackageEntitlementInput = {
3340
3350
  /** The enum values of the entitlement */
3341
3351
  enumValues?: InputMaybe<Array<Scalars['String']>>;
3342
3352
  /** The unique identifier for the environment */
3343
- environmentId: Scalars['String'];
3353
+ environmentId: Scalars['UUID'];
3344
3354
  /** The unique identifier of the entitlement feature */
3345
- featureId: Scalars['String'];
3355
+ featureId: Scalars['UUID'];
3346
3356
  /** Whether the entitlement has a soft limit */
3347
3357
  hasSoftLimit?: InputMaybe<Scalars['Boolean']>;
3348
3358
  /** Whether the entitlement has an unlimited usage */
@@ -3356,7 +3366,7 @@ export declare type PackageEntitlementInput = {
3356
3366
  /** The order of the entitlement in the entitlement list */
3357
3367
  order?: InputMaybe<Scalars['Float']>;
3358
3368
  /** The unique identifier of the entitlement package */
3359
- packageId: Scalars['String'];
3369
+ packageId: Scalars['UUID'];
3360
3370
  /** The reset period of the entitlement */
3361
3371
  resetPeriod?: InputMaybe<EntitlementResetPeriod>;
3362
3372
  /** The usage limit of the entitlement */
@@ -3413,7 +3423,7 @@ export declare type PackageGroupFilter = {
3413
3423
  and?: InputMaybe<Array<PackageGroupFilter>>;
3414
3424
  createdAt?: InputMaybe<DateFieldComparison>;
3415
3425
  displayName?: InputMaybe<StringFieldComparison>;
3416
- environmentId?: InputMaybe<StringFieldComparison>;
3426
+ environmentId?: InputMaybe<UuidFilterComparison>;
3417
3427
  isLatest?: InputMaybe<BooleanFieldComparison>;
3418
3428
  or?: InputMaybe<Array<PackageGroupFilter>>;
3419
3429
  packageGroupId?: InputMaybe<StringFieldComparison>;
@@ -3430,8 +3440,8 @@ export declare type PackageGroupFilterProductFilter = {
3430
3440
  createdAt?: InputMaybe<DateFieldComparison>;
3431
3441
  description?: InputMaybe<StringFieldComparison>;
3432
3442
  displayName?: InputMaybe<StringFieldComparison>;
3433
- environmentId?: InputMaybe<StringFieldComparison>;
3434
- id?: InputMaybe<StringFieldComparison>;
3443
+ environmentId?: InputMaybe<UuidFilterComparison>;
3444
+ id?: InputMaybe<UuidFilterComparison>;
3435
3445
  isDefaultProduct?: InputMaybe<BooleanFieldComparison>;
3436
3446
  multipleSubscriptions?: InputMaybe<BooleanFieldComparison>;
3437
3447
  or?: InputMaybe<Array<PackageGroupFilterProductFilter>>;
@@ -3501,7 +3511,7 @@ export declare type PackagePricingInput = {
3501
3511
  /** Package Publish Input */
3502
3512
  export declare type PackagePublishInput = {
3503
3513
  /** Unique identifier for the entity */
3504
- id: Scalars['ID'];
3514
+ id: Scalars['UUID'];
3505
3515
  /** The migration type of the package */
3506
3516
  migrationType: PublishMigrationType;
3507
3517
  };
@@ -3625,7 +3635,7 @@ export declare type PlanCreateInput = {
3625
3635
  /** The display name of the package */
3626
3636
  displayName: Scalars['String'];
3627
3637
  /** The unique identifier for the environment */
3628
- environmentId?: InputMaybe<Scalars['String']>;
3638
+ environmentId?: InputMaybe<Scalars['UUID']>;
3629
3639
  /** List of hidden widgets of the package */
3630
3640
  hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
3631
3641
  /** The ID of the parent plan, if applicable */
@@ -3646,8 +3656,8 @@ export declare type PlanFilter = {
3646
3656
  createdAt?: InputMaybe<DateFieldComparison>;
3647
3657
  description?: InputMaybe<StringFieldComparison>;
3648
3658
  displayName?: InputMaybe<StringFieldComparison>;
3649
- environmentId?: InputMaybe<StringFieldComparison>;
3650
- id?: InputMaybe<StringFieldComparison>;
3659
+ environmentId?: InputMaybe<UuidFilterComparison>;
3660
+ id?: InputMaybe<UuidFilterComparison>;
3651
3661
  isLatest?: InputMaybe<BooleanFieldComparison>;
3652
3662
  or?: InputMaybe<Array<PlanFilter>>;
3653
3663
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3664,8 +3674,8 @@ export declare type PlanFilterAddonFilter = {
3664
3674
  createdAt?: InputMaybe<DateFieldComparison>;
3665
3675
  description?: InputMaybe<StringFieldComparison>;
3666
3676
  displayName?: InputMaybe<StringFieldComparison>;
3667
- environmentId?: InputMaybe<StringFieldComparison>;
3668
- id?: InputMaybe<StringFieldComparison>;
3677
+ environmentId?: InputMaybe<UuidFilterComparison>;
3678
+ id?: InputMaybe<UuidFilterComparison>;
3669
3679
  isLatest?: InputMaybe<BooleanFieldComparison>;
3670
3680
  or?: InputMaybe<Array<PlanFilterAddonFilter>>;
3671
3681
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3682,8 +3692,8 @@ export declare type PlanFilterProductFilter = {
3682
3692
  createdAt?: InputMaybe<DateFieldComparison>;
3683
3693
  description?: InputMaybe<StringFieldComparison>;
3684
3694
  displayName?: InputMaybe<StringFieldComparison>;
3685
- environmentId?: InputMaybe<StringFieldComparison>;
3686
- id?: InputMaybe<StringFieldComparison>;
3695
+ environmentId?: InputMaybe<UuidFilterComparison>;
3696
+ id?: InputMaybe<UuidFilterComparison>;
3687
3697
  isDefaultProduct?: InputMaybe<BooleanFieldComparison>;
3688
3698
  multipleSubscriptions?: InputMaybe<BooleanFieldComparison>;
3689
3699
  or?: InputMaybe<Array<PlanFilterProductFilter>>;
@@ -3725,7 +3735,7 @@ export declare type PlanUpdateInput = {
3725
3735
  /** Indicates if the plan should be hidden from widgets */
3726
3736
  hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
3727
3737
  /** The ID of the plan to update */
3728
- id: Scalars['String'];
3738
+ id: Scalars['UUID'];
3729
3739
  /** The minimum spend configuration per each billing period */
3730
3740
  minimumSpend?: InputMaybe<Array<MinimumSpendInput>>;
3731
3741
  /** The ID of the parent plan, if applicable */
@@ -3738,7 +3748,7 @@ export declare type PreparePaymentMethodFormInput = {
3738
3748
  /** Customer slug */
3739
3749
  customerId: Scalars['String'];
3740
3750
  /** The unique identifier for the environment */
3741
- environmentId?: InputMaybe<Scalars['String']>;
3751
+ environmentId?: InputMaybe<Scalars['UUID']>;
3742
3752
  /** The billing integration to use for this payment method */
3743
3753
  integrationId?: InputMaybe<Scalars['String']>;
3744
3754
  };
@@ -3777,7 +3787,7 @@ export declare type PriceFilter = {
3777
3787
  billingModel?: InputMaybe<BillingModelFilterComparison>;
3778
3788
  billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
3779
3789
  createdAt?: InputMaybe<DateFieldComparison>;
3780
- id?: InputMaybe<StringFieldComparison>;
3790
+ id?: InputMaybe<UuidFilterComparison>;
3781
3791
  or?: InputMaybe<Array<PriceFilter>>;
3782
3792
  package?: InputMaybe<PriceFilterPackageDtoFilter>;
3783
3793
  tiersMode?: InputMaybe<TiersModeFilterComparison>;
@@ -3788,8 +3798,8 @@ export declare type PriceFilterPackageDtoFilter = {
3788
3798
  createdAt?: InputMaybe<DateFieldComparison>;
3789
3799
  description?: InputMaybe<StringFieldComparison>;
3790
3800
  displayName?: InputMaybe<StringFieldComparison>;
3791
- environmentId?: InputMaybe<StringFieldComparison>;
3792
- id?: InputMaybe<StringFieldComparison>;
3801
+ environmentId?: InputMaybe<UuidFilterComparison>;
3802
+ id?: InputMaybe<UuidFilterComparison>;
3793
3803
  isLatest?: InputMaybe<BooleanFieldComparison>;
3794
3804
  or?: InputMaybe<Array<PriceFilterPackageDtoFilter>>;
3795
3805
  pricingType?: InputMaybe<PricingTypeFilterComparison>;
@@ -3905,7 +3915,7 @@ export declare type ProductCreateInput = {
3905
3915
  /** Display name of the product */
3906
3916
  displayName?: InputMaybe<Scalars['String']>;
3907
3917
  /** The unique identifier for the environment */
3908
- environmentId: Scalars['String'];
3918
+ environmentId: Scalars['UUID'];
3909
3919
  /** Indicates if multiple subscriptions to this product are allowed */
3910
3920
  multipleSubscriptions?: InputMaybe<Scalars['Boolean']>;
3911
3921
  /** The unique identifier for the entity */
@@ -3918,8 +3928,8 @@ export declare type ProductFilter = {
3918
3928
  createdAt?: InputMaybe<DateFieldComparison>;
3919
3929
  description?: InputMaybe<StringFieldComparison>;
3920
3930
  displayName?: InputMaybe<StringFieldComparison>;
3921
- environmentId?: InputMaybe<StringFieldComparison>;
3922
- id?: InputMaybe<StringFieldComparison>;
3931
+ environmentId?: InputMaybe<UuidFilterComparison>;
3932
+ id?: InputMaybe<UuidFilterComparison>;
3923
3933
  isDefaultProduct?: InputMaybe<BooleanFieldComparison>;
3924
3934
  multipleSubscriptions?: InputMaybe<BooleanFieldComparison>;
3925
3935
  or?: InputMaybe<Array<ProductFilter>>;
@@ -3981,8 +3991,8 @@ export declare type ProductUpdateInput = {
3981
3991
  export declare type PromotionalEntitlementFilter = {
3982
3992
  and?: InputMaybe<Array<PromotionalEntitlementFilter>>;
3983
3993
  createdAt?: InputMaybe<DateFieldComparison>;
3984
- environmentId?: InputMaybe<StringFieldComparison>;
3985
- id?: InputMaybe<StringFieldComparison>;
3994
+ environmentId?: InputMaybe<UuidFilterComparison>;
3995
+ id?: InputMaybe<UuidFilterComparison>;
3986
3996
  or?: InputMaybe<Array<PromotionalEntitlementFilter>>;
3987
3997
  status?: InputMaybe<PromotionalEntitlementStatusFilterComparison>;
3988
3998
  updatedAt?: InputMaybe<DateFieldComparison>;
@@ -3996,7 +4006,7 @@ export declare type PromotionalEntitlementInput = {
3996
4006
  /** The end date of the promotional entitlement */
3997
4007
  endDate?: InputMaybe<Scalars['DateTime']>;
3998
4008
  /** The unique identifier for the environment */
3999
- environmentId: Scalars['String'];
4009
+ environmentId: Scalars['UUID'];
4000
4010
  /** The unique identifier of the entitlement feature */
4001
4011
  featureId: Scalars['String'];
4002
4012
  /** Whether the entitlement has a soft limit */
@@ -4120,7 +4130,7 @@ export declare type ProvisionCustomerInput = {
4120
4130
  /** The email of the customer */
4121
4131
  email?: InputMaybe<Scalars['String']>;
4122
4132
  /** The unique identifier for the environment */
4123
- environmentId?: InputMaybe<Scalars['String']>;
4133
+ environmentId?: InputMaybe<Scalars['UUID']>;
4124
4134
  /** Wether the customer should be excluded from the experiment */
4125
4135
  excludeFromExperiment?: InputMaybe<Scalars['Boolean']>;
4126
4136
  /** The name of the customer */
@@ -4262,7 +4272,7 @@ export declare type RecalculateEntitlementsInput = {
4262
4272
  /** List of customer IDs for which to recalculate entitlements. */
4263
4273
  customerIds?: InputMaybe<Array<Scalars['String']>>;
4264
4274
  /** Identifier of the environment where recalculation should occur. */
4265
- environmentId: Scalars['String'];
4275
+ environmentId: Scalars['UUID'];
4266
4276
  /** If true, recalculates entitlements for all customers in the environment. */
4267
4277
  forAllCustomers?: InputMaybe<Scalars['Boolean']>;
4268
4278
  /** Optional flags to control recalculation side effects. */
@@ -4281,33 +4291,33 @@ export declare type RecalculateEntitlementsSideEffectsOptionsInput = {
4281
4291
  };
4282
4292
  export declare type RemoveBasePlanFromPlanInput = {
4283
4293
  /** The id of the record. */
4284
- id: Scalars['String'];
4294
+ id: Scalars['UUID'];
4285
4295
  /** The id of relation. */
4286
- relationId: Scalars['String'];
4296
+ relationId: Scalars['UUID'];
4287
4297
  };
4288
4298
  export declare type RemoveCompatibleAddonsFromPlanInput = {
4289
4299
  /** The id of the record. */
4290
- id: Scalars['String'];
4300
+ id: Scalars['UUID'];
4291
4301
  /** The ids of the relations. */
4292
- relationIds: Array<Scalars['String']>;
4302
+ relationIds: Array<Scalars['UUID']>;
4293
4303
  };
4294
4304
  export declare type RemoveCouponFromCustomerInput = {
4295
4305
  /** The id of the record. */
4296
- id: Scalars['String'];
4306
+ id: Scalars['UUID'];
4297
4307
  /** The id of relation. */
4298
- relationId: Scalars['String'];
4308
+ relationId: Scalars['UUID'];
4299
4309
  };
4300
4310
  export declare type RemoveExperimentFromCustomerInput = {
4301
4311
  /** The id of the record. */
4302
- id: Scalars['String'];
4312
+ id: Scalars['UUID'];
4303
4313
  /** The id of relation. */
4304
- relationId: Scalars['String'];
4314
+ relationId: Scalars['UUID'];
4305
4315
  };
4306
4316
  export declare type RemoveExperimentFromCustomerSubscriptionInput = {
4307
4317
  /** The id of the record. */
4308
4318
  id: Scalars['UUID'];
4309
4319
  /** The id of relation. */
4310
- relationId: Scalars['String'];
4320
+ relationId: Scalars['UUID'];
4311
4321
  };
4312
4322
  /** Report usage base input */
4313
4323
  export declare type ReportUsageBaseInput = {
@@ -4329,7 +4339,7 @@ export declare type ReportUsageBaseInput = {
4329
4339
  /** Input for reporting usage in bulk */
4330
4340
  export declare type ReportUsageBulkInput = {
4331
4341
  /** The unique identifier for the environment */
4332
- environmentId?: InputMaybe<Scalars['String']>;
4342
+ environmentId?: InputMaybe<Scalars['UUID']>;
4333
4343
  /** A list of usage reports to be submitted in bulk */
4334
4344
  usages: Array<ReportUsageBaseInput>;
4335
4345
  };
@@ -4342,7 +4352,7 @@ export declare type ReportUsageInput = {
4342
4352
  /** Additional dimensions for the usage report */
4343
4353
  dimensions?: InputMaybe<Scalars['JSON']>;
4344
4354
  /** The unique identifier for the environment */
4345
- environmentId?: InputMaybe<Scalars['String']>;
4355
+ environmentId?: InputMaybe<Scalars['UUID']>;
4346
4356
  /** Feature id */
4347
4357
  featureId: Scalars['String'];
4348
4358
  /** Resource id */
@@ -4368,7 +4378,7 @@ export declare type RevokePromotionalEntitlementInput = {
4368
4378
  /** The unique identifier of the entitlement customer */
4369
4379
  customerId: Scalars['String'];
4370
4380
  /** The unique identifier for the environment */
4371
- environmentId?: InputMaybe<Scalars['String']>;
4381
+ environmentId?: InputMaybe<Scalars['UUID']>;
4372
4382
  /** The unique identifier of the entitlement feature */
4373
4383
  featureId: Scalars['String'];
4374
4384
  };
@@ -4399,40 +4409,40 @@ export declare type SetAccessRolesInput = {
4399
4409
  };
4400
4410
  export declare type SetBasePlanOnPlanInput = {
4401
4411
  /** The id of the record. */
4402
- id: Scalars['String'];
4412
+ id: Scalars['UUID'];
4403
4413
  /** The id of relation. */
4404
- relationId: Scalars['String'];
4414
+ relationId: Scalars['UUID'];
4405
4415
  };
4406
4416
  export declare type SetCompatibleAddonsOnPlanInput = {
4407
4417
  /** The id of the record. */
4408
- id: Scalars['String'];
4418
+ id: Scalars['UUID'];
4409
4419
  /** The ids of the relations. */
4410
- relationIds: Array<Scalars['String']>;
4420
+ relationIds: Array<Scalars['UUID']>;
4411
4421
  };
4412
4422
  export declare type SetCouponOnCustomerInput = {
4413
4423
  /** The id of the record. */
4414
- id: Scalars['String'];
4424
+ id: Scalars['UUID'];
4415
4425
  /** The id of relation. */
4416
- relationId: Scalars['String'];
4426
+ relationId: Scalars['UUID'];
4417
4427
  };
4418
4428
  export declare type SetExperimentOnCustomerInput = {
4419
4429
  /** The id of the record. */
4420
- id: Scalars['String'];
4430
+ id: Scalars['UUID'];
4421
4431
  /** The id of relation. */
4422
- relationId: Scalars['String'];
4432
+ relationId: Scalars['UUID'];
4423
4433
  };
4424
4434
  export declare type SetExperimentOnCustomerSubscriptionInput = {
4425
4435
  /** The id of the record. */
4426
4436
  id: Scalars['UUID'];
4427
4437
  /** The id of relation. */
4428
- relationId: Scalars['String'];
4438
+ relationId: Scalars['UUID'];
4429
4439
  };
4430
4440
  /** The input type for setting the addons of an package group */
4431
4441
  export declare type SetPackageGroupAddons = {
4432
4442
  /** The addons to set on the package group */
4433
4443
  addons: Array<Scalars['String']>;
4434
4444
  /** The unique identifier for the environment */
4435
- environmentId?: InputMaybe<Scalars['String']>;
4445
+ environmentId?: InputMaybe<Scalars['UUID']>;
4436
4446
  /** The id of the package group */
4437
4447
  packageGroupId: Scalars['String'];
4438
4448
  };
@@ -4453,7 +4463,7 @@ export declare type SetPlanCompatiblePackageGroupOptions = {
4453
4463
  /** Set plan compatible package groups input */
4454
4464
  export declare type SetPlanCompatiblePackageGroups = {
4455
4465
  /** The unique identifier for the environment */
4456
- environmentId?: InputMaybe<Scalars['String']>;
4466
+ environmentId?: InputMaybe<Scalars['UUID']>;
4457
4467
  /** The id of the plan */
4458
4468
  id: Scalars['String'];
4459
4469
  /** The package groups with optional options */
@@ -4494,14 +4504,14 @@ export declare enum SourceType {
4494
4504
  /** Input parameters for starting an experiment */
4495
4505
  export declare type StartExperimentInput = {
4496
4506
  /** The unique identifier for the environment */
4497
- environmentId?: InputMaybe<Scalars['String']>;
4507
+ environmentId?: InputMaybe<Scalars['UUID']>;
4498
4508
  /** The unique identifier for the experiment */
4499
4509
  refId: Scalars['String'];
4500
4510
  };
4501
4511
  /** Input parameters for stopping an experiment */
4502
4512
  export declare type StopExperimentInput = {
4503
4513
  /** The unique identifier for the environment */
4504
- environmentId?: InputMaybe<Scalars['String']>;
4514
+ environmentId?: InputMaybe<Scalars['UUID']>;
4505
4515
  /** The unique identifier for the experiment */
4506
4516
  refId: Scalars['String'];
4507
4517
  };
@@ -4560,7 +4570,7 @@ export declare type StripeSubscriptionSearchInput = {
4560
4570
  export declare type SubscriptionAddonFilter = {
4561
4571
  and?: InputMaybe<Array<SubscriptionAddonFilter>>;
4562
4572
  createdAt?: InputMaybe<DateFieldComparison>;
4563
- id?: InputMaybe<StringFieldComparison>;
4573
+ id?: InputMaybe<UuidFilterComparison>;
4564
4574
  or?: InputMaybe<Array<SubscriptionAddonFilter>>;
4565
4575
  price?: InputMaybe<SubscriptionAddonFilterPriceFilter>;
4566
4576
  quantity?: InputMaybe<NumberFieldComparison>;
@@ -4603,7 +4613,7 @@ export declare type SubscriptionAddonFilterPriceFilter = {
4603
4613
  billingModel?: InputMaybe<BillingModelFilterComparison>;
4604
4614
  billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
4605
4615
  createdAt?: InputMaybe<DateFieldComparison>;
4606
- id?: InputMaybe<StringFieldComparison>;
4616
+ id?: InputMaybe<UuidFilterComparison>;
4607
4617
  or?: InputMaybe<Array<SubscriptionAddonFilterPriceFilter>>;
4608
4618
  tiersMode?: InputMaybe<TiersModeFilterComparison>;
4609
4619
  };
@@ -4744,9 +4754,9 @@ export declare enum SubscriptionEndSetup {
4744
4754
  export declare type SubscriptionEntitlementFilter = {
4745
4755
  and?: InputMaybe<Array<SubscriptionEntitlementFilter>>;
4746
4756
  createdAt?: InputMaybe<DateFieldComparison>;
4747
- environmentId?: InputMaybe<StringFieldComparison>;
4757
+ environmentId?: InputMaybe<UuidFilterComparison>;
4748
4758
  feature?: InputMaybe<SubscriptionEntitlementFilterFeatureFilter>;
4749
- id?: InputMaybe<StringFieldComparison>;
4759
+ id?: InputMaybe<UuidFilterComparison>;
4750
4760
  or?: InputMaybe<Array<SubscriptionEntitlementFilter>>;
4751
4761
  subscription?: InputMaybe<SubscriptionEntitlementFilterCustomerSubscriptionFilter>;
4752
4762
  subscriptionId?: InputMaybe<StringFieldComparison>;
@@ -4786,10 +4796,10 @@ export declare type SubscriptionEntitlementFilterFeatureFilter = {
4786
4796
  createdAt?: InputMaybe<DateFieldComparison>;
4787
4797
  description?: InputMaybe<StringFieldComparison>;
4788
4798
  displayName?: InputMaybe<StringFieldComparison>;
4789
- environmentId?: InputMaybe<StringFieldComparison>;
4799
+ environmentId?: InputMaybe<UuidFilterComparison>;
4790
4800
  featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
4791
4801
  featureType?: InputMaybe<FeatureTypeFilterComparison>;
4792
- id?: InputMaybe<StringFieldComparison>;
4802
+ id?: InputMaybe<UuidFilterComparison>;
4793
4803
  meterType?: InputMaybe<MeterTypeFilterComparison>;
4794
4804
  or?: InputMaybe<Array<SubscriptionEntitlementFilterFeatureFilter>>;
4795
4805
  refId?: InputMaybe<StringFieldComparison>;
@@ -4899,7 +4909,7 @@ export declare type SubscriptionMigrationTaskFilter = {
4899
4909
  and?: InputMaybe<Array<SubscriptionMigrationTaskFilter>>;
4900
4910
  createdAt?: InputMaybe<DateFieldComparison>;
4901
4911
  environmentId?: InputMaybe<StringFieldComparison>;
4902
- id?: InputMaybe<StringFieldComparison>;
4912
+ id?: InputMaybe<UuidFilterComparison>;
4903
4913
  or?: InputMaybe<Array<SubscriptionMigrationTaskFilter>>;
4904
4914
  status?: InputMaybe<TaskStatusFilterComparison>;
4905
4915
  taskType?: InputMaybe<TaskTypeFilterComparison>;
@@ -4932,7 +4942,7 @@ export declare type SubscriptionPriceFilter = {
4932
4942
  createdAt?: InputMaybe<DateFieldComparison>;
4933
4943
  featureId?: InputMaybe<StringFieldComparison>;
4934
4944
  hasSoftLimit?: InputMaybe<BooleanFieldComparison>;
4935
- id?: InputMaybe<StringFieldComparison>;
4945
+ id?: InputMaybe<UuidFilterComparison>;
4936
4946
  or?: InputMaybe<Array<SubscriptionPriceFilter>>;
4937
4947
  price?: InputMaybe<SubscriptionPriceFilterPriceFilter>;
4938
4948
  subscription?: InputMaybe<SubscriptionPriceFilterCustomerSubscriptionFilter>;
@@ -4975,7 +4985,7 @@ export declare type SubscriptionPriceFilterPriceFilter = {
4975
4985
  billingModel?: InputMaybe<BillingModelFilterComparison>;
4976
4986
  billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
4977
4987
  createdAt?: InputMaybe<DateFieldComparison>;
4978
- id?: InputMaybe<StringFieldComparison>;
4988
+ id?: InputMaybe<UuidFilterComparison>;
4979
4989
  or?: InputMaybe<Array<SubscriptionPriceFilterPriceFilter>>;
4980
4990
  tiersMode?: InputMaybe<TiersModeFilterComparison>;
4981
4991
  };
@@ -5114,7 +5124,7 @@ export declare enum SyncStatus {
5114
5124
  /** Input for triggering a sync of tax rates from the billing provider. */
5115
5125
  export declare type SyncTaxRatesInput = {
5116
5126
  /** The ID of the environment for which tax rates should be synced. */
5117
- environmentId?: InputMaybe<Scalars['String']>;
5127
+ environmentId?: InputMaybe<Scalars['UUID']>;
5118
5128
  };
5119
5129
  /** The status of the task */
5120
5130
  export declare enum TaskStatus {
@@ -5203,7 +5213,7 @@ export declare type TestWorkflowInput = {
5203
5213
  /** Workflow trigger endpoint */
5204
5214
  endpointUrl: Scalars['String'];
5205
5215
  /** The unique identifier for the environment */
5206
- environmentId?: InputMaybe<Scalars['String']>;
5216
+ environmentId?: InputMaybe<Scalars['UUID']>;
5207
5217
  /** The event type to trigger the workflow on */
5208
5218
  hookEventType: EventLogType;
5209
5219
  };
@@ -5240,7 +5250,7 @@ export declare type TransferSubscriptionToResourceInput = {
5240
5250
  /** The resource ID to transfer the subscription to */
5241
5251
  destinationResourceId?: InputMaybe<Scalars['String']>;
5242
5252
  /** The environment ID of the subscription to transfer */
5243
- environmentId?: InputMaybe<Scalars['String']>;
5253
+ environmentId?: InputMaybe<Scalars['UUID']>;
5244
5254
  /** The ID of the subscription to transfer */
5245
5255
  subscriptionId: Scalars['String'];
5246
5256
  };
@@ -5333,14 +5343,14 @@ export declare type UnArchiveFeatureGroupInput = {
5333
5343
  /** Input for un-archiving a feature */
5334
5344
  export declare type UnArchiveFeatureInput = {
5335
5345
  /** The unique identifier for the environment */
5336
- environmentId?: InputMaybe<Scalars['String']>;
5346
+ environmentId?: InputMaybe<Scalars['UUID']>;
5337
5347
  /** Unique identifier for the entity */
5338
5348
  id: Scalars['String'];
5339
5349
  };
5340
5350
  /** Input for un-archiving a plan */
5341
5351
  export declare type UnArchivePlanInput = {
5342
5352
  /** The unique identifier for the environment */
5343
- environmentId?: InputMaybe<Scalars['String']>;
5353
+ environmentId?: InputMaybe<Scalars['UUID']>;
5344
5354
  /** Plan ID to unarchive */
5345
5355
  id: Scalars['String'];
5346
5356
  };
@@ -5349,7 +5359,7 @@ export declare type UnarchiveCustomerInput = {
5349
5359
  /** Customer slug */
5350
5360
  customerId: Scalars['String'];
5351
5361
  /** The unique identifier for the environment */
5352
- environmentId?: InputMaybe<Scalars['String']>;
5362
+ environmentId?: InputMaybe<Scalars['UUID']>;
5353
5363
  };
5354
5364
  /** Input for unarchiving an environment */
5355
5365
  export declare type UnarchiveEnvironmentInput = {
@@ -5400,7 +5410,7 @@ export declare type UpdateCouponInput = {
5400
5410
  /** Description of the coupon */
5401
5411
  description?: InputMaybe<Scalars['String']>;
5402
5412
  /** The unique identifier for the environment */
5403
- environmentId?: InputMaybe<Scalars['String']>;
5413
+ environmentId?: InputMaybe<Scalars['UUID']>;
5404
5414
  /** Name of the coupon */
5405
5415
  name?: InputMaybe<Scalars['String']>;
5406
5416
  /** The unique identifier for the entity */
@@ -5425,7 +5435,7 @@ export declare type UpdateCustomerInput = {
5425
5435
  /** The email of the customer */
5426
5436
  email?: InputMaybe<Scalars['String']>;
5427
5437
  /** The unique identifier for the environment */
5428
- environmentId?: InputMaybe<Scalars['String']>;
5438
+ environmentId?: InputMaybe<Scalars['UUID']>;
5429
5439
  /** The name of the customer */
5430
5440
  name?: InputMaybe<Scalars['String']>;
5431
5441
  /** Customer slug */
@@ -5442,7 +5452,7 @@ export declare type UpdateExperimentInput = {
5442
5452
  /** Description of the experiements */
5443
5453
  description?: InputMaybe<Scalars['String']>;
5444
5454
  /** The unique identifier for the environment */
5445
- environmentId?: InputMaybe<Scalars['String']>;
5455
+ environmentId?: InputMaybe<Scalars['UUID']>;
5446
5456
  /** Name of the experiment */
5447
5457
  name?: InputMaybe<Scalars['String']>;
5448
5458
  /** Internal identifier for the product experiment is associated with */
@@ -5467,7 +5477,7 @@ export declare type UpdateFeatureInput = {
5467
5477
  /** The configuration data for the feature */
5468
5478
  enumConfiguration?: InputMaybe<Array<EnumConfigurationEntityInput>>;
5469
5479
  /** The unique identifier for the environment */
5470
- environmentId: Scalars['String'];
5480
+ environmentId: Scalars['UUID'];
5471
5481
  /** The units for the feature */
5472
5482
  featureUnits?: InputMaybe<Scalars['String']>;
5473
5483
  /** The plural units for the feature */
@@ -5489,11 +5499,11 @@ export declare type UpdateHook = {
5489
5499
  /** The Webhook endpoint URL */
5490
5500
  endpoint?: InputMaybe<Scalars['String']>;
5491
5501
  /** The unique identifier for the environment */
5492
- environmentId?: InputMaybe<Scalars['String']>;
5502
+ environmentId?: InputMaybe<Scalars['UUID']>;
5493
5503
  /** The event types that the webhook will be triggered on */
5494
5504
  eventLogTypes?: InputMaybe<Array<EventLogType>>;
5495
5505
  /** Unique identifier for the entity */
5496
- id?: InputMaybe<Scalars['String']>;
5506
+ id?: InputMaybe<Scalars['UUID']>;
5497
5507
  /** Secret key for the webhook */
5498
5508
  secretKey?: InputMaybe<Scalars['String']>;
5499
5509
  /** The status of the webhook */
@@ -5520,37 +5530,37 @@ export declare type UpdateIntegrationInput = {
5520
5530
  };
5521
5531
  export declare type UpdateOneEnvironmentInput = {
5522
5532
  /** The id of the record to update */
5523
- id: Scalars['String'];
5533
+ id: Scalars['UUID'];
5524
5534
  /** The update to apply. */
5525
5535
  update: EnvironmentInput;
5526
5536
  };
5527
5537
  export declare type UpdateOneHookInput = {
5528
5538
  /** The id of the record to update */
5529
- id: Scalars['String'];
5539
+ id: Scalars['UUID'];
5530
5540
  /** The update to apply. */
5531
5541
  update: UpdateHook;
5532
5542
  };
5533
5543
  export declare type UpdateOneIntegrationInput = {
5534
5544
  /** The id of the record to update */
5535
- id: Scalars['String'];
5545
+ id: Scalars['UUID'];
5536
5546
  /** The update to apply. */
5537
5547
  update: UpdateIntegrationInput;
5538
5548
  };
5539
5549
  export declare type UpdateOnePackageEntitlementInput = {
5540
5550
  /** The id of the record to update */
5541
- id: Scalars['String'];
5551
+ id: Scalars['UUID'];
5542
5552
  /** The update to apply. */
5543
5553
  update: PackageEntitlementUpdateInput;
5544
5554
  };
5545
5555
  export declare type UpdateOneProductInput = {
5546
5556
  /** The id of the record to update */
5547
- id: Scalars['String'];
5557
+ id: Scalars['UUID'];
5548
5558
  /** The update to apply. */
5549
5559
  update: ProductUpdateInput;
5550
5560
  };
5551
5561
  export declare type UpdateOnePromotionalEntitlementInput = {
5552
5562
  /** The id of the record to update */
5553
- id: Scalars['String'];
5563
+ id: Scalars['UUID'];
5554
5564
  /** The update to apply. */
5555
5565
  update: PromotionalEntitlementUpdateInput;
5556
5566
  };
@@ -5559,14 +5569,14 @@ export declare type UpdatePackageEntitlementOrderInput = {
5559
5569
  /** Entitlements to update */
5560
5570
  entitlements: Array<UpdatePackageEntitlementOrderItemInput>;
5561
5571
  /** The unique identifier for the environment */
5562
- environmentId?: InputMaybe<Scalars['String']>;
5572
+ environmentId?: InputMaybe<Scalars['UUID']>;
5563
5573
  /** The unique identifier of the entitlement package */
5564
5574
  packageId: Scalars['String'];
5565
5575
  };
5566
5576
  /** Update package entitlement order item input */
5567
5577
  export declare type UpdatePackageEntitlementOrderItemInput = {
5568
5578
  /** Unique identifier for the entity */
5569
- id: Scalars['String'];
5579
+ id: Scalars['UUID'];
5570
5580
  /** The order of the entitlement in the entitlement list */
5571
5581
  order?: InputMaybe<Scalars['Float']>;
5572
5582
  };
@@ -5647,14 +5657,14 @@ export declare type UsageEventsInput = {
5647
5657
  /** Customer id filter */
5648
5658
  customerId?: InputMaybe<Scalars['String']>;
5649
5659
  /** Environment id filter */
5650
- environmentId: Scalars['String'];
5660
+ environmentId: Scalars['UUID'];
5651
5661
  /** List of event filters */
5652
5662
  filters?: InputMaybe<Array<MeterFilterDefinitionInput>>;
5653
5663
  };
5654
5664
  /** Input parameters for reporting usage events */
5655
5665
  export declare type UsageEventsReportInput = {
5656
5666
  /** The unique identifier for the environment */
5657
- environmentId?: InputMaybe<Scalars['String']>;
5667
+ environmentId?: InputMaybe<Scalars['UUID']>;
5658
5668
  /** A list of usage events to report */
5659
5669
  usageEvents: Array<UsageEventReportInput>;
5660
5670
  };
@@ -5665,7 +5675,7 @@ export declare type UsageHistoryInput = {
5665
5675
  /** The end date of the range */
5666
5676
  endDate?: InputMaybe<Scalars['DateTime']>;
5667
5677
  /** The unique identifier for the environment */
5668
- environmentId?: InputMaybe<Scalars['String']>;
5678
+ environmentId?: InputMaybe<Scalars['UUID']>;
5669
5679
  /** Reference identifier for the feature */
5670
5680
  featureRefId: Scalars['String'];
5671
5681
  /** Criteria by which to group the usage history */
@@ -5690,7 +5700,7 @@ export declare type UsageHistoryV2Input = {
5690
5700
  /** The end date of the range */
5691
5701
  endDate?: InputMaybe<Scalars['DateTime']>;
5692
5702
  /** The unique identifier for the environment */
5693
- environmentId?: InputMaybe<Scalars['String']>;
5703
+ environmentId?: InputMaybe<Scalars['UUID']>;
5694
5704
  /** Feature id */
5695
5705
  featureId: Scalars['String'];
5696
5706
  /** Criteria by which to group the usage history */
@@ -5716,7 +5726,7 @@ export declare type UsageMeasurementCreateInput = {
5716
5726
  /** Additional dimensions for the usage report */
5717
5727
  dimensions?: InputMaybe<Scalars['JSON']>;
5718
5728
  /** The unique identifier for the environment */
5719
- environmentId?: InputMaybe<Scalars['String']>;
5729
+ environmentId?: InputMaybe<Scalars['UUID']>;
5720
5730
  /** Feature id */
5721
5731
  featureId: Scalars['String'];
5722
5732
  /** Resource id */
@@ -5730,9 +5740,9 @@ export declare type UsageMeasurementFilter = {
5730
5740
  and?: InputMaybe<Array<UsageMeasurementFilter>>;
5731
5741
  createdAt?: InputMaybe<DateFieldComparison>;
5732
5742
  customer?: InputMaybe<UsageMeasurementFilterCustomerFilter>;
5733
- environmentId?: InputMaybe<StringFieldComparison>;
5743
+ environmentId?: InputMaybe<UuidFilterComparison>;
5734
5744
  feature?: InputMaybe<UsageMeasurementFilterFeatureFilter>;
5735
- id?: InputMaybe<StringFieldComparison>;
5745
+ id?: InputMaybe<UuidFilterComparison>;
5736
5746
  or?: InputMaybe<Array<UsageMeasurementFilter>>;
5737
5747
  };
5738
5748
  export declare type UsageMeasurementFilterCustomerFilter = {
@@ -5745,8 +5755,8 @@ export declare type UsageMeasurementFilterCustomerFilter = {
5745
5755
  customerId?: InputMaybe<StringFieldComparison>;
5746
5756
  deletedAt?: InputMaybe<DateFieldComparison>;
5747
5757
  email?: InputMaybe<StringFieldComparison>;
5748
- environmentId?: InputMaybe<StringFieldComparison>;
5749
- id?: InputMaybe<StringFieldComparison>;
5758
+ environmentId?: InputMaybe<UuidFilterComparison>;
5759
+ id?: InputMaybe<UuidFilterComparison>;
5750
5760
  name?: InputMaybe<StringFieldComparison>;
5751
5761
  or?: InputMaybe<Array<UsageMeasurementFilterCustomerFilter>>;
5752
5762
  refId?: InputMaybe<StringFieldComparison>;
@@ -5759,10 +5769,10 @@ export declare type UsageMeasurementFilterFeatureFilter = {
5759
5769
  createdAt?: InputMaybe<DateFieldComparison>;
5760
5770
  description?: InputMaybe<StringFieldComparison>;
5761
5771
  displayName?: InputMaybe<StringFieldComparison>;
5762
- environmentId?: InputMaybe<StringFieldComparison>;
5772
+ environmentId?: InputMaybe<UuidFilterComparison>;
5763
5773
  featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
5764
5774
  featureType?: InputMaybe<FeatureTypeFilterComparison>;
5765
- id?: InputMaybe<StringFieldComparison>;
5775
+ id?: InputMaybe<UuidFilterComparison>;
5766
5776
  meterType?: InputMaybe<MeterTypeFilterComparison>;
5767
5777
  or?: InputMaybe<Array<UsageMeasurementFilterFeatureFilter>>;
5768
5778
  refId?: InputMaybe<StringFieldComparison>;
@@ -5873,7 +5883,7 @@ export declare type WidgetConfigurationUpdateInput = {
5873
5883
  /** Updated configuration for the customer portal widget. */
5874
5884
  customerPortalConfiguration?: InputMaybe<CustomerPortalConfigurationInput>;
5875
5885
  /** The unique identifier for the environment */
5876
- environmentId?: InputMaybe<Scalars['String']>;
5886
+ environmentId?: InputMaybe<Scalars['UUID']>;
5877
5887
  /** Updated configuration for the paywall widget. */
5878
5888
  paywallConfiguration?: InputMaybe<PaywallConfigurationInput>;
5879
5889
  };
@@ -5886,7 +5896,7 @@ export declare enum WidgetType {
5886
5896
  /** Workflow login input */
5887
5897
  export declare type WorkflowsLoginInput = {
5888
5898
  /** The unique identifier for the environment */
5889
- environmentId?: InputMaybe<Scalars['String']>;
5899
+ environmentId?: InputMaybe<Scalars['UUID']>;
5890
5900
  };
5891
5901
  /** Yearly reset period according to configuration */
5892
5902
  export declare enum YearlyAccordingTo {
@@ -5924,7 +5934,7 @@ export declare enum ExperimentGroupType {
5924
5934
  }
5925
5935
  export declare type CouponFragment = {
5926
5936
  __typename?: 'Coupon';
5927
- id: string;
5937
+ id: any;
5928
5938
  discountValue: number;
5929
5939
  percentOff?: number | null;
5930
5940
  type: CouponType;
@@ -6051,7 +6061,7 @@ export declare type PackageEntitlementFragment = {
6051
6061
  };
6052
6062
  export declare type AddonFragment = {
6053
6063
  __typename?: 'Addon';
6054
- id: string;
6064
+ id: any;
6055
6065
  refId: string;
6056
6066
  billingId?: string | null;
6057
6067
  displayName: string;
@@ -6075,14 +6085,14 @@ export declare type AddonFragment = {
6075
6085
  };
6076
6086
  export declare type AddonDependencyFragment = {
6077
6087
  __typename?: 'Addon';
6078
- id: string;
6088
+ id: any;
6079
6089
  refId: string;
6080
6090
  displayName: string;
6081
6091
  description?: string | null;
6082
6092
  };
6083
6093
  export declare type PlanFragment = {
6084
6094
  __typename?: 'Plan';
6085
- id: string;
6095
+ id: any;
6086
6096
  refId: string;
6087
6097
  displayName: string;
6088
6098
  description?: string | null;
@@ -6267,7 +6277,7 @@ export declare type SlimSubscriptionFragment = {
6267
6277
  } & TotalPriceFragment) | null;
6268
6278
  plan: {
6269
6279
  __typename?: 'Plan';
6270
- id: string;
6280
+ id: any;
6271
6281
  refId: string;
6272
6282
  };
6273
6283
  addons?: Array<{
@@ -6275,13 +6285,13 @@ export declare type SlimSubscriptionFragment = {
6275
6285
  quantity: number;
6276
6286
  addon: {
6277
6287
  __typename?: 'Addon';
6278
- id: string;
6288
+ id: any;
6279
6289
  refId: string;
6280
6290
  };
6281
6291
  }> | null;
6282
6292
  customer: {
6283
6293
  __typename?: 'Customer';
6284
- id: string;
6294
+ id: any;
6285
6295
  refId: string;
6286
6296
  };
6287
6297
  };
@@ -6292,7 +6302,7 @@ export declare type SubscriptionScheduledUpdateDataFragment = {
6292
6302
  scheduledExecutionTime: any;
6293
6303
  targetPackage?: {
6294
6304
  __typename?: 'PackageDTO';
6295
- id: string;
6305
+ id: any;
6296
6306
  refId: string;
6297
6307
  displayName: string;
6298
6308
  } | null;
@@ -6321,7 +6331,7 @@ export declare type SubscriptionFutureUpdateDataFragment = {
6321
6331
  scheduledExecutionTime: any;
6322
6332
  targetPackage?: {
6323
6333
  __typename?: 'PackageDTO';
6324
- id: string;
6334
+ id: any;
6325
6335
  refId: string;
6326
6336
  displayName: string;
6327
6337
  } | null;
@@ -6414,7 +6424,7 @@ export declare type SubscriptionFragment = {
6414
6424
  } & PlanFragment);
6415
6425
  addons?: Array<{
6416
6426
  __typename?: 'SubscriptionAddon';
6417
- id: string;
6427
+ id: any;
6418
6428
  quantity: number;
6419
6429
  addon: ({
6420
6430
  __typename?: 'Addon';
@@ -6438,7 +6448,7 @@ export declare type PromotionalEntitlementFragment = {
6438
6448
  __typename?: 'PromotionalEntitlement';
6439
6449
  status: PromotionalEntitlementStatus;
6440
6450
  usageLimit?: number | null;
6441
- featureId: string;
6451
+ featureId: any;
6442
6452
  hasUnlimitedUsage?: boolean | null;
6443
6453
  hasSoftLimit?: boolean | null;
6444
6454
  resetPeriod?: EntitlementResetPeriod | null;
@@ -6458,7 +6468,7 @@ export declare type PromotionalEntitlementFragment = {
6458
6468
  };
6459
6469
  export declare type SlimCustomerFragment = {
6460
6470
  __typename?: 'Customer';
6461
- id: string;
6471
+ id: any;
6462
6472
  name?: string | null;
6463
6473
  email?: string | null;
6464
6474
  createdAt?: any | null;
@@ -6948,6 +6958,8 @@ export declare type EntitlementFragment = {
6948
6958
  hasSoftLimit?: boolean | null;
6949
6959
  currentUsage?: number | null;
6950
6960
  requestedUsage?: number | null;
6961
+ requestedValues?: Array<string> | null;
6962
+ enumValues?: Array<string> | null;
6951
6963
  entitlementUpdatedAt?: any | null;
6952
6964
  usageUpdatedAt?: any | null;
6953
6965
  usagePeriodAnchor?: any | null;
@@ -7158,7 +7170,7 @@ export declare type CustomerPortalSubscriptionPriceFragment = {
7158
7170
  } | null;
7159
7171
  feature?: {
7160
7172
  __typename?: 'CustomerPortalPricingFeature';
7161
- id: string;
7173
+ id: any;
7162
7174
  refId: string;
7163
7175
  displayName: string;
7164
7176
  featureUnits?: string | null;
@@ -7239,7 +7251,7 @@ export declare type CustomerPortalSubscriptionScheduledUpdateDataFragment = {
7239
7251
  scheduledExecutionTime: any;
7240
7252
  targetPackage?: {
7241
7253
  __typename?: 'PackageDTO';
7242
- id: string;
7254
+ id: any;
7243
7255
  refId: string;
7244
7256
  displayName: string;
7245
7257
  pricingType?: PricingType | null;
@@ -7565,7 +7577,7 @@ export declare type ProvisionSubscriptionFragment = {
7565
7577
  };
7566
7578
  export declare type ReportUsageFragment = {
7567
7579
  __typename?: 'UsageMeasurementWithCurrentUsage';
7568
- id: string;
7580
+ id: any;
7569
7581
  featureId: string;
7570
7582
  customerId: string;
7571
7583
  resourceId?: string | null;
@@ -7705,7 +7717,7 @@ export declare type RevokePromotionalEntitlementMutation = {
7705
7717
  __typename?: 'Mutation';
7706
7718
  revokePromotionalEntitlement: {
7707
7719
  __typename?: 'PromotionalEntitlement';
7708
- id: string;
7720
+ id: any;
7709
7721
  };
7710
7722
  };
7711
7723
  export declare type ProvisionSubscriptionMutationVariables = Exact<{