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