@stigg/node-server-sdk 0.72.1 → 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.
- package/dist/api/entitlements/entitlementsApi.d.ts +5 -3
- package/dist/api/entitlements/entitlementsApi.js +7 -4
- package/dist/api/entitlements/entitlementsGql.js +3 -1
- package/dist/api/generated/types.d.ts +1493 -1374
- package/dist/api/generated/types.js +119 -1
- package/dist/client.d.ts +1 -0
- package/dist/client.js +20 -47
- package/dist/clientInitialization.d.ts +12 -0
- package/dist/clientInitialization.js +59 -0
- package/dist/configuration.d.ts +6 -0
- package/dist/configuration.js +1 -1
- package/dist/services/cache/cacheService.d.ts +3 -6
- package/dist/services/cache/inMemoryCacheService.d.ts +2 -5
- package/dist/services/cache/inMemoryCacheService.js +3 -9
- package/dist/services/cache/redisCacheService.d.ts +21 -0
- package/dist/services/cache/redisCacheService.js +142 -0
- package/dist/services/entitlementsService.d.ts +28 -30
- package/dist/services/entitlementsService.js +46 -93
- package/dist/services/inMemoryEntitlementsService.d.ts +20 -0
- package/dist/services/inMemoryEntitlementsService.js +80 -0
- package/dist/services/redisEntitlementsService.d.ts +18 -0
- package/dist/services/redisEntitlementsService.js +83 -0
- package/dist/utils/ModelMapper.d.ts +3 -3
- package/dist/utils/ModelMapper.js +24 -26
- package/dist/utils/apiErrorHandling.js +1 -1
- package/package.json +4 -1
|
@@ -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?:
|
|
48
|
-
billingId?:
|
|
49
|
-
description?:
|
|
45
|
+
additionalMetaData?: InputMaybe<Scalars['JSON']>;
|
|
46
|
+
billingId?: InputMaybe<Scalars['String']>;
|
|
47
|
+
description?: InputMaybe<Scalars['String']>;
|
|
50
48
|
displayName: Scalars['String'];
|
|
51
|
-
environmentId?:
|
|
52
|
-
hiddenFromWidgets?:
|
|
49
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
50
|
+
hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
|
|
53
51
|
productId: Scalars['String'];
|
|
54
|
-
refId?:
|
|
55
|
-
status?:
|
|
52
|
+
refId?: InputMaybe<Scalars['String']>;
|
|
53
|
+
status?: InputMaybe<PackageStatus>;
|
|
56
54
|
};
|
|
57
55
|
export declare type AddonFilter = {
|
|
58
|
-
and?:
|
|
59
|
-
billingId?:
|
|
60
|
-
createdAt?:
|
|
61
|
-
description?:
|
|
62
|
-
displayName?:
|
|
63
|
-
environmentId?:
|
|
64
|
-
id?:
|
|
65
|
-
isLatest?:
|
|
66
|
-
or?:
|
|
67
|
-
pricingType?:
|
|
68
|
-
productId?:
|
|
69
|
-
refId?:
|
|
70
|
-
status?:
|
|
71
|
-
updatedAt?:
|
|
72
|
-
versionNumber?:
|
|
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?:
|
|
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?:
|
|
96
|
-
billingId?:
|
|
97
|
-
description?:
|
|
93
|
+
additionalMetaData?: InputMaybe<Scalars['JSON']>;
|
|
94
|
+
billingId?: InputMaybe<Scalars['String']>;
|
|
95
|
+
description?: InputMaybe<Scalars['String']>;
|
|
98
96
|
displayName: Scalars['String'];
|
|
99
|
-
hiddenFromWidgets?:
|
|
97
|
+
hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
|
|
100
98
|
id: Scalars['String'];
|
|
101
|
-
status?:
|
|
99
|
+
status?: InputMaybe<PackageStatus>;
|
|
102
100
|
};
|
|
103
101
|
export declare type Address = {
|
|
104
|
-
addressLine1?:
|
|
105
|
-
addressLine2?:
|
|
106
|
-
city?:
|
|
107
|
-
country?:
|
|
108
|
-
phoneNumber?:
|
|
109
|
-
postalCode?:
|
|
110
|
-
state?:
|
|
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?:
|
|
120
|
-
id?:
|
|
121
|
-
or?:
|
|
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?:
|
|
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?:
|
|
134
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
137
135
|
refId: Scalars['String'];
|
|
138
136
|
};
|
|
139
137
|
export declare type ArchivePlanInput = {
|
|
140
|
-
environmentId?:
|
|
138
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
141
139
|
id: Scalars['String'];
|
|
142
140
|
};
|
|
143
141
|
export declare type AttachCustomerPaymentMethodInput = {
|
|
144
|
-
customerId?:
|
|
145
|
-
environmentId?:
|
|
142
|
+
customerId?: InputMaybe<Scalars['String']>;
|
|
143
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
146
144
|
paymentMethodId: Scalars['String'];
|
|
147
|
-
refId?:
|
|
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?:
|
|
162
|
-
gt?:
|
|
163
|
-
gte?:
|
|
164
|
-
iLike?:
|
|
165
|
-
in?:
|
|
166
|
-
is?:
|
|
167
|
-
isNot?:
|
|
168
|
-
like?:
|
|
169
|
-
lt?:
|
|
170
|
-
lte?:
|
|
171
|
-
neq?:
|
|
172
|
-
notILike?:
|
|
173
|
-
notIn?:
|
|
174
|
-
notLike?:
|
|
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?:
|
|
183
|
-
gt?:
|
|
184
|
-
gte?:
|
|
185
|
-
iLike?:
|
|
186
|
-
in?:
|
|
187
|
-
is?:
|
|
188
|
-
isNot?:
|
|
189
|
-
like?:
|
|
190
|
-
lt?:
|
|
191
|
-
lte?:
|
|
192
|
-
neq?:
|
|
193
|
-
notILike?:
|
|
194
|
-
notIn?:
|
|
195
|
-
notLike?:
|
|
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?:
|
|
199
|
-
isNot?:
|
|
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?:
|
|
209
|
-
allowTaxIdCollection?:
|
|
206
|
+
allowPromoCodes?: InputMaybe<Scalars['Boolean']>;
|
|
207
|
+
allowTaxIdCollection?: InputMaybe<Scalars['Boolean']>;
|
|
210
208
|
cancelUrl: Scalars['String'];
|
|
211
|
-
collectBillingAddress?:
|
|
212
|
-
referenceId?:
|
|
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?:
|
|
217
|
-
billingId?:
|
|
218
|
-
createdAt?:
|
|
219
|
-
customers?:
|
|
220
|
-
description?:
|
|
221
|
-
environmentId?:
|
|
222
|
-
id?:
|
|
223
|
-
name?:
|
|
224
|
-
or?:
|
|
225
|
-
refId?:
|
|
226
|
-
status?:
|
|
227
|
-
type?:
|
|
228
|
-
updatedAt?:
|
|
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?:
|
|
232
|
-
billingId?:
|
|
233
|
-
createdAt?:
|
|
234
|
-
crmHubspotCompanyId?:
|
|
235
|
-
crmHubspotCompanyUrl?:
|
|
236
|
-
crmId?:
|
|
237
|
-
customerId?:
|
|
238
|
-
email?:
|
|
239
|
-
environmentId?:
|
|
240
|
-
id?:
|
|
241
|
-
name?:
|
|
242
|
-
or?:
|
|
243
|
-
refId?:
|
|
244
|
-
updatedAt?:
|
|
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?:
|
|
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?:
|
|
270
|
-
gt?:
|
|
271
|
-
gte?:
|
|
272
|
-
iLike?:
|
|
273
|
-
in?:
|
|
274
|
-
is?:
|
|
275
|
-
isNot?:
|
|
276
|
-
like?:
|
|
277
|
-
lt?:
|
|
278
|
-
lte?:
|
|
279
|
-
neq?:
|
|
280
|
-
notILike?:
|
|
281
|
-
notIn?:
|
|
282
|
-
notLike?:
|
|
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?:
|
|
291
|
-
gt?:
|
|
292
|
-
gte?:
|
|
293
|
-
iLike?:
|
|
294
|
-
in?:
|
|
295
|
-
is?:
|
|
296
|
-
isNot?:
|
|
297
|
-
like?:
|
|
298
|
-
lt?:
|
|
299
|
-
lte?:
|
|
300
|
-
neq?:
|
|
301
|
-
notILike?:
|
|
302
|
-
notIn?:
|
|
303
|
-
notLike?:
|
|
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?:
|
|
307
|
-
description?:
|
|
304
|
+
additionalMetaData?: InputMaybe<Scalars['JSON']>;
|
|
305
|
+
description?: InputMaybe<Scalars['String']>;
|
|
308
306
|
discountValue: Scalars['Float'];
|
|
309
|
-
environmentId?:
|
|
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?:
|
|
316
|
-
description?:
|
|
317
|
-
displayName?:
|
|
318
|
-
hardenClientAccessEnabled?:
|
|
319
|
-
id?:
|
|
320
|
-
provisionStatus?:
|
|
321
|
-
slug?:
|
|
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?:
|
|
322
|
+
createDefaultProduct?: InputMaybe<Scalars['Boolean']>;
|
|
325
323
|
};
|
|
326
324
|
export declare type CreateExperimentInput = {
|
|
327
325
|
controlGroupName: Scalars['String'];
|
|
328
|
-
description?:
|
|
329
|
-
environmentId?:
|
|
326
|
+
description?: InputMaybe<Scalars['String']>;
|
|
327
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
330
328
|
name: Scalars['String'];
|
|
331
329
|
productId: Scalars['String'];
|
|
332
|
-
productSettings?:
|
|
330
|
+
productSettings?: InputMaybe<ProductSettingsInput>;
|
|
333
331
|
variantGroupName: Scalars['String'];
|
|
334
332
|
variantPercentage: Scalars['Float'];
|
|
335
333
|
};
|
|
336
334
|
export declare type CreateHook = {
|
|
337
|
-
createdAt?:
|
|
338
|
-
description?:
|
|
339
|
-
endpoint?:
|
|
340
|
-
environmentId?:
|
|
341
|
-
eventLogTypes?:
|
|
342
|
-
id?:
|
|
343
|
-
secretKey?:
|
|
344
|
-
status?:
|
|
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?:
|
|
349
|
-
stripeCredentials?:
|
|
346
|
+
hubspotCredentials?: InputMaybe<HubspotCredentialsInput>;
|
|
347
|
+
stripeCredentials?: InputMaybe<StripeCredentialsInput>;
|
|
350
348
|
vendorIdentifier: VendorIdentifier;
|
|
351
|
-
zuoraCredentials?:
|
|
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?:
|
|
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
|
-
|
|
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?:
|
|
504
|
+
after?: InputMaybe<Scalars['ConnectionCursor']>;
|
|
389
505
|
/** Paginate before opaque cursor */
|
|
390
|
-
before?:
|
|
506
|
+
before?: InputMaybe<Scalars['ConnectionCursor']>;
|
|
391
507
|
/** Paginate first */
|
|
392
|
-
first?:
|
|
508
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
393
509
|
/** Paginate last */
|
|
394
|
-
last?:
|
|
510
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
395
511
|
};
|
|
396
512
|
export declare type CustomerBillingInfo = {
|
|
397
|
-
billingAddress?:
|
|
398
|
-
currency?:
|
|
399
|
-
invoiceCustomFields?:
|
|
400
|
-
language?:
|
|
401
|
-
paymentMethodId?:
|
|
402
|
-
shippingAddress?:
|
|
403
|
-
taxIds?:
|
|
404
|
-
timezone?:
|
|
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?:
|
|
408
|
-
billingId?:
|
|
409
|
-
createdAt?:
|
|
410
|
-
crmHubspotCompanyId?:
|
|
411
|
-
crmHubspotCompanyUrl?:
|
|
412
|
-
crmId?:
|
|
413
|
-
customerId?:
|
|
414
|
-
email?:
|
|
415
|
-
environmentId?:
|
|
416
|
-
id?:
|
|
417
|
-
name?:
|
|
418
|
-
or?:
|
|
419
|
-
promotionalEntitlements?:
|
|
420
|
-
refId?:
|
|
421
|
-
subscriptions?:
|
|
422
|
-
updatedAt?:
|
|
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?:
|
|
426
|
-
billingId?:
|
|
427
|
-
cancelReason?:
|
|
428
|
-
cancellationDate?:
|
|
429
|
-
createdAt?:
|
|
430
|
-
crmId?:
|
|
431
|
-
crmLinkUrl?:
|
|
432
|
-
effectiveEndDate?:
|
|
433
|
-
endDate?:
|
|
434
|
-
environmentId?:
|
|
435
|
-
id?:
|
|
436
|
-
oldBillingId?:
|
|
437
|
-
or?:
|
|
438
|
-
pricingType?:
|
|
439
|
-
refId?:
|
|
440
|
-
startDate?:
|
|
441
|
-
status?:
|
|
442
|
-
subscriptionId?:
|
|
443
|
-
trialEndDate?:
|
|
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?:
|
|
447
|
-
createdAt?:
|
|
448
|
-
environmentId?:
|
|
449
|
-
id?:
|
|
450
|
-
or?:
|
|
451
|
-
status?:
|
|
452
|
-
updatedAt?:
|
|
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?:
|
|
456
|
-
billingId?:
|
|
457
|
-
billingInformation?:
|
|
458
|
-
couponRefId?:
|
|
459
|
-
createdAt?:
|
|
460
|
-
crmId?:
|
|
461
|
-
customerId?:
|
|
462
|
-
email?:
|
|
463
|
-
environmentId?:
|
|
464
|
-
name?:
|
|
465
|
-
refId?:
|
|
466
|
-
shouldSyncFree?:
|
|
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?:
|
|
470
|
-
borderColor?:
|
|
471
|
-
currentPlanBackground?:
|
|
472
|
-
iconsColor?:
|
|
473
|
-
paywallBackgroundColor?:
|
|
474
|
-
primary?:
|
|
475
|
-
textColor?:
|
|
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?:
|
|
479
|
-
typography?:
|
|
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?:
|
|
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?:
|
|
505
|
-
and?:
|
|
506
|
-
billingId?:
|
|
507
|
-
cancelReason?:
|
|
508
|
-
cancellationDate?:
|
|
509
|
-
createdAt?:
|
|
510
|
-
crmId?:
|
|
511
|
-
crmLinkUrl?:
|
|
512
|
-
customer?:
|
|
513
|
-
effectiveEndDate?:
|
|
514
|
-
endDate?:
|
|
515
|
-
environmentId?:
|
|
516
|
-
id?:
|
|
517
|
-
oldBillingId?:
|
|
518
|
-
or?:
|
|
519
|
-
prices?:
|
|
520
|
-
pricingType?:
|
|
521
|
-
refId?:
|
|
522
|
-
startDate?:
|
|
523
|
-
status?:
|
|
524
|
-
subscriptionEntitlements?:
|
|
525
|
-
subscriptionId?:
|
|
526
|
-
trialEndDate?:
|
|
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?:
|
|
530
|
-
billingId?:
|
|
531
|
-
createdAt?:
|
|
532
|
-
crmHubspotCompanyId?:
|
|
533
|
-
crmHubspotCompanyUrl?:
|
|
534
|
-
crmId?:
|
|
535
|
-
customerId?:
|
|
536
|
-
email?:
|
|
537
|
-
environmentId?:
|
|
538
|
-
id?:
|
|
539
|
-
name?:
|
|
540
|
-
or?:
|
|
541
|
-
refId?:
|
|
542
|
-
updatedAt?:
|
|
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?:
|
|
546
|
-
createdAt?:
|
|
547
|
-
id?:
|
|
548
|
-
or?:
|
|
549
|
-
quantity?:
|
|
550
|
-
updatedAt?:
|
|
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?:
|
|
554
|
-
createdAt?:
|
|
555
|
-
environmentId?:
|
|
556
|
-
id?:
|
|
557
|
-
or?:
|
|
558
|
-
subscriptionId?:
|
|
559
|
-
updatedAt?:
|
|
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?:
|
|
563
|
-
createdAt?:
|
|
564
|
-
id?:
|
|
565
|
-
or?:
|
|
566
|
-
updatedAt?:
|
|
567
|
-
usageLimit?:
|
|
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?:
|
|
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?:
|
|
595
|
-
eq?:
|
|
596
|
-
gt?:
|
|
597
|
-
gte?:
|
|
598
|
-
in?:
|
|
599
|
-
is?:
|
|
600
|
-
isNot?:
|
|
601
|
-
lt?:
|
|
602
|
-
lte?:
|
|
603
|
-
neq?:
|
|
604
|
-
notBetween?:
|
|
605
|
-
notIn?:
|
|
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?:
|
|
613
|
-
units?:
|
|
728
|
+
duration?: InputMaybe<Scalars['Float']>;
|
|
729
|
+
units?: InputMaybe<TrialPeriodUnits>;
|
|
614
730
|
};
|
|
615
731
|
export declare type DeleteCustomerInput = {
|
|
616
|
-
environmentId?:
|
|
732
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
617
733
|
id: Scalars['String'];
|
|
618
734
|
};
|
|
619
735
|
export declare type DeleteFeatureInput = {
|
|
620
|
-
environmentId?:
|
|
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?:
|
|
778
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
663
779
|
featureId: Scalars['String'];
|
|
664
|
-
requestedUsage?:
|
|
780
|
+
requestedUsage?: InputMaybe<Scalars['Float']>;
|
|
665
781
|
};
|
|
666
782
|
export declare type EntitlementCheckResult = {
|
|
667
|
-
accessDeniedReason?:
|
|
668
|
-
currentUsage?:
|
|
783
|
+
accessDeniedReason?: InputMaybe<AccessDeniedReason>;
|
|
784
|
+
currentUsage?: InputMaybe<Scalars['Float']>;
|
|
669
785
|
hasAccess: Scalars['Boolean'];
|
|
670
|
-
hasUnlimitedUsage?:
|
|
671
|
-
monthlyResetPeriodConfiguration?:
|
|
672
|
-
nextResetDate?:
|
|
673
|
-
requestedUsage?:
|
|
674
|
-
resetPeriod?:
|
|
675
|
-
usageLimit?:
|
|
676
|
-
weeklyResetPeriodConfiguration?:
|
|
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?:
|
|
680
|
-
shouldTrack?:
|
|
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?:
|
|
695
|
-
createdAt?:
|
|
696
|
-
displayName?:
|
|
697
|
-
id?:
|
|
698
|
-
or?:
|
|
699
|
-
slug?:
|
|
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?:
|
|
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?:
|
|
808
|
-
billingInformation?:
|
|
809
|
-
billingPeriod?:
|
|
923
|
+
addons?: InputMaybe<Array<SubscriptionAddonInput>>;
|
|
924
|
+
billingInformation?: InputMaybe<SubscriptionBillingInfo>;
|
|
925
|
+
billingPeriod?: InputMaybe<BillingPeriod>;
|
|
810
926
|
customerId: Scalars['String'];
|
|
811
|
-
environmentId?:
|
|
927
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
812
928
|
planId: Scalars['String'];
|
|
813
|
-
priceUnitAmount?:
|
|
814
|
-
promotionCode?:
|
|
815
|
-
startDate?:
|
|
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?:
|
|
819
|
-
environmentId?:
|
|
820
|
-
promotionCode?:
|
|
934
|
+
addons?: InputMaybe<Array<SubscriptionAddonInput>>;
|
|
935
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
936
|
+
promotionCode?: InputMaybe<Scalars['String']>;
|
|
821
937
|
subscriptionId: Scalars['String'];
|
|
822
|
-
unitQuantity?:
|
|
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?:
|
|
875
|
-
createdAt?:
|
|
876
|
-
customers?:
|
|
877
|
-
environmentId?:
|
|
878
|
-
id?:
|
|
879
|
-
name?:
|
|
880
|
-
or?:
|
|
881
|
-
productId?:
|
|
882
|
-
refId?:
|
|
883
|
-
status?:
|
|
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?:
|
|
887
|
-
billingId?:
|
|
888
|
-
createdAt?:
|
|
889
|
-
crmHubspotCompanyId?:
|
|
890
|
-
crmHubspotCompanyUrl?:
|
|
891
|
-
crmId?:
|
|
892
|
-
customerId?:
|
|
893
|
-
email?:
|
|
894
|
-
environmentId?:
|
|
895
|
-
id?:
|
|
896
|
-
name?:
|
|
897
|
-
or?:
|
|
898
|
-
refId?:
|
|
899
|
-
updatedAt?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
927
|
-
gt?:
|
|
928
|
-
gte?:
|
|
929
|
-
iLike?:
|
|
930
|
-
in?:
|
|
931
|
-
is?:
|
|
932
|
-
isNot?:
|
|
933
|
-
like?:
|
|
934
|
-
lt?:
|
|
935
|
-
lte?:
|
|
936
|
-
neq?:
|
|
937
|
-
notILike?:
|
|
938
|
-
notIn?:
|
|
939
|
-
notLike?:
|
|
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?:
|
|
943
|
-
createdAt?:
|
|
944
|
-
description?:
|
|
945
|
-
displayName?:
|
|
946
|
-
environmentId?:
|
|
947
|
-
featureStatus?:
|
|
948
|
-
featureType?:
|
|
949
|
-
id?:
|
|
950
|
-
meterType?:
|
|
951
|
-
or?:
|
|
952
|
-
refId?:
|
|
953
|
-
updatedAt?:
|
|
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?:
|
|
957
|
-
description?:
|
|
1072
|
+
additionalMetaData?: InputMaybe<Scalars['JSON']>;
|
|
1073
|
+
description?: InputMaybe<Scalars['String']>;
|
|
958
1074
|
displayName: Scalars['String'];
|
|
959
1075
|
environmentId: Scalars['String'];
|
|
960
|
-
featureStatus?:
|
|
1076
|
+
featureStatus?: InputMaybe<FeatureStatus>;
|
|
961
1077
|
featureType: FeatureType;
|
|
962
|
-
featureUnits?:
|
|
963
|
-
featureUnitsPlural?:
|
|
964
|
-
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?:
|
|
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?:
|
|
992
|
-
gt?:
|
|
993
|
-
gte?:
|
|
994
|
-
iLike?:
|
|
995
|
-
in?:
|
|
996
|
-
is?:
|
|
997
|
-
isNot?:
|
|
998
|
-
like?:
|
|
999
|
-
lt?:
|
|
1000
|
-
lte?:
|
|
1001
|
-
neq?:
|
|
1002
|
-
notILike?:
|
|
1003
|
-
notIn?:
|
|
1004
|
-
notLike?:
|
|
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?:
|
|
1013
|
-
gt?:
|
|
1014
|
-
gte?:
|
|
1015
|
-
iLike?:
|
|
1016
|
-
in?:
|
|
1017
|
-
is?:
|
|
1018
|
-
isNot?:
|
|
1019
|
-
like?:
|
|
1020
|
-
lt?:
|
|
1021
|
-
lte?:
|
|
1022
|
-
neq?:
|
|
1023
|
-
notILike?:
|
|
1024
|
-
notIn?:
|
|
1025
|
-
notLike?:
|
|
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?:
|
|
1145
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
1030
1146
|
featureId: Scalars['String'];
|
|
1031
|
-
options?:
|
|
1147
|
+
options?: InputMaybe<EntitlementOptions>;
|
|
1032
1148
|
};
|
|
1033
1149
|
export declare type FetchEntitlementsQuery = {
|
|
1034
1150
|
customerId: Scalars['String'];
|
|
1035
|
-
environmentId?:
|
|
1151
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
1036
1152
|
};
|
|
1037
1153
|
export declare type FontVariantInput = {
|
|
1038
|
-
fontSize?:
|
|
1039
|
-
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?:
|
|
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?:
|
|
1169
|
+
versionNumber?: InputMaybe<Scalars['Float']>;
|
|
1054
1170
|
};
|
|
1055
1171
|
export declare type GetPaywallInput = {
|
|
1056
|
-
context?:
|
|
1057
|
-
customerId?:
|
|
1058
|
-
environmentId?:
|
|
1059
|
-
productId?:
|
|
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?:
|
|
1178
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
1063
1179
|
};
|
|
1064
1180
|
export declare type HookFilter = {
|
|
1065
|
-
and?:
|
|
1066
|
-
createdAt?:
|
|
1067
|
-
endpoint?:
|
|
1068
|
-
environmentId?:
|
|
1069
|
-
id?:
|
|
1070
|
-
or?:
|
|
1071
|
-
status?:
|
|
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?:
|
|
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?:
|
|
1092
|
-
gt?:
|
|
1093
|
-
gte?:
|
|
1094
|
-
iLike?:
|
|
1095
|
-
in?:
|
|
1096
|
-
is?:
|
|
1097
|
-
isNot?:
|
|
1098
|
-
like?:
|
|
1099
|
-
lt?:
|
|
1100
|
-
lte?:
|
|
1101
|
-
neq?:
|
|
1102
|
-
notILike?:
|
|
1103
|
-
notIn?:
|
|
1104
|
-
notLike?:
|
|
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?:
|
|
1224
|
+
refreshToken?: InputMaybe<Scalars['String']>;
|
|
1109
1225
|
};
|
|
1110
1226
|
export declare type ImportCustomerInput = {
|
|
1111
|
-
additionalMetaData?:
|
|
1227
|
+
additionalMetaData?: InputMaybe<Scalars['JSON']>;
|
|
1112
1228
|
billingId: Scalars['String'];
|
|
1113
|
-
customerId?:
|
|
1114
|
-
email?:
|
|
1115
|
-
environmentId?:
|
|
1116
|
-
name?:
|
|
1117
|
-
refId?:
|
|
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?:
|
|
1236
|
+
billingModel?: InputMaybe<BillingModel>;
|
|
1121
1237
|
entitySelectionMode: EntitySelectionMode;
|
|
1122
1238
|
environmentId: Scalars['String'];
|
|
1123
|
-
featureUnitName?:
|
|
1124
|
-
featureUnitPluralName?:
|
|
1125
|
-
plansSelectionBlacklist?:
|
|
1126
|
-
plansSelectionWhitelist?:
|
|
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?:
|
|
1133
|
-
customersSelectionWhitelist?:
|
|
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?:
|
|
1141
|
-
createdAt?:
|
|
1142
|
-
environmentId?:
|
|
1143
|
-
id?:
|
|
1144
|
-
or?:
|
|
1145
|
-
status?:
|
|
1146
|
-
taskType?:
|
|
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?:
|
|
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?:
|
|
1278
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
1163
1279
|
};
|
|
1164
1280
|
export declare type InitiateCheckoutInput = {
|
|
1165
|
-
addons?:
|
|
1166
|
-
allowPromoCodes?:
|
|
1167
|
-
allowTaxIdCollection?:
|
|
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?:
|
|
1286
|
+
collectBillingAddress?: InputMaybe<Scalars['Boolean']>;
|
|
1171
1287
|
customerId: Scalars['String'];
|
|
1172
1288
|
planId: Scalars['String'];
|
|
1173
1289
|
successUrl: Scalars['String'];
|
|
1174
|
-
unitQuantity?:
|
|
1290
|
+
unitQuantity?: InputMaybe<Scalars['Int']>;
|
|
1175
1291
|
};
|
|
1176
1292
|
export declare type IntFieldComparison = {
|
|
1177
|
-
between?:
|
|
1178
|
-
eq?:
|
|
1179
|
-
gt?:
|
|
1180
|
-
gte?:
|
|
1181
|
-
in?:
|
|
1182
|
-
is?:
|
|
1183
|
-
isNot?:
|
|
1184
|
-
lt?:
|
|
1185
|
-
lte?:
|
|
1186
|
-
neq?:
|
|
1187
|
-
notBetween?:
|
|
1188
|
-
notIn?:
|
|
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?:
|
|
1196
|
-
createdAt?:
|
|
1197
|
-
environmentId?:
|
|
1198
|
-
id?:
|
|
1199
|
-
or?:
|
|
1200
|
-
vendorIdentifier?:
|
|
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?:
|
|
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?:
|
|
1215
|
-
createdAt?:
|
|
1216
|
-
id?:
|
|
1217
|
-
or?:
|
|
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?:
|
|
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?:
|
|
1241
|
-
gt?:
|
|
1242
|
-
gte?:
|
|
1243
|
-
iLike?:
|
|
1244
|
-
in?:
|
|
1245
|
-
is?:
|
|
1246
|
-
isNot?:
|
|
1247
|
-
like?:
|
|
1248
|
-
lt?:
|
|
1249
|
-
lte?:
|
|
1250
|
-
neq?:
|
|
1251
|
-
notILike?:
|
|
1252
|
-
notIn?:
|
|
1253
|
-
notLike?:
|
|
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?:
|
|
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?:
|
|
1269
|
-
eq?:
|
|
1270
|
-
gt?:
|
|
1271
|
-
gte?:
|
|
1272
|
-
in?:
|
|
1273
|
-
is?:
|
|
1274
|
-
isNot?:
|
|
1275
|
-
lt?:
|
|
1276
|
-
lte?:
|
|
1277
|
-
neq?:
|
|
1278
|
-
notBetween?:
|
|
1279
|
-
notIn?:
|
|
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?:
|
|
1287
|
-
billingId?:
|
|
1288
|
-
createdAt?:
|
|
1289
|
-
description?:
|
|
1290
|
-
displayName?:
|
|
1291
|
-
environmentId?:
|
|
1292
|
-
id?:
|
|
1293
|
-
isLatest?:
|
|
1294
|
-
or?:
|
|
1295
|
-
pricingType?:
|
|
1296
|
-
productId?:
|
|
1297
|
-
refId?:
|
|
1298
|
-
status?:
|
|
1299
|
-
updatedAt?:
|
|
1300
|
-
versionNumber?:
|
|
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?:
|
|
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?:
|
|
1324
|
-
createdAt?:
|
|
1325
|
-
environmentId?:
|
|
1326
|
-
feature?:
|
|
1327
|
-
id?:
|
|
1328
|
-
or?:
|
|
1329
|
-
package?:
|
|
1330
|
-
packageId?:
|
|
1331
|
-
updatedAt?:
|
|
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?:
|
|
1335
|
-
createdAt?:
|
|
1336
|
-
description?:
|
|
1337
|
-
displayName?:
|
|
1338
|
-
environmentId?:
|
|
1339
|
-
featureStatus?:
|
|
1340
|
-
featureType?:
|
|
1341
|
-
id?:
|
|
1342
|
-
meterType?:
|
|
1343
|
-
or?:
|
|
1344
|
-
refId?:
|
|
1345
|
-
updatedAt?:
|
|
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?:
|
|
1349
|
-
billingId?:
|
|
1350
|
-
createdAt?:
|
|
1351
|
-
description?:
|
|
1352
|
-
displayName?:
|
|
1353
|
-
environmentId?:
|
|
1354
|
-
id?:
|
|
1355
|
-
isLatest?:
|
|
1356
|
-
or?:
|
|
1357
|
-
pricingType?:
|
|
1358
|
-
productId?:
|
|
1359
|
-
refId?:
|
|
1360
|
-
status?:
|
|
1361
|
-
updatedAt?:
|
|
1362
|
-
versionNumber?:
|
|
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?:
|
|
1366
|
-
displayNameOverride?:
|
|
1481
|
+
description?: InputMaybe<Scalars['String']>;
|
|
1482
|
+
displayNameOverride?: InputMaybe<Scalars['String']>;
|
|
1367
1483
|
environmentId: Scalars['String'];
|
|
1368
1484
|
featureId: Scalars['String'];
|
|
1369
|
-
hasUnlimitedUsage?:
|
|
1370
|
-
hiddenFromWidgets?:
|
|
1371
|
-
isCustom?:
|
|
1372
|
-
monthlyResetPeriodConfiguration?:
|
|
1373
|
-
order?:
|
|
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?:
|
|
1376
|
-
usageLimit?:
|
|
1377
|
-
weeklyResetPeriodConfiguration?:
|
|
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?:
|
|
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?:
|
|
1393
|
-
displayNameOverride?:
|
|
1394
|
-
hasUnlimitedUsage?:
|
|
1395
|
-
hiddenFromWidgets?:
|
|
1396
|
-
isCustom?:
|
|
1397
|
-
monthlyResetPeriodConfiguration?:
|
|
1398
|
-
order?:
|
|
1399
|
-
resetPeriod?:
|
|
1400
|
-
usageLimit?:
|
|
1401
|
-
weeklyResetPeriodConfiguration?:
|
|
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?:
|
|
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?:
|
|
1421
|
-
gt?:
|
|
1422
|
-
gte?:
|
|
1423
|
-
iLike?:
|
|
1424
|
-
in?:
|
|
1425
|
-
is?:
|
|
1426
|
-
isNot?:
|
|
1427
|
-
like?:
|
|
1428
|
-
lt?:
|
|
1429
|
-
lte?:
|
|
1430
|
-
neq?:
|
|
1431
|
-
notILike?:
|
|
1432
|
-
notIn?:
|
|
1433
|
-
notLike?:
|
|
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?:
|
|
1442
|
-
borderColor?:
|
|
1443
|
-
currentPlanBackground?:
|
|
1444
|
-
primary?:
|
|
1445
|
-
textColor?:
|
|
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?:
|
|
1449
|
-
palette?:
|
|
1450
|
-
typography?:
|
|
1564
|
+
layout?: InputMaybe<PaywallLayoutConfigurationInput>;
|
|
1565
|
+
palette?: InputMaybe<PaywallColorsPaletteInput>;
|
|
1566
|
+
typography?: InputMaybe<TypographyConfigurationInput>;
|
|
1451
1567
|
};
|
|
1452
1568
|
export declare type PaywallLayoutConfigurationInput = {
|
|
1453
|
-
alignment?:
|
|
1454
|
-
planMargin?:
|
|
1455
|
-
planPadding?:
|
|
1456
|
-
planWidth?:
|
|
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?:
|
|
1460
|
-
billingId?:
|
|
1461
|
-
description?:
|
|
1575
|
+
additionalMetaData?: InputMaybe<Scalars['JSON']>;
|
|
1576
|
+
billingId?: InputMaybe<Scalars['String']>;
|
|
1577
|
+
description?: InputMaybe<Scalars['String']>;
|
|
1462
1578
|
displayName: Scalars['String'];
|
|
1463
|
-
environmentId?:
|
|
1464
|
-
hiddenFromWidgets?:
|
|
1465
|
-
parentPlanId?:
|
|
1579
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
1580
|
+
hiddenFromWidgets?: InputMaybe<Array<WidgetType>>;
|
|
1581
|
+
parentPlanId?: InputMaybe<Scalars['String']>;
|
|
1466
1582
|
productId: Scalars['String'];
|
|
1467
|
-
refId?:
|
|
1468
|
-
status?:
|
|
1583
|
+
refId?: InputMaybe<Scalars['String']>;
|
|
1584
|
+
status?: InputMaybe<PackageStatus>;
|
|
1469
1585
|
};
|
|
1470
1586
|
export declare type PlanFilter = {
|
|
1471
|
-
and?:
|
|
1472
|
-
billingId?:
|
|
1473
|
-
compatibleAddons?:
|
|
1474
|
-
createdAt?:
|
|
1475
|
-
description?:
|
|
1476
|
-
displayName?:
|
|
1477
|
-
environmentId?:
|
|
1478
|
-
id?:
|
|
1479
|
-
isLatest?:
|
|
1480
|
-
or?:
|
|
1481
|
-
pricingType?:
|
|
1482
|
-
product?:
|
|
1483
|
-
productId?:
|
|
1484
|
-
refId?:
|
|
1485
|
-
status?:
|
|
1486
|
-
updatedAt?:
|
|
1487
|
-
versionNumber?:
|
|
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?:
|
|
1491
|
-
billingId?:
|
|
1492
|
-
createdAt?:
|
|
1493
|
-
description?:
|
|
1494
|
-
displayName?:
|
|
1495
|
-
environmentId?:
|
|
1496
|
-
id?:
|
|
1497
|
-
isLatest?:
|
|
1498
|
-
or?:
|
|
1499
|
-
pricingType?:
|
|
1500
|
-
productId?:
|
|
1501
|
-
refId?:
|
|
1502
|
-
status?:
|
|
1503
|
-
updatedAt?:
|
|
1504
|
-
versionNumber?:
|
|
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?:
|
|
1508
|
-
createdAt?:
|
|
1509
|
-
description?:
|
|
1510
|
-
displayName?:
|
|
1511
|
-
environmentId?:
|
|
1512
|
-
id?:
|
|
1513
|
-
isDefaultProduct?:
|
|
1514
|
-
or?:
|
|
1515
|
-
refId?:
|
|
1516
|
-
updatedAt?:
|
|
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?:
|
|
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?:
|
|
1540
|
-
billingId?:
|
|
1541
|
-
defaultTrialConfig?:
|
|
1542
|
-
description?:
|
|
1543
|
-
displayName?:
|
|
1544
|
-
hiddenFromWidgets?:
|
|
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?:
|
|
1547
|
-
status?:
|
|
1662
|
+
parentPlanId?: InputMaybe<Scalars['String']>;
|
|
1663
|
+
status?: InputMaybe<PackageStatus>;
|
|
1548
1664
|
};
|
|
1549
1665
|
export declare type PriceFilter = {
|
|
1550
|
-
and?:
|
|
1551
|
-
billingId?:
|
|
1552
|
-
billingModel?:
|
|
1553
|
-
billingPeriod?:
|
|
1554
|
-
createdAt?:
|
|
1555
|
-
id?:
|
|
1556
|
-
or?:
|
|
1557
|
-
package?:
|
|
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?:
|
|
1561
|
-
billingId?:
|
|
1562
|
-
createdAt?:
|
|
1563
|
-
description?:
|
|
1564
|
-
displayName?:
|
|
1565
|
-
environmentId?:
|
|
1566
|
-
id?:
|
|
1567
|
-
isLatest?:
|
|
1568
|
-
or?:
|
|
1569
|
-
pricingType?:
|
|
1570
|
-
productId?:
|
|
1571
|
-
refId?:
|
|
1572
|
-
status?:
|
|
1573
|
-
updatedAt?:
|
|
1574
|
-
versionNumber?:
|
|
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?:
|
|
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?:
|
|
1595
|
-
maxUnitQuantity?:
|
|
1596
|
-
minUnitQuantity?:
|
|
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?:
|
|
1607
|
-
gt?:
|
|
1608
|
-
gte?:
|
|
1609
|
-
iLike?:
|
|
1610
|
-
in?:
|
|
1611
|
-
is?:
|
|
1612
|
-
isNot?:
|
|
1613
|
-
like?:
|
|
1614
|
-
lt?:
|
|
1615
|
-
lte?:
|
|
1616
|
-
neq?:
|
|
1617
|
-
notILike?:
|
|
1618
|
-
notIn?:
|
|
1619
|
-
notLike?:
|
|
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?:
|
|
1623
|
-
description?:
|
|
1624
|
-
displayName?:
|
|
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?:
|
|
1630
|
-
createdAt?:
|
|
1631
|
-
description?:
|
|
1632
|
-
displayName?:
|
|
1633
|
-
environmentId?:
|
|
1634
|
-
id?:
|
|
1635
|
-
isDefaultProduct?:
|
|
1636
|
-
or?:
|
|
1637
|
-
refId?:
|
|
1638
|
-
updatedAt?:
|
|
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?:
|
|
1642
|
-
downgradePlanId?:
|
|
1758
|
+
downgradeAtEndOfBillingPeriod?: InputMaybe<Scalars['String']>;
|
|
1759
|
+
downgradePlanId?: InputMaybe<Scalars['String']>;
|
|
1643
1760
|
subscriptionCancellationTime: SubscriptionCancellationTime;
|
|
1644
1761
|
subscriptionEndSetup: SubscriptionEndSetup;
|
|
1645
|
-
subscriptionStartPlanId?:
|
|
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?:
|
|
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?:
|
|
1665
|
-
description?:
|
|
1666
|
-
displayName?:
|
|
1667
|
-
productSettings?:
|
|
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?:
|
|
1671
|
-
createdAt?:
|
|
1672
|
-
environmentId?:
|
|
1673
|
-
id?:
|
|
1674
|
-
or?:
|
|
1675
|
-
status?:
|
|
1676
|
-
updatedAt?:
|
|
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?:
|
|
1681
|
-
endDate?:
|
|
1797
|
+
description?: InputMaybe<Scalars['String']>;
|
|
1798
|
+
endDate?: InputMaybe<Scalars['DateTime']>;
|
|
1682
1799
|
environmentId: Scalars['String'];
|
|
1683
1800
|
featureId: Scalars['String'];
|
|
1684
|
-
hasUnlimitedUsage?:
|
|
1801
|
+
hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
|
|
1685
1802
|
isVisible: Scalars['Boolean'];
|
|
1686
|
-
monthlyResetPeriodConfiguration?:
|
|
1803
|
+
monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
|
|
1687
1804
|
period: PromotionalEntitlementPeriod;
|
|
1688
|
-
resetPeriod?:
|
|
1689
|
-
usageLimit?:
|
|
1690
|
-
weeklyResetPeriodConfiguration?:
|
|
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?:
|
|
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?:
|
|
1721
|
-
gt?:
|
|
1722
|
-
gte?:
|
|
1723
|
-
iLike?:
|
|
1724
|
-
in?:
|
|
1725
|
-
is?:
|
|
1726
|
-
isNot?:
|
|
1727
|
-
like?:
|
|
1728
|
-
lt?:
|
|
1729
|
-
lte?:
|
|
1730
|
-
neq?:
|
|
1731
|
-
notILike?:
|
|
1732
|
-
notIn?:
|
|
1733
|
-
notLike?:
|
|
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?:
|
|
1737
|
-
endDate?:
|
|
1738
|
-
hasUnlimitedUsage?:
|
|
1853
|
+
description?: InputMaybe<Scalars['String']>;
|
|
1854
|
+
endDate?: InputMaybe<Scalars['DateTime']>;
|
|
1855
|
+
hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
|
|
1739
1856
|
isVisible: Scalars['Boolean'];
|
|
1740
|
-
monthlyResetPeriodConfiguration?:
|
|
1857
|
+
monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
|
|
1741
1858
|
period: PromotionalEntitlementPeriod;
|
|
1742
|
-
resetPeriod?:
|
|
1743
|
-
usageLimit?:
|
|
1744
|
-
weeklyResetPeriodConfiguration?:
|
|
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?:
|
|
1752
|
-
billingId?:
|
|
1753
|
-
billingInformation?:
|
|
1754
|
-
couponRefId?:
|
|
1755
|
-
createdAt?:
|
|
1756
|
-
crmId?:
|
|
1757
|
-
customerId?:
|
|
1758
|
-
email?:
|
|
1759
|
-
environmentId?:
|
|
1760
|
-
excludeFromExperiment?:
|
|
1761
|
-
name?:
|
|
1762
|
-
refId?:
|
|
1763
|
-
shouldSyncFree?:
|
|
1764
|
-
subscriptionParams?:
|
|
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?:
|
|
1768
|
-
addons?:
|
|
1769
|
-
awaitPaymentConfirmation?:
|
|
1770
|
-
billingInformation?:
|
|
1771
|
-
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?:
|
|
1774
|
-
promotionCode?:
|
|
1775
|
-
refId?:
|
|
1776
|
-
startDate?:
|
|
1777
|
-
subscriptionId?:
|
|
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?:
|
|
1781
|
-
addons?:
|
|
1782
|
-
awaitPaymentConfirmation?:
|
|
1783
|
-
billingInformation?:
|
|
1784
|
-
billingPeriod?:
|
|
1785
|
-
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?:
|
|
1789
|
-
promotionCode?:
|
|
1790
|
-
refId?:
|
|
1791
|
-
skipTrial?:
|
|
1792
|
-
startDate?:
|
|
1793
|
-
subscriptionId?:
|
|
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?:
|
|
1797
|
-
addons?:
|
|
1798
|
-
awaitPaymentConfirmation?:
|
|
1799
|
-
billingInformation?:
|
|
1800
|
-
billingPeriod?:
|
|
1801
|
-
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?:
|
|
1805
|
-
promotionCode?:
|
|
1806
|
-
refId?:
|
|
1807
|
-
skipTrial?:
|
|
1808
|
-
startDate?:
|
|
1809
|
-
subscriptionId?:
|
|
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?:
|
|
2029
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
1913
2030
|
refId: Scalars['String'];
|
|
1914
2031
|
};
|
|
1915
2032
|
export declare type StopExperimentInput = {
|
|
1916
|
-
environmentId?:
|
|
2033
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
1917
2034
|
refId: Scalars['String'];
|
|
1918
2035
|
};
|
|
1919
2036
|
export declare type StringFieldComparison = {
|
|
1920
|
-
eq?:
|
|
1921
|
-
gt?:
|
|
1922
|
-
gte?:
|
|
1923
|
-
iLike?:
|
|
1924
|
-
in?:
|
|
1925
|
-
is?:
|
|
1926
|
-
isNot?:
|
|
1927
|
-
like?:
|
|
1928
|
-
lt?:
|
|
1929
|
-
lte?:
|
|
1930
|
-
neq?:
|
|
1931
|
-
notILike?:
|
|
1932
|
-
notIn?:
|
|
1933
|
-
notLike?:
|
|
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?:
|
|
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?:
|
|
2058
|
+
customerName?: InputMaybe<Scalars['String']>;
|
|
1942
2059
|
environmentId: Scalars['String'];
|
|
1943
|
-
nextPage?:
|
|
2060
|
+
nextPage?: InputMaybe<Scalars['String']>;
|
|
1944
2061
|
};
|
|
1945
2062
|
export declare type StripeProductSearchInput = {
|
|
1946
2063
|
environmentId: Scalars['String'];
|
|
1947
|
-
nextPage?:
|
|
1948
|
-
productName?:
|
|
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?:
|
|
2069
|
+
nextPage?: InputMaybe<Scalars['String']>;
|
|
1953
2070
|
};
|
|
1954
2071
|
export declare type SubscriptionAddonFilter = {
|
|
1955
|
-
addon?:
|
|
1956
|
-
and?:
|
|
1957
|
-
createdAt?:
|
|
1958
|
-
id?:
|
|
1959
|
-
or?:
|
|
1960
|
-
price?:
|
|
1961
|
-
quantity?:
|
|
1962
|
-
subscription?:
|
|
1963
|
-
updatedAt?:
|
|
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?:
|
|
1967
|
-
billingId?:
|
|
1968
|
-
createdAt?:
|
|
1969
|
-
description?:
|
|
1970
|
-
displayName?:
|
|
1971
|
-
environmentId?:
|
|
1972
|
-
id?:
|
|
1973
|
-
isLatest?:
|
|
1974
|
-
or?:
|
|
1975
|
-
pricingType?:
|
|
1976
|
-
productId?:
|
|
1977
|
-
refId?:
|
|
1978
|
-
status?:
|
|
1979
|
-
updatedAt?:
|
|
1980
|
-
versionNumber?:
|
|
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?:
|
|
1984
|
-
billingId?:
|
|
1985
|
-
cancelReason?:
|
|
1986
|
-
cancellationDate?:
|
|
1987
|
-
createdAt?:
|
|
1988
|
-
crmId?:
|
|
1989
|
-
crmLinkUrl?:
|
|
1990
|
-
effectiveEndDate?:
|
|
1991
|
-
endDate?:
|
|
1992
|
-
environmentId?:
|
|
1993
|
-
id?:
|
|
1994
|
-
oldBillingId?:
|
|
1995
|
-
or?:
|
|
1996
|
-
pricingType?:
|
|
1997
|
-
refId?:
|
|
1998
|
-
startDate?:
|
|
1999
|
-
status?:
|
|
2000
|
-
subscriptionId?:
|
|
2001
|
-
trialEndDate?:
|
|
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?:
|
|
2005
|
-
billingId?:
|
|
2006
|
-
billingModel?:
|
|
2007
|
-
billingPeriod?:
|
|
2008
|
-
createdAt?:
|
|
2009
|
-
id?:
|
|
2010
|
-
or?:
|
|
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?:
|
|
2131
|
+
quantity?: InputMaybe<Scalars['Int']>;
|
|
2015
2132
|
};
|
|
2016
2133
|
export declare type SubscriptionAddonSort = {
|
|
2017
2134
|
direction: SortDirection;
|
|
2018
2135
|
field: SubscriptionAddonSortFields;
|
|
2019
|
-
nulls?:
|
|
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?:
|
|
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?:
|
|
2044
|
-
gt?:
|
|
2045
|
-
gte?:
|
|
2046
|
-
iLike?:
|
|
2047
|
-
in?:
|
|
2048
|
-
is?:
|
|
2049
|
-
isNot?:
|
|
2050
|
-
like?:
|
|
2051
|
-
lt?:
|
|
2052
|
-
lte?:
|
|
2053
|
-
neq?:
|
|
2054
|
-
notILike?:
|
|
2055
|
-
notIn?:
|
|
2056
|
-
notLike?:
|
|
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?:
|
|
2060
|
-
environmentId?:
|
|
2061
|
-
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?:
|
|
2082
|
-
createdAt?:
|
|
2083
|
-
environmentId?:
|
|
2084
|
-
feature?:
|
|
2085
|
-
id?:
|
|
2086
|
-
or?:
|
|
2087
|
-
subscription?:
|
|
2088
|
-
subscriptionId?:
|
|
2089
|
-
updatedAt?:
|
|
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?:
|
|
2093
|
-
billingId?:
|
|
2094
|
-
cancelReason?:
|
|
2095
|
-
cancellationDate?:
|
|
2096
|
-
createdAt?:
|
|
2097
|
-
crmId?:
|
|
2098
|
-
crmLinkUrl?:
|
|
2099
|
-
effectiveEndDate?:
|
|
2100
|
-
endDate?:
|
|
2101
|
-
environmentId?:
|
|
2102
|
-
id?:
|
|
2103
|
-
oldBillingId?:
|
|
2104
|
-
or?:
|
|
2105
|
-
pricingType?:
|
|
2106
|
-
refId?:
|
|
2107
|
-
startDate?:
|
|
2108
|
-
status?:
|
|
2109
|
-
subscriptionId?:
|
|
2110
|
-
trialEndDate?:
|
|
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?:
|
|
2114
|
-
createdAt?:
|
|
2115
|
-
description?:
|
|
2116
|
-
displayName?:
|
|
2117
|
-
environmentId?:
|
|
2118
|
-
featureStatus?:
|
|
2119
|
-
featureType?:
|
|
2120
|
-
id?:
|
|
2121
|
-
meterType?:
|
|
2122
|
-
or?:
|
|
2123
|
-
refId?:
|
|
2124
|
-
updatedAt?:
|
|
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?:
|
|
2244
|
+
description?: InputMaybe<Scalars['String']>;
|
|
2128
2245
|
featureId: Scalars['String'];
|
|
2129
|
-
hasUnlimitedUsage?:
|
|
2130
|
-
monthlyResetPeriodConfiguration?:
|
|
2131
|
-
resetPeriod?:
|
|
2132
|
-
usageLimit?:
|
|
2133
|
-
weeklyResetPeriodConfiguration?:
|
|
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?:
|
|
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?:
|
|
2149
|
-
addons?:
|
|
2150
|
-
awaitPaymentConfirmation?:
|
|
2151
|
-
billingId?:
|
|
2152
|
-
billingInformation?:
|
|
2153
|
-
billingPeriod?:
|
|
2154
|
-
crmId?:
|
|
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?:
|
|
2157
|
-
environmentId?:
|
|
2158
|
-
isCustomPriceSubscription?:
|
|
2159
|
-
isOverridingTrialConfig?:
|
|
2160
|
-
isTrial?:
|
|
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?:
|
|
2163
|
-
promotionCode?:
|
|
2164
|
-
refId?:
|
|
2165
|
-
startDate?:
|
|
2166
|
-
subscriptionEntitlements?:
|
|
2167
|
-
subscriptionId?:
|
|
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?:
|
|
2287
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
2171
2288
|
subscriptionId: Scalars['String'];
|
|
2172
2289
|
};
|
|
2173
2290
|
export declare type SubscriptionMigrationTaskFilter = {
|
|
2174
|
-
and?:
|
|
2175
|
-
createdAt?:
|
|
2176
|
-
environmentId?:
|
|
2177
|
-
id?:
|
|
2178
|
-
or?:
|
|
2179
|
-
status?:
|
|
2180
|
-
taskType?:
|
|
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?:
|
|
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?:
|
|
2196
|
-
createdAt?:
|
|
2197
|
-
id?:
|
|
2198
|
-
or?:
|
|
2199
|
-
price?:
|
|
2200
|
-
subscription?:
|
|
2201
|
-
updatedAt?:
|
|
2202
|
-
usageLimit?:
|
|
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?:
|
|
2206
|
-
billingId?:
|
|
2207
|
-
cancelReason?:
|
|
2208
|
-
cancellationDate?:
|
|
2209
|
-
createdAt?:
|
|
2210
|
-
crmId?:
|
|
2211
|
-
crmLinkUrl?:
|
|
2212
|
-
effectiveEndDate?:
|
|
2213
|
-
endDate?:
|
|
2214
|
-
environmentId?:
|
|
2215
|
-
id?:
|
|
2216
|
-
oldBillingId?:
|
|
2217
|
-
or?:
|
|
2218
|
-
pricingType?:
|
|
2219
|
-
refId?:
|
|
2220
|
-
startDate?:
|
|
2221
|
-
status?:
|
|
2222
|
-
subscriptionId?:
|
|
2223
|
-
trialEndDate?:
|
|
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?:
|
|
2227
|
-
billingId?:
|
|
2228
|
-
billingModel?:
|
|
2229
|
-
billingPeriod?:
|
|
2230
|
-
createdAt?:
|
|
2231
|
-
id?:
|
|
2232
|
-
or?:
|
|
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?:
|
|
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?:
|
|
2274
|
-
gt?:
|
|
2275
|
-
gte?:
|
|
2276
|
-
iLike?:
|
|
2277
|
-
in?:
|
|
2278
|
-
is?:
|
|
2279
|
-
isNot?:
|
|
2280
|
-
like?:
|
|
2281
|
-
lt?:
|
|
2282
|
-
lte?:
|
|
2283
|
-
neq?:
|
|
2284
|
-
notILike?:
|
|
2285
|
-
notIn?:
|
|
2286
|
-
notLike?:
|
|
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?:
|
|
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?:
|
|
2308
|
-
gt?:
|
|
2309
|
-
gte?:
|
|
2310
|
-
iLike?:
|
|
2311
|
-
in?:
|
|
2312
|
-
is?:
|
|
2313
|
-
isNot?:
|
|
2314
|
-
like?:
|
|
2315
|
-
lt?:
|
|
2316
|
-
lte?:
|
|
2317
|
-
neq?:
|
|
2318
|
-
notILike?:
|
|
2319
|
-
notIn?:
|
|
2320
|
-
notLike?:
|
|
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?:
|
|
2330
|
-
gt?:
|
|
2331
|
-
gte?:
|
|
2332
|
-
iLike?:
|
|
2333
|
-
in?:
|
|
2334
|
-
is?:
|
|
2335
|
-
isNot?:
|
|
2336
|
-
like?:
|
|
2337
|
-
lt?:
|
|
2338
|
-
lte?:
|
|
2339
|
-
neq?:
|
|
2340
|
-
notILike?:
|
|
2341
|
-
notIn?:
|
|
2342
|
-
notLike?:
|
|
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?:
|
|
2360
|
-
fontFamily?:
|
|
2361
|
-
h1?:
|
|
2362
|
-
h2?:
|
|
2363
|
-
h3?:
|
|
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?:
|
|
2369
|
-
subscriptionProrationBehavior?:
|
|
2370
|
-
timezone?:
|
|
2485
|
+
subscriptionBillingAnchor?: InputMaybe<BillingAnchor>;
|
|
2486
|
+
subscriptionProrationBehavior?: InputMaybe<ProrationBehavior>;
|
|
2487
|
+
timezone?: InputMaybe<Scalars['String']>;
|
|
2371
2488
|
};
|
|
2372
2489
|
export declare type UpdateCouponInput = {
|
|
2373
|
-
additionalMetaData?:
|
|
2374
|
-
description?:
|
|
2375
|
-
environmentId?:
|
|
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?:
|
|
2381
|
-
billingId?:
|
|
2382
|
-
billingInformation?:
|
|
2383
|
-
couponRefId?:
|
|
2384
|
-
crmId?:
|
|
2385
|
-
customerId?:
|
|
2386
|
-
email?:
|
|
2387
|
-
environmentId?:
|
|
2388
|
-
name?:
|
|
2389
|
-
refId?:
|
|
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?:
|
|
2393
|
-
description?:
|
|
2394
|
-
displayName?:
|
|
2395
|
-
hardenClientAccessEnabled?:
|
|
2396
|
-
id?:
|
|
2397
|
-
provisionStatus?:
|
|
2398
|
-
signingToken?:
|
|
2399
|
-
slug?:
|
|
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?:
|
|
2403
|
-
description?:
|
|
2404
|
-
environmentId?:
|
|
2405
|
-
name?:
|
|
2406
|
-
productId?:
|
|
2407
|
-
productSettings?:
|
|
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?:
|
|
2410
|
-
variantPercentage?:
|
|
2526
|
+
variantGroupName?: InputMaybe<Scalars['String']>;
|
|
2527
|
+
variantPercentage?: InputMaybe<Scalars['Float']>;
|
|
2411
2528
|
};
|
|
2412
2529
|
export declare type UpdateFeature = {
|
|
2413
|
-
additionalMetaData?:
|
|
2414
|
-
createdAt?:
|
|
2415
|
-
description?:
|
|
2416
|
-
displayName?:
|
|
2417
|
-
environmentId?:
|
|
2418
|
-
featureStatus?:
|
|
2419
|
-
featureType?:
|
|
2420
|
-
featureUnits?:
|
|
2421
|
-
featureUnitsPlural?:
|
|
2422
|
-
id?:
|
|
2423
|
-
meterType?:
|
|
2424
|
-
refId?:
|
|
2425
|
-
updatedAt?:
|
|
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?:
|
|
2429
|
-
description?:
|
|
2430
|
-
displayName?:
|
|
2545
|
+
additionalMetaData?: InputMaybe<Scalars['JSON']>;
|
|
2546
|
+
description?: InputMaybe<Scalars['String']>;
|
|
2547
|
+
displayName?: InputMaybe<Scalars['String']>;
|
|
2431
2548
|
environmentId: Scalars['String'];
|
|
2432
|
-
featureUnits?:
|
|
2433
|
-
featureUnitsPlural?:
|
|
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?:
|
|
2438
|
-
description?:
|
|
2439
|
-
endpoint?:
|
|
2440
|
-
environmentId?:
|
|
2441
|
-
eventLogTypes?:
|
|
2442
|
-
id?:
|
|
2443
|
-
secretKey?:
|
|
2444
|
-
status?:
|
|
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?:
|
|
2564
|
+
stripeCredentials?: InputMaybe<StripeCredentialsInput>;
|
|
2448
2565
|
vendorIdentifier: VendorIdentifier;
|
|
2449
|
-
zuoraCredentials?:
|
|
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?:
|
|
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?:
|
|
2617
|
+
order?: InputMaybe<Scalars['Float']>;
|
|
2501
2618
|
};
|
|
2502
2619
|
export declare type UpdateSubscriptionEntitlementInput = {
|
|
2503
|
-
hasUnlimitedUsage?:
|
|
2620
|
+
hasUnlimitedUsage?: InputMaybe<Scalars['Boolean']>;
|
|
2504
2621
|
id: Scalars['String'];
|
|
2505
|
-
monthlyResetPeriodConfiguration?:
|
|
2506
|
-
resetPeriod?:
|
|
2507
|
-
usageLimit?:
|
|
2508
|
-
weeklyResetPeriodConfiguration?:
|
|
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?:
|
|
2512
|
-
addons?:
|
|
2513
|
-
billingPeriod?:
|
|
2514
|
-
environmentId?:
|
|
2515
|
-
promotionCode?:
|
|
2516
|
-
refId?:
|
|
2517
|
-
subscriptionEntitlements?:
|
|
2518
|
-
subscriptionId?:
|
|
2519
|
-
trialEndDate?:
|
|
2520
|
-
unitQuantity?:
|
|
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?:
|
|
2525
|
-
environmentId?:
|
|
2641
|
+
endDate?: InputMaybe<Scalars['DateTime']>;
|
|
2642
|
+
environmentId?: InputMaybe<Scalars['String']>;
|
|
2526
2643
|
featureRefId: Scalars['String'];
|
|
2527
|
-
monthlyResetPeriodConfiguration?:
|
|
2528
|
-
resetPeriod?:
|
|
2644
|
+
monthlyResetPeriodConfiguration?: InputMaybe<MonthlyResetPeriodConfigInput>;
|
|
2645
|
+
resetPeriod?: InputMaybe<EntitlementResetPeriod>;
|
|
2529
2646
|
startDate: Scalars['DateTime'];
|
|
2530
|
-
weeklyResetPeriodConfiguration?:
|
|
2647
|
+
weeklyResetPeriodConfiguration?: InputMaybe<WeeklyResetPeriodConfigInput>;
|
|
2531
2648
|
};
|
|
2532
2649
|
export declare type UsageMeasurementCreateInput = {
|
|
2533
|
-
createdAt?:
|
|
2650
|
+
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
2534
2651
|
customerId: Scalars['String'];
|
|
2535
|
-
environmentId?:
|
|
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?:
|
|
2541
|
-
createdAt?:
|
|
2542
|
-
customer?:
|
|
2543
|
-
environmentId?:
|
|
2544
|
-
feature?:
|
|
2545
|
-
id?:
|
|
2546
|
-
or?:
|
|
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?:
|
|
2550
|
-
billingId?:
|
|
2551
|
-
createdAt?:
|
|
2552
|
-
crmHubspotCompanyId?:
|
|
2553
|
-
crmHubspotCompanyUrl?:
|
|
2554
|
-
crmId?:
|
|
2555
|
-
customerId?:
|
|
2556
|
-
email?:
|
|
2557
|
-
environmentId?:
|
|
2558
|
-
id?:
|
|
2559
|
-
name?:
|
|
2560
|
-
or?:
|
|
2561
|
-
refId?:
|
|
2562
|
-
updatedAt?:
|
|
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?:
|
|
2566
|
-
createdAt?:
|
|
2567
|
-
description?:
|
|
2568
|
-
displayName?:
|
|
2569
|
-
environmentId?:
|
|
2570
|
-
featureStatus?:
|
|
2571
|
-
featureType?:
|
|
2572
|
-
id?:
|
|
2573
|
-
meterType?:
|
|
2574
|
-
or?:
|
|
2575
|
-
refId?:
|
|
2576
|
-
updatedAt?:
|
|
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?:
|
|
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?:
|
|
2595
|
-
gt?:
|
|
2596
|
-
gte?:
|
|
2597
|
-
iLike?:
|
|
2598
|
-
in?:
|
|
2599
|
-
is?:
|
|
2600
|
-
isNot?:
|
|
2601
|
-
like?:
|
|
2602
|
-
lt?:
|
|
2603
|
-
lte?:
|
|
2604
|
-
neq?:
|
|
2605
|
-
notILike?:
|
|
2606
|
-
notIn?:
|
|
2607
|
-
notLike?:
|
|
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?:
|
|
2625
|
-
environmentId?:
|
|
2626
|
-
paywallConfiguration?:
|
|
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
|
|
2765
|
+
additionalMetaData?: any | null;
|
|
2649
2766
|
refId: string;
|
|
2650
2767
|
name: string;
|
|
2651
|
-
description?: string | null
|
|
2768
|
+
description?: string | null;
|
|
2652
2769
|
createdAt: any;
|
|
2653
2770
|
updatedAt: any;
|
|
2654
|
-
billingId?: string | null
|
|
2655
|
-
billingLinkUrl?: string | null
|
|
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
|
|
2778
|
+
}> | null;
|
|
2662
2779
|
customers?: Array<{
|
|
2663
2780
|
__typename?: 'Customer';
|
|
2664
2781
|
id: string;
|
|
2665
|
-
}> | null
|
|
2782
|
+
}> | null;
|
|
2666
2783
|
};
|
|
2667
2784
|
export declare type FetchCouponsQueryVariables = Exact<{
|
|
2668
|
-
filter?:
|
|
2669
|
-
sorting?:
|
|
2670
|
-
paging?:
|
|
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
|
|
2689
|
-
minUnitQuantity?: number | null
|
|
2690
|
-
maxUnitQuantity?: number | null
|
|
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
|
|
2699
|
-
featureUnitsPlural?: string | null
|
|
2815
|
+
featureUnits?: string | null;
|
|
2816
|
+
featureUnitsPlural?: string | null;
|
|
2700
2817
|
displayName: string;
|
|
2701
|
-
} | null
|
|
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
|
|
2719
|
-
hasUnlimitedUsage?: boolean | null
|
|
2835
|
+
usageLimit?: number | null;
|
|
2836
|
+
hasUnlimitedUsage?: boolean | null;
|
|
2720
2837
|
featureId: string;
|
|
2721
|
-
resetPeriod?: EntitlementResetPeriod | null
|
|
2838
|
+
resetPeriod?: EntitlementResetPeriod | null;
|
|
2722
2839
|
feature: {
|
|
2723
2840
|
__typename?: 'Feature';
|
|
2724
2841
|
featureType: FeatureType;
|
|
2725
|
-
meterType?: MeterType | null
|
|
2726
|
-
featureUnits?: string | null
|
|
2727
|
-
featureUnitsPlural?: string | null
|
|
2842
|
+
meterType?: MeterType | null;
|
|
2843
|
+
featureUnits?: string | null;
|
|
2844
|
+
featureUnitsPlural?: string | null;
|
|
2728
2845
|
displayName: string;
|
|
2729
|
-
description?: string | null
|
|
2846
|
+
description?: string | null;
|
|
2730
2847
|
refId: string;
|
|
2731
|
-
additionalMetaData?: any | null
|
|
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
|
|
2854
|
+
billingId?: string | null;
|
|
2738
2855
|
displayName: string;
|
|
2739
|
-
description?: string | null
|
|
2740
|
-
additionalMetaData?: any | null
|
|
2741
|
-
pricingType?: PricingType | null
|
|
2856
|
+
description?: string | null;
|
|
2857
|
+
additionalMetaData?: any | null;
|
|
2858
|
+
pricingType?: PricingType | null;
|
|
2742
2859
|
entitlements?: Array<{
|
|
2743
2860
|
__typename?: 'PackageEntitlement';
|
|
2744
|
-
} & PackageEntitlementFragment> | null
|
|
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
|
|
2751
|
-
billingId?: string | null
|
|
2752
|
-
additionalMetaData?: any | null
|
|
2753
|
-
pricingType?: PricingType | null
|
|
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
|
|
2758
|
-
description?: string | null
|
|
2759
|
-
additionalMetaData?: any | null
|
|
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
|
|
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
|
|
2891
|
+
} | null;
|
|
2775
2892
|
entitlements?: Array<{
|
|
2776
2893
|
__typename?: 'PackageEntitlement';
|
|
2777
|
-
} & PackageEntitlementFragment> | null
|
|
2894
|
+
} & PackageEntitlementFragment> | null;
|
|
2778
2895
|
inheritedEntitlements?: Array<{
|
|
2779
2896
|
__typename?: 'PackageEntitlement';
|
|
2780
|
-
} & PackageEntitlementFragment> | null
|
|
2897
|
+
} & PackageEntitlementFragment> | null;
|
|
2781
2898
|
compatibleAddons?: Array<{
|
|
2782
2899
|
__typename?: 'Addon';
|
|
2783
|
-
} & AddonFragment> | null
|
|
2900
|
+
} & AddonFragment> | null;
|
|
2784
2901
|
prices?: Array<{
|
|
2785
2902
|
__typename?: 'Price';
|
|
2786
|
-
} & PriceFragment> | null
|
|
2903
|
+
} & PriceFragment> | null;
|
|
2787
2904
|
defaultTrialConfig?: {
|
|
2788
2905
|
__typename?: 'DefaultTrialConfig';
|
|
2789
2906
|
duration: number;
|
|
2790
2907
|
units: TrialPeriodUnits;
|
|
2791
|
-
} | null
|
|
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
|
|
2799
|
-
billingId?: string | null
|
|
2800
|
-
billingLinkUrl?: string | null
|
|
2801
|
-
effectiveEndDate?: any | null
|
|
2802
|
-
currentBillingPeriodEnd?: any | null
|
|
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
|
|
2927
|
+
} | null;
|
|
2811
2928
|
prices?: Array<{
|
|
2812
2929
|
__typename?: 'SubscriptionPrice';
|
|
2813
|
-
usageLimit?: number | null
|
|
2930
|
+
usageLimit?: number | null;
|
|
2814
2931
|
price?: ({
|
|
2815
2932
|
__typename?: 'Price';
|
|
2816
|
-
} & PriceFragment) | null
|
|
2817
|
-
}> | null
|
|
2933
|
+
} & PriceFragment) | null;
|
|
2934
|
+
}> | null;
|
|
2818
2935
|
totalPrice?: ({
|
|
2819
2936
|
__typename?: 'CustomerSubscriptionTotalPrice';
|
|
2820
|
-
} & TotalPriceFragment) | null
|
|
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
|
|
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
|
|
2864
|
-
trialEndDate?: any | null
|
|
2865
|
-
cancellationDate?: any | null
|
|
2866
|
-
effectiveEndDate?: any | null
|
|
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
|
|
2870
|
-
additionalMetaData?: any | null
|
|
2871
|
-
billingId?: string | null
|
|
2872
|
-
billingLinkUrl?: string | null
|
|
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
|
|
2997
|
+
} | null;
|
|
2881
2998
|
prices?: Array<{
|
|
2882
2999
|
__typename?: 'SubscriptionPrice';
|
|
2883
|
-
usageLimit?: number | null
|
|
3000
|
+
usageLimit?: number | null;
|
|
2884
3001
|
price?: ({
|
|
2885
3002
|
__typename?: 'Price';
|
|
2886
|
-
} & PriceFragment) | null
|
|
2887
|
-
}> | null
|
|
3003
|
+
} & PriceFragment) | null;
|
|
3004
|
+
}> | null;
|
|
2888
3005
|
totalPrice?: ({
|
|
2889
3006
|
__typename?: 'CustomerSubscriptionTotalPrice';
|
|
2890
|
-
} & TotalPriceFragment) | null
|
|
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
|
|
3026
|
+
usageLimit?: number | null;
|
|
2910
3027
|
featureId: string;
|
|
2911
|
-
hasUnlimitedUsage?: boolean | null
|
|
2912
|
-
resetPeriod?: EntitlementResetPeriod | null
|
|
2913
|
-
endDate?: any | null
|
|
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
|
|
2919
|
-
featureUnits?: string | null
|
|
2920
|
-
featureUnitsPlural?: string | null
|
|
3035
|
+
meterType?: MeterType | null;
|
|
3036
|
+
featureUnits?: string | null;
|
|
3037
|
+
featureUnitsPlural?: string | null;
|
|
2921
3038
|
displayName: string;
|
|
2922
|
-
description?: string | null
|
|
3039
|
+
description?: string | null;
|
|
2923
3040
|
refId: string;
|
|
2924
|
-
additionalMetaData?: any | null
|
|
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
|
|
2931
|
-
email?: string | null
|
|
2932
|
-
createdAt?: any | null
|
|
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
|
|
2937
|
-
defaultPaymentExpirationMonth?: number | null
|
|
2938
|
-
defaultPaymentExpirationYear?: number | null
|
|
2939
|
-
defaultPaymentMethodLast4Digits?: string | null
|
|
2940
|
-
additionalMetaData?: any | null
|
|
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
|
|
2944
|
-
planRefId?: string | null
|
|
2945
|
-
}> | null
|
|
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
|
|
3069
|
+
} | null;
|
|
2953
3070
|
coupon?: ({
|
|
2954
3071
|
__typename?: 'Coupon';
|
|
2955
|
-
} & CouponFragment) | null
|
|
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
|
|
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
|
|
2978
|
-
end?: any | null
|
|
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
|
|
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
|
|
3025
|
-
featureUnits?: string | null
|
|
3026
|
-
featureUnitsPlural?: string | null
|
|
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
|
|
3033
|
-
customerId?: string | null
|
|
3034
|
-
usageLimit?: number | null
|
|
3149
|
+
accessDeniedReason?: AccessDeniedReason | null;
|
|
3150
|
+
customerId?: string | null;
|
|
3151
|
+
usageLimit?: number | null;
|
|
3035
3152
|
hasUnlimitedUsage: boolean;
|
|
3036
|
-
currentUsage?: number | null
|
|
3037
|
-
requestedUsage?: number | null
|
|
3038
|
-
|
|
3039
|
-
|
|
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
|
|
3163
|
+
} & ResetPeriodConfigurationFragment_WeeklyResetPeriodConfig_) | null;
|
|
3045
3164
|
feature?: ({
|
|
3046
3165
|
__typename?: 'EntitlementFeature';
|
|
3047
|
-
} & FeatureFragment) | null
|
|
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
|
|
3177
|
+
monthlyAccordingTo?: MonthlyAccordingTo | null;
|
|
3059
3178
|
};
|
|
3060
3179
|
export declare type WeeklyResetPeriodConfigFragment = {
|
|
3061
3180
|
__typename?: 'WeeklyResetPeriodConfig';
|
|
3062
|
-
weeklyAccordingTo?: WeeklyAccordingTo | null
|
|
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
|
|
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
|
|
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
|
|
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
|
|
3302
|
+
checkoutUrl?: string | null;
|
|
3184
3303
|
status: ProvisionSubscriptionStatus;
|
|
3185
3304
|
subscription?: ({
|
|
3186
3305
|
__typename?: 'CustomerSubscription';
|
|
3187
|
-
} & SlimSubscriptionFragment) | null
|
|
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
|
|
3250
|
-
hasUnlimitedUsage?: boolean | null
|
|
3368
|
+
usageLimit?: number | null;
|
|
3369
|
+
hasUnlimitedUsage?: boolean | null;
|
|
3251
3370
|
featureId: string;
|
|
3252
|
-
resetPeriod?: EntitlementResetPeriod | null
|
|
3371
|
+
resetPeriod?: EntitlementResetPeriod | null;
|
|
3253
3372
|
feature: {
|
|
3254
3373
|
__typename?: 'Feature';
|
|
3255
3374
|
featureType: FeatureType;
|
|
3256
|
-
meterType?: MeterType | null
|
|
3257
|
-
featureUnits?: string | null
|
|
3258
|
-
featureUnitsPlural?: string | null
|
|
3375
|
+
meterType?: MeterType | null;
|
|
3376
|
+
featureUnits?: string | null;
|
|
3377
|
+
featureUnitsPlural?: string | null;
|
|
3259
3378
|
displayName: string;
|
|
3260
|
-
description?: string | null
|
|
3379
|
+
description?: string | null;
|
|
3261
3380
|
refId: string;
|
|
3262
|
-
additionalMetaData?: any | null
|
|
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
|
|
3270
|
-
description?: string | null
|
|
3271
|
-
additionalMetaData?: any | null
|
|
3272
|
-
pricingType?: PricingType | null
|
|
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
|
|
3394
|
+
} & PaywallPackageEntitlementFragment> | null;
|
|
3276
3395
|
prices?: Array<{
|
|
3277
3396
|
__typename?: 'Price';
|
|
3278
|
-
} & PriceFragment> | null
|
|
3397
|
+
} & PriceFragment> | null;
|
|
3279
3398
|
};
|
|
3280
3399
|
export declare type PaywallPlanFragment = {
|
|
3281
3400
|
__typename?: 'Plan';
|
|
3282
3401
|
refId: string;
|
|
3283
|
-
description?: string | null
|
|
3402
|
+
description?: string | null;
|
|
3284
3403
|
displayName: string;
|
|
3285
|
-
billingId?: string | null
|
|
3286
|
-
additionalMetaData?: any | null
|
|
3287
|
-
pricingType?: PricingType | null
|
|
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
|
|
3292
|
-
description?: string | null
|
|
3293
|
-
additionalMetaData?: any | null
|
|
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
|
|
3419
|
+
} | null;
|
|
3301
3420
|
};
|
|
3302
3421
|
};
|
|
3303
3422
|
basePlan?: {
|
|
3304
3423
|
__typename?: 'Plan';
|
|
3305
3424
|
refId: string;
|
|
3306
3425
|
displayName: string;
|
|
3307
|
-
} | null
|
|
3426
|
+
} | null;
|
|
3308
3427
|
entitlements?: Array<{
|
|
3309
3428
|
__typename?: 'PackageEntitlement';
|
|
3310
|
-
} & PaywallPackageEntitlementFragment> | null
|
|
3429
|
+
} & PaywallPackageEntitlementFragment> | null;
|
|
3311
3430
|
inheritedEntitlements?: Array<{
|
|
3312
3431
|
__typename?: 'PackageEntitlement';
|
|
3313
|
-
} & PaywallPackageEntitlementFragment> | null
|
|
3432
|
+
} & PaywallPackageEntitlementFragment> | null;
|
|
3314
3433
|
prices?: Array<{
|
|
3315
3434
|
__typename?: 'Price';
|
|
3316
|
-
} & PriceFragment> | null
|
|
3435
|
+
} & PriceFragment> | null;
|
|
3317
3436
|
defaultTrialConfig?: {
|
|
3318
3437
|
__typename?: 'DefaultTrialConfig';
|
|
3319
3438
|
duration: number;
|
|
3320
3439
|
units: TrialPeriodUnits;
|
|
3321
|
-
} | null
|
|
3440
|
+
} | null;
|
|
3322
3441
|
compatibleAddons?: Array<{
|
|
3323
3442
|
__typename?: 'Addon';
|
|
3324
|
-
} & PaywallAddonFragment> | null
|
|
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
|
|
3334
|
-
} | null
|
|
3452
|
+
sentryDsn?: string | null;
|
|
3453
|
+
} | null;
|
|
3335
3454
|
};
|
|
3336
3455
|
export {};
|