@stigg/node-server-sdk 0.72.0 → 0.73.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.
@@ -1,4 +1,5 @@
1
1
  export declare type Maybe<T> = T | null;
2
+ export declare type InputMaybe<T> = Maybe<T>;
2
3
  export declare type Exact<T extends {
3
4
  [key: string]: unknown;
4
5
  }> = {
@@ -17,11 +18,8 @@ export declare type Scalars = {
17
18
  Boolean: boolean;
18
19
  Int: number;
19
20
  Float: number;
20
- /** Cursor for paging through collections */
21
21
  ConnectionCursor: any;
22
- /** A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format. */
23
22
  DateTime: any;
24
- /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
25
23
  JSON: any;
26
24
  };
27
25
  /** DenyReason of get access policy */
@@ -44,37 +42,37 @@ export declare type AddCompatibleAddonsToPlanInput = {
44
42
  relationIds: Array<Scalars['String']>;
45
43
  };
46
44
  export declare type AddonCreateInput = {
47
- additionalMetaData?: Maybe<Scalars['JSON']>;
48
- billingId?: Maybe<Scalars['String']>;
49
- description?: Maybe<Scalars['String']>;
45
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
46
+ billingId?: InputMaybe<Scalars['String']>;
47
+ description?: InputMaybe<Scalars['String']>;
50
48
  displayName: Scalars['String'];
51
- environmentId?: Maybe<Scalars['String']>;
52
- hiddenFromWidgets?: Maybe<Array<WidgetType>>;
49
+ environmentId?: InputMaybe<Scalars['String']>;
50
+ hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
53
51
  productId: Scalars['String'];
54
- refId?: Maybe<Scalars['String']>;
55
- status?: Maybe<PackageStatus>;
52
+ refId?: InputMaybe<Scalars['String']>;
53
+ status?: InputMaybe<PackageStatus>;
56
54
  };
57
55
  export declare type AddonFilter = {
58
- and?: Maybe<Array<AddonFilter>>;
59
- billingId?: Maybe<StringFieldComparison>;
60
- createdAt?: Maybe<DateFieldComparison>;
61
- description?: Maybe<StringFieldComparison>;
62
- displayName?: Maybe<StringFieldComparison>;
63
- environmentId?: Maybe<StringFieldComparison>;
64
- id?: Maybe<StringFieldComparison>;
65
- isLatest?: Maybe<BooleanFieldComparison>;
66
- or?: Maybe<Array<AddonFilter>>;
67
- pricingType?: Maybe<PricingTypeFilterComparison>;
68
- productId?: Maybe<StringFieldComparison>;
69
- refId?: Maybe<StringFieldComparison>;
70
- status?: Maybe<PackageStatusFilterComparison>;
71
- updatedAt?: Maybe<DateFieldComparison>;
72
- versionNumber?: Maybe<IntFieldComparison>;
56
+ and?: InputMaybe<Array<AddonFilter>>;
57
+ billingId?: InputMaybe<StringFieldComparison>;
58
+ createdAt?: InputMaybe<DateFieldComparison>;
59
+ description?: InputMaybe<StringFieldComparison>;
60
+ displayName?: InputMaybe<StringFieldComparison>;
61
+ environmentId?: InputMaybe<StringFieldComparison>;
62
+ id?: InputMaybe<StringFieldComparison>;
63
+ isLatest?: InputMaybe<BooleanFieldComparison>;
64
+ or?: InputMaybe<Array<AddonFilter>>;
65
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
66
+ productId?: InputMaybe<StringFieldComparison>;
67
+ refId?: InputMaybe<StringFieldComparison>;
68
+ status?: InputMaybe<PackageStatusFilterComparison>;
69
+ updatedAt?: InputMaybe<DateFieldComparison>;
70
+ versionNumber?: InputMaybe<IntFieldComparison>;
73
71
  };
74
72
  export declare type AddonSort = {
75
73
  direction: SortDirection;
76
74
  field: AddonSortFields;
77
- nulls?: Maybe<SortNulls>;
75
+ nulls?: InputMaybe<SortNulls>;
78
76
  };
79
77
  export declare enum AddonSortFields {
80
78
  BillingId = "billingId",
@@ -92,22 +90,22 @@ export declare enum AddonSortFields {
92
90
  VersionNumber = "versionNumber"
93
91
  }
94
92
  export declare type AddonUpdateInput = {
95
- additionalMetaData?: Maybe<Scalars['JSON']>;
96
- billingId?: Maybe<Scalars['String']>;
97
- description?: Maybe<Scalars['String']>;
93
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
94
+ billingId?: InputMaybe<Scalars['String']>;
95
+ description?: InputMaybe<Scalars['String']>;
98
96
  displayName: Scalars['String'];
99
- hiddenFromWidgets?: Maybe<Array<WidgetType>>;
97
+ hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
100
98
  id: Scalars['String'];
101
- status?: Maybe<PackageStatus>;
99
+ status?: InputMaybe<PackageStatus>;
102
100
  };
103
101
  export declare type Address = {
104
- addressLine1?: Maybe<Scalars['String']>;
105
- addressLine2?: Maybe<Scalars['String']>;
106
- city?: Maybe<Scalars['String']>;
107
- country?: Maybe<Scalars['String']>;
108
- phoneNumber?: Maybe<Scalars['String']>;
109
- postalCode?: Maybe<Scalars['String']>;
110
- state?: Maybe<Scalars['String']>;
102
+ addressLine1?: InputMaybe<Scalars['String']>;
103
+ addressLine2?: InputMaybe<Scalars['String']>;
104
+ city?: InputMaybe<Scalars['String']>;
105
+ country?: InputMaybe<Scalars['String']>;
106
+ phoneNumber?: InputMaybe<Scalars['String']>;
107
+ postalCode?: InputMaybe<Scalars['String']>;
108
+ state?: InputMaybe<Scalars['String']>;
111
109
  };
112
110
  /** Alignment */
113
111
  export declare enum Alignment {
@@ -116,14 +114,14 @@ export declare enum Alignment {
116
114
  Right = "RIGHT"
117
115
  }
118
116
  export declare type ApiKeyFilter = {
119
- and?: Maybe<Array<ApiKeyFilter>>;
120
- id?: Maybe<StringFieldComparison>;
121
- or?: Maybe<Array<ApiKeyFilter>>;
117
+ and?: InputMaybe<Array<ApiKeyFilter>>;
118
+ id?: InputMaybe<StringFieldComparison>;
119
+ or?: InputMaybe<Array<ApiKeyFilter>>;
122
120
  };
123
121
  export declare type ApiKeySort = {
124
122
  direction: SortDirection;
125
123
  field: ApiKeySortFields;
126
- nulls?: Maybe<SortNulls>;
124
+ nulls?: InputMaybe<SortNulls>;
127
125
  };
128
126
  export declare enum ApiKeySortFields {
129
127
  Id = "id"
@@ -133,18 +131,18 @@ export declare enum ApiKeyType {
133
131
  Server = "SERVER"
134
132
  }
135
133
  export declare type ArchiveCouponInput = {
136
- environmentId?: Maybe<Scalars['String']>;
134
+ environmentId?: InputMaybe<Scalars['String']>;
137
135
  refId: Scalars['String'];
138
136
  };
139
137
  export declare type ArchivePlanInput = {
140
- environmentId?: Maybe<Scalars['String']>;
138
+ environmentId?: InputMaybe<Scalars['String']>;
141
139
  id: Scalars['String'];
142
140
  };
143
141
  export declare type AttachCustomerPaymentMethodInput = {
144
- customerId?: Maybe<Scalars['String']>;
145
- environmentId?: Maybe<Scalars['String']>;
142
+ customerId?: InputMaybe<Scalars['String']>;
143
+ environmentId?: InputMaybe<Scalars['String']>;
146
144
  paymentMethodId: Scalars['String'];
147
- refId?: Maybe<Scalars['String']>;
145
+ refId?: InputMaybe<Scalars['String']>;
148
146
  vendorIdentifier: VendorIdentifier;
149
147
  };
150
148
  export declare enum BillingAnchor {
@@ -158,20 +156,20 @@ export declare enum BillingModel {
158
156
  UsageBased = "USAGE_BASED"
159
157
  }
160
158
  export declare type BillingModelFilterComparison = {
161
- eq?: Maybe<BillingModel>;
162
- gt?: Maybe<BillingModel>;
163
- gte?: Maybe<BillingModel>;
164
- iLike?: Maybe<BillingModel>;
165
- in?: Maybe<Array<BillingModel>>;
166
- is?: Maybe<Scalars['Boolean']>;
167
- isNot?: Maybe<Scalars['Boolean']>;
168
- like?: Maybe<BillingModel>;
169
- lt?: Maybe<BillingModel>;
170
- lte?: Maybe<BillingModel>;
171
- neq?: Maybe<BillingModel>;
172
- notILike?: Maybe<BillingModel>;
173
- notIn?: Maybe<Array<BillingModel>>;
174
- notLike?: Maybe<BillingModel>;
159
+ eq?: InputMaybe<BillingModel>;
160
+ gt?: InputMaybe<BillingModel>;
161
+ gte?: InputMaybe<BillingModel>;
162
+ iLike?: InputMaybe<BillingModel>;
163
+ in?: InputMaybe<Array<BillingModel>>;
164
+ is?: InputMaybe<Scalars['Boolean']>;
165
+ isNot?: InputMaybe<Scalars['Boolean']>;
166
+ like?: InputMaybe<BillingModel>;
167
+ lt?: InputMaybe<BillingModel>;
168
+ lte?: InputMaybe<BillingModel>;
169
+ neq?: InputMaybe<BillingModel>;
170
+ notILike?: InputMaybe<BillingModel>;
171
+ notIn?: InputMaybe<Array<BillingModel>>;
172
+ notLike?: InputMaybe<BillingModel>;
175
173
  };
176
174
  /** Billing period. */
177
175
  export declare enum BillingPeriod {
@@ -179,24 +177,24 @@ export declare enum BillingPeriod {
179
177
  Monthly = "MONTHLY"
180
178
  }
181
179
  export declare type BillingPeriodFilterComparison = {
182
- eq?: Maybe<BillingPeriod>;
183
- gt?: Maybe<BillingPeriod>;
184
- gte?: Maybe<BillingPeriod>;
185
- iLike?: Maybe<BillingPeriod>;
186
- in?: Maybe<Array<BillingPeriod>>;
187
- is?: Maybe<Scalars['Boolean']>;
188
- isNot?: Maybe<Scalars['Boolean']>;
189
- like?: Maybe<BillingPeriod>;
190
- lt?: Maybe<BillingPeriod>;
191
- lte?: Maybe<BillingPeriod>;
192
- neq?: Maybe<BillingPeriod>;
193
- notILike?: Maybe<BillingPeriod>;
194
- notIn?: Maybe<Array<BillingPeriod>>;
195
- notLike?: Maybe<BillingPeriod>;
180
+ eq?: InputMaybe<BillingPeriod>;
181
+ gt?: InputMaybe<BillingPeriod>;
182
+ gte?: InputMaybe<BillingPeriod>;
183
+ iLike?: InputMaybe<BillingPeriod>;
184
+ in?: InputMaybe<Array<BillingPeriod>>;
185
+ is?: InputMaybe<Scalars['Boolean']>;
186
+ isNot?: InputMaybe<Scalars['Boolean']>;
187
+ like?: InputMaybe<BillingPeriod>;
188
+ lt?: InputMaybe<BillingPeriod>;
189
+ lte?: InputMaybe<BillingPeriod>;
190
+ neq?: InputMaybe<BillingPeriod>;
191
+ notILike?: InputMaybe<BillingPeriod>;
192
+ notIn?: InputMaybe<Array<BillingPeriod>>;
193
+ notLike?: InputMaybe<BillingPeriod>;
196
194
  };
197
195
  export declare type BooleanFieldComparison = {
198
- is?: Maybe<Scalars['Boolean']>;
199
- isNot?: Maybe<Scalars['Boolean']>;
196
+ is?: InputMaybe<Scalars['Boolean']>;
197
+ isNot?: InputMaybe<Scalars['Boolean']>;
200
198
  };
201
199
  export declare enum ChangeType {
202
200
  Added = "ADDED",
@@ -205,48 +203,48 @@ export declare enum ChangeType {
205
203
  Reordered = "REORDERED"
206
204
  }
207
205
  export declare type CheckoutOptions = {
208
- allowPromoCodes?: Maybe<Scalars['Boolean']>;
209
- allowTaxIdCollection?: Maybe<Scalars['Boolean']>;
206
+ allowPromoCodes?: InputMaybe<Scalars['Boolean']>;
207
+ allowTaxIdCollection?: InputMaybe<Scalars['Boolean']>;
210
208
  cancelUrl: Scalars['String'];
211
- collectBillingAddress?: Maybe<Scalars['Boolean']>;
212
- referenceId?: Maybe<Scalars['String']>;
209
+ collectBillingAddress?: InputMaybe<Scalars['Boolean']>;
210
+ referenceId?: InputMaybe<Scalars['String']>;
213
211
  successUrl: Scalars['String'];
214
212
  };
215
213
  export declare type CouponFilter = {
216
- and?: Maybe<Array<CouponFilter>>;
217
- billingId?: Maybe<StringFieldComparison>;
218
- createdAt?: Maybe<DateFieldComparison>;
219
- customers?: Maybe<CouponFilterCustomerFilter>;
220
- description?: Maybe<StringFieldComparison>;
221
- environmentId?: Maybe<StringFieldComparison>;
222
- id?: Maybe<StringFieldComparison>;
223
- name?: Maybe<StringFieldComparison>;
224
- or?: Maybe<Array<CouponFilter>>;
225
- refId?: Maybe<StringFieldComparison>;
226
- status?: Maybe<CouponStatusFilterComparison>;
227
- type?: Maybe<CouponTypeFilterComparison>;
228
- updatedAt?: Maybe<DateFieldComparison>;
214
+ and?: InputMaybe<Array<CouponFilter>>;
215
+ billingId?: InputMaybe<StringFieldComparison>;
216
+ createdAt?: InputMaybe<DateFieldComparison>;
217
+ customers?: InputMaybe<CouponFilterCustomerFilter>;
218
+ description?: InputMaybe<StringFieldComparison>;
219
+ environmentId?: InputMaybe<StringFieldComparison>;
220
+ id?: InputMaybe<StringFieldComparison>;
221
+ name?: InputMaybe<StringFieldComparison>;
222
+ or?: InputMaybe<Array<CouponFilter>>;
223
+ refId?: InputMaybe<StringFieldComparison>;
224
+ status?: InputMaybe<CouponStatusFilterComparison>;
225
+ type?: InputMaybe<CouponTypeFilterComparison>;
226
+ updatedAt?: InputMaybe<DateFieldComparison>;
229
227
  };
230
228
  export declare type CouponFilterCustomerFilter = {
231
- and?: Maybe<Array<CouponFilterCustomerFilter>>;
232
- billingId?: Maybe<StringFieldComparison>;
233
- createdAt?: Maybe<DateFieldComparison>;
234
- crmHubspotCompanyId?: Maybe<StringFieldComparison>;
235
- crmHubspotCompanyUrl?: Maybe<StringFieldComparison>;
236
- crmId?: Maybe<StringFieldComparison>;
237
- customerId?: Maybe<StringFieldComparison>;
238
- email?: Maybe<StringFieldComparison>;
239
- environmentId?: Maybe<StringFieldComparison>;
240
- id?: Maybe<StringFieldComparison>;
241
- name?: Maybe<StringFieldComparison>;
242
- or?: Maybe<Array<CouponFilterCustomerFilter>>;
243
- refId?: Maybe<StringFieldComparison>;
244
- updatedAt?: Maybe<DateFieldComparison>;
229
+ and?: InputMaybe<Array<CouponFilterCustomerFilter>>;
230
+ billingId?: InputMaybe<StringFieldComparison>;
231
+ createdAt?: InputMaybe<DateFieldComparison>;
232
+ crmHubspotCompanyId?: InputMaybe<StringFieldComparison>;
233
+ crmHubspotCompanyUrl?: InputMaybe<StringFieldComparison>;
234
+ crmId?: InputMaybe<StringFieldComparison>;
235
+ customerId?: InputMaybe<StringFieldComparison>;
236
+ email?: InputMaybe<StringFieldComparison>;
237
+ environmentId?: InputMaybe<StringFieldComparison>;
238
+ id?: InputMaybe<StringFieldComparison>;
239
+ name?: InputMaybe<StringFieldComparison>;
240
+ or?: InputMaybe<Array<CouponFilterCustomerFilter>>;
241
+ refId?: InputMaybe<StringFieldComparison>;
242
+ updatedAt?: InputMaybe<DateFieldComparison>;
245
243
  };
246
244
  export declare type CouponSort = {
247
245
  direction: SortDirection;
248
246
  field: CouponSortFields;
249
- nulls?: Maybe<SortNulls>;
247
+ nulls?: InputMaybe<SortNulls>;
250
248
  };
251
249
  export declare enum CouponSortFields {
252
250
  BillingId = "billingId",
@@ -266,20 +264,20 @@ export declare enum CouponStatus {
266
264
  Archived = "ARCHIVED"
267
265
  }
268
266
  export declare type CouponStatusFilterComparison = {
269
- eq?: Maybe<CouponStatus>;
270
- gt?: Maybe<CouponStatus>;
271
- gte?: Maybe<CouponStatus>;
272
- iLike?: Maybe<CouponStatus>;
273
- in?: Maybe<Array<CouponStatus>>;
274
- is?: Maybe<Scalars['Boolean']>;
275
- isNot?: Maybe<Scalars['Boolean']>;
276
- like?: Maybe<CouponStatus>;
277
- lt?: Maybe<CouponStatus>;
278
- lte?: Maybe<CouponStatus>;
279
- neq?: Maybe<CouponStatus>;
280
- notILike?: Maybe<CouponStatus>;
281
- notIn?: Maybe<Array<CouponStatus>>;
282
- notLike?: Maybe<CouponStatus>;
267
+ eq?: InputMaybe<CouponStatus>;
268
+ gt?: InputMaybe<CouponStatus>;
269
+ gte?: InputMaybe<CouponStatus>;
270
+ iLike?: InputMaybe<CouponStatus>;
271
+ in?: InputMaybe<Array<CouponStatus>>;
272
+ is?: InputMaybe<Scalars['Boolean']>;
273
+ isNot?: InputMaybe<Scalars['Boolean']>;
274
+ like?: InputMaybe<CouponStatus>;
275
+ lt?: InputMaybe<CouponStatus>;
276
+ lte?: InputMaybe<CouponStatus>;
277
+ neq?: InputMaybe<CouponStatus>;
278
+ notILike?: InputMaybe<CouponStatus>;
279
+ notIn?: InputMaybe<Array<CouponStatus>>;
280
+ notLike?: InputMaybe<CouponStatus>;
283
281
  };
284
282
  /** The type of the coupon */
285
283
  export declare enum CouponType {
@@ -287,68 +285,68 @@ export declare enum CouponType {
287
285
  Percentage = "PERCENTAGE"
288
286
  }
289
287
  export declare type CouponTypeFilterComparison = {
290
- eq?: Maybe<CouponType>;
291
- gt?: Maybe<CouponType>;
292
- gte?: Maybe<CouponType>;
293
- iLike?: Maybe<CouponType>;
294
- in?: Maybe<Array<CouponType>>;
295
- is?: Maybe<Scalars['Boolean']>;
296
- isNot?: Maybe<Scalars['Boolean']>;
297
- like?: Maybe<CouponType>;
298
- lt?: Maybe<CouponType>;
299
- lte?: Maybe<CouponType>;
300
- neq?: Maybe<CouponType>;
301
- notILike?: Maybe<CouponType>;
302
- notIn?: Maybe<Array<CouponType>>;
303
- notLike?: Maybe<CouponType>;
288
+ eq?: InputMaybe<CouponType>;
289
+ gt?: InputMaybe<CouponType>;
290
+ gte?: InputMaybe<CouponType>;
291
+ iLike?: InputMaybe<CouponType>;
292
+ in?: InputMaybe<Array<CouponType>>;
293
+ is?: InputMaybe<Scalars['Boolean']>;
294
+ isNot?: InputMaybe<Scalars['Boolean']>;
295
+ like?: InputMaybe<CouponType>;
296
+ lt?: InputMaybe<CouponType>;
297
+ lte?: InputMaybe<CouponType>;
298
+ neq?: InputMaybe<CouponType>;
299
+ notILike?: InputMaybe<CouponType>;
300
+ notIn?: InputMaybe<Array<CouponType>>;
301
+ notLike?: InputMaybe<CouponType>;
304
302
  };
305
303
  export declare type CreateCouponInput = {
306
- additionalMetaData?: Maybe<Scalars['JSON']>;
307
- description?: Maybe<Scalars['String']>;
304
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
305
+ description?: InputMaybe<Scalars['String']>;
308
306
  discountValue: Scalars['Float'];
309
- environmentId?: Maybe<Scalars['String']>;
307
+ environmentId?: InputMaybe<Scalars['String']>;
310
308
  name: Scalars['String'];
311
309
  refId: Scalars['String'];
312
310
  type: CouponType;
313
311
  };
314
312
  export declare type CreateEnvironment = {
315
- createdAt?: Maybe<Scalars['DateTime']>;
316
- description?: Maybe<Scalars['String']>;
317
- displayName?: Maybe<Scalars['String']>;
318
- hardenClientAccessEnabled?: Maybe<Scalars['Boolean']>;
319
- id?: Maybe<Scalars['String']>;
320
- provisionStatus?: Maybe<EnvironmentProvisionStatus>;
321
- slug?: Maybe<Scalars['String']>;
313
+ createdAt?: InputMaybe<Scalars['DateTime']>;
314
+ description?: InputMaybe<Scalars['String']>;
315
+ displayName?: InputMaybe<Scalars['String']>;
316
+ hardenClientAccessEnabled?: InputMaybe<Scalars['Boolean']>;
317
+ id?: InputMaybe<Scalars['String']>;
318
+ provisionStatus?: InputMaybe<EnvironmentProvisionStatus>;
319
+ slug?: InputMaybe<Scalars['String']>;
322
320
  };
323
321
  export declare type CreateEnvironmentOptions = {
324
- createDefaultProduct?: Maybe<Scalars['Boolean']>;
322
+ createDefaultProduct?: InputMaybe<Scalars['Boolean']>;
325
323
  };
326
324
  export declare type CreateExperimentInput = {
327
325
  controlGroupName: Scalars['String'];
328
- description?: Maybe<Scalars['String']>;
329
- environmentId?: Maybe<Scalars['String']>;
326
+ description?: InputMaybe<Scalars['String']>;
327
+ environmentId?: InputMaybe<Scalars['String']>;
330
328
  name: Scalars['String'];
331
329
  productId: Scalars['String'];
332
- productSettings?: Maybe<ProductSettingsInput>;
330
+ productSettings?: InputMaybe<ProductSettingsInput>;
333
331
  variantGroupName: Scalars['String'];
334
332
  variantPercentage: Scalars['Float'];
335
333
  };
336
334
  export declare type CreateHook = {
337
- createdAt?: Maybe<Scalars['DateTime']>;
338
- description?: Maybe<Scalars['String']>;
339
- endpoint?: Maybe<Scalars['String']>;
340
- environmentId?: Maybe<Scalars['String']>;
341
- eventLogTypes?: Maybe<Array<EventLogType>>;
342
- id?: Maybe<Scalars['String']>;
343
- secretKey?: Maybe<Scalars['String']>;
344
- status?: Maybe<HookStatus>;
335
+ createdAt?: InputMaybe<Scalars['DateTime']>;
336
+ description?: InputMaybe<Scalars['String']>;
337
+ endpoint?: InputMaybe<Scalars['String']>;
338
+ environmentId?: InputMaybe<Scalars['String']>;
339
+ eventLogTypes?: InputMaybe<Array<EventLogType>>;
340
+ id?: InputMaybe<Scalars['String']>;
341
+ secretKey?: InputMaybe<Scalars['String']>;
342
+ status?: InputMaybe<HookStatus>;
345
343
  };
346
344
  export declare type CreateIntegrationInput = {
347
345
  environmentId: Scalars['String'];
348
- hubspotCredentials?: Maybe<HubspotCredentialsInput>;
349
- stripeCredentials?: Maybe<StripeCredentialsInput>;
346
+ hubspotCredentials?: InputMaybe<HubspotCredentialsInput>;
347
+ stripeCredentials?: InputMaybe<StripeCredentialsInput>;
350
348
  vendorIdentifier: VendorIdentifier;
351
- zuoraCredentials?: Maybe<ZuoraCredentialsInput>;
349
+ zuoraCredentials?: InputMaybe<ZuoraCredentialsInput>;
352
350
  };
353
351
  export declare type CreateManyPackageEntitlementsInput = {
354
352
  /** Array of records to create */
@@ -360,7 +358,7 @@ export declare type CreateManyPromotionalEntitlementsInput = {
360
358
  };
361
359
  export declare type CreateOneEnvironmentInput = {
362
360
  environment: CreateEnvironment;
363
- options?: Maybe<CreateEnvironmentOptions>;
361
+ options?: InputMaybe<CreateEnvironmentOptions>;
364
362
  };
365
363
  export declare type CreateOneFeatureInput = {
366
364
  /** The record to create */
@@ -380,103 +378,221 @@ export declare type CreateOneProductInput = {
380
378
  };
381
379
  /** Currency */
382
380
  export declare enum Currency {
381
+ Aed = "AED",
382
+ All = "ALL",
383
+ Amd = "AMD",
384
+ Ang = "ANG",
385
+ Aud = "AUD",
386
+ Awg = "AWG",
387
+ Azn = "AZN",
388
+ Bam = "BAM",
389
+ Bbd = "BBD",
390
+ Bdt = "BDT",
391
+ Bgn = "BGN",
392
+ Bhd = "BHD",
393
+ Bif = "BIF",
394
+ Bmd = "BMD",
395
+ Bnd = "BND",
396
+ Bsd = "BSD",
397
+ Bwp = "BWP",
398
+ Byn = "BYN",
399
+ Bzd = "BZD",
400
+ Cad = "CAD",
401
+ Cdf = "CDF",
402
+ Chf = "CHF",
403
+ Clp = "CLP",
404
+ Cny = "CNY",
405
+ Czk = "CZK",
406
+ Djf = "DJF",
407
+ Dkk = "DKK",
408
+ Dop = "DOP",
409
+ Dzd = "DZD",
410
+ Egp = "EGP",
411
+ Etb = "ETB",
412
+ Eur = "EUR",
413
+ Fjd = "FJD",
414
+ Gbp = "GBP",
415
+ Gel = "GEL",
416
+ Gip = "GIP",
417
+ Gmd = "GMD",
418
+ Gnf = "GNF",
419
+ Gyd = "GYD",
420
+ Hkd = "HKD",
421
+ Hrk = "HRK",
422
+ Htg = "HTG",
423
+ Idr = "IDR",
383
424
  Ils = "ILS",
384
- Usd = "USD"
425
+ Inr = "INR",
426
+ Isk = "ISK",
427
+ Jmd = "JMD",
428
+ Jod = "JOD",
429
+ Jpy = "JPY",
430
+ Kes = "KES",
431
+ Kgs = "KGS",
432
+ Khr = "KHR",
433
+ Kmf = "KMF",
434
+ Krw = "KRW",
435
+ Kwd = "KWD",
436
+ Kyd = "KYD",
437
+ Kzt = "KZT",
438
+ Lbp = "LBP",
439
+ Lkr = "LKR",
440
+ Lrd = "LRD",
441
+ Lsl = "LSL",
442
+ Mad = "MAD",
443
+ Mdl = "MDL",
444
+ Mga = "MGA",
445
+ Mkd = "MKD",
446
+ Mmk = "MMK",
447
+ Mnt = "MNT",
448
+ Mop = "MOP",
449
+ Mro = "MRO",
450
+ Mvr = "MVR",
451
+ Mwk = "MWK",
452
+ Mxn = "MXN",
453
+ Myr = "MYR",
454
+ Mzn = "MZN",
455
+ Nad = "NAD",
456
+ Ngn = "NGN",
457
+ Nok = "NOK",
458
+ Npr = "NPR",
459
+ Nzd = "NZD",
460
+ Omr = "OMR",
461
+ Pgk = "PGK",
462
+ Php = "PHP",
463
+ Pkr = "PKR",
464
+ Pln = "PLN",
465
+ Pyg = "PYG",
466
+ Qar = "QAR",
467
+ Ron = "RON",
468
+ Rsd = "RSD",
469
+ Rub = "RUB",
470
+ Rwf = "RWF",
471
+ Sar = "SAR",
472
+ Sbd = "SBD",
473
+ Scr = "SCR",
474
+ Sek = "SEK",
475
+ Sgd = "SGD",
476
+ Sle = "SLE",
477
+ Sll = "SLL",
478
+ Sos = "SOS",
479
+ Szl = "SZL",
480
+ Thb = "THB",
481
+ Tjs = "TJS",
482
+ Tnd = "TND",
483
+ Top = "TOP",
484
+ Try = "TRY",
485
+ Ttd = "TTD",
486
+ Tzs = "TZS",
487
+ Uah = "UAH",
488
+ Ugx = "UGX",
489
+ Usd = "USD",
490
+ Uzs = "UZS",
491
+ Vnd = "VND",
492
+ Vuv = "VUV",
493
+ Wst = "WST",
494
+ Xaf = "XAF",
495
+ Xcd = "XCD",
496
+ Xof = "XOF",
497
+ Xpf = "XPF",
498
+ Yer = "YER",
499
+ Zar = "ZAR",
500
+ Zmw = "ZMW"
385
501
  }
386
502
  export declare type CursorPaging = {
387
503
  /** Paginate after opaque cursor */
388
- after?: Maybe<Scalars['ConnectionCursor']>;
504
+ after?: InputMaybe<Scalars['ConnectionCursor']>;
389
505
  /** Paginate before opaque cursor */
390
- before?: Maybe<Scalars['ConnectionCursor']>;
506
+ before?: InputMaybe<Scalars['ConnectionCursor']>;
391
507
  /** Paginate first */
392
- first?: Maybe<Scalars['Int']>;
508
+ first?: InputMaybe<Scalars['Int']>;
393
509
  /** Paginate last */
394
- last?: Maybe<Scalars['Int']>;
510
+ last?: InputMaybe<Scalars['Int']>;
395
511
  };
396
512
  export declare type CustomerBillingInfo = {
397
- billingAddress?: Maybe<Address>;
398
- currency?: Maybe<Currency>;
399
- invoiceCustomFields?: Maybe<Scalars['JSON']>;
400
- language?: Maybe<Scalars['String']>;
401
- paymentMethodId?: Maybe<Scalars['String']>;
402
- shippingAddress?: Maybe<Address>;
403
- taxIds?: Maybe<Array<TaxExempt>>;
404
- timezone?: Maybe<Scalars['String']>;
513
+ billingAddress?: InputMaybe<Address>;
514
+ currency?: InputMaybe<Currency>;
515
+ invoiceCustomFields?: InputMaybe<Scalars['JSON']>;
516
+ language?: InputMaybe<Scalars['String']>;
517
+ paymentMethodId?: InputMaybe<Scalars['String']>;
518
+ shippingAddress?: InputMaybe<Address>;
519
+ taxIds?: InputMaybe<Array<TaxExempt>>;
520
+ timezone?: InputMaybe<Scalars['String']>;
405
521
  };
406
522
  export declare type CustomerFilter = {
407
- and?: Maybe<Array<CustomerFilter>>;
408
- billingId?: Maybe<StringFieldComparison>;
409
- createdAt?: Maybe<DateFieldComparison>;
410
- crmHubspotCompanyId?: Maybe<StringFieldComparison>;
411
- crmHubspotCompanyUrl?: Maybe<StringFieldComparison>;
412
- crmId?: Maybe<StringFieldComparison>;
413
- customerId?: Maybe<StringFieldComparison>;
414
- email?: Maybe<StringFieldComparison>;
415
- environmentId?: Maybe<StringFieldComparison>;
416
- id?: Maybe<StringFieldComparison>;
417
- name?: Maybe<StringFieldComparison>;
418
- or?: Maybe<Array<CustomerFilter>>;
419
- promotionalEntitlements?: Maybe<CustomerFilterPromotionalEntitlementFilter>;
420
- refId?: Maybe<StringFieldComparison>;
421
- subscriptions?: Maybe<CustomerFilterCustomerSubscriptionFilter>;
422
- updatedAt?: Maybe<DateFieldComparison>;
523
+ and?: InputMaybe<Array<CustomerFilter>>;
524
+ billingId?: InputMaybe<StringFieldComparison>;
525
+ createdAt?: InputMaybe<DateFieldComparison>;
526
+ crmHubspotCompanyId?: InputMaybe<StringFieldComparison>;
527
+ crmHubspotCompanyUrl?: InputMaybe<StringFieldComparison>;
528
+ crmId?: InputMaybe<StringFieldComparison>;
529
+ customerId?: InputMaybe<StringFieldComparison>;
530
+ email?: InputMaybe<StringFieldComparison>;
531
+ environmentId?: InputMaybe<StringFieldComparison>;
532
+ id?: InputMaybe<StringFieldComparison>;
533
+ name?: InputMaybe<StringFieldComparison>;
534
+ or?: InputMaybe<Array<CustomerFilter>>;
535
+ promotionalEntitlements?: InputMaybe<CustomerFilterPromotionalEntitlementFilter>;
536
+ refId?: InputMaybe<StringFieldComparison>;
537
+ subscriptions?: InputMaybe<CustomerFilterCustomerSubscriptionFilter>;
538
+ updatedAt?: InputMaybe<DateFieldComparison>;
423
539
  };
424
540
  export declare type CustomerFilterCustomerSubscriptionFilter = {
425
- and?: Maybe<Array<CustomerFilterCustomerSubscriptionFilter>>;
426
- billingId?: Maybe<StringFieldComparison>;
427
- cancelReason?: Maybe<SubscriptionCancelReasonFilterComparison>;
428
- cancellationDate?: Maybe<DateFieldComparison>;
429
- createdAt?: Maybe<DateFieldComparison>;
430
- crmId?: Maybe<StringFieldComparison>;
431
- crmLinkUrl?: Maybe<StringFieldComparison>;
432
- effectiveEndDate?: Maybe<DateFieldComparison>;
433
- endDate?: Maybe<DateFieldComparison>;
434
- environmentId?: Maybe<StringFieldComparison>;
435
- id?: Maybe<StringFieldComparison>;
436
- oldBillingId?: Maybe<StringFieldComparison>;
437
- or?: Maybe<Array<CustomerFilterCustomerSubscriptionFilter>>;
438
- pricingType?: Maybe<PricingTypeFilterComparison>;
439
- refId?: Maybe<StringFieldComparison>;
440
- startDate?: Maybe<DateFieldComparison>;
441
- status?: Maybe<SubscriptionStatusFilterComparison>;
442
- subscriptionId?: Maybe<StringFieldComparison>;
443
- trialEndDate?: Maybe<DateFieldComparison>;
541
+ and?: InputMaybe<Array<CustomerFilterCustomerSubscriptionFilter>>;
542
+ billingId?: InputMaybe<StringFieldComparison>;
543
+ cancelReason?: InputMaybe<SubscriptionCancelReasonFilterComparison>;
544
+ cancellationDate?: InputMaybe<DateFieldComparison>;
545
+ createdAt?: InputMaybe<DateFieldComparison>;
546
+ crmId?: InputMaybe<StringFieldComparison>;
547
+ crmLinkUrl?: InputMaybe<StringFieldComparison>;
548
+ effectiveEndDate?: InputMaybe<DateFieldComparison>;
549
+ endDate?: InputMaybe<DateFieldComparison>;
550
+ environmentId?: InputMaybe<StringFieldComparison>;
551
+ id?: InputMaybe<StringFieldComparison>;
552
+ oldBillingId?: InputMaybe<StringFieldComparison>;
553
+ or?: InputMaybe<Array<CustomerFilterCustomerSubscriptionFilter>>;
554
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
555
+ refId?: InputMaybe<StringFieldComparison>;
556
+ startDate?: InputMaybe<DateFieldComparison>;
557
+ status?: InputMaybe<SubscriptionStatusFilterComparison>;
558
+ subscriptionId?: InputMaybe<StringFieldComparison>;
559
+ trialEndDate?: InputMaybe<DateFieldComparison>;
444
560
  };
445
561
  export declare type CustomerFilterPromotionalEntitlementFilter = {
446
- and?: Maybe<Array<CustomerFilterPromotionalEntitlementFilter>>;
447
- createdAt?: Maybe<DateFieldComparison>;
448
- environmentId?: Maybe<StringFieldComparison>;
449
- id?: Maybe<StringFieldComparison>;
450
- or?: Maybe<Array<CustomerFilterPromotionalEntitlementFilter>>;
451
- status?: Maybe<PromotionalEntitlementStatusFilterComparison>;
452
- updatedAt?: Maybe<DateFieldComparison>;
562
+ and?: InputMaybe<Array<CustomerFilterPromotionalEntitlementFilter>>;
563
+ createdAt?: InputMaybe<DateFieldComparison>;
564
+ environmentId?: InputMaybe<StringFieldComparison>;
565
+ id?: InputMaybe<StringFieldComparison>;
566
+ or?: InputMaybe<Array<CustomerFilterPromotionalEntitlementFilter>>;
567
+ status?: InputMaybe<PromotionalEntitlementStatusFilterComparison>;
568
+ updatedAt?: InputMaybe<DateFieldComparison>;
453
569
  };
454
570
  export declare type CustomerInput = {
455
- additionalMetaData?: Maybe<Scalars['JSON']>;
456
- billingId?: Maybe<Scalars['String']>;
457
- billingInformation?: Maybe<CustomerBillingInfo>;
458
- couponRefId?: Maybe<Scalars['String']>;
459
- createdAt?: Maybe<Scalars['DateTime']>;
460
- crmId?: Maybe<Scalars['String']>;
461
- customerId?: Maybe<Scalars['String']>;
462
- email?: Maybe<Scalars['String']>;
463
- environmentId?: Maybe<Scalars['String']>;
464
- name?: Maybe<Scalars['String']>;
465
- refId?: Maybe<Scalars['String']>;
466
- shouldSyncFree?: Maybe<Scalars['Boolean']>;
571
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
572
+ billingId?: InputMaybe<Scalars['String']>;
573
+ billingInformation?: InputMaybe<CustomerBillingInfo>;
574
+ couponRefId?: InputMaybe<Scalars['String']>;
575
+ createdAt?: InputMaybe<Scalars['DateTime']>;
576
+ crmId?: InputMaybe<Scalars['String']>;
577
+ customerId?: InputMaybe<Scalars['String']>;
578
+ email?: InputMaybe<Scalars['String']>;
579
+ environmentId?: InputMaybe<Scalars['String']>;
580
+ name?: InputMaybe<Scalars['String']>;
581
+ refId?: InputMaybe<Scalars['String']>;
582
+ shouldSyncFree?: InputMaybe<Scalars['Boolean']>;
467
583
  };
468
584
  export declare type CustomerPortalColorsPaletteInput = {
469
- backgroundColor?: Maybe<Scalars['String']>;
470
- borderColor?: Maybe<Scalars['String']>;
471
- currentPlanBackground?: Maybe<Scalars['String']>;
472
- iconsColor?: Maybe<Scalars['String']>;
473
- paywallBackgroundColor?: Maybe<Scalars['String']>;
474
- primary?: Maybe<Scalars['String']>;
475
- textColor?: Maybe<Scalars['String']>;
585
+ backgroundColor?: InputMaybe<Scalars['String']>;
586
+ borderColor?: InputMaybe<Scalars['String']>;
587
+ currentPlanBackground?: InputMaybe<Scalars['String']>;
588
+ iconsColor?: InputMaybe<Scalars['String']>;
589
+ paywallBackgroundColor?: InputMaybe<Scalars['String']>;
590
+ primary?: InputMaybe<Scalars['String']>;
591
+ textColor?: InputMaybe<Scalars['String']>;
476
592
  };
477
593
  export declare type CustomerPortalConfigurationInput = {
478
- palette?: Maybe<CustomerPortalColorsPaletteInput>;
479
- typography?: Maybe<TypographyConfigurationInput>;
594
+ palette?: InputMaybe<CustomerPortalColorsPaletteInput>;
595
+ typography?: InputMaybe<TypographyConfigurationInput>;
480
596
  };
481
597
  export declare type CustomerPortalInput = {
482
598
  customerId: Scalars['String'];
@@ -484,7 +600,7 @@ export declare type CustomerPortalInput = {
484
600
  export declare type CustomerSort = {
485
601
  direction: SortDirection;
486
602
  field: CustomerSortFields;
487
- nulls?: Maybe<SortNulls>;
603
+ nulls?: InputMaybe<SortNulls>;
488
604
  };
489
605
  export declare enum CustomerSortFields {
490
606
  BillingId = "billingId",
@@ -501,75 +617,75 @@ export declare enum CustomerSortFields {
501
617
  UpdatedAt = "updatedAt"
502
618
  }
503
619
  export declare type CustomerSubscriptionFilter = {
504
- addons?: Maybe<CustomerSubscriptionFilterSubscriptionAddonFilter>;
505
- and?: Maybe<Array<CustomerSubscriptionFilter>>;
506
- billingId?: Maybe<StringFieldComparison>;
507
- cancelReason?: Maybe<SubscriptionCancelReasonFilterComparison>;
508
- cancellationDate?: Maybe<DateFieldComparison>;
509
- createdAt?: Maybe<DateFieldComparison>;
510
- crmId?: Maybe<StringFieldComparison>;
511
- crmLinkUrl?: Maybe<StringFieldComparison>;
512
- customer?: Maybe<CustomerSubscriptionFilterCustomerFilter>;
513
- effectiveEndDate?: Maybe<DateFieldComparison>;
514
- endDate?: Maybe<DateFieldComparison>;
515
- environmentId?: Maybe<StringFieldComparison>;
516
- id?: Maybe<StringFieldComparison>;
517
- oldBillingId?: Maybe<StringFieldComparison>;
518
- or?: Maybe<Array<CustomerSubscriptionFilter>>;
519
- prices?: Maybe<CustomerSubscriptionFilterSubscriptionPriceFilter>;
520
- pricingType?: Maybe<PricingTypeFilterComparison>;
521
- refId?: Maybe<StringFieldComparison>;
522
- startDate?: Maybe<DateFieldComparison>;
523
- status?: Maybe<SubscriptionStatusFilterComparison>;
524
- subscriptionEntitlements?: Maybe<CustomerSubscriptionFilterSubscriptionEntitlementFilter>;
525
- subscriptionId?: Maybe<StringFieldComparison>;
526
- trialEndDate?: Maybe<DateFieldComparison>;
620
+ addons?: InputMaybe<CustomerSubscriptionFilterSubscriptionAddonFilter>;
621
+ and?: InputMaybe<Array<CustomerSubscriptionFilter>>;
622
+ billingId?: InputMaybe<StringFieldComparison>;
623
+ cancelReason?: InputMaybe<SubscriptionCancelReasonFilterComparison>;
624
+ cancellationDate?: InputMaybe<DateFieldComparison>;
625
+ createdAt?: InputMaybe<DateFieldComparison>;
626
+ crmId?: InputMaybe<StringFieldComparison>;
627
+ crmLinkUrl?: InputMaybe<StringFieldComparison>;
628
+ customer?: InputMaybe<CustomerSubscriptionFilterCustomerFilter>;
629
+ effectiveEndDate?: InputMaybe<DateFieldComparison>;
630
+ endDate?: InputMaybe<DateFieldComparison>;
631
+ environmentId?: InputMaybe<StringFieldComparison>;
632
+ id?: InputMaybe<StringFieldComparison>;
633
+ oldBillingId?: InputMaybe<StringFieldComparison>;
634
+ or?: InputMaybe<Array<CustomerSubscriptionFilter>>;
635
+ prices?: InputMaybe<CustomerSubscriptionFilterSubscriptionPriceFilter>;
636
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
637
+ refId?: InputMaybe<StringFieldComparison>;
638
+ startDate?: InputMaybe<DateFieldComparison>;
639
+ status?: InputMaybe<SubscriptionStatusFilterComparison>;
640
+ subscriptionEntitlements?: InputMaybe<CustomerSubscriptionFilterSubscriptionEntitlementFilter>;
641
+ subscriptionId?: InputMaybe<StringFieldComparison>;
642
+ trialEndDate?: InputMaybe<DateFieldComparison>;
527
643
  };
528
644
  export declare type CustomerSubscriptionFilterCustomerFilter = {
529
- and?: Maybe<Array<CustomerSubscriptionFilterCustomerFilter>>;
530
- billingId?: Maybe<StringFieldComparison>;
531
- createdAt?: Maybe<DateFieldComparison>;
532
- crmHubspotCompanyId?: Maybe<StringFieldComparison>;
533
- crmHubspotCompanyUrl?: Maybe<StringFieldComparison>;
534
- crmId?: Maybe<StringFieldComparison>;
535
- customerId?: Maybe<StringFieldComparison>;
536
- email?: Maybe<StringFieldComparison>;
537
- environmentId?: Maybe<StringFieldComparison>;
538
- id?: Maybe<StringFieldComparison>;
539
- name?: Maybe<StringFieldComparison>;
540
- or?: Maybe<Array<CustomerSubscriptionFilterCustomerFilter>>;
541
- refId?: Maybe<StringFieldComparison>;
542
- updatedAt?: Maybe<DateFieldComparison>;
645
+ and?: InputMaybe<Array<CustomerSubscriptionFilterCustomerFilter>>;
646
+ billingId?: InputMaybe<StringFieldComparison>;
647
+ createdAt?: InputMaybe<DateFieldComparison>;
648
+ crmHubspotCompanyId?: InputMaybe<StringFieldComparison>;
649
+ crmHubspotCompanyUrl?: InputMaybe<StringFieldComparison>;
650
+ crmId?: InputMaybe<StringFieldComparison>;
651
+ customerId?: InputMaybe<StringFieldComparison>;
652
+ email?: InputMaybe<StringFieldComparison>;
653
+ environmentId?: InputMaybe<StringFieldComparison>;
654
+ id?: InputMaybe<StringFieldComparison>;
655
+ name?: InputMaybe<StringFieldComparison>;
656
+ or?: InputMaybe<Array<CustomerSubscriptionFilterCustomerFilter>>;
657
+ refId?: InputMaybe<StringFieldComparison>;
658
+ updatedAt?: InputMaybe<DateFieldComparison>;
543
659
  };
544
660
  export declare type CustomerSubscriptionFilterSubscriptionAddonFilter = {
545
- and?: Maybe<Array<CustomerSubscriptionFilterSubscriptionAddonFilter>>;
546
- createdAt?: Maybe<DateFieldComparison>;
547
- id?: Maybe<StringFieldComparison>;
548
- or?: Maybe<Array<CustomerSubscriptionFilterSubscriptionAddonFilter>>;
549
- quantity?: Maybe<NumberFieldComparison>;
550
- updatedAt?: Maybe<DateFieldComparison>;
661
+ and?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionAddonFilter>>;
662
+ createdAt?: InputMaybe<DateFieldComparison>;
663
+ id?: InputMaybe<StringFieldComparison>;
664
+ or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionAddonFilter>>;
665
+ quantity?: InputMaybe<NumberFieldComparison>;
666
+ updatedAt?: InputMaybe<DateFieldComparison>;
551
667
  };
552
668
  export declare type CustomerSubscriptionFilterSubscriptionEntitlementFilter = {
553
- and?: Maybe<Array<CustomerSubscriptionFilterSubscriptionEntitlementFilter>>;
554
- createdAt?: Maybe<DateFieldComparison>;
555
- environmentId?: Maybe<StringFieldComparison>;
556
- id?: Maybe<StringFieldComparison>;
557
- or?: Maybe<Array<CustomerSubscriptionFilterSubscriptionEntitlementFilter>>;
558
- subscriptionId?: Maybe<StringFieldComparison>;
559
- updatedAt?: Maybe<DateFieldComparison>;
669
+ and?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionEntitlementFilter>>;
670
+ createdAt?: InputMaybe<DateFieldComparison>;
671
+ environmentId?: InputMaybe<StringFieldComparison>;
672
+ id?: InputMaybe<StringFieldComparison>;
673
+ or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionEntitlementFilter>>;
674
+ subscriptionId?: InputMaybe<StringFieldComparison>;
675
+ updatedAt?: InputMaybe<DateFieldComparison>;
560
676
  };
561
677
  export declare type CustomerSubscriptionFilterSubscriptionPriceFilter = {
562
- and?: Maybe<Array<CustomerSubscriptionFilterSubscriptionPriceFilter>>;
563
- createdAt?: Maybe<DateFieldComparison>;
564
- id?: Maybe<StringFieldComparison>;
565
- or?: Maybe<Array<CustomerSubscriptionFilterSubscriptionPriceFilter>>;
566
- updatedAt?: Maybe<DateFieldComparison>;
567
- usageLimit?: Maybe<NumberFieldComparison>;
678
+ and?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionPriceFilter>>;
679
+ createdAt?: InputMaybe<DateFieldComparison>;
680
+ id?: InputMaybe<StringFieldComparison>;
681
+ or?: InputMaybe<Array<CustomerSubscriptionFilterSubscriptionPriceFilter>>;
682
+ updatedAt?: InputMaybe<DateFieldComparison>;
683
+ usageLimit?: InputMaybe<NumberFieldComparison>;
568
684
  };
569
685
  export declare type CustomerSubscriptionSort = {
570
686
  direction: SortDirection;
571
687
  field: CustomerSubscriptionSortFields;
572
- nulls?: Maybe<SortNulls>;
688
+ nulls?: InputMaybe<SortNulls>;
573
689
  };
574
690
  export declare enum CustomerSubscriptionSortFields {
575
691
  BillingId = "billingId",
@@ -591,33 +707,33 @@ export declare enum CustomerSubscriptionSortFields {
591
707
  TrialEndDate = "trialEndDate"
592
708
  }
593
709
  export declare type DateFieldComparison = {
594
- between?: Maybe<DateFieldComparisonBetween>;
595
- eq?: Maybe<Scalars['DateTime']>;
596
- gt?: Maybe<Scalars['DateTime']>;
597
- gte?: Maybe<Scalars['DateTime']>;
598
- in?: Maybe<Array<Scalars['DateTime']>>;
599
- is?: Maybe<Scalars['Boolean']>;
600
- isNot?: Maybe<Scalars['Boolean']>;
601
- lt?: Maybe<Scalars['DateTime']>;
602
- lte?: Maybe<Scalars['DateTime']>;
603
- neq?: Maybe<Scalars['DateTime']>;
604
- notBetween?: Maybe<DateFieldComparisonBetween>;
605
- notIn?: Maybe<Array<Scalars['DateTime']>>;
710
+ between?: InputMaybe<DateFieldComparisonBetween>;
711
+ eq?: InputMaybe<Scalars['DateTime']>;
712
+ gt?: InputMaybe<Scalars['DateTime']>;
713
+ gte?: InputMaybe<Scalars['DateTime']>;
714
+ in?: InputMaybe<Array<Scalars['DateTime']>>;
715
+ is?: InputMaybe<Scalars['Boolean']>;
716
+ isNot?: InputMaybe<Scalars['Boolean']>;
717
+ lt?: InputMaybe<Scalars['DateTime']>;
718
+ lte?: InputMaybe<Scalars['DateTime']>;
719
+ neq?: InputMaybe<Scalars['DateTime']>;
720
+ notBetween?: InputMaybe<DateFieldComparisonBetween>;
721
+ notIn?: InputMaybe<Array<Scalars['DateTime']>>;
606
722
  };
607
723
  export declare type DateFieldComparisonBetween = {
608
724
  lower: Scalars['DateTime'];
609
725
  upper: Scalars['DateTime'];
610
726
  };
611
727
  export declare type DefaultTrialConfigInputDto = {
612
- duration?: Maybe<Scalars['Float']>;
613
- units?: Maybe<TrialPeriodUnits>;
728
+ duration?: InputMaybe<Scalars['Float']>;
729
+ units?: InputMaybe<TrialPeriodUnits>;
614
730
  };
615
731
  export declare type DeleteCustomerInput = {
616
- environmentId?: Maybe<Scalars['String']>;
732
+ environmentId?: InputMaybe<Scalars['String']>;
617
733
  id: Scalars['String'];
618
734
  };
619
735
  export declare type DeleteFeatureInput = {
620
- environmentId?: Maybe<Scalars['String']>;
736
+ environmentId?: InputMaybe<Scalars['String']>;
621
737
  id: Scalars['String'];
622
738
  };
623
739
  export declare type DeleteOneAddonInput = {
@@ -659,25 +775,25 @@ export declare type DiscardPackageDraftInput = {
659
775
  export declare type EntitlementCheckRequested = {
660
776
  customerId: Scalars['String'];
661
777
  entitlementCheckResult: EntitlementCheckResult;
662
- environmentId?: Maybe<Scalars['String']>;
778
+ environmentId?: InputMaybe<Scalars['String']>;
663
779
  featureId: Scalars['String'];
664
- requestedUsage?: Maybe<Scalars['Float']>;
780
+ requestedUsage?: InputMaybe<Scalars['Float']>;
665
781
  };
666
782
  export declare type EntitlementCheckResult = {
667
- accessDeniedReason?: Maybe<AccessDeniedReason>;
668
- currentUsage?: Maybe<Scalars['Float']>;
783
+ accessDeniedReason?: InputMaybe<AccessDeniedReason>;
784
+ currentUsage?: InputMaybe<Scalars['Float']>;
669
785
  hasAccess: Scalars['Boolean'];
670
- hasUnlimitedUsage?: Maybe<Scalars['Boolean']>;
671
- monthlyResetPeriodConfiguration?: Maybe<MonthlyResetPeriodConfigInput>;
672
- nextResetDate?: Maybe<Scalars['DateTime']>;
673
- requestedUsage?: Maybe<Scalars['Float']>;
674
- resetPeriod?: Maybe<EntitlementResetPeriod>;
675
- usageLimit?: Maybe<Scalars['Float']>;
676
- weeklyResetPeriodConfiguration?: Maybe<WeeklyResetPeriodConfigInput>;
786
+ hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
787
+ monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
788
+ nextResetDate?: InputMaybe<Scalars['DateTime']>;
789
+ requestedUsage?: InputMaybe<Scalars['Float']>;
790
+ resetPeriod?: InputMaybe<EntitlementResetPeriod>;
791
+ usageLimit?: InputMaybe<Scalars['Float']>;
792
+ weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
677
793
  };
678
794
  export declare type EntitlementOptions = {
679
- requestedUsage?: Maybe<Scalars['Float']>;
680
- shouldTrack?: Maybe<Scalars['Boolean']>;
795
+ requestedUsage?: InputMaybe<Scalars['Float']>;
796
+ shouldTrack?: InputMaybe<Scalars['Boolean']>;
681
797
  };
682
798
  /** Entitlement reset period. */
683
799
  export declare enum EntitlementResetPeriod {
@@ -691,12 +807,12 @@ export declare enum EntitySelectionMode {
691
807
  WhiteList = "WHITE_LIST"
692
808
  }
693
809
  export declare type EnvironmentFilter = {
694
- and?: Maybe<Array<EnvironmentFilter>>;
695
- createdAt?: Maybe<DateFieldComparison>;
696
- displayName?: Maybe<StringFieldComparison>;
697
- id?: Maybe<StringFieldComparison>;
698
- or?: Maybe<Array<EnvironmentFilter>>;
699
- slug?: Maybe<StringFieldComparison>;
810
+ and?: InputMaybe<Array<EnvironmentFilter>>;
811
+ createdAt?: InputMaybe<DateFieldComparison>;
812
+ displayName?: InputMaybe<StringFieldComparison>;
813
+ id?: InputMaybe<StringFieldComparison>;
814
+ or?: InputMaybe<Array<EnvironmentFilter>>;
815
+ slug?: InputMaybe<StringFieldComparison>;
700
816
  };
701
817
  /** EnvironmentProvisionStatus. */
702
818
  export declare enum EnvironmentProvisionStatus {
@@ -708,7 +824,7 @@ export declare enum EnvironmentProvisionStatus {
708
824
  export declare type EnvironmentSort = {
709
825
  direction: SortDirection;
710
826
  field: EnvironmentSortFields;
711
- nulls?: Maybe<SortNulls>;
827
+ nulls?: InputMaybe<SortNulls>;
712
828
  };
713
829
  export declare enum EnvironmentSortFields {
714
830
  CreatedAt = "createdAt",
@@ -804,22 +920,22 @@ export declare enum ErrorCode {
804
920
  UnsupportedVendorIdentifier = "UnsupportedVendorIdentifier"
805
921
  }
806
922
  export declare type EstimateSubscriptionInput = {
807
- addons?: Maybe<Array<SubscriptionAddonInput>>;
808
- billingInformation?: Maybe<SubscriptionBillingInfo>;
809
- billingPeriod?: Maybe<BillingPeriod>;
923
+ addons?: InputMaybe<Array<SubscriptionAddonInput>>;
924
+ billingInformation?: InputMaybe<SubscriptionBillingInfo>;
925
+ billingPeriod?: InputMaybe<BillingPeriod>;
810
926
  customerId: Scalars['String'];
811
- environmentId?: Maybe<Scalars['String']>;
927
+ environmentId?: InputMaybe<Scalars['String']>;
812
928
  planId: Scalars['String'];
813
- priceUnitAmount?: Maybe<Scalars['Float']>;
814
- promotionCode?: Maybe<Scalars['String']>;
815
- startDate?: Maybe<Scalars['DateTime']>;
929
+ priceUnitAmount?: InputMaybe<Scalars['Float']>;
930
+ promotionCode?: InputMaybe<Scalars['String']>;
931
+ startDate?: InputMaybe<Scalars['DateTime']>;
816
932
  };
817
933
  export declare type EstimateSubscriptionUpdateInput = {
818
- addons?: Maybe<Array<SubscriptionAddonInput>>;
819
- environmentId?: Maybe<Scalars['String']>;
820
- promotionCode?: Maybe<Scalars['String']>;
934
+ addons?: InputMaybe<Array<SubscriptionAddonInput>>;
935
+ environmentId?: InputMaybe<Scalars['String']>;
936
+ promotionCode?: InputMaybe<Scalars['String']>;
821
937
  subscriptionId: Scalars['String'];
822
- unitQuantity?: Maybe<Scalars['Float']>;
938
+ unitQuantity?: InputMaybe<Scalars['Float']>;
823
939
  };
824
940
  /** EventLogType */
825
941
  export declare enum EventLogType {
@@ -871,37 +987,37 @@ export declare enum EventLogType {
871
987
  WidgetConfigurationUpdated = "WIDGET_CONFIGURATION_UPDATED"
872
988
  }
873
989
  export declare type ExperimentFilter = {
874
- and?: Maybe<Array<ExperimentFilter>>;
875
- createdAt?: Maybe<DateFieldComparison>;
876
- customers?: Maybe<ExperimentFilterCustomerFilter>;
877
- environmentId?: Maybe<StringFieldComparison>;
878
- id?: Maybe<StringFieldComparison>;
879
- name?: Maybe<StringFieldComparison>;
880
- or?: Maybe<Array<ExperimentFilter>>;
881
- productId?: Maybe<StringFieldComparison>;
882
- refId?: Maybe<StringFieldComparison>;
883
- status?: Maybe<ExperimentStatusFilterComparison>;
990
+ and?: InputMaybe<Array<ExperimentFilter>>;
991
+ createdAt?: InputMaybe<DateFieldComparison>;
992
+ customers?: InputMaybe<ExperimentFilterCustomerFilter>;
993
+ environmentId?: InputMaybe<StringFieldComparison>;
994
+ id?: InputMaybe<StringFieldComparison>;
995
+ name?: InputMaybe<StringFieldComparison>;
996
+ or?: InputMaybe<Array<ExperimentFilter>>;
997
+ productId?: InputMaybe<StringFieldComparison>;
998
+ refId?: InputMaybe<StringFieldComparison>;
999
+ status?: InputMaybe<ExperimentStatusFilterComparison>;
884
1000
  };
885
1001
  export declare type ExperimentFilterCustomerFilter = {
886
- and?: Maybe<Array<ExperimentFilterCustomerFilter>>;
887
- billingId?: Maybe<StringFieldComparison>;
888
- createdAt?: Maybe<DateFieldComparison>;
889
- crmHubspotCompanyId?: Maybe<StringFieldComparison>;
890
- crmHubspotCompanyUrl?: Maybe<StringFieldComparison>;
891
- crmId?: Maybe<StringFieldComparison>;
892
- customerId?: Maybe<StringFieldComparison>;
893
- email?: Maybe<StringFieldComparison>;
894
- environmentId?: Maybe<StringFieldComparison>;
895
- id?: Maybe<StringFieldComparison>;
896
- name?: Maybe<StringFieldComparison>;
897
- or?: Maybe<Array<ExperimentFilterCustomerFilter>>;
898
- refId?: Maybe<StringFieldComparison>;
899
- updatedAt?: Maybe<DateFieldComparison>;
1002
+ and?: InputMaybe<Array<ExperimentFilterCustomerFilter>>;
1003
+ billingId?: InputMaybe<StringFieldComparison>;
1004
+ createdAt?: InputMaybe<DateFieldComparison>;
1005
+ crmHubspotCompanyId?: InputMaybe<StringFieldComparison>;
1006
+ crmHubspotCompanyUrl?: InputMaybe<StringFieldComparison>;
1007
+ crmId?: InputMaybe<StringFieldComparison>;
1008
+ customerId?: InputMaybe<StringFieldComparison>;
1009
+ email?: InputMaybe<StringFieldComparison>;
1010
+ environmentId?: InputMaybe<StringFieldComparison>;
1011
+ id?: InputMaybe<StringFieldComparison>;
1012
+ name?: InputMaybe<StringFieldComparison>;
1013
+ or?: InputMaybe<Array<ExperimentFilterCustomerFilter>>;
1014
+ refId?: InputMaybe<StringFieldComparison>;
1015
+ updatedAt?: InputMaybe<DateFieldComparison>;
900
1016
  };
901
1017
  export declare type ExperimentSort = {
902
1018
  direction: SortDirection;
903
1019
  field: ExperimentSortFields;
904
- nulls?: Maybe<SortNulls>;
1020
+ nulls?: InputMaybe<SortNulls>;
905
1021
  };
906
1022
  export declare enum ExperimentSortFields {
907
1023
  CreatedAt = "createdAt",
@@ -913,7 +1029,7 @@ export declare enum ExperimentSortFields {
913
1029
  Status = "status"
914
1030
  }
915
1031
  export declare type ExperimentStatsQuery = {
916
- environmentId?: Maybe<Scalars['String']>;
1032
+ environmentId?: InputMaybe<Scalars['String']>;
917
1033
  experimentRefId: Scalars['String'];
918
1034
  };
919
1035
  /** The status of the EXPERIMENT */
@@ -923,51 +1039,51 @@ export declare enum ExperimentStatus {
923
1039
  InProgress = "IN_PROGRESS"
924
1040
  }
925
1041
  export declare type ExperimentStatusFilterComparison = {
926
- eq?: Maybe<ExperimentStatus>;
927
- gt?: Maybe<ExperimentStatus>;
928
- gte?: Maybe<ExperimentStatus>;
929
- iLike?: Maybe<ExperimentStatus>;
930
- in?: Maybe<Array<ExperimentStatus>>;
931
- is?: Maybe<Scalars['Boolean']>;
932
- isNot?: Maybe<Scalars['Boolean']>;
933
- like?: Maybe<ExperimentStatus>;
934
- lt?: Maybe<ExperimentStatus>;
935
- lte?: Maybe<ExperimentStatus>;
936
- neq?: Maybe<ExperimentStatus>;
937
- notILike?: Maybe<ExperimentStatus>;
938
- notIn?: Maybe<Array<ExperimentStatus>>;
939
- notLike?: Maybe<ExperimentStatus>;
1042
+ eq?: InputMaybe<ExperimentStatus>;
1043
+ gt?: InputMaybe<ExperimentStatus>;
1044
+ gte?: InputMaybe<ExperimentStatus>;
1045
+ iLike?: InputMaybe<ExperimentStatus>;
1046
+ in?: InputMaybe<Array<ExperimentStatus>>;
1047
+ is?: InputMaybe<Scalars['Boolean']>;
1048
+ isNot?: InputMaybe<Scalars['Boolean']>;
1049
+ like?: InputMaybe<ExperimentStatus>;
1050
+ lt?: InputMaybe<ExperimentStatus>;
1051
+ lte?: InputMaybe<ExperimentStatus>;
1052
+ neq?: InputMaybe<ExperimentStatus>;
1053
+ notILike?: InputMaybe<ExperimentStatus>;
1054
+ notIn?: InputMaybe<Array<ExperimentStatus>>;
1055
+ notLike?: InputMaybe<ExperimentStatus>;
940
1056
  };
941
1057
  export declare type FeatureFilter = {
942
- and?: Maybe<Array<FeatureFilter>>;
943
- createdAt?: Maybe<DateFieldComparison>;
944
- description?: Maybe<StringFieldComparison>;
945
- displayName?: Maybe<StringFieldComparison>;
946
- environmentId?: Maybe<StringFieldComparison>;
947
- featureStatus?: Maybe<FeatureStatusFilterComparison>;
948
- featureType?: Maybe<FeatureTypeFilterComparison>;
949
- id?: Maybe<StringFieldComparison>;
950
- meterType?: Maybe<MeterTypeFilterComparison>;
951
- or?: Maybe<Array<FeatureFilter>>;
952
- refId?: Maybe<StringFieldComparison>;
953
- updatedAt?: Maybe<DateFieldComparison>;
1058
+ and?: InputMaybe<Array<FeatureFilter>>;
1059
+ createdAt?: InputMaybe<DateFieldComparison>;
1060
+ description?: InputMaybe<StringFieldComparison>;
1061
+ displayName?: InputMaybe<StringFieldComparison>;
1062
+ environmentId?: InputMaybe<StringFieldComparison>;
1063
+ featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
1064
+ featureType?: InputMaybe<FeatureTypeFilterComparison>;
1065
+ id?: InputMaybe<StringFieldComparison>;
1066
+ meterType?: InputMaybe<MeterTypeFilterComparison>;
1067
+ or?: InputMaybe<Array<FeatureFilter>>;
1068
+ refId?: InputMaybe<StringFieldComparison>;
1069
+ updatedAt?: InputMaybe<DateFieldComparison>;
954
1070
  };
955
1071
  export declare type FeatureInput = {
956
- additionalMetaData?: Maybe<Scalars['JSON']>;
957
- description?: Maybe<Scalars['String']>;
1072
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1073
+ description?: InputMaybe<Scalars['String']>;
958
1074
  displayName: Scalars['String'];
959
1075
  environmentId: Scalars['String'];
960
- featureStatus?: Maybe<FeatureStatus>;
1076
+ featureStatus?: InputMaybe<FeatureStatus>;
961
1077
  featureType: FeatureType;
962
- featureUnits?: Maybe<Scalars['String']>;
963
- featureUnitsPlural?: Maybe<Scalars['String']>;
964
- meterType?: Maybe<MeterType>;
1078
+ featureUnits?: InputMaybe<Scalars['String']>;
1079
+ featureUnitsPlural?: InputMaybe<Scalars['String']>;
1080
+ meterType?: InputMaybe<MeterType>;
965
1081
  refId: Scalars['String'];
966
1082
  };
967
1083
  export declare type FeatureSort = {
968
1084
  direction: SortDirection;
969
1085
  field: FeatureSortFields;
970
- nulls?: Maybe<SortNulls>;
1086
+ nulls?: InputMaybe<SortNulls>;
971
1087
  };
972
1088
  export declare enum FeatureSortFields {
973
1089
  CreatedAt = "createdAt",
@@ -988,20 +1104,20 @@ export declare enum FeatureStatus {
988
1104
  Suspended = "SUSPENDED"
989
1105
  }
990
1106
  export declare type FeatureStatusFilterComparison = {
991
- eq?: Maybe<FeatureStatus>;
992
- gt?: Maybe<FeatureStatus>;
993
- gte?: Maybe<FeatureStatus>;
994
- iLike?: Maybe<FeatureStatus>;
995
- in?: Maybe<Array<FeatureStatus>>;
996
- is?: Maybe<Scalars['Boolean']>;
997
- isNot?: Maybe<Scalars['Boolean']>;
998
- like?: Maybe<FeatureStatus>;
999
- lt?: Maybe<FeatureStatus>;
1000
- lte?: Maybe<FeatureStatus>;
1001
- neq?: Maybe<FeatureStatus>;
1002
- notILike?: Maybe<FeatureStatus>;
1003
- notIn?: Maybe<Array<FeatureStatus>>;
1004
- notLike?: Maybe<FeatureStatus>;
1107
+ eq?: InputMaybe<FeatureStatus>;
1108
+ gt?: InputMaybe<FeatureStatus>;
1109
+ gte?: InputMaybe<FeatureStatus>;
1110
+ iLike?: InputMaybe<FeatureStatus>;
1111
+ in?: InputMaybe<Array<FeatureStatus>>;
1112
+ is?: InputMaybe<Scalars['Boolean']>;
1113
+ isNot?: InputMaybe<Scalars['Boolean']>;
1114
+ like?: InputMaybe<FeatureStatus>;
1115
+ lt?: InputMaybe<FeatureStatus>;
1116
+ lte?: InputMaybe<FeatureStatus>;
1117
+ neq?: InputMaybe<FeatureStatus>;
1118
+ notILike?: InputMaybe<FeatureStatus>;
1119
+ notIn?: InputMaybe<Array<FeatureStatus>>;
1120
+ notLike?: InputMaybe<FeatureStatus>;
1005
1121
  };
1006
1122
  /** The type of the feature */
1007
1123
  export declare enum FeatureType {
@@ -1009,34 +1125,34 @@ export declare enum FeatureType {
1009
1125
  Number = "NUMBER"
1010
1126
  }
1011
1127
  export declare type FeatureTypeFilterComparison = {
1012
- eq?: Maybe<FeatureType>;
1013
- gt?: Maybe<FeatureType>;
1014
- gte?: Maybe<FeatureType>;
1015
- iLike?: Maybe<FeatureType>;
1016
- in?: Maybe<Array<FeatureType>>;
1017
- is?: Maybe<Scalars['Boolean']>;
1018
- isNot?: Maybe<Scalars['Boolean']>;
1019
- like?: Maybe<FeatureType>;
1020
- lt?: Maybe<FeatureType>;
1021
- lte?: Maybe<FeatureType>;
1022
- neq?: Maybe<FeatureType>;
1023
- notILike?: Maybe<FeatureType>;
1024
- notIn?: Maybe<Array<FeatureType>>;
1025
- notLike?: Maybe<FeatureType>;
1128
+ eq?: InputMaybe<FeatureType>;
1129
+ gt?: InputMaybe<FeatureType>;
1130
+ gte?: InputMaybe<FeatureType>;
1131
+ iLike?: InputMaybe<FeatureType>;
1132
+ in?: InputMaybe<Array<FeatureType>>;
1133
+ is?: InputMaybe<Scalars['Boolean']>;
1134
+ isNot?: InputMaybe<Scalars['Boolean']>;
1135
+ like?: InputMaybe<FeatureType>;
1136
+ lt?: InputMaybe<FeatureType>;
1137
+ lte?: InputMaybe<FeatureType>;
1138
+ neq?: InputMaybe<FeatureType>;
1139
+ notILike?: InputMaybe<FeatureType>;
1140
+ notIn?: InputMaybe<Array<FeatureType>>;
1141
+ notLike?: InputMaybe<FeatureType>;
1026
1142
  };
1027
1143
  export declare type FetchEntitlementQuery = {
1028
1144
  customerId: Scalars['String'];
1029
- environmentId?: Maybe<Scalars['String']>;
1145
+ environmentId?: InputMaybe<Scalars['String']>;
1030
1146
  featureId: Scalars['String'];
1031
- options?: Maybe<EntitlementOptions>;
1147
+ options?: InputMaybe<EntitlementOptions>;
1032
1148
  };
1033
1149
  export declare type FetchEntitlementsQuery = {
1034
1150
  customerId: Scalars['String'];
1035
- environmentId?: Maybe<Scalars['String']>;
1151
+ environmentId?: InputMaybe<Scalars['String']>;
1036
1152
  };
1037
1153
  export declare type FontVariantInput = {
1038
- fontSize?: Maybe<Scalars['Float']>;
1039
- fontWeight?: Maybe<FontWeight>;
1154
+ fontSize?: InputMaybe<Scalars['Float']>;
1155
+ fontWeight?: InputMaybe<FontWeight>;
1040
1156
  };
1041
1157
  /** Font weight */
1042
1158
  export declare enum FontWeight {
@@ -1045,35 +1161,35 @@ export declare enum FontWeight {
1045
1161
  }
1046
1162
  export declare type GetCustomerByRefIdInput = {
1047
1163
  customerId: Scalars['String'];
1048
- environmentId?: Maybe<Scalars['String']>;
1164
+ environmentId?: InputMaybe<Scalars['String']>;
1049
1165
  };
1050
1166
  export declare type GetPackageByRefIdInput = {
1051
1167
  environmentId: Scalars['String'];
1052
1168
  refId: Scalars['String'];
1053
- versionNumber?: Maybe<Scalars['Float']>;
1169
+ versionNumber?: InputMaybe<Scalars['Float']>;
1054
1170
  };
1055
1171
  export declare type GetPaywallInput = {
1056
- context?: Maybe<WidgetType>;
1057
- customerId?: Maybe<Scalars['String']>;
1058
- environmentId?: Maybe<Scalars['String']>;
1059
- productId?: Maybe<Scalars['String']>;
1172
+ context?: InputMaybe<WidgetType>;
1173
+ customerId?: InputMaybe<Scalars['String']>;
1174
+ environmentId?: InputMaybe<Scalars['String']>;
1175
+ productId?: InputMaybe<Scalars['String']>;
1060
1176
  };
1061
1177
  export declare type GetWidgetConfigurationInput = {
1062
- environmentId?: Maybe<Scalars['String']>;
1178
+ environmentId?: InputMaybe<Scalars['String']>;
1063
1179
  };
1064
1180
  export declare type HookFilter = {
1065
- and?: Maybe<Array<HookFilter>>;
1066
- createdAt?: Maybe<DateFieldComparison>;
1067
- endpoint?: Maybe<StringFieldComparison>;
1068
- environmentId?: Maybe<StringFieldComparison>;
1069
- id?: Maybe<StringFieldComparison>;
1070
- or?: Maybe<Array<HookFilter>>;
1071
- status?: Maybe<HookStatusFilterComparison>;
1181
+ and?: InputMaybe<Array<HookFilter>>;
1182
+ createdAt?: InputMaybe<DateFieldComparison>;
1183
+ endpoint?: InputMaybe<StringFieldComparison>;
1184
+ environmentId?: InputMaybe<StringFieldComparison>;
1185
+ id?: InputMaybe<StringFieldComparison>;
1186
+ or?: InputMaybe<Array<HookFilter>>;
1187
+ status?: InputMaybe<HookStatusFilterComparison>;
1072
1188
  };
1073
1189
  export declare type HookSort = {
1074
1190
  direction: SortDirection;
1075
1191
  field: HookSortFields;
1076
- nulls?: Maybe<SortNulls>;
1192
+ nulls?: InputMaybe<SortNulls>;
1077
1193
  };
1078
1194
  export declare enum HookSortFields {
1079
1195
  CreatedAt = "createdAt",
@@ -1088,67 +1204,67 @@ export declare enum HookStatus {
1088
1204
  Inactive = "INACTIVE"
1089
1205
  }
1090
1206
  export declare type HookStatusFilterComparison = {
1091
- eq?: Maybe<HookStatus>;
1092
- gt?: Maybe<HookStatus>;
1093
- gte?: Maybe<HookStatus>;
1094
- iLike?: Maybe<HookStatus>;
1095
- in?: Maybe<Array<HookStatus>>;
1096
- is?: Maybe<Scalars['Boolean']>;
1097
- isNot?: Maybe<Scalars['Boolean']>;
1098
- like?: Maybe<HookStatus>;
1099
- lt?: Maybe<HookStatus>;
1100
- lte?: Maybe<HookStatus>;
1101
- neq?: Maybe<HookStatus>;
1102
- notILike?: Maybe<HookStatus>;
1103
- notIn?: Maybe<Array<HookStatus>>;
1104
- notLike?: Maybe<HookStatus>;
1207
+ eq?: InputMaybe<HookStatus>;
1208
+ gt?: InputMaybe<HookStatus>;
1209
+ gte?: InputMaybe<HookStatus>;
1210
+ iLike?: InputMaybe<HookStatus>;
1211
+ in?: InputMaybe<Array<HookStatus>>;
1212
+ is?: InputMaybe<Scalars['Boolean']>;
1213
+ isNot?: InputMaybe<Scalars['Boolean']>;
1214
+ like?: InputMaybe<HookStatus>;
1215
+ lt?: InputMaybe<HookStatus>;
1216
+ lte?: InputMaybe<HookStatus>;
1217
+ neq?: InputMaybe<HookStatus>;
1218
+ notILike?: InputMaybe<HookStatus>;
1219
+ notIn?: InputMaybe<Array<HookStatus>>;
1220
+ notLike?: InputMaybe<HookStatus>;
1105
1221
  };
1106
1222
  export declare type HubspotCredentialsInput = {
1107
1223
  authorizationCode: Scalars['String'];
1108
- refreshToken?: Maybe<Scalars['String']>;
1224
+ refreshToken?: InputMaybe<Scalars['String']>;
1109
1225
  };
1110
1226
  export declare type ImportCustomerInput = {
1111
- additionalMetaData?: Maybe<Scalars['JSON']>;
1227
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1112
1228
  billingId: Scalars['String'];
1113
- customerId?: Maybe<Scalars['String']>;
1114
- email?: Maybe<Scalars['String']>;
1115
- environmentId?: Maybe<Scalars['String']>;
1116
- name?: Maybe<Scalars['String']>;
1117
- refId?: Maybe<Scalars['String']>;
1229
+ customerId?: InputMaybe<Scalars['String']>;
1230
+ email?: InputMaybe<Scalars['String']>;
1231
+ environmentId?: InputMaybe<Scalars['String']>;
1232
+ name?: InputMaybe<Scalars['String']>;
1233
+ refId?: InputMaybe<Scalars['String']>;
1118
1234
  };
1119
1235
  export declare type ImportIntegrationCatalogInput = {
1120
- billingModel?: Maybe<BillingModel>;
1236
+ billingModel?: InputMaybe<BillingModel>;
1121
1237
  entitySelectionMode: EntitySelectionMode;
1122
1238
  environmentId: Scalars['String'];
1123
- featureUnitName?: Maybe<Scalars['String']>;
1124
- featureUnitPluralName?: Maybe<Scalars['String']>;
1125
- plansSelectionBlacklist?: Maybe<Array<Scalars['String']>>;
1126
- plansSelectionWhitelist?: Maybe<Array<Scalars['String']>>;
1239
+ featureUnitName?: InputMaybe<Scalars['String']>;
1240
+ featureUnitPluralName?: InputMaybe<Scalars['String']>;
1241
+ plansSelectionBlacklist?: InputMaybe<Array<Scalars['String']>>;
1242
+ plansSelectionWhitelist?: InputMaybe<Array<Scalars['String']>>;
1127
1243
  productId: Scalars['String'];
1128
1244
  selectedAddonBillingIds: Array<Scalars['String']>;
1129
1245
  vendorIdentifier: VendorIdentifier;
1130
1246
  };
1131
1247
  export declare type ImportIntegrationCustomersInput = {
1132
- customersSelectionBlacklist?: Maybe<Array<Scalars['String']>>;
1133
- customersSelectionWhitelist?: Maybe<Array<Scalars['String']>>;
1248
+ customersSelectionBlacklist?: InputMaybe<Array<Scalars['String']>>;
1249
+ customersSelectionWhitelist?: InputMaybe<Array<Scalars['String']>>;
1134
1250
  entitySelectionMode: EntitySelectionMode;
1135
1251
  environmentId: Scalars['String'];
1136
1252
  productId: Scalars['String'];
1137
1253
  vendorIdentifier: VendorIdentifier;
1138
1254
  };
1139
1255
  export declare type ImportIntegrationTaskFilter = {
1140
- and?: Maybe<Array<ImportIntegrationTaskFilter>>;
1141
- createdAt?: Maybe<DateFieldComparison>;
1142
- environmentId?: Maybe<StringFieldComparison>;
1143
- id?: Maybe<StringFieldComparison>;
1144
- or?: Maybe<Array<ImportIntegrationTaskFilter>>;
1145
- status?: Maybe<TaskStatusFilterComparison>;
1146
- taskType?: Maybe<TaskTypeFilterComparison>;
1256
+ and?: InputMaybe<Array<ImportIntegrationTaskFilter>>;
1257
+ createdAt?: InputMaybe<DateFieldComparison>;
1258
+ environmentId?: InputMaybe<StringFieldComparison>;
1259
+ id?: InputMaybe<StringFieldComparison>;
1260
+ or?: InputMaybe<Array<ImportIntegrationTaskFilter>>;
1261
+ status?: InputMaybe<TaskStatusFilterComparison>;
1262
+ taskType?: InputMaybe<TaskTypeFilterComparison>;
1147
1263
  };
1148
1264
  export declare type ImportIntegrationTaskSort = {
1149
1265
  direction: SortDirection;
1150
1266
  field: ImportIntegrationTaskSortFields;
1151
- nulls?: Maybe<SortNulls>;
1267
+ nulls?: InputMaybe<SortNulls>;
1152
1268
  };
1153
1269
  export declare enum ImportIntegrationTaskSortFields {
1154
1270
  CreatedAt = "createdAt",
@@ -1159,50 +1275,50 @@ export declare enum ImportIntegrationTaskSortFields {
1159
1275
  }
1160
1276
  export declare type InitAddStripeCustomerPaymentMethodInput = {
1161
1277
  customerRefId: Scalars['String'];
1162
- environmentId?: Maybe<Scalars['String']>;
1278
+ environmentId?: InputMaybe<Scalars['String']>;
1163
1279
  };
1164
1280
  export declare type InitiateCheckoutInput = {
1165
- addons?: Maybe<Array<SubscriptionAddonInput>>;
1166
- allowPromoCodes?: Maybe<Scalars['Boolean']>;
1167
- allowTaxIdCollection?: Maybe<Scalars['Boolean']>;
1281
+ addons?: InputMaybe<Array<SubscriptionAddonInput>>;
1282
+ allowPromoCodes?: InputMaybe<Scalars['Boolean']>;
1283
+ allowTaxIdCollection?: InputMaybe<Scalars['Boolean']>;
1168
1284
  billingPeriod: BillingPeriod;
1169
1285
  cancelUrl: Scalars['String'];
1170
- collectBillingAddress?: Maybe<Scalars['Boolean']>;
1286
+ collectBillingAddress?: InputMaybe<Scalars['Boolean']>;
1171
1287
  customerId: Scalars['String'];
1172
1288
  planId: Scalars['String'];
1173
1289
  successUrl: Scalars['String'];
1174
- unitQuantity?: Maybe<Scalars['Int']>;
1290
+ unitQuantity?: InputMaybe<Scalars['Int']>;
1175
1291
  };
1176
1292
  export declare type IntFieldComparison = {
1177
- between?: Maybe<IntFieldComparisonBetween>;
1178
- eq?: Maybe<Scalars['Int']>;
1179
- gt?: Maybe<Scalars['Int']>;
1180
- gte?: Maybe<Scalars['Int']>;
1181
- in?: Maybe<Array<Scalars['Int']>>;
1182
- is?: Maybe<Scalars['Boolean']>;
1183
- isNot?: Maybe<Scalars['Boolean']>;
1184
- lt?: Maybe<Scalars['Int']>;
1185
- lte?: Maybe<Scalars['Int']>;
1186
- neq?: Maybe<Scalars['Int']>;
1187
- notBetween?: Maybe<IntFieldComparisonBetween>;
1188
- notIn?: Maybe<Array<Scalars['Int']>>;
1293
+ between?: InputMaybe<IntFieldComparisonBetween>;
1294
+ eq?: InputMaybe<Scalars['Int']>;
1295
+ gt?: InputMaybe<Scalars['Int']>;
1296
+ gte?: InputMaybe<Scalars['Int']>;
1297
+ in?: InputMaybe<Array<Scalars['Int']>>;
1298
+ is?: InputMaybe<Scalars['Boolean']>;
1299
+ isNot?: InputMaybe<Scalars['Boolean']>;
1300
+ lt?: InputMaybe<Scalars['Int']>;
1301
+ lte?: InputMaybe<Scalars['Int']>;
1302
+ neq?: InputMaybe<Scalars['Int']>;
1303
+ notBetween?: InputMaybe<IntFieldComparisonBetween>;
1304
+ notIn?: InputMaybe<Array<Scalars['Int']>>;
1189
1305
  };
1190
1306
  export declare type IntFieldComparisonBetween = {
1191
1307
  lower: Scalars['Int'];
1192
1308
  upper: Scalars['Int'];
1193
1309
  };
1194
1310
  export declare type IntegrationFilter = {
1195
- and?: Maybe<Array<IntegrationFilter>>;
1196
- createdAt?: Maybe<DateFieldComparison>;
1197
- environmentId?: Maybe<StringFieldComparison>;
1198
- id?: Maybe<StringFieldComparison>;
1199
- or?: Maybe<Array<IntegrationFilter>>;
1200
- vendorIdentifier?: Maybe<VendorIdentifierFilterComparison>;
1311
+ and?: InputMaybe<Array<IntegrationFilter>>;
1312
+ createdAt?: InputMaybe<DateFieldComparison>;
1313
+ environmentId?: InputMaybe<StringFieldComparison>;
1314
+ id?: InputMaybe<StringFieldComparison>;
1315
+ or?: InputMaybe<Array<IntegrationFilter>>;
1316
+ vendorIdentifier?: InputMaybe<VendorIdentifierFilterComparison>;
1201
1317
  };
1202
1318
  export declare type IntegrationSort = {
1203
1319
  direction: SortDirection;
1204
1320
  field: IntegrationSortFields;
1205
- nulls?: Maybe<SortNulls>;
1321
+ nulls?: InputMaybe<SortNulls>;
1206
1322
  };
1207
1323
  export declare enum IntegrationSortFields {
1208
1324
  CreatedAt = "createdAt",
@@ -1211,15 +1327,15 @@ export declare enum IntegrationSortFields {
1211
1327
  VendorIdentifier = "vendorIdentifier"
1212
1328
  }
1213
1329
  export declare type MemberFilter = {
1214
- and?: Maybe<Array<MemberFilter>>;
1215
- createdAt?: Maybe<DateFieldComparison>;
1216
- id?: Maybe<StringFieldComparison>;
1217
- or?: Maybe<Array<MemberFilter>>;
1330
+ and?: InputMaybe<Array<MemberFilter>>;
1331
+ createdAt?: InputMaybe<DateFieldComparison>;
1332
+ id?: InputMaybe<StringFieldComparison>;
1333
+ or?: InputMaybe<Array<MemberFilter>>;
1218
1334
  };
1219
1335
  export declare type MemberSort = {
1220
1336
  direction: SortDirection;
1221
1337
  field: MemberSortFields;
1222
- nulls?: Maybe<SortNulls>;
1338
+ nulls?: InputMaybe<SortNulls>;
1223
1339
  };
1224
1340
  export declare enum MemberSortFields {
1225
1341
  CreatedAt = "createdAt",
@@ -1237,24 +1353,24 @@ export declare enum MeterType {
1237
1353
  None = "None"
1238
1354
  }
1239
1355
  export declare type MeterTypeFilterComparison = {
1240
- eq?: Maybe<MeterType>;
1241
- gt?: Maybe<MeterType>;
1242
- gte?: Maybe<MeterType>;
1243
- iLike?: Maybe<MeterType>;
1244
- in?: Maybe<Array<MeterType>>;
1245
- is?: Maybe<Scalars['Boolean']>;
1246
- isNot?: Maybe<Scalars['Boolean']>;
1247
- like?: Maybe<MeterType>;
1248
- lt?: Maybe<MeterType>;
1249
- lte?: Maybe<MeterType>;
1250
- neq?: Maybe<MeterType>;
1251
- notILike?: Maybe<MeterType>;
1252
- notIn?: Maybe<Array<MeterType>>;
1253
- notLike?: Maybe<MeterType>;
1356
+ eq?: InputMaybe<MeterType>;
1357
+ gt?: InputMaybe<MeterType>;
1358
+ gte?: InputMaybe<MeterType>;
1359
+ iLike?: InputMaybe<MeterType>;
1360
+ in?: InputMaybe<Array<MeterType>>;
1361
+ is?: InputMaybe<Scalars['Boolean']>;
1362
+ isNot?: InputMaybe<Scalars['Boolean']>;
1363
+ like?: InputMaybe<MeterType>;
1364
+ lt?: InputMaybe<MeterType>;
1365
+ lte?: InputMaybe<MeterType>;
1366
+ neq?: InputMaybe<MeterType>;
1367
+ notILike?: InputMaybe<MeterType>;
1368
+ notIn?: InputMaybe<Array<MeterType>>;
1369
+ notLike?: InputMaybe<MeterType>;
1254
1370
  };
1255
1371
  export declare type MoneyInputDto = {
1256
1372
  amount: Scalars['Float'];
1257
- currency?: Maybe<Currency>;
1373
+ currency?: InputMaybe<Currency>;
1258
1374
  };
1259
1375
  /** Montly reset period according to configuration */
1260
1376
  export declare enum MonthlyAccordingTo {
@@ -1265,44 +1381,44 @@ export declare type MonthlyResetPeriodConfigInput = {
1265
1381
  accordingTo: MonthlyAccordingTo;
1266
1382
  };
1267
1383
  export declare type NumberFieldComparison = {
1268
- between?: Maybe<NumberFieldComparisonBetween>;
1269
- eq?: Maybe<Scalars['Float']>;
1270
- gt?: Maybe<Scalars['Float']>;
1271
- gte?: Maybe<Scalars['Float']>;
1272
- in?: Maybe<Array<Scalars['Float']>>;
1273
- is?: Maybe<Scalars['Boolean']>;
1274
- isNot?: Maybe<Scalars['Boolean']>;
1275
- lt?: Maybe<Scalars['Float']>;
1276
- lte?: Maybe<Scalars['Float']>;
1277
- neq?: Maybe<Scalars['Float']>;
1278
- notBetween?: Maybe<NumberFieldComparisonBetween>;
1279
- notIn?: Maybe<Array<Scalars['Float']>>;
1384
+ between?: InputMaybe<NumberFieldComparisonBetween>;
1385
+ eq?: InputMaybe<Scalars['Float']>;
1386
+ gt?: InputMaybe<Scalars['Float']>;
1387
+ gte?: InputMaybe<Scalars['Float']>;
1388
+ in?: InputMaybe<Array<Scalars['Float']>>;
1389
+ is?: InputMaybe<Scalars['Boolean']>;
1390
+ isNot?: InputMaybe<Scalars['Boolean']>;
1391
+ lt?: InputMaybe<Scalars['Float']>;
1392
+ lte?: InputMaybe<Scalars['Float']>;
1393
+ neq?: InputMaybe<Scalars['Float']>;
1394
+ notBetween?: InputMaybe<NumberFieldComparisonBetween>;
1395
+ notIn?: InputMaybe<Array<Scalars['Float']>>;
1280
1396
  };
1281
1397
  export declare type NumberFieldComparisonBetween = {
1282
1398
  lower: Scalars['Float'];
1283
1399
  upper: Scalars['Float'];
1284
1400
  };
1285
1401
  export declare type PackageDtoFilter = {
1286
- and?: Maybe<Array<PackageDtoFilter>>;
1287
- billingId?: Maybe<StringFieldComparison>;
1288
- createdAt?: Maybe<DateFieldComparison>;
1289
- description?: Maybe<StringFieldComparison>;
1290
- displayName?: Maybe<StringFieldComparison>;
1291
- environmentId?: Maybe<StringFieldComparison>;
1292
- id?: Maybe<StringFieldComparison>;
1293
- isLatest?: Maybe<BooleanFieldComparison>;
1294
- or?: Maybe<Array<PackageDtoFilter>>;
1295
- pricingType?: Maybe<PricingTypeFilterComparison>;
1296
- productId?: Maybe<StringFieldComparison>;
1297
- refId?: Maybe<StringFieldComparison>;
1298
- status?: Maybe<PackageStatusFilterComparison>;
1299
- updatedAt?: Maybe<DateFieldComparison>;
1300
- versionNumber?: Maybe<IntFieldComparison>;
1402
+ and?: InputMaybe<Array<PackageDtoFilter>>;
1403
+ billingId?: InputMaybe<StringFieldComparison>;
1404
+ createdAt?: InputMaybe<DateFieldComparison>;
1405
+ description?: InputMaybe<StringFieldComparison>;
1406
+ displayName?: InputMaybe<StringFieldComparison>;
1407
+ environmentId?: InputMaybe<StringFieldComparison>;
1408
+ id?: InputMaybe<StringFieldComparison>;
1409
+ isLatest?: InputMaybe<BooleanFieldComparison>;
1410
+ or?: InputMaybe<Array<PackageDtoFilter>>;
1411
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
1412
+ productId?: InputMaybe<StringFieldComparison>;
1413
+ refId?: InputMaybe<StringFieldComparison>;
1414
+ status?: InputMaybe<PackageStatusFilterComparison>;
1415
+ updatedAt?: InputMaybe<DateFieldComparison>;
1416
+ versionNumber?: InputMaybe<IntFieldComparison>;
1301
1417
  };
1302
1418
  export declare type PackageDtoSort = {
1303
1419
  direction: SortDirection;
1304
1420
  field: PackageDtoSortFields;
1305
- nulls?: Maybe<SortNulls>;
1421
+ nulls?: InputMaybe<SortNulls>;
1306
1422
  };
1307
1423
  export declare enum PackageDtoSortFields {
1308
1424
  BillingId = "billingId",
@@ -1320,66 +1436,66 @@ export declare enum PackageDtoSortFields {
1320
1436
  VersionNumber = "versionNumber"
1321
1437
  }
1322
1438
  export declare type PackageEntitlementFilter = {
1323
- and?: Maybe<Array<PackageEntitlementFilter>>;
1324
- createdAt?: Maybe<DateFieldComparison>;
1325
- environmentId?: Maybe<StringFieldComparison>;
1326
- feature?: Maybe<PackageEntitlementFilterFeatureFilter>;
1327
- id?: Maybe<StringFieldComparison>;
1328
- or?: Maybe<Array<PackageEntitlementFilter>>;
1329
- package?: Maybe<PackageEntitlementFilterPackageDtoFilter>;
1330
- packageId?: Maybe<StringFieldComparison>;
1331
- updatedAt?: Maybe<DateFieldComparison>;
1439
+ and?: InputMaybe<Array<PackageEntitlementFilter>>;
1440
+ createdAt?: InputMaybe<DateFieldComparison>;
1441
+ environmentId?: InputMaybe<StringFieldComparison>;
1442
+ feature?: InputMaybe<PackageEntitlementFilterFeatureFilter>;
1443
+ id?: InputMaybe<StringFieldComparison>;
1444
+ or?: InputMaybe<Array<PackageEntitlementFilter>>;
1445
+ package?: InputMaybe<PackageEntitlementFilterPackageDtoFilter>;
1446
+ packageId?: InputMaybe<StringFieldComparison>;
1447
+ updatedAt?: InputMaybe<DateFieldComparison>;
1332
1448
  };
1333
1449
  export declare type PackageEntitlementFilterFeatureFilter = {
1334
- and?: Maybe<Array<PackageEntitlementFilterFeatureFilter>>;
1335
- createdAt?: Maybe<DateFieldComparison>;
1336
- description?: Maybe<StringFieldComparison>;
1337
- displayName?: Maybe<StringFieldComparison>;
1338
- environmentId?: Maybe<StringFieldComparison>;
1339
- featureStatus?: Maybe<FeatureStatusFilterComparison>;
1340
- featureType?: Maybe<FeatureTypeFilterComparison>;
1341
- id?: Maybe<StringFieldComparison>;
1342
- meterType?: Maybe<MeterTypeFilterComparison>;
1343
- or?: Maybe<Array<PackageEntitlementFilterFeatureFilter>>;
1344
- refId?: Maybe<StringFieldComparison>;
1345
- updatedAt?: Maybe<DateFieldComparison>;
1450
+ and?: InputMaybe<Array<PackageEntitlementFilterFeatureFilter>>;
1451
+ createdAt?: InputMaybe<DateFieldComparison>;
1452
+ description?: InputMaybe<StringFieldComparison>;
1453
+ displayName?: InputMaybe<StringFieldComparison>;
1454
+ environmentId?: InputMaybe<StringFieldComparison>;
1455
+ featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
1456
+ featureType?: InputMaybe<FeatureTypeFilterComparison>;
1457
+ id?: InputMaybe<StringFieldComparison>;
1458
+ meterType?: InputMaybe<MeterTypeFilterComparison>;
1459
+ or?: InputMaybe<Array<PackageEntitlementFilterFeatureFilter>>;
1460
+ refId?: InputMaybe<StringFieldComparison>;
1461
+ updatedAt?: InputMaybe<DateFieldComparison>;
1346
1462
  };
1347
1463
  export declare type PackageEntitlementFilterPackageDtoFilter = {
1348
- and?: Maybe<Array<PackageEntitlementFilterPackageDtoFilter>>;
1349
- billingId?: Maybe<StringFieldComparison>;
1350
- createdAt?: Maybe<DateFieldComparison>;
1351
- description?: Maybe<StringFieldComparison>;
1352
- displayName?: Maybe<StringFieldComparison>;
1353
- environmentId?: Maybe<StringFieldComparison>;
1354
- id?: Maybe<StringFieldComparison>;
1355
- isLatest?: Maybe<BooleanFieldComparison>;
1356
- or?: Maybe<Array<PackageEntitlementFilterPackageDtoFilter>>;
1357
- pricingType?: Maybe<PricingTypeFilterComparison>;
1358
- productId?: Maybe<StringFieldComparison>;
1359
- refId?: Maybe<StringFieldComparison>;
1360
- status?: Maybe<PackageStatusFilterComparison>;
1361
- updatedAt?: Maybe<DateFieldComparison>;
1362
- versionNumber?: Maybe<IntFieldComparison>;
1464
+ and?: InputMaybe<Array<PackageEntitlementFilterPackageDtoFilter>>;
1465
+ billingId?: InputMaybe<StringFieldComparison>;
1466
+ createdAt?: InputMaybe<DateFieldComparison>;
1467
+ description?: InputMaybe<StringFieldComparison>;
1468
+ displayName?: InputMaybe<StringFieldComparison>;
1469
+ environmentId?: InputMaybe<StringFieldComparison>;
1470
+ id?: InputMaybe<StringFieldComparison>;
1471
+ isLatest?: InputMaybe<BooleanFieldComparison>;
1472
+ or?: InputMaybe<Array<PackageEntitlementFilterPackageDtoFilter>>;
1473
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
1474
+ productId?: InputMaybe<StringFieldComparison>;
1475
+ refId?: InputMaybe<StringFieldComparison>;
1476
+ status?: InputMaybe<PackageStatusFilterComparison>;
1477
+ updatedAt?: InputMaybe<DateFieldComparison>;
1478
+ versionNumber?: InputMaybe<IntFieldComparison>;
1363
1479
  };
1364
1480
  export declare type PackageEntitlementInput = {
1365
- description?: Maybe<Scalars['String']>;
1366
- displayNameOverride?: Maybe<Scalars['String']>;
1481
+ description?: InputMaybe<Scalars['String']>;
1482
+ displayNameOverride?: InputMaybe<Scalars['String']>;
1367
1483
  environmentId: Scalars['String'];
1368
1484
  featureId: Scalars['String'];
1369
- hasUnlimitedUsage?: Maybe<Scalars['Boolean']>;
1370
- hiddenFromWidgets?: Maybe<Array<WidgetType>>;
1371
- isCustom?: Maybe<Scalars['Boolean']>;
1372
- monthlyResetPeriodConfiguration?: Maybe<MonthlyResetPeriodConfigInput>;
1373
- order?: Maybe<Scalars['Float']>;
1485
+ hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
1486
+ hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
1487
+ isCustom?: InputMaybe<Scalars['Boolean']>;
1488
+ monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
1489
+ order?: InputMaybe<Scalars['Float']>;
1374
1490
  packageId: Scalars['String'];
1375
- resetPeriod?: Maybe<EntitlementResetPeriod>;
1376
- usageLimit?: Maybe<Scalars['Float']>;
1377
- weeklyResetPeriodConfiguration?: Maybe<WeeklyResetPeriodConfigInput>;
1491
+ resetPeriod?: InputMaybe<EntitlementResetPeriod>;
1492
+ usageLimit?: InputMaybe<Scalars['Float']>;
1493
+ weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
1378
1494
  };
1379
1495
  export declare type PackageEntitlementSort = {
1380
1496
  direction: SortDirection;
1381
1497
  field: PackageEntitlementSortFields;
1382
- nulls?: Maybe<SortNulls>;
1498
+ nulls?: InputMaybe<SortNulls>;
1383
1499
  };
1384
1500
  export declare enum PackageEntitlementSortFields {
1385
1501
  CreatedAt = "createdAt",
@@ -1389,21 +1505,21 @@ export declare enum PackageEntitlementSortFields {
1389
1505
  UpdatedAt = "updatedAt"
1390
1506
  }
1391
1507
  export declare type PackageEntitlementUpdateInput = {
1392
- description?: Maybe<Scalars['String']>;
1393
- displayNameOverride?: Maybe<Scalars['String']>;
1394
- hasUnlimitedUsage?: Maybe<Scalars['Boolean']>;
1395
- hiddenFromWidgets?: Maybe<Array<WidgetType>>;
1396
- isCustom?: Maybe<Scalars['Boolean']>;
1397
- monthlyResetPeriodConfiguration?: Maybe<MonthlyResetPeriodConfigInput>;
1398
- order?: Maybe<Scalars['Float']>;
1399
- resetPeriod?: Maybe<EntitlementResetPeriod>;
1400
- usageLimit?: Maybe<Scalars['Float']>;
1401
- weeklyResetPeriodConfiguration?: Maybe<WeeklyResetPeriodConfigInput>;
1508
+ description?: InputMaybe<Scalars['String']>;
1509
+ displayNameOverride?: InputMaybe<Scalars['String']>;
1510
+ hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
1511
+ hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
1512
+ isCustom?: InputMaybe<Scalars['Boolean']>;
1513
+ monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
1514
+ order?: InputMaybe<Scalars['Float']>;
1515
+ resetPeriod?: InputMaybe<EntitlementResetPeriod>;
1516
+ usageLimit?: InputMaybe<Scalars['Float']>;
1517
+ weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
1402
1518
  };
1403
1519
  export declare type PackagePricingInput = {
1404
1520
  environmentId: Scalars['String'];
1405
1521
  packageId: Scalars['String'];
1406
- pricingModel?: Maybe<PricingModelCreateInput>;
1522
+ pricingModel?: InputMaybe<PricingModelCreateInput>;
1407
1523
  pricingType: PricingType;
1408
1524
  };
1409
1525
  export declare type PackagePublishInput = {
@@ -1417,20 +1533,20 @@ export declare enum PackageStatus {
1417
1533
  Published = "PUBLISHED"
1418
1534
  }
1419
1535
  export declare type PackageStatusFilterComparison = {
1420
- eq?: Maybe<PackageStatus>;
1421
- gt?: Maybe<PackageStatus>;
1422
- gte?: Maybe<PackageStatus>;
1423
- iLike?: Maybe<PackageStatus>;
1424
- in?: Maybe<Array<PackageStatus>>;
1425
- is?: Maybe<Scalars['Boolean']>;
1426
- isNot?: Maybe<Scalars['Boolean']>;
1427
- like?: Maybe<PackageStatus>;
1428
- lt?: Maybe<PackageStatus>;
1429
- lte?: Maybe<PackageStatus>;
1430
- neq?: Maybe<PackageStatus>;
1431
- notILike?: Maybe<PackageStatus>;
1432
- notIn?: Maybe<Array<PackageStatus>>;
1433
- notLike?: Maybe<PackageStatus>;
1536
+ eq?: InputMaybe<PackageStatus>;
1537
+ gt?: InputMaybe<PackageStatus>;
1538
+ gte?: InputMaybe<PackageStatus>;
1539
+ iLike?: InputMaybe<PackageStatus>;
1540
+ in?: InputMaybe<Array<PackageStatus>>;
1541
+ is?: InputMaybe<Scalars['Boolean']>;
1542
+ isNot?: InputMaybe<Scalars['Boolean']>;
1543
+ like?: InputMaybe<PackageStatus>;
1544
+ lt?: InputMaybe<PackageStatus>;
1545
+ lte?: InputMaybe<PackageStatus>;
1546
+ neq?: InputMaybe<PackageStatus>;
1547
+ notILike?: InputMaybe<PackageStatus>;
1548
+ notIn?: InputMaybe<Array<PackageStatus>>;
1549
+ notLike?: InputMaybe<PackageStatus>;
1434
1550
  };
1435
1551
  /** Type of a payment method */
1436
1552
  export declare enum PaymentMethodType {
@@ -1438,87 +1554,87 @@ export declare enum PaymentMethodType {
1438
1554
  Card = "CARD"
1439
1555
  }
1440
1556
  export declare type PaywallColorsPaletteInput = {
1441
- backgroundColor?: Maybe<Scalars['String']>;
1442
- borderColor?: Maybe<Scalars['String']>;
1443
- currentPlanBackground?: Maybe<Scalars['String']>;
1444
- primary?: Maybe<Scalars['String']>;
1445
- textColor?: Maybe<Scalars['String']>;
1557
+ backgroundColor?: InputMaybe<Scalars['String']>;
1558
+ borderColor?: InputMaybe<Scalars['String']>;
1559
+ currentPlanBackground?: InputMaybe<Scalars['String']>;
1560
+ primary?: InputMaybe<Scalars['String']>;
1561
+ textColor?: InputMaybe<Scalars['String']>;
1446
1562
  };
1447
1563
  export declare type PaywallConfigurationInput = {
1448
- layout?: Maybe<PaywallLayoutConfigurationInput>;
1449
- palette?: Maybe<PaywallColorsPaletteInput>;
1450
- typography?: Maybe<TypographyConfigurationInput>;
1564
+ layout?: InputMaybe<PaywallLayoutConfigurationInput>;
1565
+ palette?: InputMaybe<PaywallColorsPaletteInput>;
1566
+ typography?: InputMaybe<TypographyConfigurationInput>;
1451
1567
  };
1452
1568
  export declare type PaywallLayoutConfigurationInput = {
1453
- alignment?: Maybe<Alignment>;
1454
- planMargin?: Maybe<Scalars['Float']>;
1455
- planPadding?: Maybe<Scalars['Float']>;
1456
- planWidth?: Maybe<Scalars['Float']>;
1569
+ alignment?: InputMaybe<Alignment>;
1570
+ planMargin?: InputMaybe<Scalars['Float']>;
1571
+ planPadding?: InputMaybe<Scalars['Float']>;
1572
+ planWidth?: InputMaybe<Scalars['Float']>;
1457
1573
  };
1458
1574
  export declare type PlanCreateInput = {
1459
- additionalMetaData?: Maybe<Scalars['JSON']>;
1460
- billingId?: Maybe<Scalars['String']>;
1461
- description?: Maybe<Scalars['String']>;
1575
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1576
+ billingId?: InputMaybe<Scalars['String']>;
1577
+ description?: InputMaybe<Scalars['String']>;
1462
1578
  displayName: Scalars['String'];
1463
- environmentId?: Maybe<Scalars['String']>;
1464
- hiddenFromWidgets?: Maybe<Array<WidgetType>>;
1465
- parentPlanId?: Maybe<Scalars['String']>;
1579
+ environmentId?: InputMaybe<Scalars['String']>;
1580
+ hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
1581
+ parentPlanId?: InputMaybe<Scalars['String']>;
1466
1582
  productId: Scalars['String'];
1467
- refId?: Maybe<Scalars['String']>;
1468
- status?: Maybe<PackageStatus>;
1583
+ refId?: InputMaybe<Scalars['String']>;
1584
+ status?: InputMaybe<PackageStatus>;
1469
1585
  };
1470
1586
  export declare type PlanFilter = {
1471
- and?: Maybe<Array<PlanFilter>>;
1472
- billingId?: Maybe<StringFieldComparison>;
1473
- compatibleAddons?: Maybe<PlanFilterAddonFilter>;
1474
- createdAt?: Maybe<DateFieldComparison>;
1475
- description?: Maybe<StringFieldComparison>;
1476
- displayName?: Maybe<StringFieldComparison>;
1477
- environmentId?: Maybe<StringFieldComparison>;
1478
- id?: Maybe<StringFieldComparison>;
1479
- isLatest?: Maybe<BooleanFieldComparison>;
1480
- or?: Maybe<Array<PlanFilter>>;
1481
- pricingType?: Maybe<PricingTypeFilterComparison>;
1482
- product?: Maybe<PlanFilterProductFilter>;
1483
- productId?: Maybe<StringFieldComparison>;
1484
- refId?: Maybe<StringFieldComparison>;
1485
- status?: Maybe<PackageStatusFilterComparison>;
1486
- updatedAt?: Maybe<DateFieldComparison>;
1487
- versionNumber?: Maybe<IntFieldComparison>;
1587
+ and?: InputMaybe<Array<PlanFilter>>;
1588
+ billingId?: InputMaybe<StringFieldComparison>;
1589
+ compatibleAddons?: InputMaybe<PlanFilterAddonFilter>;
1590
+ createdAt?: InputMaybe<DateFieldComparison>;
1591
+ description?: InputMaybe<StringFieldComparison>;
1592
+ displayName?: InputMaybe<StringFieldComparison>;
1593
+ environmentId?: InputMaybe<StringFieldComparison>;
1594
+ id?: InputMaybe<StringFieldComparison>;
1595
+ isLatest?: InputMaybe<BooleanFieldComparison>;
1596
+ or?: InputMaybe<Array<PlanFilter>>;
1597
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
1598
+ product?: InputMaybe<PlanFilterProductFilter>;
1599
+ productId?: InputMaybe<StringFieldComparison>;
1600
+ refId?: InputMaybe<StringFieldComparison>;
1601
+ status?: InputMaybe<PackageStatusFilterComparison>;
1602
+ updatedAt?: InputMaybe<DateFieldComparison>;
1603
+ versionNumber?: InputMaybe<IntFieldComparison>;
1488
1604
  };
1489
1605
  export declare type PlanFilterAddonFilter = {
1490
- and?: Maybe<Array<PlanFilterAddonFilter>>;
1491
- billingId?: Maybe<StringFieldComparison>;
1492
- createdAt?: Maybe<DateFieldComparison>;
1493
- description?: Maybe<StringFieldComparison>;
1494
- displayName?: Maybe<StringFieldComparison>;
1495
- environmentId?: Maybe<StringFieldComparison>;
1496
- id?: Maybe<StringFieldComparison>;
1497
- isLatest?: Maybe<BooleanFieldComparison>;
1498
- or?: Maybe<Array<PlanFilterAddonFilter>>;
1499
- pricingType?: Maybe<PricingTypeFilterComparison>;
1500
- productId?: Maybe<StringFieldComparison>;
1501
- refId?: Maybe<StringFieldComparison>;
1502
- status?: Maybe<PackageStatusFilterComparison>;
1503
- updatedAt?: Maybe<DateFieldComparison>;
1504
- versionNumber?: Maybe<IntFieldComparison>;
1606
+ and?: InputMaybe<Array<PlanFilterAddonFilter>>;
1607
+ billingId?: InputMaybe<StringFieldComparison>;
1608
+ createdAt?: InputMaybe<DateFieldComparison>;
1609
+ description?: InputMaybe<StringFieldComparison>;
1610
+ displayName?: InputMaybe<StringFieldComparison>;
1611
+ environmentId?: InputMaybe<StringFieldComparison>;
1612
+ id?: InputMaybe<StringFieldComparison>;
1613
+ isLatest?: InputMaybe<BooleanFieldComparison>;
1614
+ or?: InputMaybe<Array<PlanFilterAddonFilter>>;
1615
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
1616
+ productId?: InputMaybe<StringFieldComparison>;
1617
+ refId?: InputMaybe<StringFieldComparison>;
1618
+ status?: InputMaybe<PackageStatusFilterComparison>;
1619
+ updatedAt?: InputMaybe<DateFieldComparison>;
1620
+ versionNumber?: InputMaybe<IntFieldComparison>;
1505
1621
  };
1506
1622
  export declare type PlanFilterProductFilter = {
1507
- and?: Maybe<Array<PlanFilterProductFilter>>;
1508
- createdAt?: Maybe<DateFieldComparison>;
1509
- description?: Maybe<StringFieldComparison>;
1510
- displayName?: Maybe<StringFieldComparison>;
1511
- environmentId?: Maybe<StringFieldComparison>;
1512
- id?: Maybe<StringFieldComparison>;
1513
- isDefaultProduct?: Maybe<BooleanFieldComparison>;
1514
- or?: Maybe<Array<PlanFilterProductFilter>>;
1515
- refId?: Maybe<StringFieldComparison>;
1516
- updatedAt?: Maybe<DateFieldComparison>;
1623
+ and?: InputMaybe<Array<PlanFilterProductFilter>>;
1624
+ createdAt?: InputMaybe<DateFieldComparison>;
1625
+ description?: InputMaybe<StringFieldComparison>;
1626
+ displayName?: InputMaybe<StringFieldComparison>;
1627
+ environmentId?: InputMaybe<StringFieldComparison>;
1628
+ id?: InputMaybe<StringFieldComparison>;
1629
+ isDefaultProduct?: InputMaybe<BooleanFieldComparison>;
1630
+ or?: InputMaybe<Array<PlanFilterProductFilter>>;
1631
+ refId?: InputMaybe<StringFieldComparison>;
1632
+ updatedAt?: InputMaybe<DateFieldComparison>;
1517
1633
  };
1518
1634
  export declare type PlanSort = {
1519
1635
  direction: SortDirection;
1520
1636
  field: PlanSortFields;
1521
- nulls?: Maybe<SortNulls>;
1637
+ nulls?: InputMaybe<SortNulls>;
1522
1638
  };
1523
1639
  export declare enum PlanSortFields {
1524
1640
  BillingId = "billingId",
@@ -1536,51 +1652,52 @@ export declare enum PlanSortFields {
1536
1652
  VersionNumber = "versionNumber"
1537
1653
  }
1538
1654
  export declare type PlanUpdateInput = {
1539
- additionalMetaData?: Maybe<Scalars['JSON']>;
1540
- billingId?: Maybe<Scalars['String']>;
1541
- defaultTrialConfig?: Maybe<DefaultTrialConfigInputDto>;
1542
- description?: Maybe<Scalars['String']>;
1543
- displayName?: Maybe<Scalars['String']>;
1544
- hiddenFromWidgets?: Maybe<Array<WidgetType>>;
1655
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1656
+ billingId?: InputMaybe<Scalars['String']>;
1657
+ defaultTrialConfig?: InputMaybe<DefaultTrialConfigInputDto>;
1658
+ description?: InputMaybe<Scalars['String']>;
1659
+ displayName?: InputMaybe<Scalars['String']>;
1660
+ hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
1545
1661
  id: Scalars['String'];
1546
- parentPlanId?: Maybe<Scalars['String']>;
1547
- status?: Maybe<PackageStatus>;
1662
+ parentPlanId?: InputMaybe<Scalars['String']>;
1663
+ status?: InputMaybe<PackageStatus>;
1548
1664
  };
1549
1665
  export declare type PriceFilter = {
1550
- and?: Maybe<Array<PriceFilter>>;
1551
- billingId?: Maybe<StringFieldComparison>;
1552
- billingModel?: Maybe<BillingModelFilterComparison>;
1553
- billingPeriod?: Maybe<BillingPeriodFilterComparison>;
1554
- createdAt?: Maybe<DateFieldComparison>;
1555
- id?: Maybe<StringFieldComparison>;
1556
- or?: Maybe<Array<PriceFilter>>;
1557
- package?: Maybe<PriceFilterPackageDtoFilter>;
1666
+ and?: InputMaybe<Array<PriceFilter>>;
1667
+ billingId?: InputMaybe<StringFieldComparison>;
1668
+ billingModel?: InputMaybe<BillingModelFilterComparison>;
1669
+ billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
1670
+ createdAt?: InputMaybe<DateFieldComparison>;
1671
+ id?: InputMaybe<StringFieldComparison>;
1672
+ or?: InputMaybe<Array<PriceFilter>>;
1673
+ package?: InputMaybe<PriceFilterPackageDtoFilter>;
1558
1674
  };
1559
1675
  export declare type PriceFilterPackageDtoFilter = {
1560
- and?: Maybe<Array<PriceFilterPackageDtoFilter>>;
1561
- billingId?: Maybe<StringFieldComparison>;
1562
- createdAt?: Maybe<DateFieldComparison>;
1563
- description?: Maybe<StringFieldComparison>;
1564
- displayName?: Maybe<StringFieldComparison>;
1565
- environmentId?: Maybe<StringFieldComparison>;
1566
- id?: Maybe<StringFieldComparison>;
1567
- isLatest?: Maybe<BooleanFieldComparison>;
1568
- or?: Maybe<Array<PriceFilterPackageDtoFilter>>;
1569
- pricingType?: Maybe<PricingTypeFilterComparison>;
1570
- productId?: Maybe<StringFieldComparison>;
1571
- refId?: Maybe<StringFieldComparison>;
1572
- status?: Maybe<PackageStatusFilterComparison>;
1573
- updatedAt?: Maybe<DateFieldComparison>;
1574
- versionNumber?: Maybe<IntFieldComparison>;
1676
+ and?: InputMaybe<Array<PriceFilterPackageDtoFilter>>;
1677
+ billingId?: InputMaybe<StringFieldComparison>;
1678
+ createdAt?: InputMaybe<DateFieldComparison>;
1679
+ description?: InputMaybe<StringFieldComparison>;
1680
+ displayName?: InputMaybe<StringFieldComparison>;
1681
+ environmentId?: InputMaybe<StringFieldComparison>;
1682
+ id?: InputMaybe<StringFieldComparison>;
1683
+ isLatest?: InputMaybe<BooleanFieldComparison>;
1684
+ or?: InputMaybe<Array<PriceFilterPackageDtoFilter>>;
1685
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
1686
+ productId?: InputMaybe<StringFieldComparison>;
1687
+ refId?: InputMaybe<StringFieldComparison>;
1688
+ status?: InputMaybe<PackageStatusFilterComparison>;
1689
+ updatedAt?: InputMaybe<DateFieldComparison>;
1690
+ versionNumber?: InputMaybe<IntFieldComparison>;
1575
1691
  };
1576
1692
  export declare type PricePeriodInput = {
1693
+ billingCountryCode?: InputMaybe<Scalars['String']>;
1577
1694
  billingPeriod: BillingPeriod;
1578
1695
  price: MoneyInputDto;
1579
1696
  };
1580
1697
  export declare type PriceSort = {
1581
1698
  direction: SortDirection;
1582
1699
  field: PriceSortFields;
1583
- nulls?: Maybe<SortNulls>;
1700
+ nulls?: InputMaybe<SortNulls>;
1584
1701
  };
1585
1702
  export declare enum PriceSortFields {
1586
1703
  BillingId = "billingId",
@@ -1591,9 +1708,9 @@ export declare enum PriceSortFields {
1591
1708
  }
1592
1709
  export declare type PricingModelCreateInput = {
1593
1710
  billingModel: BillingModel;
1594
- featureId?: Maybe<Scalars['String']>;
1595
- maxUnitQuantity?: Maybe<Scalars['Float']>;
1596
- minUnitQuantity?: Maybe<Scalars['Float']>;
1711
+ featureId?: InputMaybe<Scalars['String']>;
1712
+ maxUnitQuantity?: InputMaybe<Scalars['Float']>;
1713
+ minUnitQuantity?: InputMaybe<Scalars['Float']>;
1597
1714
  pricePeriods: Array<PricePeriodInput>;
1598
1715
  };
1599
1716
  /** Package pricing type. */
@@ -1603,52 +1720,52 @@ export declare enum PricingType {
1603
1720
  Paid = "PAID"
1604
1721
  }
1605
1722
  export declare type PricingTypeFilterComparison = {
1606
- eq?: Maybe<PricingType>;
1607
- gt?: Maybe<PricingType>;
1608
- gte?: Maybe<PricingType>;
1609
- iLike?: Maybe<PricingType>;
1610
- in?: Maybe<Array<PricingType>>;
1611
- is?: Maybe<Scalars['Boolean']>;
1612
- isNot?: Maybe<Scalars['Boolean']>;
1613
- like?: Maybe<PricingType>;
1614
- lt?: Maybe<PricingType>;
1615
- lte?: Maybe<PricingType>;
1616
- neq?: Maybe<PricingType>;
1617
- notILike?: Maybe<PricingType>;
1618
- notIn?: Maybe<Array<PricingType>>;
1619
- notLike?: Maybe<PricingType>;
1723
+ eq?: InputMaybe<PricingType>;
1724
+ gt?: InputMaybe<PricingType>;
1725
+ gte?: InputMaybe<PricingType>;
1726
+ iLike?: InputMaybe<PricingType>;
1727
+ in?: InputMaybe<Array<PricingType>>;
1728
+ is?: InputMaybe<Scalars['Boolean']>;
1729
+ isNot?: InputMaybe<Scalars['Boolean']>;
1730
+ like?: InputMaybe<PricingType>;
1731
+ lt?: InputMaybe<PricingType>;
1732
+ lte?: InputMaybe<PricingType>;
1733
+ neq?: InputMaybe<PricingType>;
1734
+ notILike?: InputMaybe<PricingType>;
1735
+ notIn?: InputMaybe<Array<PricingType>>;
1736
+ notLike?: InputMaybe<PricingType>;
1620
1737
  };
1621
1738
  export declare type ProductCreateInput = {
1622
- additionalMetaData?: Maybe<Scalars['JSON']>;
1623
- description?: Maybe<Scalars['String']>;
1624
- displayName?: Maybe<Scalars['String']>;
1739
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1740
+ description?: InputMaybe<Scalars['String']>;
1741
+ displayName?: InputMaybe<Scalars['String']>;
1625
1742
  environmentId: Scalars['String'];
1626
1743
  refId: Scalars['String'];
1627
1744
  };
1628
1745
  export declare type ProductFilter = {
1629
- and?: Maybe<Array<ProductFilter>>;
1630
- createdAt?: Maybe<DateFieldComparison>;
1631
- description?: Maybe<StringFieldComparison>;
1632
- displayName?: Maybe<StringFieldComparison>;
1633
- environmentId?: Maybe<StringFieldComparison>;
1634
- id?: Maybe<StringFieldComparison>;
1635
- isDefaultProduct?: Maybe<BooleanFieldComparison>;
1636
- or?: Maybe<Array<ProductFilter>>;
1637
- refId?: Maybe<StringFieldComparison>;
1638
- updatedAt?: Maybe<DateFieldComparison>;
1746
+ and?: InputMaybe<Array<ProductFilter>>;
1747
+ createdAt?: InputMaybe<DateFieldComparison>;
1748
+ description?: InputMaybe<StringFieldComparison>;
1749
+ displayName?: InputMaybe<StringFieldComparison>;
1750
+ environmentId?: InputMaybe<StringFieldComparison>;
1751
+ id?: InputMaybe<StringFieldComparison>;
1752
+ isDefaultProduct?: InputMaybe<BooleanFieldComparison>;
1753
+ or?: InputMaybe<Array<ProductFilter>>;
1754
+ refId?: InputMaybe<StringFieldComparison>;
1755
+ updatedAt?: InputMaybe<DateFieldComparison>;
1639
1756
  };
1640
1757
  export declare type ProductSettingsInput = {
1641
- downgradeAtEndOfBillingPeriod?: Maybe<Scalars['String']>;
1642
- downgradePlanId?: Maybe<Scalars['String']>;
1758
+ downgradeAtEndOfBillingPeriod?: InputMaybe<Scalars['String']>;
1759
+ downgradePlanId?: InputMaybe<Scalars['String']>;
1643
1760
  subscriptionCancellationTime: SubscriptionCancellationTime;
1644
1761
  subscriptionEndSetup: SubscriptionEndSetup;
1645
- subscriptionStartPlanId?: Maybe<Scalars['String']>;
1762
+ subscriptionStartPlanId?: InputMaybe<Scalars['String']>;
1646
1763
  subscriptionStartSetup: SubscriptionStartSetup;
1647
1764
  };
1648
1765
  export declare type ProductSort = {
1649
1766
  direction: SortDirection;
1650
1767
  field: ProductSortFields;
1651
- nulls?: Maybe<SortNulls>;
1768
+ nulls?: InputMaybe<SortNulls>;
1652
1769
  };
1653
1770
  export declare enum ProductSortFields {
1654
1771
  CreatedAt = "createdAt",
@@ -1661,33 +1778,33 @@ export declare enum ProductSortFields {
1661
1778
  UpdatedAt = "updatedAt"
1662
1779
  }
1663
1780
  export declare type ProductUpdateInput = {
1664
- additionalMetaData?: Maybe<Scalars['JSON']>;
1665
- description?: Maybe<Scalars['String']>;
1666
- displayName?: Maybe<Scalars['String']>;
1667
- productSettings?: Maybe<ProductSettingsInput>;
1781
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1782
+ description?: InputMaybe<Scalars['String']>;
1783
+ displayName?: InputMaybe<Scalars['String']>;
1784
+ productSettings?: InputMaybe<ProductSettingsInput>;
1668
1785
  };
1669
1786
  export declare type PromotionalEntitlementFilter = {
1670
- and?: Maybe<Array<PromotionalEntitlementFilter>>;
1671
- createdAt?: Maybe<DateFieldComparison>;
1672
- environmentId?: Maybe<StringFieldComparison>;
1673
- id?: Maybe<StringFieldComparison>;
1674
- or?: Maybe<Array<PromotionalEntitlementFilter>>;
1675
- status?: Maybe<PromotionalEntitlementStatusFilterComparison>;
1676
- updatedAt?: Maybe<DateFieldComparison>;
1787
+ and?: InputMaybe<Array<PromotionalEntitlementFilter>>;
1788
+ createdAt?: InputMaybe<DateFieldComparison>;
1789
+ environmentId?: InputMaybe<StringFieldComparison>;
1790
+ id?: InputMaybe<StringFieldComparison>;
1791
+ or?: InputMaybe<Array<PromotionalEntitlementFilter>>;
1792
+ status?: InputMaybe<PromotionalEntitlementStatusFilterComparison>;
1793
+ updatedAt?: InputMaybe<DateFieldComparison>;
1677
1794
  };
1678
1795
  export declare type PromotionalEntitlementInput = {
1679
1796
  customerId: Scalars['String'];
1680
- description?: Maybe<Scalars['String']>;
1681
- endDate?: Maybe<Scalars['DateTime']>;
1797
+ description?: InputMaybe<Scalars['String']>;
1798
+ endDate?: InputMaybe<Scalars['DateTime']>;
1682
1799
  environmentId: Scalars['String'];
1683
1800
  featureId: Scalars['String'];
1684
- hasUnlimitedUsage?: Maybe<Scalars['Boolean']>;
1801
+ hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
1685
1802
  isVisible: Scalars['Boolean'];
1686
- monthlyResetPeriodConfiguration?: Maybe<MonthlyResetPeriodConfigInput>;
1803
+ monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
1687
1804
  period: PromotionalEntitlementPeriod;
1688
- resetPeriod?: Maybe<EntitlementResetPeriod>;
1689
- usageLimit?: Maybe<Scalars['Float']>;
1690
- weeklyResetPeriodConfiguration?: Maybe<WeeklyResetPeriodConfigInput>;
1805
+ resetPeriod?: InputMaybe<EntitlementResetPeriod>;
1806
+ usageLimit?: InputMaybe<Scalars['Float']>;
1807
+ weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
1691
1808
  };
1692
1809
  /** Promotional entitlement duration */
1693
1810
  export declare enum PromotionalEntitlementPeriod {
@@ -1701,7 +1818,7 @@ export declare enum PromotionalEntitlementPeriod {
1701
1818
  export declare type PromotionalEntitlementSort = {
1702
1819
  direction: SortDirection;
1703
1820
  field: PromotionalEntitlementSortFields;
1704
- nulls?: Maybe<SortNulls>;
1821
+ nulls?: InputMaybe<SortNulls>;
1705
1822
  };
1706
1823
  export declare enum PromotionalEntitlementSortFields {
1707
1824
  CreatedAt = "createdAt",
@@ -1717,96 +1834,96 @@ export declare enum PromotionalEntitlementStatus {
1717
1834
  Paused = "Paused"
1718
1835
  }
1719
1836
  export declare type PromotionalEntitlementStatusFilterComparison = {
1720
- eq?: Maybe<PromotionalEntitlementStatus>;
1721
- gt?: Maybe<PromotionalEntitlementStatus>;
1722
- gte?: Maybe<PromotionalEntitlementStatus>;
1723
- iLike?: Maybe<PromotionalEntitlementStatus>;
1724
- in?: Maybe<Array<PromotionalEntitlementStatus>>;
1725
- is?: Maybe<Scalars['Boolean']>;
1726
- isNot?: Maybe<Scalars['Boolean']>;
1727
- like?: Maybe<PromotionalEntitlementStatus>;
1728
- lt?: Maybe<PromotionalEntitlementStatus>;
1729
- lte?: Maybe<PromotionalEntitlementStatus>;
1730
- neq?: Maybe<PromotionalEntitlementStatus>;
1731
- notILike?: Maybe<PromotionalEntitlementStatus>;
1732
- notIn?: Maybe<Array<PromotionalEntitlementStatus>>;
1733
- notLike?: Maybe<PromotionalEntitlementStatus>;
1837
+ eq?: InputMaybe<PromotionalEntitlementStatus>;
1838
+ gt?: InputMaybe<PromotionalEntitlementStatus>;
1839
+ gte?: InputMaybe<PromotionalEntitlementStatus>;
1840
+ iLike?: InputMaybe<PromotionalEntitlementStatus>;
1841
+ in?: InputMaybe<Array<PromotionalEntitlementStatus>>;
1842
+ is?: InputMaybe<Scalars['Boolean']>;
1843
+ isNot?: InputMaybe<Scalars['Boolean']>;
1844
+ like?: InputMaybe<PromotionalEntitlementStatus>;
1845
+ lt?: InputMaybe<PromotionalEntitlementStatus>;
1846
+ lte?: InputMaybe<PromotionalEntitlementStatus>;
1847
+ neq?: InputMaybe<PromotionalEntitlementStatus>;
1848
+ notILike?: InputMaybe<PromotionalEntitlementStatus>;
1849
+ notIn?: InputMaybe<Array<PromotionalEntitlementStatus>>;
1850
+ notLike?: InputMaybe<PromotionalEntitlementStatus>;
1734
1851
  };
1735
1852
  export declare type PromotionalEntitlementUpdateInput = {
1736
- description?: Maybe<Scalars['String']>;
1737
- endDate?: Maybe<Scalars['DateTime']>;
1738
- hasUnlimitedUsage?: Maybe<Scalars['Boolean']>;
1853
+ description?: InputMaybe<Scalars['String']>;
1854
+ endDate?: InputMaybe<Scalars['DateTime']>;
1855
+ hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
1739
1856
  isVisible: Scalars['Boolean'];
1740
- monthlyResetPeriodConfiguration?: Maybe<MonthlyResetPeriodConfigInput>;
1857
+ monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
1741
1858
  period: PromotionalEntitlementPeriod;
1742
- resetPeriod?: Maybe<EntitlementResetPeriod>;
1743
- usageLimit?: Maybe<Scalars['Float']>;
1744
- weeklyResetPeriodConfiguration?: Maybe<WeeklyResetPeriodConfigInput>;
1859
+ resetPeriod?: InputMaybe<EntitlementResetPeriod>;
1860
+ usageLimit?: InputMaybe<Scalars['Float']>;
1861
+ weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
1745
1862
  };
1746
1863
  export declare enum ProrationBehavior {
1747
1864
  CreateProrations = "CREATE_PRORATIONS",
1748
1865
  InvoiceImmediately = "INVOICE_IMMEDIATELY"
1749
1866
  }
1750
1867
  export declare type ProvisionCustomerInput = {
1751
- additionalMetaData?: Maybe<Scalars['JSON']>;
1752
- billingId?: Maybe<Scalars['String']>;
1753
- billingInformation?: Maybe<CustomerBillingInfo>;
1754
- couponRefId?: Maybe<Scalars['String']>;
1755
- createdAt?: Maybe<Scalars['DateTime']>;
1756
- crmId?: Maybe<Scalars['String']>;
1757
- customerId?: Maybe<Scalars['String']>;
1758
- email?: Maybe<Scalars['String']>;
1759
- environmentId?: Maybe<Scalars['String']>;
1760
- excludeFromExperiment?: Maybe<Scalars['Boolean']>;
1761
- name?: Maybe<Scalars['String']>;
1762
- refId?: Maybe<Scalars['String']>;
1763
- shouldSyncFree?: Maybe<Scalars['Boolean']>;
1764
- subscriptionParams?: Maybe<ProvisionCustomerSubscriptionInput>;
1868
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1869
+ billingId?: InputMaybe<Scalars['String']>;
1870
+ billingInformation?: InputMaybe<CustomerBillingInfo>;
1871
+ couponRefId?: InputMaybe<Scalars['String']>;
1872
+ createdAt?: InputMaybe<Scalars['DateTime']>;
1873
+ crmId?: InputMaybe<Scalars['String']>;
1874
+ customerId?: InputMaybe<Scalars['String']>;
1875
+ email?: InputMaybe<Scalars['String']>;
1876
+ environmentId?: InputMaybe<Scalars['String']>;
1877
+ excludeFromExperiment?: InputMaybe<Scalars['Boolean']>;
1878
+ name?: InputMaybe<Scalars['String']>;
1879
+ refId?: InputMaybe<Scalars['String']>;
1880
+ shouldSyncFree?: InputMaybe<Scalars['Boolean']>;
1881
+ subscriptionParams?: InputMaybe<ProvisionCustomerSubscriptionInput>;
1765
1882
  };
1766
1883
  export declare type ProvisionCustomerSubscriptionInput = {
1767
- additionalMetaData?: Maybe<Scalars['JSON']>;
1768
- addons?: Maybe<Array<SubscriptionAddonInput>>;
1769
- awaitPaymentConfirmation?: Maybe<Scalars['Boolean']>;
1770
- billingInformation?: Maybe<SubscriptionBillingInfo>;
1771
- billingPeriod?: Maybe<BillingPeriod>;
1884
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1885
+ addons?: InputMaybe<Array<SubscriptionAddonInput>>;
1886
+ awaitPaymentConfirmation?: InputMaybe<Scalars['Boolean']>;
1887
+ billingInformation?: InputMaybe<SubscriptionBillingInfo>;
1888
+ billingPeriod?: InputMaybe<BillingPeriod>;
1772
1889
  planId: Scalars['String'];
1773
- priceUnitAmount?: Maybe<Scalars['Float']>;
1774
- promotionCode?: Maybe<Scalars['String']>;
1775
- refId?: Maybe<Scalars['String']>;
1776
- startDate?: Maybe<Scalars['DateTime']>;
1777
- subscriptionId?: Maybe<Scalars['String']>;
1890
+ priceUnitAmount?: InputMaybe<Scalars['Float']>;
1891
+ promotionCode?: InputMaybe<Scalars['String']>;
1892
+ refId?: InputMaybe<Scalars['String']>;
1893
+ startDate?: InputMaybe<Scalars['DateTime']>;
1894
+ subscriptionId?: InputMaybe<Scalars['String']>;
1778
1895
  };
1779
1896
  export declare type ProvisionSubscription = {
1780
- additionalMetaData?: Maybe<Scalars['JSON']>;
1781
- addons?: Maybe<Array<SubscriptionAddonInput>>;
1782
- awaitPaymentConfirmation?: Maybe<Scalars['Boolean']>;
1783
- billingInformation?: Maybe<SubscriptionBillingInfo>;
1784
- billingPeriod?: Maybe<BillingPeriod>;
1785
- checkoutOptions?: Maybe<CheckoutOptions>;
1897
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1898
+ addons?: InputMaybe<Array<SubscriptionAddonInput>>;
1899
+ awaitPaymentConfirmation?: InputMaybe<Scalars['Boolean']>;
1900
+ billingInformation?: InputMaybe<SubscriptionBillingInfo>;
1901
+ billingPeriod?: InputMaybe<BillingPeriod>;
1902
+ checkoutOptions?: InputMaybe<CheckoutOptions>;
1786
1903
  customerId: Scalars['String'];
1787
1904
  planId: Scalars['String'];
1788
- priceUnitAmount?: Maybe<Scalars['Float']>;
1789
- promotionCode?: Maybe<Scalars['String']>;
1790
- refId?: Maybe<Scalars['String']>;
1791
- skipTrial?: Maybe<Scalars['Boolean']>;
1792
- startDate?: Maybe<Scalars['DateTime']>;
1793
- subscriptionId?: Maybe<Scalars['String']>;
1905
+ priceUnitAmount?: InputMaybe<Scalars['Float']>;
1906
+ promotionCode?: InputMaybe<Scalars['String']>;
1907
+ refId?: InputMaybe<Scalars['String']>;
1908
+ skipTrial?: InputMaybe<Scalars['Boolean']>;
1909
+ startDate?: InputMaybe<Scalars['DateTime']>;
1910
+ subscriptionId?: InputMaybe<Scalars['String']>;
1794
1911
  };
1795
1912
  export declare type ProvisionSubscriptionInput = {
1796
- additionalMetaData?: Maybe<Scalars['JSON']>;
1797
- addons?: Maybe<Array<SubscriptionAddonInput>>;
1798
- awaitPaymentConfirmation?: Maybe<Scalars['Boolean']>;
1799
- billingInformation?: Maybe<SubscriptionBillingInfo>;
1800
- billingPeriod?: Maybe<BillingPeriod>;
1801
- checkoutOptions?: Maybe<CheckoutOptions>;
1913
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
1914
+ addons?: InputMaybe<Array<SubscriptionAddonInput>>;
1915
+ awaitPaymentConfirmation?: InputMaybe<Scalars['Boolean']>;
1916
+ billingInformation?: InputMaybe<SubscriptionBillingInfo>;
1917
+ billingPeriod?: InputMaybe<BillingPeriod>;
1918
+ checkoutOptions?: InputMaybe<CheckoutOptions>;
1802
1919
  customerId: Scalars['String'];
1803
1920
  planId: Scalars['String'];
1804
- priceUnitAmount?: Maybe<Scalars['Float']>;
1805
- promotionCode?: Maybe<Scalars['String']>;
1806
- refId?: Maybe<Scalars['String']>;
1807
- skipTrial?: Maybe<Scalars['Boolean']>;
1808
- startDate?: Maybe<Scalars['DateTime']>;
1809
- subscriptionId?: Maybe<Scalars['String']>;
1921
+ priceUnitAmount?: InputMaybe<Scalars['Float']>;
1922
+ promotionCode?: InputMaybe<Scalars['String']>;
1923
+ refId?: InputMaybe<Scalars['String']>;
1924
+ skipTrial?: InputMaybe<Scalars['Boolean']>;
1925
+ startDate?: InputMaybe<Scalars['DateTime']>;
1926
+ subscriptionId?: InputMaybe<Scalars['String']>;
1810
1927
  };
1811
1928
  /** Provision subscription status */
1812
1929
  export declare enum ProvisionSubscriptionStatus {
@@ -1909,114 +2026,114 @@ export declare enum SourceType {
1909
2026
  NodeServerSdk = "NODE_SERVER_SDK"
1910
2027
  }
1911
2028
  export declare type StartExperimentInput = {
1912
- environmentId?: Maybe<Scalars['String']>;
2029
+ environmentId?: InputMaybe<Scalars['String']>;
1913
2030
  refId: Scalars['String'];
1914
2031
  };
1915
2032
  export declare type StopExperimentInput = {
1916
- environmentId?: Maybe<Scalars['String']>;
2033
+ environmentId?: InputMaybe<Scalars['String']>;
1917
2034
  refId: Scalars['String'];
1918
2035
  };
1919
2036
  export declare type StringFieldComparison = {
1920
- eq?: Maybe<Scalars['String']>;
1921
- gt?: Maybe<Scalars['String']>;
1922
- gte?: Maybe<Scalars['String']>;
1923
- iLike?: Maybe<Scalars['String']>;
1924
- in?: Maybe<Array<Scalars['String']>>;
1925
- is?: Maybe<Scalars['Boolean']>;
1926
- isNot?: Maybe<Scalars['Boolean']>;
1927
- like?: Maybe<Scalars['String']>;
1928
- lt?: Maybe<Scalars['String']>;
1929
- lte?: Maybe<Scalars['String']>;
1930
- neq?: Maybe<Scalars['String']>;
1931
- notILike?: Maybe<Scalars['String']>;
1932
- notIn?: Maybe<Array<Scalars['String']>>;
1933
- notLike?: Maybe<Scalars['String']>;
2037
+ eq?: InputMaybe<Scalars['String']>;
2038
+ gt?: InputMaybe<Scalars['String']>;
2039
+ gte?: InputMaybe<Scalars['String']>;
2040
+ iLike?: InputMaybe<Scalars['String']>;
2041
+ in?: InputMaybe<Array<Scalars['String']>>;
2042
+ is?: InputMaybe<Scalars['Boolean']>;
2043
+ isNot?: InputMaybe<Scalars['Boolean']>;
2044
+ like?: InputMaybe<Scalars['String']>;
2045
+ lt?: InputMaybe<Scalars['String']>;
2046
+ lte?: InputMaybe<Scalars['String']>;
2047
+ neq?: InputMaybe<Scalars['String']>;
2048
+ notILike?: InputMaybe<Scalars['String']>;
2049
+ notIn?: InputMaybe<Array<Scalars['String']>>;
2050
+ notLike?: InputMaybe<Scalars['String']>;
1934
2051
  };
1935
2052
  export declare type StripeCredentialsInput = {
1936
- accountId?: Maybe<Scalars['String']>;
2053
+ accountId?: InputMaybe<Scalars['String']>;
1937
2054
  authorizationCode: Scalars['String'];
1938
2055
  isTestMode: Scalars['Boolean'];
1939
2056
  };
1940
2057
  export declare type StripeCustomerSearchInput = {
1941
- customerName?: Maybe<Scalars['String']>;
2058
+ customerName?: InputMaybe<Scalars['String']>;
1942
2059
  environmentId: Scalars['String'];
1943
- nextPage?: Maybe<Scalars['String']>;
2060
+ nextPage?: InputMaybe<Scalars['String']>;
1944
2061
  };
1945
2062
  export declare type StripeProductSearchInput = {
1946
2063
  environmentId: Scalars['String'];
1947
- nextPage?: Maybe<Scalars['String']>;
1948
- productName?: Maybe<Scalars['String']>;
2064
+ nextPage?: InputMaybe<Scalars['String']>;
2065
+ productName?: InputMaybe<Scalars['String']>;
1949
2066
  };
1950
2067
  export declare type StripeSubscriptionSearchInput = {
1951
2068
  environmentId: Scalars['String'];
1952
- nextPage?: Maybe<Scalars['String']>;
2069
+ nextPage?: InputMaybe<Scalars['String']>;
1953
2070
  };
1954
2071
  export declare type SubscriptionAddonFilter = {
1955
- addon?: Maybe<SubscriptionAddonFilterAddonFilter>;
1956
- and?: Maybe<Array<SubscriptionAddonFilter>>;
1957
- createdAt?: Maybe<DateFieldComparison>;
1958
- id?: Maybe<StringFieldComparison>;
1959
- or?: Maybe<Array<SubscriptionAddonFilter>>;
1960
- price?: Maybe<SubscriptionAddonFilterPriceFilter>;
1961
- quantity?: Maybe<NumberFieldComparison>;
1962
- subscription?: Maybe<SubscriptionAddonFilterCustomerSubscriptionFilter>;
1963
- updatedAt?: Maybe<DateFieldComparison>;
2072
+ addon?: InputMaybe<SubscriptionAddonFilterAddonFilter>;
2073
+ and?: InputMaybe<Array<SubscriptionAddonFilter>>;
2074
+ createdAt?: InputMaybe<DateFieldComparison>;
2075
+ id?: InputMaybe<StringFieldComparison>;
2076
+ or?: InputMaybe<Array<SubscriptionAddonFilter>>;
2077
+ price?: InputMaybe<SubscriptionAddonFilterPriceFilter>;
2078
+ quantity?: InputMaybe<NumberFieldComparison>;
2079
+ subscription?: InputMaybe<SubscriptionAddonFilterCustomerSubscriptionFilter>;
2080
+ updatedAt?: InputMaybe<DateFieldComparison>;
1964
2081
  };
1965
2082
  export declare type SubscriptionAddonFilterAddonFilter = {
1966
- and?: Maybe<Array<SubscriptionAddonFilterAddonFilter>>;
1967
- billingId?: Maybe<StringFieldComparison>;
1968
- createdAt?: Maybe<DateFieldComparison>;
1969
- description?: Maybe<StringFieldComparison>;
1970
- displayName?: Maybe<StringFieldComparison>;
1971
- environmentId?: Maybe<StringFieldComparison>;
1972
- id?: Maybe<StringFieldComparison>;
1973
- isLatest?: Maybe<BooleanFieldComparison>;
1974
- or?: Maybe<Array<SubscriptionAddonFilterAddonFilter>>;
1975
- pricingType?: Maybe<PricingTypeFilterComparison>;
1976
- productId?: Maybe<StringFieldComparison>;
1977
- refId?: Maybe<StringFieldComparison>;
1978
- status?: Maybe<PackageStatusFilterComparison>;
1979
- updatedAt?: Maybe<DateFieldComparison>;
1980
- versionNumber?: Maybe<IntFieldComparison>;
2083
+ and?: InputMaybe<Array<SubscriptionAddonFilterAddonFilter>>;
2084
+ billingId?: InputMaybe<StringFieldComparison>;
2085
+ createdAt?: InputMaybe<DateFieldComparison>;
2086
+ description?: InputMaybe<StringFieldComparison>;
2087
+ displayName?: InputMaybe<StringFieldComparison>;
2088
+ environmentId?: InputMaybe<StringFieldComparison>;
2089
+ id?: InputMaybe<StringFieldComparison>;
2090
+ isLatest?: InputMaybe<BooleanFieldComparison>;
2091
+ or?: InputMaybe<Array<SubscriptionAddonFilterAddonFilter>>;
2092
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
2093
+ productId?: InputMaybe<StringFieldComparison>;
2094
+ refId?: InputMaybe<StringFieldComparison>;
2095
+ status?: InputMaybe<PackageStatusFilterComparison>;
2096
+ updatedAt?: InputMaybe<DateFieldComparison>;
2097
+ versionNumber?: InputMaybe<IntFieldComparison>;
1981
2098
  };
1982
2099
  export declare type SubscriptionAddonFilterCustomerSubscriptionFilter = {
1983
- and?: Maybe<Array<SubscriptionAddonFilterCustomerSubscriptionFilter>>;
1984
- billingId?: Maybe<StringFieldComparison>;
1985
- cancelReason?: Maybe<SubscriptionCancelReasonFilterComparison>;
1986
- cancellationDate?: Maybe<DateFieldComparison>;
1987
- createdAt?: Maybe<DateFieldComparison>;
1988
- crmId?: Maybe<StringFieldComparison>;
1989
- crmLinkUrl?: Maybe<StringFieldComparison>;
1990
- effectiveEndDate?: Maybe<DateFieldComparison>;
1991
- endDate?: Maybe<DateFieldComparison>;
1992
- environmentId?: Maybe<StringFieldComparison>;
1993
- id?: Maybe<StringFieldComparison>;
1994
- oldBillingId?: Maybe<StringFieldComparison>;
1995
- or?: Maybe<Array<SubscriptionAddonFilterCustomerSubscriptionFilter>>;
1996
- pricingType?: Maybe<PricingTypeFilterComparison>;
1997
- refId?: Maybe<StringFieldComparison>;
1998
- startDate?: Maybe<DateFieldComparison>;
1999
- status?: Maybe<SubscriptionStatusFilterComparison>;
2000
- subscriptionId?: Maybe<StringFieldComparison>;
2001
- trialEndDate?: Maybe<DateFieldComparison>;
2100
+ and?: InputMaybe<Array<SubscriptionAddonFilterCustomerSubscriptionFilter>>;
2101
+ billingId?: InputMaybe<StringFieldComparison>;
2102
+ cancelReason?: InputMaybe<SubscriptionCancelReasonFilterComparison>;
2103
+ cancellationDate?: InputMaybe<DateFieldComparison>;
2104
+ createdAt?: InputMaybe<DateFieldComparison>;
2105
+ crmId?: InputMaybe<StringFieldComparison>;
2106
+ crmLinkUrl?: InputMaybe<StringFieldComparison>;
2107
+ effectiveEndDate?: InputMaybe<DateFieldComparison>;
2108
+ endDate?: InputMaybe<DateFieldComparison>;
2109
+ environmentId?: InputMaybe<StringFieldComparison>;
2110
+ id?: InputMaybe<StringFieldComparison>;
2111
+ oldBillingId?: InputMaybe<StringFieldComparison>;
2112
+ or?: InputMaybe<Array<SubscriptionAddonFilterCustomerSubscriptionFilter>>;
2113
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
2114
+ refId?: InputMaybe<StringFieldComparison>;
2115
+ startDate?: InputMaybe<DateFieldComparison>;
2116
+ status?: InputMaybe<SubscriptionStatusFilterComparison>;
2117
+ subscriptionId?: InputMaybe<StringFieldComparison>;
2118
+ trialEndDate?: InputMaybe<DateFieldComparison>;
2002
2119
  };
2003
2120
  export declare type SubscriptionAddonFilterPriceFilter = {
2004
- and?: Maybe<Array<SubscriptionAddonFilterPriceFilter>>;
2005
- billingId?: Maybe<StringFieldComparison>;
2006
- billingModel?: Maybe<BillingModelFilterComparison>;
2007
- billingPeriod?: Maybe<BillingPeriodFilterComparison>;
2008
- createdAt?: Maybe<DateFieldComparison>;
2009
- id?: Maybe<StringFieldComparison>;
2010
- or?: Maybe<Array<SubscriptionAddonFilterPriceFilter>>;
2121
+ and?: InputMaybe<Array<SubscriptionAddonFilterPriceFilter>>;
2122
+ billingId?: InputMaybe<StringFieldComparison>;
2123
+ billingModel?: InputMaybe<BillingModelFilterComparison>;
2124
+ billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
2125
+ createdAt?: InputMaybe<DateFieldComparison>;
2126
+ id?: InputMaybe<StringFieldComparison>;
2127
+ or?: InputMaybe<Array<SubscriptionAddonFilterPriceFilter>>;
2011
2128
  };
2012
2129
  export declare type SubscriptionAddonInput = {
2013
2130
  addonId: Scalars['String'];
2014
- quantity?: Maybe<Scalars['Int']>;
2131
+ quantity?: InputMaybe<Scalars['Int']>;
2015
2132
  };
2016
2133
  export declare type SubscriptionAddonSort = {
2017
2134
  direction: SortDirection;
2018
2135
  field: SubscriptionAddonSortFields;
2019
- nulls?: Maybe<SortNulls>;
2136
+ nulls?: InputMaybe<SortNulls>;
2020
2137
  };
2021
2138
  export declare enum SubscriptionAddonSortFields {
2022
2139
  CreatedAt = "createdAt",
@@ -2025,7 +2142,7 @@ export declare enum SubscriptionAddonSortFields {
2025
2142
  UpdatedAt = "updatedAt"
2026
2143
  }
2027
2144
  export declare type SubscriptionBillingInfo = {
2028
- taxRateIds?: Maybe<Array<Scalars['String']>>;
2145
+ taxRateIds?: InputMaybe<Array<Scalars['String']>>;
2029
2146
  };
2030
2147
  /** Subscription cancellation status */
2031
2148
  export declare enum SubscriptionCancelReason {
@@ -2040,25 +2157,25 @@ export declare enum SubscriptionCancelReason {
2040
2157
  UpgradeOrDowngrade = "UpgradeOrDowngrade"
2041
2158
  }
2042
2159
  export declare type SubscriptionCancelReasonFilterComparison = {
2043
- eq?: Maybe<SubscriptionCancelReason>;
2044
- gt?: Maybe<SubscriptionCancelReason>;
2045
- gte?: Maybe<SubscriptionCancelReason>;
2046
- iLike?: Maybe<SubscriptionCancelReason>;
2047
- in?: Maybe<Array<SubscriptionCancelReason>>;
2048
- is?: Maybe<Scalars['Boolean']>;
2049
- isNot?: Maybe<Scalars['Boolean']>;
2050
- like?: Maybe<SubscriptionCancelReason>;
2051
- lt?: Maybe<SubscriptionCancelReason>;
2052
- lte?: Maybe<SubscriptionCancelReason>;
2053
- neq?: Maybe<SubscriptionCancelReason>;
2054
- notILike?: Maybe<SubscriptionCancelReason>;
2055
- notIn?: Maybe<Array<SubscriptionCancelReason>>;
2056
- notLike?: Maybe<SubscriptionCancelReason>;
2160
+ eq?: InputMaybe<SubscriptionCancelReason>;
2161
+ gt?: InputMaybe<SubscriptionCancelReason>;
2162
+ gte?: InputMaybe<SubscriptionCancelReason>;
2163
+ iLike?: InputMaybe<SubscriptionCancelReason>;
2164
+ in?: InputMaybe<Array<SubscriptionCancelReason>>;
2165
+ is?: InputMaybe<Scalars['Boolean']>;
2166
+ isNot?: InputMaybe<Scalars['Boolean']>;
2167
+ like?: InputMaybe<SubscriptionCancelReason>;
2168
+ lt?: InputMaybe<SubscriptionCancelReason>;
2169
+ lte?: InputMaybe<SubscriptionCancelReason>;
2170
+ neq?: InputMaybe<SubscriptionCancelReason>;
2171
+ notILike?: InputMaybe<SubscriptionCancelReason>;
2172
+ notIn?: InputMaybe<Array<SubscriptionCancelReason>>;
2173
+ notLike?: InputMaybe<SubscriptionCancelReason>;
2057
2174
  };
2058
2175
  export declare type SubscriptionCancellationInput = {
2059
- endDate?: Maybe<Scalars['DateTime']>;
2060
- environmentId?: Maybe<Scalars['String']>;
2061
- subscriptionCancellationTime?: Maybe<SubscriptionCancellationTime>;
2176
+ endDate?: InputMaybe<Scalars['DateTime']>;
2177
+ environmentId?: InputMaybe<Scalars['String']>;
2178
+ subscriptionCancellationTime?: InputMaybe<SubscriptionCancellationTime>;
2062
2179
  subscriptionRefId: Scalars['String'];
2063
2180
  };
2064
2181
  export declare enum SubscriptionCancellationTime {
@@ -2078,64 +2195,64 @@ export declare enum SubscriptionEndSetup {
2078
2195
  DowngradeToFree = "DOWNGRADE_TO_FREE"
2079
2196
  }
2080
2197
  export declare type SubscriptionEntitlementFilter = {
2081
- and?: Maybe<Array<SubscriptionEntitlementFilter>>;
2082
- createdAt?: Maybe<DateFieldComparison>;
2083
- environmentId?: Maybe<StringFieldComparison>;
2084
- feature?: Maybe<SubscriptionEntitlementFilterFeatureFilter>;
2085
- id?: Maybe<StringFieldComparison>;
2086
- or?: Maybe<Array<SubscriptionEntitlementFilter>>;
2087
- subscription?: Maybe<SubscriptionEntitlementFilterCustomerSubscriptionFilter>;
2088
- subscriptionId?: Maybe<StringFieldComparison>;
2089
- updatedAt?: Maybe<DateFieldComparison>;
2198
+ and?: InputMaybe<Array<SubscriptionEntitlementFilter>>;
2199
+ createdAt?: InputMaybe<DateFieldComparison>;
2200
+ environmentId?: InputMaybe<StringFieldComparison>;
2201
+ feature?: InputMaybe<SubscriptionEntitlementFilterFeatureFilter>;
2202
+ id?: InputMaybe<StringFieldComparison>;
2203
+ or?: InputMaybe<Array<SubscriptionEntitlementFilter>>;
2204
+ subscription?: InputMaybe<SubscriptionEntitlementFilterCustomerSubscriptionFilter>;
2205
+ subscriptionId?: InputMaybe<StringFieldComparison>;
2206
+ updatedAt?: InputMaybe<DateFieldComparison>;
2090
2207
  };
2091
2208
  export declare type SubscriptionEntitlementFilterCustomerSubscriptionFilter = {
2092
- and?: Maybe<Array<SubscriptionEntitlementFilterCustomerSubscriptionFilter>>;
2093
- billingId?: Maybe<StringFieldComparison>;
2094
- cancelReason?: Maybe<SubscriptionCancelReasonFilterComparison>;
2095
- cancellationDate?: Maybe<DateFieldComparison>;
2096
- createdAt?: Maybe<DateFieldComparison>;
2097
- crmId?: Maybe<StringFieldComparison>;
2098
- crmLinkUrl?: Maybe<StringFieldComparison>;
2099
- effectiveEndDate?: Maybe<DateFieldComparison>;
2100
- endDate?: Maybe<DateFieldComparison>;
2101
- environmentId?: Maybe<StringFieldComparison>;
2102
- id?: Maybe<StringFieldComparison>;
2103
- oldBillingId?: Maybe<StringFieldComparison>;
2104
- or?: Maybe<Array<SubscriptionEntitlementFilterCustomerSubscriptionFilter>>;
2105
- pricingType?: Maybe<PricingTypeFilterComparison>;
2106
- refId?: Maybe<StringFieldComparison>;
2107
- startDate?: Maybe<DateFieldComparison>;
2108
- status?: Maybe<SubscriptionStatusFilterComparison>;
2109
- subscriptionId?: Maybe<StringFieldComparison>;
2110
- trialEndDate?: Maybe<DateFieldComparison>;
2209
+ and?: InputMaybe<Array<SubscriptionEntitlementFilterCustomerSubscriptionFilter>>;
2210
+ billingId?: InputMaybe<StringFieldComparison>;
2211
+ cancelReason?: InputMaybe<SubscriptionCancelReasonFilterComparison>;
2212
+ cancellationDate?: InputMaybe<DateFieldComparison>;
2213
+ createdAt?: InputMaybe<DateFieldComparison>;
2214
+ crmId?: InputMaybe<StringFieldComparison>;
2215
+ crmLinkUrl?: InputMaybe<StringFieldComparison>;
2216
+ effectiveEndDate?: InputMaybe<DateFieldComparison>;
2217
+ endDate?: InputMaybe<DateFieldComparison>;
2218
+ environmentId?: InputMaybe<StringFieldComparison>;
2219
+ id?: InputMaybe<StringFieldComparison>;
2220
+ oldBillingId?: InputMaybe<StringFieldComparison>;
2221
+ or?: InputMaybe<Array<SubscriptionEntitlementFilterCustomerSubscriptionFilter>>;
2222
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
2223
+ refId?: InputMaybe<StringFieldComparison>;
2224
+ startDate?: InputMaybe<DateFieldComparison>;
2225
+ status?: InputMaybe<SubscriptionStatusFilterComparison>;
2226
+ subscriptionId?: InputMaybe<StringFieldComparison>;
2227
+ trialEndDate?: InputMaybe<DateFieldComparison>;
2111
2228
  };
2112
2229
  export declare type SubscriptionEntitlementFilterFeatureFilter = {
2113
- and?: Maybe<Array<SubscriptionEntitlementFilterFeatureFilter>>;
2114
- createdAt?: Maybe<DateFieldComparison>;
2115
- description?: Maybe<StringFieldComparison>;
2116
- displayName?: Maybe<StringFieldComparison>;
2117
- environmentId?: Maybe<StringFieldComparison>;
2118
- featureStatus?: Maybe<FeatureStatusFilterComparison>;
2119
- featureType?: Maybe<FeatureTypeFilterComparison>;
2120
- id?: Maybe<StringFieldComparison>;
2121
- meterType?: Maybe<MeterTypeFilterComparison>;
2122
- or?: Maybe<Array<SubscriptionEntitlementFilterFeatureFilter>>;
2123
- refId?: Maybe<StringFieldComparison>;
2124
- updatedAt?: Maybe<DateFieldComparison>;
2230
+ and?: InputMaybe<Array<SubscriptionEntitlementFilterFeatureFilter>>;
2231
+ createdAt?: InputMaybe<DateFieldComparison>;
2232
+ description?: InputMaybe<StringFieldComparison>;
2233
+ displayName?: InputMaybe<StringFieldComparison>;
2234
+ environmentId?: InputMaybe<StringFieldComparison>;
2235
+ featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
2236
+ featureType?: InputMaybe<FeatureTypeFilterComparison>;
2237
+ id?: InputMaybe<StringFieldComparison>;
2238
+ meterType?: InputMaybe<MeterTypeFilterComparison>;
2239
+ or?: InputMaybe<Array<SubscriptionEntitlementFilterFeatureFilter>>;
2240
+ refId?: InputMaybe<StringFieldComparison>;
2241
+ updatedAt?: InputMaybe<DateFieldComparison>;
2125
2242
  };
2126
2243
  export declare type SubscriptionEntitlementInput = {
2127
- description?: Maybe<Scalars['String']>;
2244
+ description?: InputMaybe<Scalars['String']>;
2128
2245
  featureId: Scalars['String'];
2129
- hasUnlimitedUsage?: Maybe<Scalars['Boolean']>;
2130
- monthlyResetPeriodConfiguration?: Maybe<MonthlyResetPeriodConfigInput>;
2131
- resetPeriod?: Maybe<EntitlementResetPeriod>;
2132
- usageLimit?: Maybe<Scalars['Float']>;
2133
- weeklyResetPeriodConfiguration?: Maybe<WeeklyResetPeriodConfigInput>;
2246
+ hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
2247
+ monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
2248
+ resetPeriod?: InputMaybe<EntitlementResetPeriod>;
2249
+ usageLimit?: InputMaybe<Scalars['Float']>;
2250
+ weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
2134
2251
  };
2135
2252
  export declare type SubscriptionEntitlementSort = {
2136
2253
  direction: SortDirection;
2137
2254
  field: SubscriptionEntitlementSortFields;
2138
- nulls?: Maybe<SortNulls>;
2255
+ nulls?: InputMaybe<SortNulls>;
2139
2256
  };
2140
2257
  export declare enum SubscriptionEntitlementSortFields {
2141
2258
  CreatedAt = "createdAt",
@@ -2145,44 +2262,44 @@ export declare enum SubscriptionEntitlementSortFields {
2145
2262
  UpdatedAt = "updatedAt"
2146
2263
  }
2147
2264
  export declare type SubscriptionInput = {
2148
- additionalMetaData?: Maybe<Scalars['JSON']>;
2149
- addons?: Maybe<Array<SubscriptionAddonInput>>;
2150
- awaitPaymentConfirmation?: Maybe<Scalars['Boolean']>;
2151
- billingId?: Maybe<Scalars['String']>;
2152
- billingInformation?: Maybe<SubscriptionBillingInfo>;
2153
- billingPeriod?: Maybe<BillingPeriod>;
2154
- crmId?: Maybe<Scalars['String']>;
2265
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
2266
+ addons?: InputMaybe<Array<SubscriptionAddonInput>>;
2267
+ awaitPaymentConfirmation?: InputMaybe<Scalars['Boolean']>;
2268
+ billingId?: InputMaybe<Scalars['String']>;
2269
+ billingInformation?: InputMaybe<SubscriptionBillingInfo>;
2270
+ billingPeriod?: InputMaybe<BillingPeriod>;
2271
+ crmId?: InputMaybe<Scalars['String']>;
2155
2272
  customerId: Scalars['String'];
2156
- endDate?: Maybe<Scalars['DateTime']>;
2157
- environmentId?: Maybe<Scalars['String']>;
2158
- isCustomPriceSubscription?: Maybe<Scalars['Boolean']>;
2159
- isOverridingTrialConfig?: Maybe<Scalars['Boolean']>;
2160
- isTrial?: Maybe<Scalars['Boolean']>;
2273
+ endDate?: InputMaybe<Scalars['DateTime']>;
2274
+ environmentId?: InputMaybe<Scalars['String']>;
2275
+ isCustomPriceSubscription?: InputMaybe<Scalars['Boolean']>;
2276
+ isOverridingTrialConfig?: InputMaybe<Scalars['Boolean']>;
2277
+ isTrial?: InputMaybe<Scalars['Boolean']>;
2161
2278
  planId: Scalars['String'];
2162
- priceUnitAmount?: Maybe<Scalars['Float']>;
2163
- promotionCode?: Maybe<Scalars['String']>;
2164
- refId?: Maybe<Scalars['String']>;
2165
- startDate?: Maybe<Scalars['DateTime']>;
2166
- subscriptionEntitlements?: Maybe<Array<SubscriptionEntitlementInput>>;
2167
- subscriptionId?: Maybe<Scalars['String']>;
2279
+ priceUnitAmount?: InputMaybe<Scalars['Float']>;
2280
+ promotionCode?: InputMaybe<Scalars['String']>;
2281
+ refId?: InputMaybe<Scalars['String']>;
2282
+ startDate?: InputMaybe<Scalars['DateTime']>;
2283
+ subscriptionEntitlements?: InputMaybe<Array<SubscriptionEntitlementInput>>;
2284
+ subscriptionId?: InputMaybe<Scalars['String']>;
2168
2285
  };
2169
2286
  export declare type SubscriptionMigrationInput = {
2170
- environmentId?: Maybe<Scalars['String']>;
2287
+ environmentId?: InputMaybe<Scalars['String']>;
2171
2288
  subscriptionId: Scalars['String'];
2172
2289
  };
2173
2290
  export declare type SubscriptionMigrationTaskFilter = {
2174
- and?: Maybe<Array<SubscriptionMigrationTaskFilter>>;
2175
- createdAt?: Maybe<DateFieldComparison>;
2176
- environmentId?: Maybe<StringFieldComparison>;
2177
- id?: Maybe<StringFieldComparison>;
2178
- or?: Maybe<Array<SubscriptionMigrationTaskFilter>>;
2179
- status?: Maybe<TaskStatusFilterComparison>;
2180
- taskType?: Maybe<TaskTypeFilterComparison>;
2291
+ and?: InputMaybe<Array<SubscriptionMigrationTaskFilter>>;
2292
+ createdAt?: InputMaybe<DateFieldComparison>;
2293
+ environmentId?: InputMaybe<StringFieldComparison>;
2294
+ id?: InputMaybe<StringFieldComparison>;
2295
+ or?: InputMaybe<Array<SubscriptionMigrationTaskFilter>>;
2296
+ status?: InputMaybe<TaskStatusFilterComparison>;
2297
+ taskType?: InputMaybe<TaskTypeFilterComparison>;
2181
2298
  };
2182
2299
  export declare type SubscriptionMigrationTaskSort = {
2183
2300
  direction: SortDirection;
2184
2301
  field: SubscriptionMigrationTaskSortFields;
2185
- nulls?: Maybe<SortNulls>;
2302
+ nulls?: InputMaybe<SortNulls>;
2186
2303
  };
2187
2304
  export declare enum SubscriptionMigrationTaskSortFields {
2188
2305
  CreatedAt = "createdAt",
@@ -2192,49 +2309,49 @@ export declare enum SubscriptionMigrationTaskSortFields {
2192
2309
  TaskType = "taskType"
2193
2310
  }
2194
2311
  export declare type SubscriptionPriceFilter = {
2195
- and?: Maybe<Array<SubscriptionPriceFilter>>;
2196
- createdAt?: Maybe<DateFieldComparison>;
2197
- id?: Maybe<StringFieldComparison>;
2198
- or?: Maybe<Array<SubscriptionPriceFilter>>;
2199
- price?: Maybe<SubscriptionPriceFilterPriceFilter>;
2200
- subscription?: Maybe<SubscriptionPriceFilterCustomerSubscriptionFilter>;
2201
- updatedAt?: Maybe<DateFieldComparison>;
2202
- usageLimit?: Maybe<NumberFieldComparison>;
2312
+ and?: InputMaybe<Array<SubscriptionPriceFilter>>;
2313
+ createdAt?: InputMaybe<DateFieldComparison>;
2314
+ id?: InputMaybe<StringFieldComparison>;
2315
+ or?: InputMaybe<Array<SubscriptionPriceFilter>>;
2316
+ price?: InputMaybe<SubscriptionPriceFilterPriceFilter>;
2317
+ subscription?: InputMaybe<SubscriptionPriceFilterCustomerSubscriptionFilter>;
2318
+ updatedAt?: InputMaybe<DateFieldComparison>;
2319
+ usageLimit?: InputMaybe<NumberFieldComparison>;
2203
2320
  };
2204
2321
  export declare type SubscriptionPriceFilterCustomerSubscriptionFilter = {
2205
- and?: Maybe<Array<SubscriptionPriceFilterCustomerSubscriptionFilter>>;
2206
- billingId?: Maybe<StringFieldComparison>;
2207
- cancelReason?: Maybe<SubscriptionCancelReasonFilterComparison>;
2208
- cancellationDate?: Maybe<DateFieldComparison>;
2209
- createdAt?: Maybe<DateFieldComparison>;
2210
- crmId?: Maybe<StringFieldComparison>;
2211
- crmLinkUrl?: Maybe<StringFieldComparison>;
2212
- effectiveEndDate?: Maybe<DateFieldComparison>;
2213
- endDate?: Maybe<DateFieldComparison>;
2214
- environmentId?: Maybe<StringFieldComparison>;
2215
- id?: Maybe<StringFieldComparison>;
2216
- oldBillingId?: Maybe<StringFieldComparison>;
2217
- or?: Maybe<Array<SubscriptionPriceFilterCustomerSubscriptionFilter>>;
2218
- pricingType?: Maybe<PricingTypeFilterComparison>;
2219
- refId?: Maybe<StringFieldComparison>;
2220
- startDate?: Maybe<DateFieldComparison>;
2221
- status?: Maybe<SubscriptionStatusFilterComparison>;
2222
- subscriptionId?: Maybe<StringFieldComparison>;
2223
- trialEndDate?: Maybe<DateFieldComparison>;
2322
+ and?: InputMaybe<Array<SubscriptionPriceFilterCustomerSubscriptionFilter>>;
2323
+ billingId?: InputMaybe<StringFieldComparison>;
2324
+ cancelReason?: InputMaybe<SubscriptionCancelReasonFilterComparison>;
2325
+ cancellationDate?: InputMaybe<DateFieldComparison>;
2326
+ createdAt?: InputMaybe<DateFieldComparison>;
2327
+ crmId?: InputMaybe<StringFieldComparison>;
2328
+ crmLinkUrl?: InputMaybe<StringFieldComparison>;
2329
+ effectiveEndDate?: InputMaybe<DateFieldComparison>;
2330
+ endDate?: InputMaybe<DateFieldComparison>;
2331
+ environmentId?: InputMaybe<StringFieldComparison>;
2332
+ id?: InputMaybe<StringFieldComparison>;
2333
+ oldBillingId?: InputMaybe<StringFieldComparison>;
2334
+ or?: InputMaybe<Array<SubscriptionPriceFilterCustomerSubscriptionFilter>>;
2335
+ pricingType?: InputMaybe<PricingTypeFilterComparison>;
2336
+ refId?: InputMaybe<StringFieldComparison>;
2337
+ startDate?: InputMaybe<DateFieldComparison>;
2338
+ status?: InputMaybe<SubscriptionStatusFilterComparison>;
2339
+ subscriptionId?: InputMaybe<StringFieldComparison>;
2340
+ trialEndDate?: InputMaybe<DateFieldComparison>;
2224
2341
  };
2225
2342
  export declare type SubscriptionPriceFilterPriceFilter = {
2226
- and?: Maybe<Array<SubscriptionPriceFilterPriceFilter>>;
2227
- billingId?: Maybe<StringFieldComparison>;
2228
- billingModel?: Maybe<BillingModelFilterComparison>;
2229
- billingPeriod?: Maybe<BillingPeriodFilterComparison>;
2230
- createdAt?: Maybe<DateFieldComparison>;
2231
- id?: Maybe<StringFieldComparison>;
2232
- or?: Maybe<Array<SubscriptionPriceFilterPriceFilter>>;
2343
+ and?: InputMaybe<Array<SubscriptionPriceFilterPriceFilter>>;
2344
+ billingId?: InputMaybe<StringFieldComparison>;
2345
+ billingModel?: InputMaybe<BillingModelFilterComparison>;
2346
+ billingPeriod?: InputMaybe<BillingPeriodFilterComparison>;
2347
+ createdAt?: InputMaybe<DateFieldComparison>;
2348
+ id?: InputMaybe<StringFieldComparison>;
2349
+ or?: InputMaybe<Array<SubscriptionPriceFilterPriceFilter>>;
2233
2350
  };
2234
2351
  export declare type SubscriptionPriceSort = {
2235
2352
  direction: SortDirection;
2236
2353
  field: SubscriptionPriceSortFields;
2237
- nulls?: Maybe<SortNulls>;
2354
+ nulls?: InputMaybe<SortNulls>;
2238
2355
  };
2239
2356
  export declare enum SubscriptionPriceSortFields {
2240
2357
  CreatedAt = "createdAt",
@@ -2270,23 +2387,23 @@ export declare enum SubscriptionStatus {
2270
2387
  PaymentPending = "PAYMENT_PENDING"
2271
2388
  }
2272
2389
  export declare type SubscriptionStatusFilterComparison = {
2273
- eq?: Maybe<SubscriptionStatus>;
2274
- gt?: Maybe<SubscriptionStatus>;
2275
- gte?: Maybe<SubscriptionStatus>;
2276
- iLike?: Maybe<SubscriptionStatus>;
2277
- in?: Maybe<Array<SubscriptionStatus>>;
2278
- is?: Maybe<Scalars['Boolean']>;
2279
- isNot?: Maybe<Scalars['Boolean']>;
2280
- like?: Maybe<SubscriptionStatus>;
2281
- lt?: Maybe<SubscriptionStatus>;
2282
- lte?: Maybe<SubscriptionStatus>;
2283
- neq?: Maybe<SubscriptionStatus>;
2284
- notILike?: Maybe<SubscriptionStatus>;
2285
- notIn?: Maybe<Array<SubscriptionStatus>>;
2286
- notLike?: Maybe<SubscriptionStatus>;
2390
+ eq?: InputMaybe<SubscriptionStatus>;
2391
+ gt?: InputMaybe<SubscriptionStatus>;
2392
+ gte?: InputMaybe<SubscriptionStatus>;
2393
+ iLike?: InputMaybe<SubscriptionStatus>;
2394
+ in?: InputMaybe<Array<SubscriptionStatus>>;
2395
+ is?: InputMaybe<Scalars['Boolean']>;
2396
+ isNot?: InputMaybe<Scalars['Boolean']>;
2397
+ like?: InputMaybe<SubscriptionStatus>;
2398
+ lt?: InputMaybe<SubscriptionStatus>;
2399
+ lte?: InputMaybe<SubscriptionStatus>;
2400
+ neq?: InputMaybe<SubscriptionStatus>;
2401
+ notILike?: InputMaybe<SubscriptionStatus>;
2402
+ notIn?: InputMaybe<Array<SubscriptionStatus>>;
2403
+ notLike?: InputMaybe<SubscriptionStatus>;
2287
2404
  };
2288
2405
  export declare type SubscriptionUpdateScheduleCancellationInput = {
2289
- environmentId?: Maybe<Scalars['String']>;
2406
+ environmentId?: InputMaybe<Scalars['String']>;
2290
2407
  subscriptionId: Scalars['String'];
2291
2408
  };
2292
2409
  /** Status of the integration sync */
@@ -2304,20 +2421,20 @@ export declare enum TaskStatus {
2304
2421
  Pending = "PENDING"
2305
2422
  }
2306
2423
  export declare type TaskStatusFilterComparison = {
2307
- eq?: Maybe<TaskStatus>;
2308
- gt?: Maybe<TaskStatus>;
2309
- gte?: Maybe<TaskStatus>;
2310
- iLike?: Maybe<TaskStatus>;
2311
- in?: Maybe<Array<TaskStatus>>;
2312
- is?: Maybe<Scalars['Boolean']>;
2313
- isNot?: Maybe<Scalars['Boolean']>;
2314
- like?: Maybe<TaskStatus>;
2315
- lt?: Maybe<TaskStatus>;
2316
- lte?: Maybe<TaskStatus>;
2317
- neq?: Maybe<TaskStatus>;
2318
- notILike?: Maybe<TaskStatus>;
2319
- notIn?: Maybe<Array<TaskStatus>>;
2320
- notLike?: Maybe<TaskStatus>;
2424
+ eq?: InputMaybe<TaskStatus>;
2425
+ gt?: InputMaybe<TaskStatus>;
2426
+ gte?: InputMaybe<TaskStatus>;
2427
+ iLike?: InputMaybe<TaskStatus>;
2428
+ in?: InputMaybe<Array<TaskStatus>>;
2429
+ is?: InputMaybe<Scalars['Boolean']>;
2430
+ isNot?: InputMaybe<Scalars['Boolean']>;
2431
+ like?: InputMaybe<TaskStatus>;
2432
+ lt?: InputMaybe<TaskStatus>;
2433
+ lte?: InputMaybe<TaskStatus>;
2434
+ neq?: InputMaybe<TaskStatus>;
2435
+ notILike?: InputMaybe<TaskStatus>;
2436
+ notIn?: InputMaybe<Array<TaskStatus>>;
2437
+ notLike?: InputMaybe<TaskStatus>;
2321
2438
  };
2322
2439
  export declare enum TaskType {
2323
2440
  ImportIntegrationCatalog = "IMPORT_INTEGRATION_CATALOG",
@@ -2326,20 +2443,20 @@ export declare enum TaskType {
2326
2443
  SubscriptionMigration = "SUBSCRIPTION_MIGRATION"
2327
2444
  }
2328
2445
  export declare type TaskTypeFilterComparison = {
2329
- eq?: Maybe<TaskType>;
2330
- gt?: Maybe<TaskType>;
2331
- gte?: Maybe<TaskType>;
2332
- iLike?: Maybe<TaskType>;
2333
- in?: Maybe<Array<TaskType>>;
2334
- is?: Maybe<Scalars['Boolean']>;
2335
- isNot?: Maybe<Scalars['Boolean']>;
2336
- like?: Maybe<TaskType>;
2337
- lt?: Maybe<TaskType>;
2338
- lte?: Maybe<TaskType>;
2339
- neq?: Maybe<TaskType>;
2340
- notILike?: Maybe<TaskType>;
2341
- notIn?: Maybe<Array<TaskType>>;
2342
- notLike?: Maybe<TaskType>;
2446
+ eq?: InputMaybe<TaskType>;
2447
+ gt?: InputMaybe<TaskType>;
2448
+ gte?: InputMaybe<TaskType>;
2449
+ iLike?: InputMaybe<TaskType>;
2450
+ in?: InputMaybe<Array<TaskType>>;
2451
+ is?: InputMaybe<Scalars['Boolean']>;
2452
+ isNot?: InputMaybe<Scalars['Boolean']>;
2453
+ like?: InputMaybe<TaskType>;
2454
+ lt?: InputMaybe<TaskType>;
2455
+ lte?: InputMaybe<TaskType>;
2456
+ neq?: InputMaybe<TaskType>;
2457
+ notILike?: InputMaybe<TaskType>;
2458
+ notIn?: InputMaybe<Array<TaskType>>;
2459
+ notLike?: InputMaybe<TaskType>;
2343
2460
  };
2344
2461
  export declare type TaxExempt = {
2345
2462
  type: Scalars['String'];
@@ -2356,97 +2473,97 @@ export declare enum TrialPeriodUnits {
2356
2473
  Month = "MONTH"
2357
2474
  }
2358
2475
  export declare type TypographyConfigurationInput = {
2359
- body?: Maybe<FontVariantInput>;
2360
- fontFamily?: Maybe<Scalars['String']>;
2361
- h1?: Maybe<FontVariantInput>;
2362
- h2?: Maybe<FontVariantInput>;
2363
- h3?: Maybe<FontVariantInput>;
2476
+ body?: InputMaybe<FontVariantInput>;
2477
+ fontFamily?: InputMaybe<Scalars['String']>;
2478
+ h1?: InputMaybe<FontVariantInput>;
2479
+ h2?: InputMaybe<FontVariantInput>;
2480
+ h3?: InputMaybe<FontVariantInput>;
2364
2481
  };
2365
2482
  export declare type UpdateAccountInput = {
2366
2483
  displayName: Scalars['String'];
2367
2484
  id: Scalars['String'];
2368
- subscriptionBillingAnchor?: Maybe<BillingAnchor>;
2369
- subscriptionProrationBehavior?: Maybe<ProrationBehavior>;
2370
- timezone?: Maybe<Scalars['String']>;
2485
+ subscriptionBillingAnchor?: InputMaybe<BillingAnchor>;
2486
+ subscriptionProrationBehavior?: InputMaybe<ProrationBehavior>;
2487
+ timezone?: InputMaybe<Scalars['String']>;
2371
2488
  };
2372
2489
  export declare type UpdateCouponInput = {
2373
- additionalMetaData?: Maybe<Scalars['JSON']>;
2374
- description?: Maybe<Scalars['String']>;
2375
- environmentId?: Maybe<Scalars['String']>;
2490
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
2491
+ description?: InputMaybe<Scalars['String']>;
2492
+ environmentId?: InputMaybe<Scalars['String']>;
2376
2493
  name: Scalars['String'];
2377
2494
  refId: Scalars['String'];
2378
2495
  };
2379
2496
  export declare type UpdateCustomerInput = {
2380
- additionalMetaData?: Maybe<Scalars['JSON']>;
2381
- billingId?: Maybe<Scalars['String']>;
2382
- billingInformation?: Maybe<CustomerBillingInfo>;
2383
- couponRefId?: Maybe<Scalars['String']>;
2384
- crmId?: Maybe<Scalars['String']>;
2385
- customerId?: Maybe<Scalars['String']>;
2386
- email?: Maybe<Scalars['String']>;
2387
- environmentId?: Maybe<Scalars['String']>;
2388
- name?: Maybe<Scalars['String']>;
2389
- refId?: Maybe<Scalars['String']>;
2497
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
2498
+ billingId?: InputMaybe<Scalars['String']>;
2499
+ billingInformation?: InputMaybe<CustomerBillingInfo>;
2500
+ couponRefId?: InputMaybe<Scalars['String']>;
2501
+ crmId?: InputMaybe<Scalars['String']>;
2502
+ customerId?: InputMaybe<Scalars['String']>;
2503
+ email?: InputMaybe<Scalars['String']>;
2504
+ environmentId?: InputMaybe<Scalars['String']>;
2505
+ name?: InputMaybe<Scalars['String']>;
2506
+ refId?: InputMaybe<Scalars['String']>;
2390
2507
  };
2391
2508
  export declare type UpdateEnvironment = {
2392
- createdAt?: Maybe<Scalars['DateTime']>;
2393
- description?: Maybe<Scalars['String']>;
2394
- displayName?: Maybe<Scalars['String']>;
2395
- hardenClientAccessEnabled?: Maybe<Scalars['Boolean']>;
2396
- id?: Maybe<Scalars['String']>;
2397
- provisionStatus?: Maybe<EnvironmentProvisionStatus>;
2398
- signingToken?: Maybe<Scalars['String']>;
2399
- slug?: Maybe<Scalars['String']>;
2509
+ createdAt?: InputMaybe<Scalars['DateTime']>;
2510
+ description?: InputMaybe<Scalars['String']>;
2511
+ displayName?: InputMaybe<Scalars['String']>;
2512
+ hardenClientAccessEnabled?: InputMaybe<Scalars['Boolean']>;
2513
+ id?: InputMaybe<Scalars['String']>;
2514
+ provisionStatus?: InputMaybe<EnvironmentProvisionStatus>;
2515
+ signingToken?: InputMaybe<Scalars['String']>;
2516
+ slug?: InputMaybe<Scalars['String']>;
2400
2517
  };
2401
2518
  export declare type UpdateExperimentInput = {
2402
- controlGroupName?: Maybe<Scalars['String']>;
2403
- description?: Maybe<Scalars['String']>;
2404
- environmentId?: Maybe<Scalars['String']>;
2405
- name?: Maybe<Scalars['String']>;
2406
- productId?: Maybe<Scalars['String']>;
2407
- productSettings?: Maybe<ProductSettingsInput>;
2519
+ controlGroupName?: InputMaybe<Scalars['String']>;
2520
+ description?: InputMaybe<Scalars['String']>;
2521
+ environmentId?: InputMaybe<Scalars['String']>;
2522
+ name?: InputMaybe<Scalars['String']>;
2523
+ productId?: InputMaybe<Scalars['String']>;
2524
+ productSettings?: InputMaybe<ProductSettingsInput>;
2408
2525
  refId: Scalars['String'];
2409
- variantGroupName?: Maybe<Scalars['String']>;
2410
- variantPercentage?: Maybe<Scalars['Float']>;
2526
+ variantGroupName?: InputMaybe<Scalars['String']>;
2527
+ variantPercentage?: InputMaybe<Scalars['Float']>;
2411
2528
  };
2412
2529
  export declare type UpdateFeature = {
2413
- additionalMetaData?: Maybe<Scalars['JSON']>;
2414
- createdAt?: Maybe<Scalars['DateTime']>;
2415
- description?: Maybe<Scalars['String']>;
2416
- displayName?: Maybe<Scalars['String']>;
2417
- environmentId?: Maybe<Scalars['String']>;
2418
- featureStatus?: Maybe<FeatureStatus>;
2419
- featureType?: Maybe<FeatureType>;
2420
- featureUnits?: Maybe<Scalars['String']>;
2421
- featureUnitsPlural?: Maybe<Scalars['String']>;
2422
- id?: Maybe<Scalars['String']>;
2423
- meterType?: Maybe<MeterType>;
2424
- refId?: Maybe<Scalars['String']>;
2425
- updatedAt?: Maybe<Scalars['DateTime']>;
2530
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
2531
+ createdAt?: InputMaybe<Scalars['DateTime']>;
2532
+ description?: InputMaybe<Scalars['String']>;
2533
+ displayName?: InputMaybe<Scalars['String']>;
2534
+ environmentId?: InputMaybe<Scalars['String']>;
2535
+ featureStatus?: InputMaybe<FeatureStatus>;
2536
+ featureType?: InputMaybe<FeatureType>;
2537
+ featureUnits?: InputMaybe<Scalars['String']>;
2538
+ featureUnitsPlural?: InputMaybe<Scalars['String']>;
2539
+ id?: InputMaybe<Scalars['String']>;
2540
+ meterType?: InputMaybe<MeterType>;
2541
+ refId?: InputMaybe<Scalars['String']>;
2542
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
2426
2543
  };
2427
2544
  export declare type UpdateFeatureInput = {
2428
- additionalMetaData?: Maybe<Scalars['JSON']>;
2429
- description?: Maybe<Scalars['String']>;
2430
- displayName?: Maybe<Scalars['String']>;
2545
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
2546
+ description?: InputMaybe<Scalars['String']>;
2547
+ displayName?: InputMaybe<Scalars['String']>;
2431
2548
  environmentId: Scalars['String'];
2432
- featureUnits?: Maybe<Scalars['String']>;
2433
- featureUnitsPlural?: Maybe<Scalars['String']>;
2549
+ featureUnits?: InputMaybe<Scalars['String']>;
2550
+ featureUnitsPlural?: InputMaybe<Scalars['String']>;
2434
2551
  refId: Scalars['String'];
2435
2552
  };
2436
2553
  export declare type UpdateHook = {
2437
- createdAt?: Maybe<Scalars['DateTime']>;
2438
- description?: Maybe<Scalars['String']>;
2439
- endpoint?: Maybe<Scalars['String']>;
2440
- environmentId?: Maybe<Scalars['String']>;
2441
- eventLogTypes?: Maybe<Array<EventLogType>>;
2442
- id?: Maybe<Scalars['String']>;
2443
- secretKey?: Maybe<Scalars['String']>;
2444
- status?: Maybe<HookStatus>;
2554
+ createdAt?: InputMaybe<Scalars['DateTime']>;
2555
+ description?: InputMaybe<Scalars['String']>;
2556
+ endpoint?: InputMaybe<Scalars['String']>;
2557
+ environmentId?: InputMaybe<Scalars['String']>;
2558
+ eventLogTypes?: InputMaybe<Array<EventLogType>>;
2559
+ id?: InputMaybe<Scalars['String']>;
2560
+ secretKey?: InputMaybe<Scalars['String']>;
2561
+ status?: InputMaybe<HookStatus>;
2445
2562
  };
2446
2563
  export declare type UpdateIntegrationInput = {
2447
- stripeCredentials?: Maybe<StripeCredentialsInput>;
2564
+ stripeCredentials?: InputMaybe<StripeCredentialsInput>;
2448
2565
  vendorIdentifier: VendorIdentifier;
2449
- zuoraCredentials?: Maybe<ZuoraCredentialsInput>;
2566
+ zuoraCredentials?: InputMaybe<ZuoraCredentialsInput>;
2450
2567
  };
2451
2568
  export declare type UpdateOneEnvironmentInput = {
2452
2569
  /** The id of the record to update */
@@ -2492,93 +2609,93 @@ export declare type UpdateOnePromotionalEntitlementInput = {
2492
2609
  };
2493
2610
  export declare type UpdatePackageEntitlementOrderInput = {
2494
2611
  entitlements: Array<UpdatePackageEntitlementOrderItemInput>;
2495
- environmentId?: Maybe<Scalars['String']>;
2612
+ environmentId?: InputMaybe<Scalars['String']>;
2496
2613
  packageId: Scalars['String'];
2497
2614
  };
2498
2615
  export declare type UpdatePackageEntitlementOrderItemInput = {
2499
2616
  id: Scalars['String'];
2500
- order?: Maybe<Scalars['Float']>;
2617
+ order?: InputMaybe<Scalars['Float']>;
2501
2618
  };
2502
2619
  export declare type UpdateSubscriptionEntitlementInput = {
2503
- hasUnlimitedUsage?: Maybe<Scalars['Boolean']>;
2620
+ hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
2504
2621
  id: Scalars['String'];
2505
- monthlyResetPeriodConfiguration?: Maybe<MonthlyResetPeriodConfigInput>;
2506
- resetPeriod?: Maybe<EntitlementResetPeriod>;
2507
- usageLimit?: Maybe<Scalars['Float']>;
2508
- weeklyResetPeriodConfiguration?: Maybe<WeeklyResetPeriodConfigInput>;
2622
+ monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
2623
+ resetPeriod?: InputMaybe<EntitlementResetPeriod>;
2624
+ usageLimit?: InputMaybe<Scalars['Float']>;
2625
+ weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
2509
2626
  };
2510
2627
  export declare type UpdateSubscriptionInput = {
2511
- additionalMetaData?: Maybe<Scalars['JSON']>;
2512
- addons?: Maybe<Array<SubscriptionAddonInput>>;
2513
- billingPeriod?: Maybe<BillingPeriod>;
2514
- environmentId?: Maybe<Scalars['String']>;
2515
- promotionCode?: Maybe<Scalars['String']>;
2516
- refId?: Maybe<Scalars['String']>;
2517
- subscriptionEntitlements?: Maybe<Array<UpdateSubscriptionEntitlementInput>>;
2518
- subscriptionId?: Maybe<Scalars['String']>;
2519
- trialEndDate?: Maybe<Scalars['DateTime']>;
2520
- unitQuantity?: Maybe<Scalars['Float']>;
2628
+ additionalMetaData?: InputMaybe<Scalars['JSON']>;
2629
+ addons?: InputMaybe<Array<SubscriptionAddonInput>>;
2630
+ billingPeriod?: InputMaybe<BillingPeriod>;
2631
+ environmentId?: InputMaybe<Scalars['String']>;
2632
+ promotionCode?: InputMaybe<Scalars['String']>;
2633
+ refId?: InputMaybe<Scalars['String']>;
2634
+ subscriptionEntitlements?: InputMaybe<Array<UpdateSubscriptionEntitlementInput>>;
2635
+ subscriptionId?: InputMaybe<Scalars['String']>;
2636
+ trialEndDate?: InputMaybe<Scalars['DateTime']>;
2637
+ unitQuantity?: InputMaybe<Scalars['Float']>;
2521
2638
  };
2522
2639
  export declare type UsageHistoryInput = {
2523
2640
  customerRefId: Scalars['String'];
2524
- endDate?: Maybe<Scalars['DateTime']>;
2525
- environmentId?: Maybe<Scalars['String']>;
2641
+ endDate?: InputMaybe<Scalars['DateTime']>;
2642
+ environmentId?: InputMaybe<Scalars['String']>;
2526
2643
  featureRefId: Scalars['String'];
2527
- monthlyResetPeriodConfiguration?: Maybe<MonthlyResetPeriodConfigInput>;
2528
- resetPeriod?: Maybe<EntitlementResetPeriod>;
2644
+ monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
2645
+ resetPeriod?: InputMaybe<EntitlementResetPeriod>;
2529
2646
  startDate: Scalars['DateTime'];
2530
- weeklyResetPeriodConfiguration?: Maybe<WeeklyResetPeriodConfigInput>;
2647
+ weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
2531
2648
  };
2532
2649
  export declare type UsageMeasurementCreateInput = {
2533
- createdAt?: Maybe<Scalars['DateTime']>;
2650
+ createdAt?: InputMaybe<Scalars['DateTime']>;
2534
2651
  customerId: Scalars['String'];
2535
- environmentId?: Maybe<Scalars['String']>;
2652
+ environmentId?: InputMaybe<Scalars['String']>;
2536
2653
  featureId: Scalars['String'];
2537
2654
  value: Scalars['Float'];
2538
2655
  };
2539
2656
  export declare type UsageMeasurementFilter = {
2540
- and?: Maybe<Array<UsageMeasurementFilter>>;
2541
- createdAt?: Maybe<DateFieldComparison>;
2542
- customer?: Maybe<UsageMeasurementFilterCustomerFilter>;
2543
- environmentId?: Maybe<StringFieldComparison>;
2544
- feature?: Maybe<UsageMeasurementFilterFeatureFilter>;
2545
- id?: Maybe<StringFieldComparison>;
2546
- or?: Maybe<Array<UsageMeasurementFilter>>;
2657
+ and?: InputMaybe<Array<UsageMeasurementFilter>>;
2658
+ createdAt?: InputMaybe<DateFieldComparison>;
2659
+ customer?: InputMaybe<UsageMeasurementFilterCustomerFilter>;
2660
+ environmentId?: InputMaybe<StringFieldComparison>;
2661
+ feature?: InputMaybe<UsageMeasurementFilterFeatureFilter>;
2662
+ id?: InputMaybe<StringFieldComparison>;
2663
+ or?: InputMaybe<Array<UsageMeasurementFilter>>;
2547
2664
  };
2548
2665
  export declare type UsageMeasurementFilterCustomerFilter = {
2549
- and?: Maybe<Array<UsageMeasurementFilterCustomerFilter>>;
2550
- billingId?: Maybe<StringFieldComparison>;
2551
- createdAt?: Maybe<DateFieldComparison>;
2552
- crmHubspotCompanyId?: Maybe<StringFieldComparison>;
2553
- crmHubspotCompanyUrl?: Maybe<StringFieldComparison>;
2554
- crmId?: Maybe<StringFieldComparison>;
2555
- customerId?: Maybe<StringFieldComparison>;
2556
- email?: Maybe<StringFieldComparison>;
2557
- environmentId?: Maybe<StringFieldComparison>;
2558
- id?: Maybe<StringFieldComparison>;
2559
- name?: Maybe<StringFieldComparison>;
2560
- or?: Maybe<Array<UsageMeasurementFilterCustomerFilter>>;
2561
- refId?: Maybe<StringFieldComparison>;
2562
- updatedAt?: Maybe<DateFieldComparison>;
2666
+ and?: InputMaybe<Array<UsageMeasurementFilterCustomerFilter>>;
2667
+ billingId?: InputMaybe<StringFieldComparison>;
2668
+ createdAt?: InputMaybe<DateFieldComparison>;
2669
+ crmHubspotCompanyId?: InputMaybe<StringFieldComparison>;
2670
+ crmHubspotCompanyUrl?: InputMaybe<StringFieldComparison>;
2671
+ crmId?: InputMaybe<StringFieldComparison>;
2672
+ customerId?: InputMaybe<StringFieldComparison>;
2673
+ email?: InputMaybe<StringFieldComparison>;
2674
+ environmentId?: InputMaybe<StringFieldComparison>;
2675
+ id?: InputMaybe<StringFieldComparison>;
2676
+ name?: InputMaybe<StringFieldComparison>;
2677
+ or?: InputMaybe<Array<UsageMeasurementFilterCustomerFilter>>;
2678
+ refId?: InputMaybe<StringFieldComparison>;
2679
+ updatedAt?: InputMaybe<DateFieldComparison>;
2563
2680
  };
2564
2681
  export declare type UsageMeasurementFilterFeatureFilter = {
2565
- and?: Maybe<Array<UsageMeasurementFilterFeatureFilter>>;
2566
- createdAt?: Maybe<DateFieldComparison>;
2567
- description?: Maybe<StringFieldComparison>;
2568
- displayName?: Maybe<StringFieldComparison>;
2569
- environmentId?: Maybe<StringFieldComparison>;
2570
- featureStatus?: Maybe<FeatureStatusFilterComparison>;
2571
- featureType?: Maybe<FeatureTypeFilterComparison>;
2572
- id?: Maybe<StringFieldComparison>;
2573
- meterType?: Maybe<MeterTypeFilterComparison>;
2574
- or?: Maybe<Array<UsageMeasurementFilterFeatureFilter>>;
2575
- refId?: Maybe<StringFieldComparison>;
2576
- updatedAt?: Maybe<DateFieldComparison>;
2682
+ and?: InputMaybe<Array<UsageMeasurementFilterFeatureFilter>>;
2683
+ createdAt?: InputMaybe<DateFieldComparison>;
2684
+ description?: InputMaybe<StringFieldComparison>;
2685
+ displayName?: InputMaybe<StringFieldComparison>;
2686
+ environmentId?: InputMaybe<StringFieldComparison>;
2687
+ featureStatus?: InputMaybe<FeatureStatusFilterComparison>;
2688
+ featureType?: InputMaybe<FeatureTypeFilterComparison>;
2689
+ id?: InputMaybe<StringFieldComparison>;
2690
+ meterType?: InputMaybe<MeterTypeFilterComparison>;
2691
+ or?: InputMaybe<Array<UsageMeasurementFilterFeatureFilter>>;
2692
+ refId?: InputMaybe<StringFieldComparison>;
2693
+ updatedAt?: InputMaybe<DateFieldComparison>;
2577
2694
  };
2578
2695
  export declare type UsageMeasurementSort = {
2579
2696
  direction: SortDirection;
2580
2697
  field: UsageMeasurementSortFields;
2581
- nulls?: Maybe<SortNulls>;
2698
+ nulls?: InputMaybe<SortNulls>;
2582
2699
  };
2583
2700
  export declare enum UsageMeasurementSortFields {
2584
2701
  CreatedAt = "createdAt",
@@ -2591,20 +2708,20 @@ export declare enum VendorIdentifier {
2591
2708
  Zuora = "ZUORA"
2592
2709
  }
2593
2710
  export declare type VendorIdentifierFilterComparison = {
2594
- eq?: Maybe<VendorIdentifier>;
2595
- gt?: Maybe<VendorIdentifier>;
2596
- gte?: Maybe<VendorIdentifier>;
2597
- iLike?: Maybe<VendorIdentifier>;
2598
- in?: Maybe<Array<VendorIdentifier>>;
2599
- is?: Maybe<Scalars['Boolean']>;
2600
- isNot?: Maybe<Scalars['Boolean']>;
2601
- like?: Maybe<VendorIdentifier>;
2602
- lt?: Maybe<VendorIdentifier>;
2603
- lte?: Maybe<VendorIdentifier>;
2604
- neq?: Maybe<VendorIdentifier>;
2605
- notILike?: Maybe<VendorIdentifier>;
2606
- notIn?: Maybe<Array<VendorIdentifier>>;
2607
- notLike?: Maybe<VendorIdentifier>;
2711
+ eq?: InputMaybe<VendorIdentifier>;
2712
+ gt?: InputMaybe<VendorIdentifier>;
2713
+ gte?: InputMaybe<VendorIdentifier>;
2714
+ iLike?: InputMaybe<VendorIdentifier>;
2715
+ in?: InputMaybe<Array<VendorIdentifier>>;
2716
+ is?: InputMaybe<Scalars['Boolean']>;
2717
+ isNot?: InputMaybe<Scalars['Boolean']>;
2718
+ like?: InputMaybe<VendorIdentifier>;
2719
+ lt?: InputMaybe<VendorIdentifier>;
2720
+ lte?: InputMaybe<VendorIdentifier>;
2721
+ neq?: InputMaybe<VendorIdentifier>;
2722
+ notILike?: InputMaybe<VendorIdentifier>;
2723
+ notIn?: InputMaybe<Array<VendorIdentifier>>;
2724
+ notLike?: InputMaybe<VendorIdentifier>;
2608
2725
  };
2609
2726
  /** Weekly reset period according to configuration */
2610
2727
  export declare enum WeeklyAccordingTo {
@@ -2621,9 +2738,9 @@ export declare type WeeklyResetPeriodConfigInput = {
2621
2738
  accordingTo: WeeklyAccordingTo;
2622
2739
  };
2623
2740
  export declare type WidgetConfigurationUpdateInput = {
2624
- customerPortalConfiguration?: Maybe<CustomerPortalConfigurationInput>;
2625
- environmentId?: Maybe<Scalars['String']>;
2626
- paywallConfiguration?: Maybe<PaywallConfigurationInput>;
2741
+ customerPortalConfiguration?: InputMaybe<CustomerPortalConfigurationInput>;
2742
+ environmentId?: InputMaybe<Scalars['String']>;
2743
+ paywallConfiguration?: InputMaybe<PaywallConfigurationInput>;
2627
2744
  };
2628
2745
  /** The widget type */
2629
2746
  export declare enum WidgetType {
@@ -2645,29 +2762,29 @@ export declare type CouponFragment = {
2645
2762
  id: string;
2646
2763
  discountValue: number;
2647
2764
  type: CouponType;
2648
- additionalMetaData?: any | null | undefined;
2765
+ additionalMetaData?: any | null;
2649
2766
  refId: string;
2650
2767
  name: string;
2651
- description?: string | null | undefined;
2768
+ description?: string | null;
2652
2769
  createdAt: any;
2653
2770
  updatedAt: any;
2654
- billingId?: string | null | undefined;
2655
- billingLinkUrl?: string | null | undefined;
2771
+ billingId?: string | null;
2772
+ billingLinkUrl?: string | null;
2656
2773
  status: CouponStatus;
2657
2774
  syncStates?: Array<{
2658
2775
  __typename?: 'SyncState';
2659
2776
  vendorIdentifier: VendorIdentifier;
2660
2777
  status: SyncStatus;
2661
- }> | null | undefined;
2778
+ }> | null;
2662
2779
  customers?: Array<{
2663
2780
  __typename?: 'Customer';
2664
2781
  id: string;
2665
- }> | null | undefined;
2782
+ }> | null;
2666
2783
  };
2667
2784
  export declare type FetchCouponsQueryVariables = Exact<{
2668
- filter?: Maybe<CouponFilter>;
2669
- sorting?: Maybe<Array<CouponSort> | CouponSort>;
2670
- paging?: Maybe<CursorPaging>;
2785
+ filter?: InputMaybe<CouponFilter>;
2786
+ sorting?: InputMaybe<Array<CouponSort> | CouponSort>;
2787
+ paging?: InputMaybe<CursorPaging>;
2671
2788
  }>;
2672
2789
  export declare type FetchCouponsQuery = {
2673
2790
  __typename?: 'Query';
@@ -2685,9 +2802,9 @@ export declare type PriceFragment = {
2685
2802
  __typename?: 'Price';
2686
2803
  billingModel: BillingModel;
2687
2804
  billingPeriod: BillingPeriod;
2688
- billingId?: string | null | undefined;
2689
- minUnitQuantity?: number | null | undefined;
2690
- maxUnitQuantity?: number | null | undefined;
2805
+ billingId?: string | null;
2806
+ minUnitQuantity?: number | null;
2807
+ maxUnitQuantity?: number | null;
2691
2808
  price: {
2692
2809
  __typename?: 'Money';
2693
2810
  amount: number;
@@ -2695,10 +2812,10 @@ export declare type PriceFragment = {
2695
2812
  };
2696
2813
  feature?: {
2697
2814
  __typename?: 'Feature';
2698
- featureUnits?: string | null | undefined;
2699
- featureUnitsPlural?: string | null | undefined;
2815
+ featureUnits?: string | null;
2816
+ featureUnitsPlural?: string | null;
2700
2817
  displayName: string;
2701
- } | null | undefined;
2818
+ } | null;
2702
2819
  };
2703
2820
  export declare type TotalPriceFragment = {
2704
2821
  __typename?: 'CustomerSubscriptionTotalPrice';
@@ -2715,55 +2832,55 @@ export declare type TotalPriceFragment = {
2715
2832
  };
2716
2833
  export declare type PackageEntitlementFragment = {
2717
2834
  __typename?: 'PackageEntitlement';
2718
- usageLimit?: number | null | undefined;
2719
- hasUnlimitedUsage?: boolean | null | undefined;
2835
+ usageLimit?: number | null;
2836
+ hasUnlimitedUsage?: boolean | null;
2720
2837
  featureId: string;
2721
- resetPeriod?: EntitlementResetPeriod | null | undefined;
2838
+ resetPeriod?: EntitlementResetPeriod | null;
2722
2839
  feature: {
2723
2840
  __typename?: 'Feature';
2724
2841
  featureType: FeatureType;
2725
- meterType?: MeterType | null | undefined;
2726
- featureUnits?: string | null | undefined;
2727
- featureUnitsPlural?: string | null | undefined;
2842
+ meterType?: MeterType | null;
2843
+ featureUnits?: string | null;
2844
+ featureUnitsPlural?: string | null;
2728
2845
  displayName: string;
2729
- description?: string | null | undefined;
2846
+ description?: string | null;
2730
2847
  refId: string;
2731
- additionalMetaData?: any | null | undefined;
2848
+ additionalMetaData?: any | null;
2732
2849
  };
2733
2850
  };
2734
2851
  export declare type AddonFragment = {
2735
2852
  __typename?: 'Addon';
2736
2853
  refId: string;
2737
- billingId?: string | null | undefined;
2854
+ billingId?: string | null;
2738
2855
  displayName: string;
2739
- description?: string | null | undefined;
2740
- additionalMetaData?: any | null | undefined;
2741
- pricingType?: PricingType | null | undefined;
2856
+ description?: string | null;
2857
+ additionalMetaData?: any | null;
2858
+ pricingType?: PricingType | null;
2742
2859
  entitlements?: Array<{
2743
2860
  __typename?: 'PackageEntitlement';
2744
- } & PackageEntitlementFragment> | null | undefined;
2861
+ } & PackageEntitlementFragment> | null;
2745
2862
  };
2746
2863
  export declare type PlanFragment = {
2747
2864
  __typename?: 'Plan';
2748
2865
  refId: string;
2749
2866
  displayName: string;
2750
- description?: string | null | undefined;
2751
- billingId?: string | null | undefined;
2752
- additionalMetaData?: any | null | undefined;
2753
- pricingType?: PricingType | null | undefined;
2867
+ description?: string | null;
2868
+ billingId?: string | null;
2869
+ additionalMetaData?: any | null;
2870
+ pricingType?: PricingType | null;
2754
2871
  product: {
2755
2872
  __typename?: 'Product';
2756
2873
  refId: string;
2757
- displayName?: string | null | undefined;
2758
- description?: string | null | undefined;
2759
- additionalMetaData?: any | null | undefined;
2874
+ displayName?: string | null;
2875
+ description?: string | null;
2876
+ additionalMetaData?: any | null;
2760
2877
  productSettings: {
2761
2878
  __typename?: 'ProductSettings';
2762
2879
  downgradePlan?: {
2763
2880
  __typename?: 'Plan';
2764
2881
  refId: string;
2765
2882
  displayName: string;
2766
- } | null | undefined;
2883
+ } | null;
2767
2884
  };
2768
2885
  };
2769
2886
  basePlan?: {
@@ -2771,35 +2888,35 @@ export declare type PlanFragment = {
2771
2888
  id: string;
2772
2889
  refId: string;
2773
2890
  displayName: string;
2774
- } | null | undefined;
2891
+ } | null;
2775
2892
  entitlements?: Array<{
2776
2893
  __typename?: 'PackageEntitlement';
2777
- } & PackageEntitlementFragment> | null | undefined;
2894
+ } & PackageEntitlementFragment> | null;
2778
2895
  inheritedEntitlements?: Array<{
2779
2896
  __typename?: 'PackageEntitlement';
2780
- } & PackageEntitlementFragment> | null | undefined;
2897
+ } & PackageEntitlementFragment> | null;
2781
2898
  compatibleAddons?: Array<{
2782
2899
  __typename?: 'Addon';
2783
- } & AddonFragment> | null | undefined;
2900
+ } & AddonFragment> | null;
2784
2901
  prices?: Array<{
2785
2902
  __typename?: 'Price';
2786
- } & PriceFragment> | null | undefined;
2903
+ } & PriceFragment> | null;
2787
2904
  defaultTrialConfig?: {
2788
2905
  __typename?: 'DefaultTrialConfig';
2789
2906
  duration: number;
2790
2907
  units: TrialPeriodUnits;
2791
- } | null | undefined;
2908
+ } | null;
2792
2909
  };
2793
2910
  export declare type SlimSubscriptionFragment = {
2794
2911
  __typename?: 'CustomerSubscription';
2795
2912
  id: string;
2796
2913
  refId: string;
2797
2914
  status: SubscriptionStatus;
2798
- additionalMetaData?: any | null | undefined;
2799
- billingId?: string | null | undefined;
2800
- billingLinkUrl?: string | null | undefined;
2801
- effectiveEndDate?: any | null | undefined;
2802
- currentBillingPeriodEnd?: any | null | undefined;
2915
+ additionalMetaData?: any | null;
2916
+ billingId?: string | null;
2917
+ billingLinkUrl?: string | null;
2918
+ effectiveEndDate?: any | null;
2919
+ currentBillingPeriodEnd?: any | null;
2803
2920
  pricingType: PricingType;
2804
2921
  experimentInfo?: {
2805
2922
  __typename?: 'experimentInfo';
@@ -2807,17 +2924,17 @@ export declare type SlimSubscriptionFragment = {
2807
2924
  id: string;
2808
2925
  groupName: string;
2809
2926
  groupType: ExperimentGroupType;
2810
- } | null | undefined;
2927
+ } | null;
2811
2928
  prices?: Array<{
2812
2929
  __typename?: 'SubscriptionPrice';
2813
- usageLimit?: number | null | undefined;
2930
+ usageLimit?: number | null;
2814
2931
  price?: ({
2815
2932
  __typename?: 'Price';
2816
- } & PriceFragment) | null | undefined;
2817
- }> | null | undefined;
2933
+ } & PriceFragment) | null;
2934
+ }> | null;
2818
2935
  totalPrice?: ({
2819
2936
  __typename?: 'CustomerSubscriptionTotalPrice';
2820
- } & TotalPriceFragment) | null | undefined;
2937
+ } & TotalPriceFragment) | null;
2821
2938
  plan: {
2822
2939
  __typename?: 'Plan';
2823
2940
  id: string;
@@ -2831,7 +2948,7 @@ export declare type SlimSubscriptionFragment = {
2831
2948
  id: string;
2832
2949
  refId: string;
2833
2950
  };
2834
- }> | null | undefined;
2951
+ }> | null;
2835
2952
  customer: {
2836
2953
  __typename?: 'Customer';
2837
2954
  id: string;
@@ -2860,16 +2977,16 @@ export declare type SubscriptionFragment = {
2860
2977
  __typename?: 'CustomerSubscription';
2861
2978
  id: string;
2862
2979
  startDate: any;
2863
- endDate?: any | null | undefined;
2864
- trialEndDate?: any | null | undefined;
2865
- cancellationDate?: any | null | undefined;
2866
- effectiveEndDate?: any | null | undefined;
2980
+ endDate?: any | null;
2981
+ trialEndDate?: any | null;
2982
+ cancellationDate?: any | null;
2983
+ effectiveEndDate?: any | null;
2867
2984
  status: SubscriptionStatus;
2868
2985
  refId: string;
2869
- currentBillingPeriodEnd?: any | null | undefined;
2870
- additionalMetaData?: any | null | undefined;
2871
- billingId?: string | null | undefined;
2872
- billingLinkUrl?: string | null | undefined;
2986
+ currentBillingPeriodEnd?: any | null;
2987
+ additionalMetaData?: any | null;
2988
+ billingId?: string | null;
2989
+ billingLinkUrl?: string | null;
2873
2990
  pricingType: PricingType;
2874
2991
  experimentInfo?: {
2875
2992
  __typename?: 'experimentInfo';
@@ -2877,17 +2994,17 @@ export declare type SubscriptionFragment = {
2877
2994
  groupType: ExperimentGroupType;
2878
2995
  groupName: string;
2879
2996
  id: string;
2880
- } | null | undefined;
2997
+ } | null;
2881
2998
  prices?: Array<{
2882
2999
  __typename?: 'SubscriptionPrice';
2883
- usageLimit?: number | null | undefined;
3000
+ usageLimit?: number | null;
2884
3001
  price?: ({
2885
3002
  __typename?: 'Price';
2886
- } & PriceFragment) | null | undefined;
2887
- }> | null | undefined;
3003
+ } & PriceFragment) | null;
3004
+ }> | null;
2888
3005
  totalPrice?: ({
2889
3006
  __typename?: 'CustomerSubscriptionTotalPrice';
2890
- } & TotalPriceFragment) | null | undefined;
3007
+ } & TotalPriceFragment) | null;
2891
3008
  plan: {
2892
3009
  __typename?: 'Plan';
2893
3010
  } & PlanFragment;
@@ -2906,59 +3023,59 @@ export declare type SubscriptionFragment = {
2906
3023
  export declare type PromotionalEntitlementFragment = {
2907
3024
  __typename?: 'PromotionalEntitlement';
2908
3025
  status: PromotionalEntitlementStatus;
2909
- usageLimit?: number | null | undefined;
3026
+ usageLimit?: number | null;
2910
3027
  featureId: string;
2911
- hasUnlimitedUsage?: boolean | null | undefined;
2912
- resetPeriod?: EntitlementResetPeriod | null | undefined;
2913
- endDate?: any | null | undefined;
3028
+ hasUnlimitedUsage?: boolean | null;
3029
+ resetPeriod?: EntitlementResetPeriod | null;
3030
+ endDate?: any | null;
2914
3031
  isVisible: boolean;
2915
3032
  feature: {
2916
3033
  __typename?: 'Feature';
2917
3034
  featureType: FeatureType;
2918
- meterType?: MeterType | null | undefined;
2919
- featureUnits?: string | null | undefined;
2920
- featureUnitsPlural?: string | null | undefined;
3035
+ meterType?: MeterType | null;
3036
+ featureUnits?: string | null;
3037
+ featureUnitsPlural?: string | null;
2921
3038
  displayName: string;
2922
- description?: string | null | undefined;
3039
+ description?: string | null;
2923
3040
  refId: string;
2924
- additionalMetaData?: any | null | undefined;
3041
+ additionalMetaData?: any | null;
2925
3042
  };
2926
3043
  };
2927
3044
  export declare type CustomerFragment = {
2928
3045
  __typename?: 'Customer';
2929
3046
  id: string;
2930
- name?: string | null | undefined;
2931
- email?: string | null | undefined;
2932
- createdAt?: any | null | undefined;
3047
+ name?: string | null;
3048
+ email?: string | null;
3049
+ createdAt?: any | null;
2933
3050
  updatedAt: any;
2934
3051
  hasPaymentMethod: boolean;
2935
3052
  refId: string;
2936
- billingId?: string | null | undefined;
2937
- defaultPaymentExpirationMonth?: number | null | undefined;
2938
- defaultPaymentExpirationYear?: number | null | undefined;
2939
- defaultPaymentMethodLast4Digits?: string | null | undefined;
2940
- additionalMetaData?: any | null | undefined;
3053
+ billingId?: string | null;
3054
+ defaultPaymentExpirationMonth?: number | null;
3055
+ defaultPaymentExpirationYear?: number | null;
3056
+ defaultPaymentMethodLast4Digits?: string | null;
3057
+ additionalMetaData?: any | null;
2941
3058
  trialedPlans?: Array<{
2942
3059
  __typename?: 'TrialedPlan';
2943
- productRefId?: string | null | undefined;
2944
- planRefId?: string | null | undefined;
2945
- }> | null | undefined;
3060
+ productRefId?: string | null;
3061
+ planRefId?: string | null;
3062
+ }> | null;
2946
3063
  experimentInfo?: {
2947
3064
  __typename?: 'experimentInfo';
2948
3065
  groupType: ExperimentGroupType;
2949
3066
  groupName: string;
2950
3067
  id: string;
2951
3068
  name: string;
2952
- } | null | undefined;
3069
+ } | null;
2953
3070
  coupon?: ({
2954
3071
  __typename?: 'Coupon';
2955
- } & CouponFragment) | null | undefined;
3072
+ } & CouponFragment) | null;
2956
3073
  promotionalEntitlements: Array<{
2957
3074
  __typename?: 'PromotionalEntitlement';
2958
3075
  } & PromotionalEntitlementFragment>;
2959
3076
  subscriptions?: Array<{
2960
3077
  __typename?: 'CustomerSubscription';
2961
- } & SubscriptionFragment> | null | undefined;
3078
+ } & SubscriptionFragment> | null;
2962
3079
  };
2963
3080
  export declare type SubscriptionPreviewFragment = {
2964
3081
  __typename?: 'SubscriptionPreview';
@@ -2974,8 +3091,8 @@ export declare type SubscriptionPreviewFragment = {
2974
3091
  };
2975
3092
  billingPeriodRange: {
2976
3093
  __typename?: 'DateRange';
2977
- start?: any | null | undefined;
2978
- end?: any | null | undefined;
3094
+ start?: any | null;
3095
+ end?: any | null;
2979
3096
  };
2980
3097
  proration?: {
2981
3098
  __typename?: 'SubscriptionPreviewProrations';
@@ -2990,7 +3107,7 @@ export declare type SubscriptionPreviewFragment = {
2990
3107
  amount: number;
2991
3108
  currency: Currency;
2992
3109
  };
2993
- } | null | undefined;
3110
+ } | null;
2994
3111
  };
2995
3112
  export declare type GetEntitlementsQueryVariables = Exact<{
2996
3113
  query: FetchEntitlementsQuery;
@@ -3021,30 +3138,32 @@ export declare type ReportEntitlementCheckRequestedMutation = {
3021
3138
  export declare type FeatureFragment = {
3022
3139
  __typename?: 'EntitlementFeature';
3023
3140
  featureType: FeatureType;
3024
- meterType?: MeterType | null | undefined;
3025
- featureUnits?: string | null | undefined;
3026
- featureUnitsPlural?: string | null | undefined;
3141
+ meterType?: MeterType | null;
3142
+ featureUnits?: string | null;
3143
+ featureUnitsPlural?: string | null;
3027
3144
  refId: string;
3028
3145
  };
3029
3146
  export declare type EntitlementFragment = {
3030
3147
  __typename?: 'Entitlement';
3031
3148
  isGranted: boolean;
3032
- accessDeniedReason?: AccessDeniedReason | null | undefined;
3033
- customerId?: string | null | undefined;
3034
- usageLimit?: number | null | undefined;
3149
+ accessDeniedReason?: AccessDeniedReason | null;
3150
+ customerId?: string | null;
3151
+ usageLimit?: number | null;
3035
3152
  hasUnlimitedUsage: boolean;
3036
- currentUsage?: number | null | undefined;
3037
- requestedUsage?: number | null | undefined;
3038
- nextResetDate?: any | null | undefined;
3039
- resetPeriod?: EntitlementResetPeriod | null | undefined;
3153
+ currentUsage?: number | null;
3154
+ requestedUsage?: number | null;
3155
+ usageUpdatedAt?: number | null;
3156
+ entitlementUpdatedAt?: number | null;
3157
+ nextResetDate?: any | null;
3158
+ resetPeriod?: EntitlementResetPeriod | null;
3040
3159
  resetPeriodConfiguration?: ({
3041
3160
  __typename?: 'MonthlyResetPeriodConfig';
3042
3161
  } & ResetPeriodConfigurationFragment_MonthlyResetPeriodConfig_) | ({
3043
3162
  __typename?: 'WeeklyResetPeriodConfig';
3044
- } & ResetPeriodConfigurationFragment_WeeklyResetPeriodConfig_) | null | undefined;
3163
+ } & ResetPeriodConfigurationFragment_WeeklyResetPeriodConfig_) | null;
3045
3164
  feature?: ({
3046
3165
  __typename?: 'EntitlementFeature';
3047
- } & FeatureFragment) | null | undefined;
3166
+ } & FeatureFragment) | null;
3048
3167
  };
3049
3168
  declare type ResetPeriodConfigurationFragment_MonthlyResetPeriodConfig_ = {
3050
3169
  __typename: 'MonthlyResetPeriodConfig';
@@ -3055,11 +3174,11 @@ declare type ResetPeriodConfigurationFragment_WeeklyResetPeriodConfig_ = {
3055
3174
  export declare type ResetPeriodConfigurationFragment = ResetPeriodConfigurationFragment_MonthlyResetPeriodConfig_ | ResetPeriodConfigurationFragment_WeeklyResetPeriodConfig_;
3056
3175
  export declare type MonthlyResetPeriodConfigFragment = {
3057
3176
  __typename?: 'MonthlyResetPeriodConfig';
3058
- monthlyAccordingTo?: MonthlyAccordingTo | null | undefined;
3177
+ monthlyAccordingTo?: MonthlyAccordingTo | null;
3059
3178
  };
3060
3179
  export declare type WeeklyResetPeriodConfigFragment = {
3061
3180
  __typename?: 'WeeklyResetPeriodConfig';
3062
- weeklyAccordingTo?: WeeklyAccordingTo | null | undefined;
3181
+ weeklyAccordingTo?: WeeklyAccordingTo | null;
3063
3182
  };
3064
3183
  export declare type EntitlementsUpdatedSubscriptionVariables = Exact<{
3065
3184
  [key: string]: never;
@@ -3093,7 +3212,7 @@ export declare type EntitlementUsageUpdatedFragment = {
3093
3212
  customerId: string;
3094
3213
  featureId: string;
3095
3214
  currentUsage: number;
3096
- nextResetDate?: number | null | undefined;
3215
+ nextResetDate?: number | null;
3097
3216
  };
3098
3217
  entitlement: {
3099
3218
  __typename?: 'Entitlement';
@@ -3123,7 +3242,7 @@ export declare type ProvisionCustomerMutation = {
3123
3242
  };
3124
3243
  subscription?: ({
3125
3244
  __typename?: 'CustomerSubscription';
3126
- } & SlimSubscriptionFragment) | null | undefined;
3245
+ } & SlimSubscriptionFragment) | null;
3127
3246
  };
3128
3247
  };
3129
3248
  export declare type ImportCustomerMutationVariables = Exact<{
@@ -3153,7 +3272,7 @@ export declare type GetCustomerByRefIdQuery = {
3153
3272
  __typename?: 'Query';
3154
3273
  getCustomerByRefId?: ({
3155
3274
  __typename?: 'Customer';
3156
- } & CustomerFragment) | null | undefined;
3275
+ } & CustomerFragment) | null;
3157
3276
  };
3158
3277
  export declare type UpdateOneSubscriptionMutationVariables = Exact<{
3159
3278
  input: UpdateSubscriptionInput;
@@ -3180,11 +3299,11 @@ export declare type ProvisionSubscriptionMutation = {
3180
3299
  __typename?: 'Mutation';
3181
3300
  provisionSubscription: {
3182
3301
  __typename?: 'ProvisionSubscriptionResult';
3183
- checkoutUrl?: string | null | undefined;
3302
+ checkoutUrl?: string | null;
3184
3303
  status: ProvisionSubscriptionStatus;
3185
3304
  subscription?: ({
3186
3305
  __typename?: 'CustomerSubscription';
3187
- } & SlimSubscriptionFragment) | null | undefined;
3306
+ } & SlimSubscriptionFragment) | null;
3188
3307
  };
3189
3308
  };
3190
3309
  export declare type CancelSubscriptionMutationVariables = Exact<{
@@ -3246,82 +3365,82 @@ export declare type CancelSubscriptionUpdatesMutation = {
3246
3365
  };
3247
3366
  export declare type PaywallPackageEntitlementFragment = {
3248
3367
  __typename?: 'PackageEntitlement';
3249
- usageLimit?: number | null | undefined;
3250
- hasUnlimitedUsage?: boolean | null | undefined;
3368
+ usageLimit?: number | null;
3369
+ hasUnlimitedUsage?: boolean | null;
3251
3370
  featureId: string;
3252
- resetPeriod?: EntitlementResetPeriod | null | undefined;
3371
+ resetPeriod?: EntitlementResetPeriod | null;
3253
3372
  feature: {
3254
3373
  __typename?: 'Feature';
3255
3374
  featureType: FeatureType;
3256
- meterType?: MeterType | null | undefined;
3257
- featureUnits?: string | null | undefined;
3258
- featureUnitsPlural?: string | null | undefined;
3375
+ meterType?: MeterType | null;
3376
+ featureUnits?: string | null;
3377
+ featureUnitsPlural?: string | null;
3259
3378
  displayName: string;
3260
- description?: string | null | undefined;
3379
+ description?: string | null;
3261
3380
  refId: string;
3262
- additionalMetaData?: any | null | undefined;
3381
+ additionalMetaData?: any | null;
3263
3382
  };
3264
3383
  };
3265
3384
  export declare type PaywallAddonFragment = {
3266
3385
  __typename?: 'Addon';
3267
3386
  refId: string;
3268
3387
  displayName: string;
3269
- billingId?: string | null | undefined;
3270
- description?: string | null | undefined;
3271
- additionalMetaData?: any | null | undefined;
3272
- pricingType?: PricingType | null | undefined;
3388
+ billingId?: string | null;
3389
+ description?: string | null;
3390
+ additionalMetaData?: any | null;
3391
+ pricingType?: PricingType | null;
3273
3392
  entitlements?: Array<{
3274
3393
  __typename?: 'PackageEntitlement';
3275
- } & PaywallPackageEntitlementFragment> | null | undefined;
3394
+ } & PaywallPackageEntitlementFragment> | null;
3276
3395
  prices?: Array<{
3277
3396
  __typename?: 'Price';
3278
- } & PriceFragment> | null | undefined;
3397
+ } & PriceFragment> | null;
3279
3398
  };
3280
3399
  export declare type PaywallPlanFragment = {
3281
3400
  __typename?: 'Plan';
3282
3401
  refId: string;
3283
- description?: string | null | undefined;
3402
+ description?: string | null;
3284
3403
  displayName: string;
3285
- billingId?: string | null | undefined;
3286
- additionalMetaData?: any | null | undefined;
3287
- pricingType?: PricingType | null | undefined;
3404
+ billingId?: string | null;
3405
+ additionalMetaData?: any | null;
3406
+ pricingType?: PricingType | null;
3288
3407
  product: {
3289
3408
  __typename?: 'Product';
3290
3409
  refId: string;
3291
- displayName?: string | null | undefined;
3292
- description?: string | null | undefined;
3293
- additionalMetaData?: any | null | undefined;
3410
+ displayName?: string | null;
3411
+ description?: string | null;
3412
+ additionalMetaData?: any | null;
3294
3413
  productSettings: {
3295
3414
  __typename?: 'ProductSettings';
3296
3415
  downgradePlan?: {
3297
3416
  __typename?: 'Plan';
3298
3417
  refId: string;
3299
3418
  displayName: string;
3300
- } | null | undefined;
3419
+ } | null;
3301
3420
  };
3302
3421
  };
3303
3422
  basePlan?: {
3304
3423
  __typename?: 'Plan';
3305
3424
  refId: string;
3306
3425
  displayName: string;
3307
- } | null | undefined;
3426
+ } | null;
3308
3427
  entitlements?: Array<{
3309
3428
  __typename?: 'PackageEntitlement';
3310
- } & PaywallPackageEntitlementFragment> | null | undefined;
3429
+ } & PaywallPackageEntitlementFragment> | null;
3311
3430
  inheritedEntitlements?: Array<{
3312
3431
  __typename?: 'PackageEntitlement';
3313
- } & PaywallPackageEntitlementFragment> | null | undefined;
3432
+ } & PaywallPackageEntitlementFragment> | null;
3314
3433
  prices?: Array<{
3315
3434
  __typename?: 'Price';
3316
- } & PriceFragment> | null | undefined;
3435
+ } & PriceFragment> | null;
3317
3436
  defaultTrialConfig?: {
3318
3437
  __typename?: 'DefaultTrialConfig';
3319
3438
  duration: number;
3320
3439
  units: TrialPeriodUnits;
3321
- } | null | undefined;
3440
+ } | null;
3322
3441
  compatibleAddons?: Array<{
3323
3442
  __typename?: 'Addon';
3324
- } & PaywallAddonFragment> | null | undefined;
3443
+ } & PaywallAddonFragment> | null;
3325
3444
  };
3326
3445
  export declare type SdkConfigurationQueryVariables = Exact<{
3327
3446
  [key: string]: never;
@@ -3330,7 +3449,7 @@ export declare type SdkConfigurationQuery = {
3330
3449
  __typename?: 'Query';
3331
3450
  sdkConfiguration?: {
3332
3451
  __typename?: 'SdkConfiguration';
3333
- sentryDsn?: string | null | undefined;
3334
- } | null | undefined;
3452
+ sentryDsn?: string | null;
3453
+ } | null;
3335
3454
  };
3336
3455
  export {};