@schematichq/schematic-components 2.2.1 → 2.3.1
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/schematic-components.cjs.js +570 -144
- package/dist/schematic-components.d.ts +793 -411
- package/dist/schematic-components.esm.js +570 -144
- package/package.json +4 -7
|
@@ -21,6 +21,27 @@ declare interface AvailablePlanOptions {
|
|
|
21
21
|
useSelectedPeriod?: boolean;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
*/
|
|
28
|
+
declare const BillingCreditBundleStatus: {
|
|
29
|
+
readonly Active: "active";
|
|
30
|
+
readonly Inactive: "inactive";
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
declare type BillingCreditBundleStatus = (typeof BillingCreditBundleStatus)[keyof typeof BillingCreditBundleStatus];
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @export
|
|
38
|
+
*/
|
|
39
|
+
declare const BillingCreditBundleType: {
|
|
40
|
+
readonly Fixed: "fixed";
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
declare type BillingCreditBundleType = (typeof BillingCreditBundleType)[keyof typeof BillingCreditBundleType];
|
|
44
|
+
|
|
24
45
|
/**
|
|
25
46
|
*
|
|
26
47
|
* @export
|
|
@@ -35,10 +56,10 @@ declare interface BillingCreditBundleView {
|
|
|
35
56
|
billingInvoiceId?: string | null;
|
|
36
57
|
/**
|
|
37
58
|
*
|
|
38
|
-
* @type {
|
|
59
|
+
* @type {BillingCreditBundleType}
|
|
39
60
|
* @memberof BillingCreditBundleView
|
|
40
61
|
*/
|
|
41
|
-
bundleType:
|
|
62
|
+
bundleType: BillingCreditBundleType;
|
|
42
63
|
/**
|
|
43
64
|
*
|
|
44
65
|
* @type {Date}
|
|
@@ -71,16 +92,16 @@ declare interface BillingCreditBundleView {
|
|
|
71
92
|
creditName: string;
|
|
72
93
|
/**
|
|
73
94
|
*
|
|
74
|
-
* @type {
|
|
95
|
+
* @type {BillingCreditExpiryType}
|
|
75
96
|
* @memberof BillingCreditBundleView
|
|
76
97
|
*/
|
|
77
|
-
expiryType:
|
|
98
|
+
expiryType: BillingCreditExpiryType;
|
|
78
99
|
/**
|
|
79
100
|
*
|
|
80
|
-
* @type {
|
|
101
|
+
* @type {BillingCreditExpiryUnit}
|
|
81
102
|
* @memberof BillingCreditBundleView
|
|
82
103
|
*/
|
|
83
|
-
expiryUnit:
|
|
104
|
+
expiryUnit: BillingCreditExpiryUnit;
|
|
84
105
|
/**
|
|
85
106
|
*
|
|
86
107
|
* @type {number}
|
|
@@ -131,10 +152,10 @@ declare interface BillingCreditBundleView {
|
|
|
131
152
|
singularName?: string | null;
|
|
132
153
|
/**
|
|
133
154
|
*
|
|
134
|
-
* @type {
|
|
155
|
+
* @type {BillingCreditBundleStatus}
|
|
135
156
|
* @memberof BillingCreditBundleView
|
|
136
157
|
*/
|
|
137
|
-
status:
|
|
158
|
+
status: BillingCreditBundleStatus;
|
|
138
159
|
/**
|
|
139
160
|
*
|
|
140
161
|
* @type {BillingProductPriceResponseData}
|
|
@@ -149,6 +170,108 @@ declare interface BillingCreditBundleView {
|
|
|
149
170
|
updatedAt: Date;
|
|
150
171
|
}
|
|
151
172
|
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @export
|
|
176
|
+
*/
|
|
177
|
+
declare const BillingCreditBurnStrategy: {
|
|
178
|
+
readonly ExpirationPriority: "expiration_priority";
|
|
179
|
+
readonly FirstInFirstOut: "first_in_first_out";
|
|
180
|
+
readonly LastInFirstOut: "last_in_first_out";
|
|
181
|
+
readonly PlanFirstThenCreditBundlesFirstInFirstOut: "plan_first_then_credit_bundles_first_in_first_out";
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
declare type BillingCreditBurnStrategy = (typeof BillingCreditBurnStrategy)[keyof typeof BillingCreditBurnStrategy];
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @export
|
|
189
|
+
*/
|
|
190
|
+
declare const BillingCreditBurnStrategy_2: {
|
|
191
|
+
readonly ExpirationPriority: "expiration_priority";
|
|
192
|
+
readonly FirstInFirstOut: "first_in_first_out";
|
|
193
|
+
readonly LastInFirstOut: "last_in_first_out";
|
|
194
|
+
readonly PlanFirstThenCreditBundlesFirstInFirstOut: "plan_first_then_credit_bundles_first_in_first_out";
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
declare type BillingCreditBurnStrategy_2 = (typeof BillingCreditBurnStrategy_2)[keyof typeof BillingCreditBurnStrategy_2];
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* @export
|
|
202
|
+
*/
|
|
203
|
+
declare const BillingCreditExpiryType: {
|
|
204
|
+
readonly Duration: "duration";
|
|
205
|
+
readonly EndOfBillingPeriod: "end_of_billing_period";
|
|
206
|
+
readonly EndOfNextBillingPeriod: "end_of_next_billing_period";
|
|
207
|
+
readonly EndOfTrial: "end_of_trial";
|
|
208
|
+
readonly NoExpiry: "no_expiry";
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
declare type BillingCreditExpiryType = (typeof BillingCreditExpiryType)[keyof typeof BillingCreditExpiryType];
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @export
|
|
216
|
+
*/
|
|
217
|
+
declare const BillingCreditExpiryType_2: {
|
|
218
|
+
readonly Duration: "duration";
|
|
219
|
+
readonly EndOfBillingPeriod: "end_of_billing_period";
|
|
220
|
+
readonly EndOfNextBillingPeriod: "end_of_next_billing_period";
|
|
221
|
+
readonly EndOfTrial: "end_of_trial";
|
|
222
|
+
readonly NoExpiry: "no_expiry";
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
declare type BillingCreditExpiryType_2 = (typeof BillingCreditExpiryType_2)[keyof typeof BillingCreditExpiryType_2];
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
*
|
|
229
|
+
* @export
|
|
230
|
+
*/
|
|
231
|
+
declare const BillingCreditExpiryUnit: {
|
|
232
|
+
readonly BillingPeriods: "billing_periods";
|
|
233
|
+
readonly Days: "days";
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
declare type BillingCreditExpiryUnit = (typeof BillingCreditExpiryUnit)[keyof typeof BillingCreditExpiryUnit];
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
*
|
|
240
|
+
* @export
|
|
241
|
+
*/
|
|
242
|
+
declare const BillingCreditExpiryUnit_2: {
|
|
243
|
+
readonly BillingPeriods: "billing_periods";
|
|
244
|
+
readonly Days: "days";
|
|
245
|
+
};
|
|
246
|
+
|
|
247
|
+
declare type BillingCreditExpiryUnit_2 = (typeof BillingCreditExpiryUnit_2)[keyof typeof BillingCreditExpiryUnit_2];
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
*
|
|
251
|
+
* @export
|
|
252
|
+
*/
|
|
253
|
+
declare const BillingCreditGrantReason: {
|
|
254
|
+
readonly BillingCreditAutoTopup: "billing_credit_auto_topup";
|
|
255
|
+
readonly Free: "free";
|
|
256
|
+
readonly Plan: "plan";
|
|
257
|
+
readonly Purchased: "purchased";
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
declare type BillingCreditGrantReason = (typeof BillingCreditGrantReason)[keyof typeof BillingCreditGrantReason];
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
*
|
|
264
|
+
* @export
|
|
265
|
+
*/
|
|
266
|
+
declare const BillingCreditGrantZeroedOutReason: {
|
|
267
|
+
readonly Expired: "expired";
|
|
268
|
+
readonly Manual: "manual";
|
|
269
|
+
readonly PlanChange: "plan_change";
|
|
270
|
+
readonly PlanPeriodReset: "plan_period_reset";
|
|
271
|
+
};
|
|
272
|
+
|
|
273
|
+
declare type BillingCreditGrantZeroedOutReason = (typeof BillingCreditGrantZeroedOutReason)[keyof typeof BillingCreditGrantZeroedOutReason];
|
|
274
|
+
|
|
152
275
|
/**
|
|
153
276
|
*
|
|
154
277
|
* @export
|
|
@@ -157,10 +280,10 @@ declare interface BillingCreditBundleView {
|
|
|
157
280
|
declare interface BillingCreditResponseData {
|
|
158
281
|
/**
|
|
159
282
|
*
|
|
160
|
-
* @type {
|
|
283
|
+
* @type {BillingCreditBurnStrategy}
|
|
161
284
|
* @memberof BillingCreditResponseData
|
|
162
285
|
*/
|
|
163
|
-
burnStrategy:
|
|
286
|
+
burnStrategy: BillingCreditBurnStrategy;
|
|
164
287
|
/**
|
|
165
288
|
*
|
|
166
289
|
* @type {Date}
|
|
@@ -169,10 +292,10 @@ declare interface BillingCreditResponseData {
|
|
|
169
292
|
createdAt: Date;
|
|
170
293
|
/**
|
|
171
294
|
*
|
|
172
|
-
* @type {
|
|
295
|
+
* @type {BillingCreditExpiryUnit}
|
|
173
296
|
* @memberof BillingCreditResponseData
|
|
174
297
|
*/
|
|
175
|
-
defaultExpiryUnit:
|
|
298
|
+
defaultExpiryUnit: BillingCreditExpiryUnit;
|
|
176
299
|
/**
|
|
177
300
|
*
|
|
178
301
|
* @type {number}
|
|
@@ -181,10 +304,10 @@ declare interface BillingCreditResponseData {
|
|
|
181
304
|
defaultExpiryUnitCount?: number | null;
|
|
182
305
|
/**
|
|
183
306
|
*
|
|
184
|
-
* @type {
|
|
307
|
+
* @type {BillingCreditRolloverPolicy}
|
|
185
308
|
* @memberof BillingCreditResponseData
|
|
186
309
|
*/
|
|
187
|
-
defaultRolloverPolicy:
|
|
310
|
+
defaultRolloverPolicy: BillingCreditRolloverPolicy;
|
|
188
311
|
/**
|
|
189
312
|
*
|
|
190
313
|
* @type {string}
|
|
@@ -249,10 +372,10 @@ declare interface BillingCreditResponseData {
|
|
|
249
372
|
declare interface BillingCreditResponseData_2 {
|
|
250
373
|
/**
|
|
251
374
|
*
|
|
252
|
-
* @type {
|
|
375
|
+
* @type {BillingCreditBurnStrategy}
|
|
253
376
|
* @memberof BillingCreditResponseData
|
|
254
377
|
*/
|
|
255
|
-
burnStrategy:
|
|
378
|
+
burnStrategy: BillingCreditBurnStrategy_2;
|
|
256
379
|
/**
|
|
257
380
|
*
|
|
258
381
|
* @type {Date}
|
|
@@ -261,10 +384,10 @@ declare interface BillingCreditResponseData_2 {
|
|
|
261
384
|
createdAt: Date;
|
|
262
385
|
/**
|
|
263
386
|
*
|
|
264
|
-
* @type {
|
|
387
|
+
* @type {BillingCreditExpiryUnit}
|
|
265
388
|
* @memberof BillingCreditResponseData
|
|
266
389
|
*/
|
|
267
|
-
defaultExpiryUnit:
|
|
390
|
+
defaultExpiryUnit: BillingCreditExpiryUnit_2;
|
|
268
391
|
/**
|
|
269
392
|
*
|
|
270
393
|
* @type {number}
|
|
@@ -273,10 +396,10 @@ declare interface BillingCreditResponseData_2 {
|
|
|
273
396
|
defaultExpiryUnitCount?: number | null;
|
|
274
397
|
/**
|
|
275
398
|
*
|
|
276
|
-
* @type {
|
|
399
|
+
* @type {BillingCreditRolloverPolicy}
|
|
277
400
|
* @memberof BillingCreditResponseData
|
|
278
401
|
*/
|
|
279
|
-
defaultRolloverPolicy:
|
|
402
|
+
defaultRolloverPolicy: BillingCreditRolloverPolicy_2;
|
|
280
403
|
/**
|
|
281
404
|
*
|
|
282
405
|
* @type {string}
|
|
@@ -334,16 +457,99 @@ declare interface BillingCreditResponseData_2 {
|
|
|
334
457
|
}
|
|
335
458
|
|
|
336
459
|
/**
|
|
337
|
-
* Schematic API
|
|
338
|
-
* Schematic API
|
|
339
460
|
*
|
|
340
|
-
*
|
|
461
|
+
* @export
|
|
462
|
+
*/
|
|
463
|
+
declare const BillingCreditRolloverPolicy: {
|
|
464
|
+
readonly Expire: "expire";
|
|
465
|
+
readonly None: "none";
|
|
466
|
+
readonly Rollover: "rollover";
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
declare type BillingCreditRolloverPolicy = (typeof BillingCreditRolloverPolicy)[keyof typeof BillingCreditRolloverPolicy];
|
|
470
|
+
|
|
471
|
+
/**
|
|
341
472
|
*
|
|
473
|
+
* @export
|
|
474
|
+
*/
|
|
475
|
+
declare const BillingCreditRolloverPolicy_2: {
|
|
476
|
+
readonly Expire: "expire";
|
|
477
|
+
readonly None: "none";
|
|
478
|
+
readonly Rollover: "rollover";
|
|
479
|
+
};
|
|
480
|
+
|
|
481
|
+
declare type BillingCreditRolloverPolicy_2 = (typeof BillingCreditRolloverPolicy_2)[keyof typeof BillingCreditRolloverPolicy_2];
|
|
482
|
+
|
|
483
|
+
/**
|
|
342
484
|
*
|
|
343
|
-
*
|
|
344
|
-
|
|
345
|
-
|
|
485
|
+
* @export
|
|
486
|
+
*/
|
|
487
|
+
declare const BillingPlanCreditGrantResetCadence: {
|
|
488
|
+
readonly Daily: "daily";
|
|
489
|
+
readonly Monthly: "monthly";
|
|
490
|
+
readonly Weekly: "weekly";
|
|
491
|
+
readonly Yearly: "yearly";
|
|
492
|
+
};
|
|
493
|
+
|
|
494
|
+
declare type BillingPlanCreditGrantResetCadence = (typeof BillingPlanCreditGrantResetCadence)[keyof typeof BillingPlanCreditGrantResetCadence];
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @export
|
|
499
|
+
*/
|
|
500
|
+
declare const BillingPlanCreditGrantResetCadence_2: {
|
|
501
|
+
readonly Daily: "daily";
|
|
502
|
+
readonly Monthly: "monthly";
|
|
503
|
+
readonly Weekly: "weekly";
|
|
504
|
+
readonly Yearly: "yearly";
|
|
505
|
+
};
|
|
506
|
+
|
|
507
|
+
declare type BillingPlanCreditGrantResetCadence_2 = (typeof BillingPlanCreditGrantResetCadence_2)[keyof typeof BillingPlanCreditGrantResetCadence_2];
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
* @export
|
|
346
512
|
*/
|
|
513
|
+
declare const BillingPlanCreditGrantResetStart: {
|
|
514
|
+
readonly BillingPeriod: "billing_period";
|
|
515
|
+
readonly FirstOfMonth: "first_of_month";
|
|
516
|
+
};
|
|
517
|
+
|
|
518
|
+
declare type BillingPlanCreditGrantResetStart = (typeof BillingPlanCreditGrantResetStart)[keyof typeof BillingPlanCreditGrantResetStart];
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
*
|
|
522
|
+
* @export
|
|
523
|
+
*/
|
|
524
|
+
declare const BillingPlanCreditGrantResetStart_2: {
|
|
525
|
+
readonly BillingPeriod: "billing_period";
|
|
526
|
+
readonly FirstOfMonth: "first_of_month";
|
|
527
|
+
};
|
|
528
|
+
|
|
529
|
+
declare type BillingPlanCreditGrantResetStart_2 = (typeof BillingPlanCreditGrantResetStart_2)[keyof typeof BillingPlanCreditGrantResetStart_2];
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
*
|
|
533
|
+
* @export
|
|
534
|
+
*/
|
|
535
|
+
declare const BillingPlanCreditGrantResetType: {
|
|
536
|
+
readonly NoReset: "no_reset";
|
|
537
|
+
readonly PlanPeriod: "plan_period";
|
|
538
|
+
};
|
|
539
|
+
|
|
540
|
+
declare type BillingPlanCreditGrantResetType = (typeof BillingPlanCreditGrantResetType)[keyof typeof BillingPlanCreditGrantResetType];
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
*
|
|
544
|
+
* @export
|
|
545
|
+
*/
|
|
546
|
+
declare const BillingPlanCreditGrantResetType_2: {
|
|
547
|
+
readonly NoReset: "no_reset";
|
|
548
|
+
readonly PlanPeriod: "plan_period";
|
|
549
|
+
};
|
|
550
|
+
|
|
551
|
+
declare type BillingPlanCreditGrantResetType_2 = (typeof BillingPlanCreditGrantResetType_2)[keyof typeof BillingPlanCreditGrantResetType_2];
|
|
552
|
+
|
|
347
553
|
/**
|
|
348
554
|
*
|
|
349
555
|
* @export
|
|
@@ -370,16 +576,16 @@ declare interface BillingPlanCreditGrantResponseData {
|
|
|
370
576
|
autoTopupEnabled: boolean;
|
|
371
577
|
/**
|
|
372
578
|
*
|
|
373
|
-
* @type {
|
|
579
|
+
* @type {BillingCreditExpiryType}
|
|
374
580
|
* @memberof BillingPlanCreditGrantResponseData
|
|
375
581
|
*/
|
|
376
|
-
autoTopupExpiryType?:
|
|
582
|
+
autoTopupExpiryType?: BillingCreditExpiryType | null;
|
|
377
583
|
/**
|
|
378
584
|
*
|
|
379
|
-
* @type {
|
|
585
|
+
* @type {BillingCreditExpiryUnit}
|
|
380
586
|
* @memberof BillingPlanCreditGrantResponseData
|
|
381
587
|
*/
|
|
382
|
-
autoTopupExpiryUnit?:
|
|
588
|
+
autoTopupExpiryUnit?: BillingCreditExpiryUnit | null;
|
|
383
589
|
/**
|
|
384
590
|
*
|
|
385
591
|
* @type {number}
|
|
@@ -430,16 +636,16 @@ declare interface BillingPlanCreditGrantResponseData {
|
|
|
430
636
|
creditSingularName?: string | null;
|
|
431
637
|
/**
|
|
432
638
|
*
|
|
433
|
-
* @type {
|
|
639
|
+
* @type {BillingCreditExpiryType}
|
|
434
640
|
* @memberof BillingPlanCreditGrantResponseData
|
|
435
641
|
*/
|
|
436
|
-
expiryType?:
|
|
642
|
+
expiryType?: BillingCreditExpiryType | null;
|
|
437
643
|
/**
|
|
438
644
|
*
|
|
439
|
-
* @type {
|
|
645
|
+
* @type {BillingCreditExpiryUnit}
|
|
440
646
|
* @memberof BillingPlanCreditGrantResponseData
|
|
441
647
|
*/
|
|
442
|
-
expiryUnit?:
|
|
648
|
+
expiryUnit?: BillingCreditExpiryUnit | null;
|
|
443
649
|
/**
|
|
444
650
|
*
|
|
445
651
|
* @type {number}
|
|
@@ -466,22 +672,22 @@ declare interface BillingPlanCreditGrantResponseData {
|
|
|
466
672
|
planName: string;
|
|
467
673
|
/**
|
|
468
674
|
*
|
|
469
|
-
* @type {
|
|
675
|
+
* @type {BillingPlanCreditGrantResetCadence}
|
|
470
676
|
* @memberof BillingPlanCreditGrantResponseData
|
|
471
677
|
*/
|
|
472
|
-
resetCadence:
|
|
678
|
+
resetCadence: BillingPlanCreditGrantResetCadence;
|
|
473
679
|
/**
|
|
474
680
|
*
|
|
475
|
-
* @type {
|
|
681
|
+
* @type {BillingPlanCreditGrantResetStart}
|
|
476
682
|
* @memberof BillingPlanCreditGrantResponseData
|
|
477
683
|
*/
|
|
478
|
-
resetStart:
|
|
684
|
+
resetStart: BillingPlanCreditGrantResetStart;
|
|
479
685
|
/**
|
|
480
686
|
*
|
|
481
|
-
* @type {
|
|
687
|
+
* @type {BillingPlanCreditGrantResetType}
|
|
482
688
|
* @memberof BillingPlanCreditGrantResponseData
|
|
483
689
|
*/
|
|
484
|
-
resetType?:
|
|
690
|
+
resetType?: BillingPlanCreditGrantResetType | null;
|
|
485
691
|
/**
|
|
486
692
|
*
|
|
487
693
|
* @type {Date}
|
|
@@ -490,17 +696,6 @@ declare interface BillingPlanCreditGrantResponseData {
|
|
|
490
696
|
updatedAt: Date;
|
|
491
697
|
}
|
|
492
698
|
|
|
493
|
-
/**
|
|
494
|
-
* Schematic API
|
|
495
|
-
* Schematic API
|
|
496
|
-
*
|
|
497
|
-
* The version of the OpenAPI document: 0.1
|
|
498
|
-
*
|
|
499
|
-
*
|
|
500
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
501
|
-
* https://openapi-generator.tech
|
|
502
|
-
* Do not edit the class manually.
|
|
503
|
-
*/
|
|
504
699
|
/**
|
|
505
700
|
*
|
|
506
701
|
* @export
|
|
@@ -527,10 +722,10 @@ declare interface BillingPriceResponseData {
|
|
|
527
722
|
id: string;
|
|
528
723
|
/**
|
|
529
724
|
*
|
|
530
|
-
* @type {
|
|
725
|
+
* @type {BillingProductPriceInterval}
|
|
531
726
|
* @memberof BillingPriceResponseData
|
|
532
727
|
*/
|
|
533
|
-
interval:
|
|
728
|
+
interval: BillingProductPriceInterval;
|
|
534
729
|
/**
|
|
535
730
|
*
|
|
536
731
|
* @type {number}
|
|
@@ -551,17 +746,6 @@ declare interface BillingPriceResponseData {
|
|
|
551
746
|
scheme: string;
|
|
552
747
|
}
|
|
553
748
|
|
|
554
|
-
/**
|
|
555
|
-
* Schematic API
|
|
556
|
-
* Schematic API
|
|
557
|
-
*
|
|
558
|
-
* The version of the OpenAPI document: 0.1
|
|
559
|
-
*
|
|
560
|
-
*
|
|
561
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
562
|
-
* https://openapi-generator.tech
|
|
563
|
-
* Do not edit the class manually.
|
|
564
|
-
*/
|
|
565
749
|
/**
|
|
566
750
|
*
|
|
567
751
|
* @export
|
|
@@ -588,10 +772,10 @@ declare interface BillingPriceResponseData_2 {
|
|
|
588
772
|
id: string;
|
|
589
773
|
/**
|
|
590
774
|
*
|
|
591
|
-
* @type {
|
|
775
|
+
* @type {BillingProductPriceInterval}
|
|
592
776
|
* @memberof BillingPriceResponseData
|
|
593
777
|
*/
|
|
594
|
-
interval:
|
|
778
|
+
interval: BillingProductPriceInterval_2;
|
|
595
779
|
/**
|
|
596
780
|
*
|
|
597
781
|
* @type {number}
|
|
@@ -612,6 +796,17 @@ declare interface BillingPriceResponseData_2 {
|
|
|
612
796
|
scheme: string;
|
|
613
797
|
}
|
|
614
798
|
|
|
799
|
+
/**
|
|
800
|
+
*
|
|
801
|
+
* @export
|
|
802
|
+
*/
|
|
803
|
+
declare const BillingPriceUsageType: {
|
|
804
|
+
readonly Licensed: "licensed";
|
|
805
|
+
readonly Metered: "metered";
|
|
806
|
+
};
|
|
807
|
+
|
|
808
|
+
declare type BillingPriceUsageType = (typeof BillingPriceUsageType)[keyof typeof BillingPriceUsageType];
|
|
809
|
+
|
|
615
810
|
/**
|
|
616
811
|
*
|
|
617
812
|
* @export
|
|
@@ -644,10 +839,10 @@ declare interface BillingPriceView {
|
|
|
644
839
|
id: string;
|
|
645
840
|
/**
|
|
646
841
|
*
|
|
647
|
-
* @type {
|
|
842
|
+
* @type {BillingProductPriceInterval}
|
|
648
843
|
* @memberof BillingPriceView
|
|
649
844
|
*/
|
|
650
|
-
interval:
|
|
845
|
+
interval: BillingProductPriceInterval;
|
|
651
846
|
/**
|
|
652
847
|
*
|
|
653
848
|
* @type {boolean}
|
|
@@ -728,10 +923,10 @@ declare interface BillingPriceView {
|
|
|
728
923
|
productName: string;
|
|
729
924
|
/**
|
|
730
925
|
*
|
|
731
|
-
* @type {
|
|
926
|
+
* @type {BillingTiersMode}
|
|
732
927
|
* @memberof BillingPriceView
|
|
733
928
|
*/
|
|
734
|
-
tiersMode?:
|
|
929
|
+
tiersMode?: BillingTiersMode | null;
|
|
735
930
|
/**
|
|
736
931
|
*
|
|
737
932
|
* @type {Date}
|
|
@@ -778,10 +973,10 @@ declare interface BillingPriceView_2 {
|
|
|
778
973
|
id: string;
|
|
779
974
|
/**
|
|
780
975
|
*
|
|
781
|
-
* @type {
|
|
976
|
+
* @type {BillingProductPriceInterval}
|
|
782
977
|
* @memberof BillingPriceView
|
|
783
978
|
*/
|
|
784
|
-
interval:
|
|
979
|
+
interval: BillingProductPriceInterval_2;
|
|
785
980
|
/**
|
|
786
981
|
*
|
|
787
982
|
* @type {boolean}
|
|
@@ -862,10 +1057,10 @@ declare interface BillingPriceView_2 {
|
|
|
862
1057
|
productName: string;
|
|
863
1058
|
/**
|
|
864
1059
|
*
|
|
865
|
-
* @type {
|
|
1060
|
+
* @type {BillingTiersMode}
|
|
866
1061
|
* @memberof BillingPriceView
|
|
867
1062
|
*/
|
|
868
|
-
tiersMode?:
|
|
1063
|
+
tiersMode?: BillingTiersMode_2 | null;
|
|
869
1064
|
/**
|
|
870
1065
|
*
|
|
871
1066
|
* @type {Date}
|
|
@@ -1194,23 +1389,38 @@ declare interface BillingProductForSubscriptionResponseData {
|
|
|
1194
1389
|
updatedAt: Date;
|
|
1195
1390
|
/**
|
|
1196
1391
|
*
|
|
1197
|
-
* @type {
|
|
1392
|
+
* @type {BillingPriceUsageType}
|
|
1198
1393
|
* @memberof BillingProductForSubscriptionResponseData
|
|
1199
1394
|
*/
|
|
1200
|
-
usageType:
|
|
1395
|
+
usageType: BillingPriceUsageType;
|
|
1201
1396
|
}
|
|
1202
1397
|
|
|
1203
1398
|
/**
|
|
1204
|
-
* Schematic API
|
|
1205
|
-
* Schematic API
|
|
1206
|
-
*
|
|
1207
|
-
* The version of the OpenAPI document: 0.1
|
|
1208
1399
|
*
|
|
1400
|
+
* @export
|
|
1401
|
+
*/
|
|
1402
|
+
declare const BillingProductPriceInterval: {
|
|
1403
|
+
readonly Day: "day";
|
|
1404
|
+
readonly Month: "month";
|
|
1405
|
+
readonly OneTime: "one-time";
|
|
1406
|
+
readonly Year: "year";
|
|
1407
|
+
};
|
|
1408
|
+
|
|
1409
|
+
declare type BillingProductPriceInterval = (typeof BillingProductPriceInterval)[keyof typeof BillingProductPriceInterval];
|
|
1410
|
+
|
|
1411
|
+
/**
|
|
1209
1412
|
*
|
|
1210
|
-
*
|
|
1211
|
-
* https://openapi-generator.tech
|
|
1212
|
-
* Do not edit the class manually.
|
|
1413
|
+
* @export
|
|
1213
1414
|
*/
|
|
1415
|
+
declare const BillingProductPriceInterval_2: {
|
|
1416
|
+
readonly Day: "day";
|
|
1417
|
+
readonly Month: "month";
|
|
1418
|
+
readonly OneTime: "one-time";
|
|
1419
|
+
readonly Year: "year";
|
|
1420
|
+
};
|
|
1421
|
+
|
|
1422
|
+
declare type BillingProductPriceInterval_2 = (typeof BillingProductPriceInterval_2)[keyof typeof BillingProductPriceInterval_2];
|
|
1423
|
+
|
|
1214
1424
|
/**
|
|
1215
1425
|
*
|
|
1216
1426
|
* @export
|
|
@@ -1243,10 +1453,10 @@ declare interface BillingProductPriceResponseData {
|
|
|
1243
1453
|
id: string;
|
|
1244
1454
|
/**
|
|
1245
1455
|
*
|
|
1246
|
-
* @type {
|
|
1456
|
+
* @type {BillingProductPriceInterval}
|
|
1247
1457
|
* @memberof BillingProductPriceResponseData
|
|
1248
1458
|
*/
|
|
1249
|
-
interval:
|
|
1459
|
+
interval: BillingProductPriceInterval;
|
|
1250
1460
|
/**
|
|
1251
1461
|
*
|
|
1252
1462
|
* @type {boolean}
|
|
@@ -1291,10 +1501,10 @@ declare interface BillingProductPriceResponseData {
|
|
|
1291
1501
|
productExternalId: string;
|
|
1292
1502
|
/**
|
|
1293
1503
|
*
|
|
1294
|
-
* @type {
|
|
1504
|
+
* @type {BillingTiersMode}
|
|
1295
1505
|
* @memberof BillingProductPriceResponseData
|
|
1296
1506
|
*/
|
|
1297
|
-
tiersMode?:
|
|
1507
|
+
tiersMode?: BillingTiersMode | null;
|
|
1298
1508
|
/**
|
|
1299
1509
|
*
|
|
1300
1510
|
* @type {Date}
|
|
@@ -1682,6 +1892,17 @@ declare interface BillingSubscriptionDiscountView {
|
|
|
1682
1892
|
subscriptionExternalId: string;
|
|
1683
1893
|
}
|
|
1684
1894
|
|
|
1895
|
+
/**
|
|
1896
|
+
*
|
|
1897
|
+
* @export
|
|
1898
|
+
*/
|
|
1899
|
+
declare const BillingSubscriptionTrialEndSetting: {
|
|
1900
|
+
readonly Cancel: "cancel";
|
|
1901
|
+
readonly Subscribe: "subscribe";
|
|
1902
|
+
};
|
|
1903
|
+
|
|
1904
|
+
declare type BillingSubscriptionTrialEndSetting = (typeof BillingSubscriptionTrialEndSetting)[keyof typeof BillingSubscriptionTrialEndSetting];
|
|
1905
|
+
|
|
1685
1906
|
/**
|
|
1686
1907
|
*
|
|
1687
1908
|
* @export
|
|
@@ -1822,20 +2043,42 @@ declare interface BillingSubscriptionView {
|
|
|
1822
2043
|
trialEnd?: number | null;
|
|
1823
2044
|
/**
|
|
1824
2045
|
*
|
|
1825
|
-
* @type {
|
|
2046
|
+
* @type {BillingSubscriptionTrialEndSetting}
|
|
1826
2047
|
* @memberof BillingSubscriptionView
|
|
1827
2048
|
*/
|
|
1828
|
-
trialEndSetting?:
|
|
2049
|
+
trialEndSetting?: BillingSubscriptionTrialEndSetting | null;
|
|
1829
2050
|
}
|
|
1830
2051
|
|
|
2052
|
+
/**
|
|
2053
|
+
*
|
|
2054
|
+
* @export
|
|
2055
|
+
*/
|
|
2056
|
+
declare const BillingTiersMode: {
|
|
2057
|
+
readonly Graduated: "graduated";
|
|
2058
|
+
readonly Volume: "volume";
|
|
2059
|
+
};
|
|
2060
|
+
|
|
2061
|
+
declare type BillingTiersMode = (typeof BillingTiersMode)[keyof typeof BillingTiersMode];
|
|
2062
|
+
|
|
2063
|
+
/**
|
|
2064
|
+
*
|
|
2065
|
+
* @export
|
|
2066
|
+
*/
|
|
2067
|
+
declare const BillingTiersMode_2: {
|
|
2068
|
+
readonly Graduated: "graduated";
|
|
2069
|
+
readonly Volume: "volume";
|
|
2070
|
+
};
|
|
2071
|
+
|
|
2072
|
+
declare type BillingTiersMode_2 = (typeof BillingTiersMode_2)[keyof typeof BillingTiersMode_2];
|
|
2073
|
+
|
|
1831
2074
|
export declare const Box: IStyledComponentBase<"web", Substitute<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, BoxProps>> & string;
|
|
1832
2075
|
|
|
1833
2076
|
export declare type BoxProps = ComponentProps & {
|
|
1834
2077
|
$viewport?: {
|
|
1835
|
-
sm?: TransientCSSProperties;
|
|
1836
|
-
md?: TransientCSSProperties;
|
|
1837
|
-
lg?: TransientCSSProperties;
|
|
1838
|
-
xl?: TransientCSSProperties;
|
|
2078
|
+
"sm"?: TransientCSSProperties;
|
|
2079
|
+
"md"?: TransientCSSProperties;
|
|
2080
|
+
"lg"?: TransientCSSProperties;
|
|
2081
|
+
"xl"?: TransientCSSProperties;
|
|
1839
2082
|
"2xl"?: TransientCSSProperties;
|
|
1840
2083
|
[key: string]: TransientCSSProperties | undefined;
|
|
1841
2084
|
};
|
|
@@ -2023,6 +2266,30 @@ declare interface ChangeSubscriptionRequestBody {
|
|
|
2023
2266
|
skipTrial: boolean;
|
|
2024
2267
|
}
|
|
2025
2268
|
|
|
2269
|
+
/**
|
|
2270
|
+
*
|
|
2271
|
+
* @export
|
|
2272
|
+
*/
|
|
2273
|
+
declare const ChargeType: {
|
|
2274
|
+
readonly Free: "free";
|
|
2275
|
+
readonly OneTime: "one_time";
|
|
2276
|
+
readonly Recurring: "recurring";
|
|
2277
|
+
};
|
|
2278
|
+
|
|
2279
|
+
declare type ChargeType = (typeof ChargeType)[keyof typeof ChargeType];
|
|
2280
|
+
|
|
2281
|
+
/**
|
|
2282
|
+
*
|
|
2283
|
+
* @export
|
|
2284
|
+
*/
|
|
2285
|
+
declare const ChargeType_2: {
|
|
2286
|
+
readonly Free: "free";
|
|
2287
|
+
readonly OneTime: "one_time";
|
|
2288
|
+
readonly Recurring: "recurring";
|
|
2289
|
+
};
|
|
2290
|
+
|
|
2291
|
+
declare type ChargeType_2 = (typeof ChargeType_2)[keyof typeof ChargeType_2];
|
|
2292
|
+
|
|
2026
2293
|
export declare const CheckoutDialog: ({ top }: CheckoutDialogProps) => JSX.Element;
|
|
2027
2294
|
|
|
2028
2295
|
declare interface CheckoutDialogProps {
|
|
@@ -2049,17 +2316,6 @@ declare interface CheckoutResponse {
|
|
|
2049
2316
|
params: object;
|
|
2050
2317
|
}
|
|
2051
2318
|
|
|
2052
|
-
/**
|
|
2053
|
-
* Schematic API
|
|
2054
|
-
* Schematic API
|
|
2055
|
-
*
|
|
2056
|
-
* The version of the OpenAPI document: 0.1
|
|
2057
|
-
*
|
|
2058
|
-
*
|
|
2059
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2060
|
-
* https://openapi-generator.tech
|
|
2061
|
-
* Do not edit the class manually.
|
|
2062
|
-
*/
|
|
2063
2319
|
/**
|
|
2064
2320
|
*
|
|
2065
2321
|
* @export
|
|
@@ -2188,10 +2444,10 @@ declare interface CheckoutResponseData {
|
|
|
2188
2444
|
trialEnd?: number | null;
|
|
2189
2445
|
/**
|
|
2190
2446
|
*
|
|
2191
|
-
* @type {
|
|
2447
|
+
* @type {BillingSubscriptionTrialEndSetting}
|
|
2192
2448
|
* @memberof CheckoutResponseData
|
|
2193
2449
|
*/
|
|
2194
|
-
trialEndSetting?:
|
|
2450
|
+
trialEndSetting?: BillingSubscriptionTrialEndSetting | null;
|
|
2195
2451
|
}
|
|
2196
2452
|
|
|
2197
2453
|
export declare interface CheckoutStage {
|
|
@@ -2695,10 +2951,10 @@ declare interface CompanyOverrideResponseData {
|
|
|
2695
2951
|
valueTraitId?: string | null;
|
|
2696
2952
|
/**
|
|
2697
2953
|
*
|
|
2698
|
-
* @type {
|
|
2954
|
+
* @type {EntitlementValueType}
|
|
2699
2955
|
* @memberof CompanyOverrideResponseData
|
|
2700
2956
|
*/
|
|
2701
|
-
valueType:
|
|
2957
|
+
valueType: EntitlementValueType;
|
|
2702
2958
|
}
|
|
2703
2959
|
|
|
2704
2960
|
/**
|
|
@@ -2722,10 +2978,10 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2722
2978
|
billingProduct?: BillingProductDetailResponseData;
|
|
2723
2979
|
/**
|
|
2724
2980
|
*
|
|
2725
|
-
* @type {
|
|
2981
|
+
* @type {ChargeType}
|
|
2726
2982
|
* @memberof CompanyPlanDetailResponseData
|
|
2727
2983
|
*/
|
|
2728
|
-
chargeType:
|
|
2984
|
+
chargeType: ChargeType;
|
|
2729
2985
|
/**
|
|
2730
2986
|
*
|
|
2731
2987
|
* @type {boolean}
|
|
@@ -2746,10 +3002,10 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2746
3002
|
compatiblePlanIds: Array<string>;
|
|
2747
3003
|
/**
|
|
2748
3004
|
*
|
|
2749
|
-
* @type {
|
|
3005
|
+
* @type {PlanControlledByType}
|
|
2750
3006
|
* @memberof CompanyPlanDetailResponseData
|
|
2751
3007
|
*/
|
|
2752
|
-
controlledBy:
|
|
3008
|
+
controlledBy: PlanControlledByType;
|
|
2753
3009
|
/**
|
|
2754
3010
|
*
|
|
2755
3011
|
* @type {Date}
|
|
@@ -2810,6 +3066,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2810
3066
|
* @memberof CompanyPlanDetailResponseData
|
|
2811
3067
|
*/
|
|
2812
3068
|
includedCreditGrants: Array<PlanCreditGrantView>;
|
|
3069
|
+
/**
|
|
3070
|
+
*
|
|
3071
|
+
* @type {string}
|
|
3072
|
+
* @memberof CompanyPlanDetailResponseData
|
|
3073
|
+
*/
|
|
3074
|
+
invalidReason?: CompanyPlanDetailResponseDataInvalidReasonEnum | null;
|
|
2813
3075
|
/**
|
|
2814
3076
|
*
|
|
2815
3077
|
* @type {boolean}
|
|
@@ -2855,10 +3117,10 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2855
3117
|
oneTimePrice?: BillingPriceResponseData;
|
|
2856
3118
|
/**
|
|
2857
3119
|
*
|
|
2858
|
-
* @type {
|
|
3120
|
+
* @type {PlanType}
|
|
2859
3121
|
* @memberof CompanyPlanDetailResponseData
|
|
2860
3122
|
*/
|
|
2861
|
-
planType:
|
|
3123
|
+
planType: PlanType;
|
|
2862
3124
|
/**
|
|
2863
3125
|
*
|
|
2864
3126
|
* @type {number}
|
|
@@ -2891,6 +3153,16 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2891
3153
|
yearlyPrice?: BillingPriceResponseData;
|
|
2892
3154
|
}
|
|
2893
3155
|
|
|
3156
|
+
/**
|
|
3157
|
+
* @export
|
|
3158
|
+
*/
|
|
3159
|
+
declare const CompanyPlanDetailResponseDataInvalidReasonEnum: {
|
|
3160
|
+
readonly FeatureUsageExceeded: "feature_usage_exceeded";
|
|
3161
|
+
readonly DowngradeNotPermitted: "downgrade_not_permitted";
|
|
3162
|
+
};
|
|
3163
|
+
|
|
3164
|
+
declare type CompanyPlanDetailResponseDataInvalidReasonEnum = (typeof CompanyPlanDetailResponseDataInvalidReasonEnum)[keyof typeof CompanyPlanDetailResponseDataInvalidReasonEnum];
|
|
3165
|
+
|
|
2894
3166
|
/**
|
|
2895
3167
|
*
|
|
2896
3168
|
* @export
|
|
@@ -3218,6 +3490,17 @@ declare interface ComponentCheckoutSettings {
|
|
|
3218
3490
|
taxCollectionEnabled: boolean;
|
|
3219
3491
|
}
|
|
3220
3492
|
|
|
3493
|
+
/**
|
|
3494
|
+
*
|
|
3495
|
+
* @export
|
|
3496
|
+
*/
|
|
3497
|
+
declare const ComponentEntityType: {
|
|
3498
|
+
readonly Billing: "billing";
|
|
3499
|
+
readonly Entitlement: "entitlement";
|
|
3500
|
+
};
|
|
3501
|
+
|
|
3502
|
+
declare type ComponentEntityType = (typeof ComponentEntityType)[keyof typeof ComponentEntityType];
|
|
3503
|
+
|
|
3221
3504
|
/**
|
|
3222
3505
|
*
|
|
3223
3506
|
* @export
|
|
@@ -3302,6 +3585,24 @@ declare interface ComponentHydrateResponseData {
|
|
|
3302
3585
|
* @memberof ComponentHydrateResponseData
|
|
3303
3586
|
*/
|
|
3304
3587
|
postTrialPlan?: PlanDetailResponseData;
|
|
3588
|
+
/**
|
|
3589
|
+
*
|
|
3590
|
+
* @type {boolean}
|
|
3591
|
+
* @memberof ComponentHydrateResponseData
|
|
3592
|
+
*/
|
|
3593
|
+
preventSelfServiceDowngrade: boolean;
|
|
3594
|
+
/**
|
|
3595
|
+
*
|
|
3596
|
+
* @type {string}
|
|
3597
|
+
* @memberof ComponentHydrateResponseData
|
|
3598
|
+
*/
|
|
3599
|
+
preventSelfServiceDowngradeButtonText?: string | null;
|
|
3600
|
+
/**
|
|
3601
|
+
*
|
|
3602
|
+
* @type {string}
|
|
3603
|
+
* @memberof ComponentHydrateResponseData
|
|
3604
|
+
*/
|
|
3605
|
+
preventSelfServiceDowngradeUrl?: string | null;
|
|
3305
3606
|
/**
|
|
3306
3607
|
*
|
|
3307
3608
|
* @type {boolean}
|
|
@@ -3350,17 +3651,6 @@ declare interface ComponentProps extends TransientCSSProperties {
|
|
|
3350
3651
|
children?: React.ReactNode;
|
|
3351
3652
|
}
|
|
3352
3653
|
|
|
3353
|
-
/**
|
|
3354
|
-
* Schematic API
|
|
3355
|
-
* Schematic API
|
|
3356
|
-
*
|
|
3357
|
-
* The version of the OpenAPI document: 0.1
|
|
3358
|
-
*
|
|
3359
|
-
*
|
|
3360
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3361
|
-
* https://openapi-generator.tech
|
|
3362
|
-
* Do not edit the class manually.
|
|
3363
|
-
*/
|
|
3364
3654
|
/**
|
|
3365
3655
|
*
|
|
3366
3656
|
* @export
|
|
@@ -3395,16 +3685,16 @@ declare interface ComponentResponseData {
|
|
|
3395
3685
|
name: string;
|
|
3396
3686
|
/**
|
|
3397
3687
|
*
|
|
3398
|
-
* @type {
|
|
3688
|
+
* @type {ComponentState}
|
|
3399
3689
|
* @memberof ComponentResponseData
|
|
3400
3690
|
*/
|
|
3401
|
-
state:
|
|
3691
|
+
state: ComponentState;
|
|
3402
3692
|
/**
|
|
3403
3693
|
*
|
|
3404
|
-
* @type {
|
|
3694
|
+
* @type {ComponentEntityType}
|
|
3405
3695
|
* @memberof ComponentResponseData
|
|
3406
3696
|
*/
|
|
3407
|
-
type:
|
|
3697
|
+
type: ComponentEntityType;
|
|
3408
3698
|
/**
|
|
3409
3699
|
*
|
|
3410
3700
|
* @type {Date}
|
|
@@ -3413,6 +3703,17 @@ declare interface ComponentResponseData {
|
|
|
3413
3703
|
updatedAt: Date;
|
|
3414
3704
|
}
|
|
3415
3705
|
|
|
3706
|
+
/**
|
|
3707
|
+
*
|
|
3708
|
+
* @export
|
|
3709
|
+
*/
|
|
3710
|
+
declare const ComponentState: {
|
|
3711
|
+
readonly Draft: "draft";
|
|
3712
|
+
readonly Live: "live";
|
|
3713
|
+
};
|
|
3714
|
+
|
|
3715
|
+
declare type ComponentState = (typeof ComponentState)[keyof typeof ComponentState];
|
|
3716
|
+
|
|
3416
3717
|
declare type ComponentStyle = "primary" | "secondary" | "tertiary";
|
|
3417
3718
|
|
|
3418
3719
|
/**
|
|
@@ -3670,16 +3971,16 @@ declare interface CreditCompanyGrantView {
|
|
|
3670
3971
|
expiresAt?: Date | null;
|
|
3671
3972
|
/**
|
|
3672
3973
|
*
|
|
3673
|
-
* @type {
|
|
3974
|
+
* @type {BillingCreditExpiryType}
|
|
3674
3975
|
* @memberof CreditCompanyGrantView
|
|
3675
3976
|
*/
|
|
3676
|
-
expiryType?:
|
|
3977
|
+
expiryType?: BillingCreditExpiryType | null;
|
|
3677
3978
|
/**
|
|
3678
3979
|
*
|
|
3679
|
-
* @type {
|
|
3980
|
+
* @type {BillingCreditExpiryUnit}
|
|
3680
3981
|
* @memberof CreditCompanyGrantView
|
|
3681
3982
|
*/
|
|
3682
|
-
expiryUnit?:
|
|
3983
|
+
expiryUnit?: BillingCreditExpiryUnit | null;
|
|
3683
3984
|
/**
|
|
3684
3985
|
*
|
|
3685
3986
|
* @type {number}
|
|
@@ -3688,10 +3989,10 @@ declare interface CreditCompanyGrantView {
|
|
|
3688
3989
|
expiryUnitCount?: number | null;
|
|
3689
3990
|
/**
|
|
3690
3991
|
*
|
|
3691
|
-
* @type {
|
|
3992
|
+
* @type {BillingCreditGrantReason}
|
|
3692
3993
|
* @memberof CreditCompanyGrantView
|
|
3693
3994
|
*/
|
|
3694
|
-
grantReason:
|
|
3995
|
+
grantReason: BillingCreditGrantReason;
|
|
3695
3996
|
/**
|
|
3696
3997
|
*
|
|
3697
3998
|
* @type {string}
|
|
@@ -3772,23 +4073,12 @@ declare interface CreditCompanyGrantView {
|
|
|
3772
4073
|
zeroedOutDate?: Date | null;
|
|
3773
4074
|
/**
|
|
3774
4075
|
*
|
|
3775
|
-
* @type {
|
|
4076
|
+
* @type {BillingCreditGrantZeroedOutReason}
|
|
3776
4077
|
* @memberof CreditCompanyGrantView
|
|
3777
4078
|
*/
|
|
3778
|
-
zeroedOutReason?:
|
|
4079
|
+
zeroedOutReason?: BillingCreditGrantZeroedOutReason | null;
|
|
3779
4080
|
}
|
|
3780
4081
|
|
|
3781
|
-
/**
|
|
3782
|
-
* Schematic API
|
|
3783
|
-
* Schematic API
|
|
3784
|
-
*
|
|
3785
|
-
* The version of the OpenAPI document: 0.1
|
|
3786
|
-
*
|
|
3787
|
-
*
|
|
3788
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3789
|
-
* https://openapi-generator.tech
|
|
3790
|
-
* Do not edit the class manually.
|
|
3791
|
-
*/
|
|
3792
4082
|
/**
|
|
3793
4083
|
*
|
|
3794
4084
|
* @export
|
|
@@ -3809,10 +4099,10 @@ declare interface CreditGrantDetail {
|
|
|
3809
4099
|
expiresAt?: Date | null;
|
|
3810
4100
|
/**
|
|
3811
4101
|
*
|
|
3812
|
-
* @type {
|
|
4102
|
+
* @type {BillingCreditGrantReason}
|
|
3813
4103
|
* @memberof CreditGrantDetail
|
|
3814
4104
|
*/
|
|
3815
|
-
grantReason:
|
|
4105
|
+
grantReason: BillingCreditGrantReason;
|
|
3816
4106
|
/**
|
|
3817
4107
|
*
|
|
3818
4108
|
* @type {number}
|
|
@@ -3821,17 +4111,6 @@ declare interface CreditGrantDetail {
|
|
|
3821
4111
|
quantity: number;
|
|
3822
4112
|
}
|
|
3823
4113
|
|
|
3824
|
-
/**
|
|
3825
|
-
* @export
|
|
3826
|
-
*/
|
|
3827
|
-
declare const CreditGrantDetailGrantReasonEnum: {
|
|
3828
|
-
readonly Free: "free";
|
|
3829
|
-
readonly Plan: "plan";
|
|
3830
|
-
readonly Purchased: "purchased";
|
|
3831
|
-
};
|
|
3832
|
-
|
|
3833
|
-
declare type CreditGrantDetailGrantReasonEnum = (typeof CreditGrantDetailGrantReasonEnum)[keyof typeof CreditGrantDetailGrantReasonEnum];
|
|
3834
|
-
|
|
3835
4114
|
/**
|
|
3836
4115
|
* Schematic API
|
|
3837
4116
|
* Schematic API
|
|
@@ -4192,10 +4471,10 @@ declare interface DesignProps_9 {
|
|
|
4192
4471
|
|
|
4193
4472
|
declare const Element_2: IStyledComponentBase<"web", FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4194
4473
|
$viewport?: {
|
|
4195
|
-
sm?: TransientCSSProperties;
|
|
4196
|
-
md?: TransientCSSProperties;
|
|
4197
|
-
lg?: TransientCSSProperties;
|
|
4198
|
-
xl?: TransientCSSProperties;
|
|
4474
|
+
"sm"?: TransientCSSProperties;
|
|
4475
|
+
"md"?: TransientCSSProperties;
|
|
4476
|
+
"lg"?: TransientCSSProperties;
|
|
4477
|
+
"xl"?: TransientCSSProperties;
|
|
4199
4478
|
"2xl"?: TransientCSSProperties;
|
|
4200
4479
|
[key: string]: TransientCSSProperties | undefined;
|
|
4201
4480
|
};
|
|
@@ -4277,16 +4556,75 @@ export declare interface EmbedState {
|
|
|
4277
4556
|
}
|
|
4278
4557
|
|
|
4279
4558
|
/**
|
|
4280
|
-
* Schematic API
|
|
4281
|
-
* Schematic API
|
|
4282
4559
|
*
|
|
4283
|
-
*
|
|
4560
|
+
* @export
|
|
4561
|
+
*/
|
|
4562
|
+
declare const EntitlementPriceBehavior: {
|
|
4563
|
+
readonly CreditBurndown: "credit_burndown";
|
|
4564
|
+
readonly Overage: "overage";
|
|
4565
|
+
readonly PayAsYouGo: "pay_as_you_go";
|
|
4566
|
+
readonly PayInAdvance: "pay_in_advance";
|
|
4567
|
+
readonly Tier: "tier";
|
|
4568
|
+
};
|
|
4569
|
+
|
|
4570
|
+
declare type EntitlementPriceBehavior = (typeof EntitlementPriceBehavior)[keyof typeof EntitlementPriceBehavior];
|
|
4571
|
+
|
|
4572
|
+
/**
|
|
4284
4573
|
*
|
|
4574
|
+
* @export
|
|
4575
|
+
*/
|
|
4576
|
+
declare const EntitlementPriceBehavior_2: {
|
|
4577
|
+
readonly CreditBurndown: "credit_burndown";
|
|
4578
|
+
readonly Overage: "overage";
|
|
4579
|
+
readonly PayAsYouGo: "pay_as_you_go";
|
|
4580
|
+
readonly PayInAdvance: "pay_in_advance";
|
|
4581
|
+
readonly Tier: "tier";
|
|
4582
|
+
};
|
|
4583
|
+
|
|
4584
|
+
declare type EntitlementPriceBehavior_2 = (typeof EntitlementPriceBehavior_2)[keyof typeof EntitlementPriceBehavior_2];
|
|
4585
|
+
|
|
4586
|
+
/**
|
|
4285
4587
|
*
|
|
4286
|
-
*
|
|
4287
|
-
|
|
4288
|
-
|
|
4588
|
+
* @export
|
|
4589
|
+
*/
|
|
4590
|
+
declare const EntitlementType: {
|
|
4591
|
+
readonly CompanyOverride: "company_override";
|
|
4592
|
+
readonly PlanEntitlement: "plan_entitlement";
|
|
4593
|
+
readonly Unknown: "unknown";
|
|
4594
|
+
};
|
|
4595
|
+
|
|
4596
|
+
declare type EntitlementType = (typeof EntitlementType)[keyof typeof EntitlementType];
|
|
4597
|
+
|
|
4598
|
+
/**
|
|
4599
|
+
*
|
|
4600
|
+
* @export
|
|
4601
|
+
*/
|
|
4602
|
+
declare const EntitlementValueType: {
|
|
4603
|
+
readonly Boolean: "boolean";
|
|
4604
|
+
readonly Credit: "credit";
|
|
4605
|
+
readonly Numeric: "numeric";
|
|
4606
|
+
readonly Trait: "trait";
|
|
4607
|
+
readonly Unknown: "unknown";
|
|
4608
|
+
readonly Unlimited: "unlimited";
|
|
4609
|
+
};
|
|
4610
|
+
|
|
4611
|
+
declare type EntitlementValueType = (typeof EntitlementValueType)[keyof typeof EntitlementValueType];
|
|
4612
|
+
|
|
4613
|
+
/**
|
|
4614
|
+
*
|
|
4615
|
+
* @export
|
|
4289
4616
|
*/
|
|
4617
|
+
declare const EntitlementValueType_2: {
|
|
4618
|
+
readonly Boolean: "boolean";
|
|
4619
|
+
readonly Credit: "credit";
|
|
4620
|
+
readonly Numeric: "numeric";
|
|
4621
|
+
readonly Trait: "trait";
|
|
4622
|
+
readonly Unknown: "unknown";
|
|
4623
|
+
readonly Unlimited: "unlimited";
|
|
4624
|
+
};
|
|
4625
|
+
|
|
4626
|
+
declare type EntitlementValueType_2 = (typeof EntitlementValueType_2)[keyof typeof EntitlementValueType_2];
|
|
4627
|
+
|
|
4290
4628
|
/**
|
|
4291
4629
|
*
|
|
4292
4630
|
* @export
|
|
@@ -4301,10 +4639,10 @@ declare interface EntityKeyDefinitionResponseData {
|
|
|
4301
4639
|
createdAt: Date;
|
|
4302
4640
|
/**
|
|
4303
4641
|
*
|
|
4304
|
-
* @type {
|
|
4642
|
+
* @type {EntityType}
|
|
4305
4643
|
* @memberof EntityKeyDefinitionResponseData
|
|
4306
4644
|
*/
|
|
4307
|
-
entityType:
|
|
4645
|
+
entityType: EntityType;
|
|
4308
4646
|
/**
|
|
4309
4647
|
*
|
|
4310
4648
|
* @type {string}
|
|
@@ -4357,10 +4695,10 @@ declare interface EntityKeyDetailResponseData {
|
|
|
4357
4695
|
entityId: string;
|
|
4358
4696
|
/**
|
|
4359
4697
|
*
|
|
4360
|
-
* @type {
|
|
4698
|
+
* @type {EntityType}
|
|
4361
4699
|
* @memberof EntityKeyDetailResponseData
|
|
4362
4700
|
*/
|
|
4363
|
-
entityType:
|
|
4701
|
+
entityType: EntityType;
|
|
4364
4702
|
/**
|
|
4365
4703
|
*
|
|
4366
4704
|
* @type {string}
|
|
@@ -4391,19 +4729,8 @@ declare interface EntityKeyDetailResponseData {
|
|
|
4391
4729
|
* @memberof EntityKeyDetailResponseData
|
|
4392
4730
|
*/
|
|
4393
4731
|
value: string;
|
|
4394
|
-
}
|
|
4395
|
-
|
|
4396
|
-
/**
|
|
4397
|
-
* Schematic API
|
|
4398
|
-
* Schematic API
|
|
4399
|
-
*
|
|
4400
|
-
* The version of the OpenAPI document: 0.1
|
|
4401
|
-
*
|
|
4402
|
-
*
|
|
4403
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4404
|
-
* https://openapi-generator.tech
|
|
4405
|
-
* Do not edit the class manually.
|
|
4406
|
-
*/
|
|
4732
|
+
}
|
|
4733
|
+
|
|
4407
4734
|
/**
|
|
4408
4735
|
*
|
|
4409
4736
|
* @export
|
|
@@ -4424,10 +4751,10 @@ declare interface EntityTraitDefinitionResponseData {
|
|
|
4424
4751
|
displayName: string;
|
|
4425
4752
|
/**
|
|
4426
4753
|
*
|
|
4427
|
-
* @type {
|
|
4754
|
+
* @type {EntityType}
|
|
4428
4755
|
* @memberof EntityTraitDefinitionResponseData
|
|
4429
4756
|
*/
|
|
4430
|
-
entityType:
|
|
4757
|
+
entityType: EntityType;
|
|
4431
4758
|
/**
|
|
4432
4759
|
*
|
|
4433
4760
|
* @type {Array<string>}
|
|
@@ -4442,10 +4769,10 @@ declare interface EntityTraitDefinitionResponseData {
|
|
|
4442
4769
|
id: string;
|
|
4443
4770
|
/**
|
|
4444
4771
|
*
|
|
4445
|
-
* @type {
|
|
4772
|
+
* @type {TraitType}
|
|
4446
4773
|
* @memberof EntityTraitDefinitionResponseData
|
|
4447
4774
|
*/
|
|
4448
|
-
traitType:
|
|
4775
|
+
traitType: TraitType;
|
|
4449
4776
|
/**
|
|
4450
4777
|
*
|
|
4451
4778
|
* @type {Date}
|
|
@@ -4454,17 +4781,6 @@ declare interface EntityTraitDefinitionResponseData {
|
|
|
4454
4781
|
updatedAt: Date;
|
|
4455
4782
|
}
|
|
4456
4783
|
|
|
4457
|
-
/**
|
|
4458
|
-
* Schematic API
|
|
4459
|
-
* Schematic API
|
|
4460
|
-
*
|
|
4461
|
-
* The version of the OpenAPI document: 0.1
|
|
4462
|
-
*
|
|
4463
|
-
*
|
|
4464
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4465
|
-
* https://openapi-generator.tech
|
|
4466
|
-
* Do not edit the class manually.
|
|
4467
|
-
*/
|
|
4468
4784
|
/**
|
|
4469
4785
|
*
|
|
4470
4786
|
* @export
|
|
@@ -4485,10 +4801,10 @@ declare interface EntityTraitDefinitionResponseData_2 {
|
|
|
4485
4801
|
displayName: string;
|
|
4486
4802
|
/**
|
|
4487
4803
|
*
|
|
4488
|
-
* @type {
|
|
4804
|
+
* @type {EntityType}
|
|
4489
4805
|
* @memberof EntityTraitDefinitionResponseData
|
|
4490
4806
|
*/
|
|
4491
|
-
entityType:
|
|
4807
|
+
entityType: EntityType_2;
|
|
4492
4808
|
/**
|
|
4493
4809
|
*
|
|
4494
4810
|
* @type {Array<string>}
|
|
@@ -4503,10 +4819,10 @@ declare interface EntityTraitDefinitionResponseData_2 {
|
|
|
4503
4819
|
id: string;
|
|
4504
4820
|
/**
|
|
4505
4821
|
*
|
|
4506
|
-
* @type {
|
|
4822
|
+
* @type {TraitType}
|
|
4507
4823
|
* @memberof EntityTraitDefinitionResponseData
|
|
4508
4824
|
*/
|
|
4509
|
-
traitType:
|
|
4825
|
+
traitType: TraitType_2;
|
|
4510
4826
|
/**
|
|
4511
4827
|
*
|
|
4512
4828
|
* @type {Date}
|
|
@@ -4565,6 +4881,28 @@ declare interface EntityTraitDetailResponseData {
|
|
|
4565
4881
|
value: string;
|
|
4566
4882
|
}
|
|
4567
4883
|
|
|
4884
|
+
/**
|
|
4885
|
+
*
|
|
4886
|
+
* @export
|
|
4887
|
+
*/
|
|
4888
|
+
declare const EntityType: {
|
|
4889
|
+
readonly Company: "company";
|
|
4890
|
+
readonly User: "user";
|
|
4891
|
+
};
|
|
4892
|
+
|
|
4893
|
+
declare type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
4894
|
+
|
|
4895
|
+
/**
|
|
4896
|
+
*
|
|
4897
|
+
* @export
|
|
4898
|
+
*/
|
|
4899
|
+
declare const EntityType_2: {
|
|
4900
|
+
readonly Company: "company";
|
|
4901
|
+
readonly User: "user";
|
|
4902
|
+
};
|
|
4903
|
+
|
|
4904
|
+
declare type EntityType_2 = (typeof EntityType_2)[keyof typeof EntityType_2];
|
|
4905
|
+
|
|
4568
4906
|
declare interface ErrorContext {
|
|
4569
4907
|
fetch: FetchAPI;
|
|
4570
4908
|
url: string;
|
|
@@ -4715,10 +5053,10 @@ declare interface FeatureDetailResponseData {
|
|
|
4715
5053
|
eventSummary?: EventSummaryResponseData;
|
|
4716
5054
|
/**
|
|
4717
5055
|
*
|
|
4718
|
-
* @type {
|
|
5056
|
+
* @type {FeatureType}
|
|
4719
5057
|
* @memberof FeatureDetailResponseData
|
|
4720
5058
|
*/
|
|
4721
|
-
featureType:
|
|
5059
|
+
featureType: FeatureType;
|
|
4722
5060
|
/**
|
|
4723
5061
|
*
|
|
4724
5062
|
* @type {Array<FlagDetailResponseData>}
|
|
@@ -4739,10 +5077,10 @@ declare interface FeatureDetailResponseData {
|
|
|
4739
5077
|
id: string;
|
|
4740
5078
|
/**
|
|
4741
5079
|
*
|
|
4742
|
-
* @type {
|
|
5080
|
+
* @type {FeatureLifecyclePhase}
|
|
4743
5081
|
* @memberof FeatureDetailResponseData
|
|
4744
5082
|
*/
|
|
4745
|
-
lifecyclePhase?:
|
|
5083
|
+
lifecyclePhase?: FeatureLifecyclePhase | null;
|
|
4746
5084
|
/**
|
|
4747
5085
|
*
|
|
4748
5086
|
* @type {string}
|
|
@@ -4825,10 +5163,10 @@ declare interface FeatureDetailResponseData_2 {
|
|
|
4825
5163
|
eventSummary?: EventSummaryResponseData_2;
|
|
4826
5164
|
/**
|
|
4827
5165
|
*
|
|
4828
|
-
* @type {
|
|
5166
|
+
* @type {FeatureType}
|
|
4829
5167
|
* @memberof FeatureDetailResponseData
|
|
4830
5168
|
*/
|
|
4831
|
-
featureType:
|
|
5169
|
+
featureType: FeatureType_2;
|
|
4832
5170
|
/**
|
|
4833
5171
|
*
|
|
4834
5172
|
* @type {Array<FlagDetailResponseData>}
|
|
@@ -4849,10 +5187,10 @@ declare interface FeatureDetailResponseData_2 {
|
|
|
4849
5187
|
id: string;
|
|
4850
5188
|
/**
|
|
4851
5189
|
*
|
|
4852
|
-
* @type {
|
|
5190
|
+
* @type {FeatureLifecyclePhase}
|
|
4853
5191
|
* @memberof FeatureDetailResponseData
|
|
4854
5192
|
*/
|
|
4855
|
-
lifecyclePhase?:
|
|
5193
|
+
lifecyclePhase?: FeatureLifecyclePhase_2 | null;
|
|
4856
5194
|
/**
|
|
4857
5195
|
*
|
|
4858
5196
|
* @type {string}
|
|
@@ -4904,16 +5242,41 @@ declare interface FeatureDetailResponseData_2 {
|
|
|
4904
5242
|
}
|
|
4905
5243
|
|
|
4906
5244
|
/**
|
|
4907
|
-
* Schematic API
|
|
4908
|
-
* Schematic API
|
|
4909
|
-
*
|
|
4910
|
-
* The version of the OpenAPI document: 0.1
|
|
4911
5245
|
*
|
|
5246
|
+
* @export
|
|
5247
|
+
*/
|
|
5248
|
+
declare const FeatureLifecyclePhase: {
|
|
5249
|
+
readonly AddOn: "add_on";
|
|
5250
|
+
readonly Alpha: "alpha";
|
|
5251
|
+
readonly Beta: "beta";
|
|
5252
|
+
readonly Deprecated: "deprecated";
|
|
5253
|
+
readonly Ga: "ga";
|
|
5254
|
+
readonly Inactive: "inactive";
|
|
5255
|
+
readonly InPlan: "in_plan";
|
|
5256
|
+
readonly InternalTesting: "internal_testing";
|
|
5257
|
+
readonly Legacy: "legacy";
|
|
5258
|
+
};
|
|
5259
|
+
|
|
5260
|
+
declare type FeatureLifecyclePhase = (typeof FeatureLifecyclePhase)[keyof typeof FeatureLifecyclePhase];
|
|
5261
|
+
|
|
5262
|
+
/**
|
|
4912
5263
|
*
|
|
4913
|
-
*
|
|
4914
|
-
* https://openapi-generator.tech
|
|
4915
|
-
* Do not edit the class manually.
|
|
5264
|
+
* @export
|
|
4916
5265
|
*/
|
|
5266
|
+
declare const FeatureLifecyclePhase_2: {
|
|
5267
|
+
readonly AddOn: "add_on";
|
|
5268
|
+
readonly Alpha: "alpha";
|
|
5269
|
+
readonly Beta: "beta";
|
|
5270
|
+
readonly Deprecated: "deprecated";
|
|
5271
|
+
readonly Ga: "ga";
|
|
5272
|
+
readonly Inactive: "inactive";
|
|
5273
|
+
readonly InPlan: "in_plan";
|
|
5274
|
+
readonly InternalTesting: "internal_testing";
|
|
5275
|
+
readonly Legacy: "legacy";
|
|
5276
|
+
};
|
|
5277
|
+
|
|
5278
|
+
declare type FeatureLifecyclePhase_2 = (typeof FeatureLifecyclePhase_2)[keyof typeof FeatureLifecyclePhase_2];
|
|
5279
|
+
|
|
4917
5280
|
/**
|
|
4918
5281
|
*
|
|
4919
5282
|
* @export
|
|
@@ -4940,10 +5303,10 @@ declare interface FeatureResponseData {
|
|
|
4940
5303
|
eventSubtype?: string | null;
|
|
4941
5304
|
/**
|
|
4942
5305
|
*
|
|
4943
|
-
* @type {
|
|
5306
|
+
* @type {FeatureType}
|
|
4944
5307
|
* @memberof FeatureResponseData
|
|
4945
5308
|
*/
|
|
4946
|
-
featureType:
|
|
5309
|
+
featureType: FeatureType;
|
|
4947
5310
|
/**
|
|
4948
5311
|
*
|
|
4949
5312
|
* @type {string}
|
|
@@ -4958,10 +5321,10 @@ declare interface FeatureResponseData {
|
|
|
4958
5321
|
id: string;
|
|
4959
5322
|
/**
|
|
4960
5323
|
*
|
|
4961
|
-
* @type {
|
|
5324
|
+
* @type {FeatureLifecyclePhase}
|
|
4962
5325
|
* @memberof FeatureResponseData
|
|
4963
5326
|
*/
|
|
4964
|
-
lifecyclePhase?:
|
|
5327
|
+
lifecyclePhase?: FeatureLifecyclePhase | null;
|
|
4965
5328
|
/**
|
|
4966
5329
|
*
|
|
4967
5330
|
* @type {string}
|
|
@@ -5000,17 +5363,6 @@ declare interface FeatureResponseData {
|
|
|
5000
5363
|
updatedAt: Date;
|
|
5001
5364
|
}
|
|
5002
5365
|
|
|
5003
|
-
/**
|
|
5004
|
-
* Schematic API
|
|
5005
|
-
* Schematic API
|
|
5006
|
-
*
|
|
5007
|
-
* The version of the OpenAPI document: 0.1
|
|
5008
|
-
*
|
|
5009
|
-
*
|
|
5010
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5011
|
-
* https://openapi-generator.tech
|
|
5012
|
-
* Do not edit the class manually.
|
|
5013
|
-
*/
|
|
5014
5366
|
/**
|
|
5015
5367
|
*
|
|
5016
5368
|
* @export
|
|
@@ -5037,10 +5389,10 @@ declare interface FeatureResponseData_2 {
|
|
|
5037
5389
|
eventSubtype?: string | null;
|
|
5038
5390
|
/**
|
|
5039
5391
|
*
|
|
5040
|
-
* @type {
|
|
5392
|
+
* @type {FeatureType}
|
|
5041
5393
|
* @memberof FeatureResponseData
|
|
5042
5394
|
*/
|
|
5043
|
-
featureType:
|
|
5395
|
+
featureType: FeatureType_2;
|
|
5044
5396
|
/**
|
|
5045
5397
|
*
|
|
5046
5398
|
* @type {string}
|
|
@@ -5055,10 +5407,10 @@ declare interface FeatureResponseData_2 {
|
|
|
5055
5407
|
id: string;
|
|
5056
5408
|
/**
|
|
5057
5409
|
*
|
|
5058
|
-
* @type {
|
|
5410
|
+
* @type {FeatureLifecyclePhase}
|
|
5059
5411
|
* @memberof FeatureResponseData
|
|
5060
5412
|
*/
|
|
5061
|
-
lifecyclePhase?:
|
|
5413
|
+
lifecyclePhase?: FeatureLifecyclePhase_2 | null;
|
|
5062
5414
|
/**
|
|
5063
5415
|
*
|
|
5064
5416
|
* @type {string}
|
|
@@ -5097,6 +5449,30 @@ declare interface FeatureResponseData_2 {
|
|
|
5097
5449
|
updatedAt: Date;
|
|
5098
5450
|
}
|
|
5099
5451
|
|
|
5452
|
+
/**
|
|
5453
|
+
*
|
|
5454
|
+
* @export
|
|
5455
|
+
*/
|
|
5456
|
+
declare const FeatureType: {
|
|
5457
|
+
readonly Boolean: "boolean";
|
|
5458
|
+
readonly Event: "event";
|
|
5459
|
+
readonly Trait: "trait";
|
|
5460
|
+
};
|
|
5461
|
+
|
|
5462
|
+
declare type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
|
|
5463
|
+
|
|
5464
|
+
/**
|
|
5465
|
+
*
|
|
5466
|
+
* @export
|
|
5467
|
+
*/
|
|
5468
|
+
declare const FeatureType_2: {
|
|
5469
|
+
readonly Boolean: "boolean";
|
|
5470
|
+
readonly Event: "event";
|
|
5471
|
+
readonly Trait: "trait";
|
|
5472
|
+
};
|
|
5473
|
+
|
|
5474
|
+
declare type FeatureType_2 = (typeof FeatureType_2)[keyof typeof FeatureType_2];
|
|
5475
|
+
|
|
5100
5476
|
/**
|
|
5101
5477
|
*
|
|
5102
5478
|
* @export
|
|
@@ -5130,11 +5506,11 @@ declare interface FeatureUsageResponseData {
|
|
|
5130
5506
|
*/
|
|
5131
5507
|
allocation?: number | null;
|
|
5132
5508
|
/**
|
|
5133
|
-
*
|
|
5134
|
-
* @type {
|
|
5509
|
+
*
|
|
5510
|
+
* @type {EntitlementValueType}
|
|
5135
5511
|
* @memberof FeatureUsageResponseData
|
|
5136
5512
|
*/
|
|
5137
|
-
allocationType:
|
|
5513
|
+
allocationType: EntitlementValueType;
|
|
5138
5514
|
/**
|
|
5139
5515
|
*
|
|
5140
5516
|
* @type {CompanyOverrideResponseData}
|
|
@@ -5162,11 +5538,11 @@ declare interface FeatureUsageResponseData {
|
|
|
5162
5538
|
*/
|
|
5163
5539
|
creditGrantDetails?: Array<CreditGrantDetail>;
|
|
5164
5540
|
/**
|
|
5165
|
-
*
|
|
5166
|
-
* @type {
|
|
5541
|
+
*
|
|
5542
|
+
* @type {BillingCreditGrantReason}
|
|
5167
5543
|
* @memberof FeatureUsageResponseData
|
|
5168
5544
|
*/
|
|
5169
|
-
creditGrantReason?:
|
|
5545
|
+
creditGrantReason?: BillingCreditGrantReason | null;
|
|
5170
5546
|
/**
|
|
5171
5547
|
*
|
|
5172
5548
|
* @type {number}
|
|
@@ -5223,10 +5599,10 @@ declare interface FeatureUsageResponseData {
|
|
|
5223
5599
|
entitlementSource?: string | null;
|
|
5224
5600
|
/**
|
|
5225
5601
|
*
|
|
5226
|
-
* @type {
|
|
5602
|
+
* @type {EntitlementType}
|
|
5227
5603
|
* @memberof FeatureUsageResponseData
|
|
5228
5604
|
*/
|
|
5229
|
-
entitlementType:
|
|
5605
|
+
entitlementType: EntitlementType;
|
|
5230
5606
|
/**
|
|
5231
5607
|
*
|
|
5232
5608
|
* @type {FeatureDetailResponseData}
|
|
@@ -5295,10 +5671,10 @@ declare interface FeatureUsageResponseData {
|
|
|
5295
5671
|
planEntitlement?: PlanEntitlementResponseData;
|
|
5296
5672
|
/**
|
|
5297
5673
|
*
|
|
5298
|
-
* @type {
|
|
5674
|
+
* @type {EntitlementPriceBehavior}
|
|
5299
5675
|
* @memberof FeatureUsageResponseData
|
|
5300
5676
|
*/
|
|
5301
|
-
priceBehavior?:
|
|
5677
|
+
priceBehavior?: EntitlementPriceBehavior | null;
|
|
5302
5678
|
/**
|
|
5303
5679
|
* The soft limit for the feature usage. Available only for overage price behavior
|
|
5304
5680
|
* @type {number}
|
|
@@ -5319,29 +5695,6 @@ declare interface FeatureUsageResponseData {
|
|
|
5319
5695
|
yearlyUsageBasedPrice?: BillingPriceView;
|
|
5320
5696
|
}
|
|
5321
5697
|
|
|
5322
|
-
/**
|
|
5323
|
-
* @export
|
|
5324
|
-
*/
|
|
5325
|
-
declare const FeatureUsageResponseDataAllocationTypeEnum: {
|
|
5326
|
-
readonly Boolean: "boolean";
|
|
5327
|
-
readonly Numeric: "numeric";
|
|
5328
|
-
readonly Trait: "trait";
|
|
5329
|
-
readonly Unlimited: "unlimited";
|
|
5330
|
-
};
|
|
5331
|
-
|
|
5332
|
-
declare type FeatureUsageResponseDataAllocationTypeEnum = (typeof FeatureUsageResponseDataAllocationTypeEnum)[keyof typeof FeatureUsageResponseDataAllocationTypeEnum];
|
|
5333
|
-
|
|
5334
|
-
/**
|
|
5335
|
-
* @export
|
|
5336
|
-
*/
|
|
5337
|
-
declare const FeatureUsageResponseDataCreditGrantReasonEnum: {
|
|
5338
|
-
readonly Free: "free";
|
|
5339
|
-
readonly Plan: "plan";
|
|
5340
|
-
readonly Purchased: "purchased";
|
|
5341
|
-
};
|
|
5342
|
-
|
|
5343
|
-
declare type FeatureUsageResponseDataCreditGrantReasonEnum = (typeof FeatureUsageResponseDataCreditGrantReasonEnum)[keyof typeof FeatureUsageResponseDataCreditGrantReasonEnum];
|
|
5344
|
-
|
|
5345
5698
|
declare type FetchAPI = WindowOrWorkerGlobalScope["fetch"];
|
|
5346
5699
|
|
|
5347
5700
|
/**
|
|
@@ -5407,10 +5760,10 @@ declare interface FlagDetailResponseData {
|
|
|
5407
5760
|
featureId?: string | null;
|
|
5408
5761
|
/**
|
|
5409
5762
|
*
|
|
5410
|
-
* @type {
|
|
5763
|
+
* @type {FlagType}
|
|
5411
5764
|
* @memberof FlagDetailResponseData
|
|
5412
5765
|
*/
|
|
5413
|
-
flagType:
|
|
5766
|
+
flagType: FlagType;
|
|
5414
5767
|
/**
|
|
5415
5768
|
*
|
|
5416
5769
|
* @type {string}
|
|
@@ -5493,10 +5846,10 @@ declare interface FlagDetailResponseData_2 {
|
|
|
5493
5846
|
featureId?: string | null;
|
|
5494
5847
|
/**
|
|
5495
5848
|
*
|
|
5496
|
-
* @type {
|
|
5849
|
+
* @type {FlagType}
|
|
5497
5850
|
* @memberof FlagDetailResponseData
|
|
5498
5851
|
*/
|
|
5499
|
-
flagType:
|
|
5852
|
+
flagType: FlagType_2;
|
|
5500
5853
|
/**
|
|
5501
5854
|
*
|
|
5502
5855
|
* @type {string}
|
|
@@ -5541,12 +5894,32 @@ declare interface FlagDetailResponseData_2 {
|
|
|
5541
5894
|
updatedAt: Date;
|
|
5542
5895
|
}
|
|
5543
5896
|
|
|
5897
|
+
/**
|
|
5898
|
+
*
|
|
5899
|
+
* @export
|
|
5900
|
+
*/
|
|
5901
|
+
declare const FlagType: {
|
|
5902
|
+
readonly Boolean: "boolean";
|
|
5903
|
+
};
|
|
5904
|
+
|
|
5905
|
+
declare type FlagType = (typeof FlagType)[keyof typeof FlagType];
|
|
5906
|
+
|
|
5907
|
+
/**
|
|
5908
|
+
*
|
|
5909
|
+
* @export
|
|
5910
|
+
*/
|
|
5911
|
+
declare const FlagType_2: {
|
|
5912
|
+
readonly Boolean: "boolean";
|
|
5913
|
+
};
|
|
5914
|
+
|
|
5915
|
+
declare type FlagType_2 = (typeof FlagType_2)[keyof typeof FlagType_2];
|
|
5916
|
+
|
|
5544
5917
|
export declare const Flex: IStyledComponentBase<"web", FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5545
5918
|
$viewport?: {
|
|
5546
|
-
sm?: TransientCSSProperties;
|
|
5547
|
-
md?: TransientCSSProperties;
|
|
5548
|
-
lg?: TransientCSSProperties;
|
|
5549
|
-
xl?: TransientCSSProperties;
|
|
5919
|
+
"sm"?: TransientCSSProperties;
|
|
5920
|
+
"md"?: TransientCSSProperties;
|
|
5921
|
+
"lg"?: TransientCSSProperties;
|
|
5922
|
+
"xl"?: TransientCSSProperties;
|
|
5550
5923
|
"2xl"?: TransientCSSProperties;
|
|
5551
5924
|
[key: string]: TransientCSSProperties | undefined;
|
|
5552
5925
|
};
|
|
@@ -5556,10 +5929,10 @@ export declare type FontStyle = keyof ThemeSettings["typography"];
|
|
|
5556
5929
|
|
|
5557
5930
|
export declare const FussyChild: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5558
5931
|
$viewport?: {
|
|
5559
|
-
sm?: TransientCSSProperties;
|
|
5560
|
-
md?: TransientCSSProperties;
|
|
5561
|
-
lg?: TransientCSSProperties;
|
|
5562
|
-
xl?: TransientCSSProperties;
|
|
5932
|
+
"sm"?: TransientCSSProperties;
|
|
5933
|
+
"md"?: TransientCSSProperties;
|
|
5934
|
+
"lg"?: TransientCSSProperties;
|
|
5935
|
+
"xl"?: TransientCSSProperties;
|
|
5563
5936
|
"2xl"?: TransientCSSProperties;
|
|
5564
5937
|
[key: string]: TransientCSSProperties | undefined;
|
|
5565
5938
|
};
|
|
@@ -5945,10 +6318,10 @@ export declare type ModalSize = "sm" | "md" | "lg" | "auto";
|
|
|
5945
6318
|
|
|
5946
6319
|
export declare const Notice: IStyledComponentBase<"web", FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5947
6320
|
$viewport?: {
|
|
5948
|
-
sm?: TransientCSSProperties;
|
|
5949
|
-
md?: TransientCSSProperties;
|
|
5950
|
-
lg?: TransientCSSProperties;
|
|
5951
|
-
xl?: TransientCSSProperties;
|
|
6321
|
+
"sm"?: TransientCSSProperties;
|
|
6322
|
+
"md"?: TransientCSSProperties;
|
|
6323
|
+
"lg"?: TransientCSSProperties;
|
|
6324
|
+
"xl"?: TransientCSSProperties;
|
|
5952
6325
|
"2xl"?: TransientCSSProperties;
|
|
5953
6326
|
[key: string]: TransientCSSProperties | undefined;
|
|
5954
6327
|
};
|
|
@@ -6103,16 +6476,27 @@ declare interface PaymentMethodResponseData {
|
|
|
6103
6476
|
declare type Plan = CompanyPlanDetailResponseData;
|
|
6104
6477
|
|
|
6105
6478
|
/**
|
|
6106
|
-
* Schematic API
|
|
6107
|
-
* Schematic API
|
|
6108
|
-
*
|
|
6109
|
-
* The version of the OpenAPI document: 0.1
|
|
6110
6479
|
*
|
|
6480
|
+
* @export
|
|
6481
|
+
*/
|
|
6482
|
+
declare const PlanControlledByType: {
|
|
6483
|
+
readonly Schematic: "schematic";
|
|
6484
|
+
readonly Stripe: "stripe";
|
|
6485
|
+
};
|
|
6486
|
+
|
|
6487
|
+
declare type PlanControlledByType = (typeof PlanControlledByType)[keyof typeof PlanControlledByType];
|
|
6488
|
+
|
|
6489
|
+
/**
|
|
6111
6490
|
*
|
|
6112
|
-
*
|
|
6113
|
-
* https://openapi-generator.tech
|
|
6114
|
-
* Do not edit the class manually.
|
|
6491
|
+
* @export
|
|
6115
6492
|
*/
|
|
6493
|
+
declare const PlanControlledByType_2: {
|
|
6494
|
+
readonly Schematic: "schematic";
|
|
6495
|
+
readonly Stripe: "stripe";
|
|
6496
|
+
};
|
|
6497
|
+
|
|
6498
|
+
declare type PlanControlledByType_2 = (typeof PlanControlledByType_2)[keyof typeof PlanControlledByType_2];
|
|
6499
|
+
|
|
6116
6500
|
/**
|
|
6117
6501
|
*
|
|
6118
6502
|
* @export
|
|
@@ -6139,16 +6523,16 @@ declare interface PlanCreditGrantView {
|
|
|
6139
6523
|
billingCreditAutoTopupEnabled: boolean;
|
|
6140
6524
|
/**
|
|
6141
6525
|
*
|
|
6142
|
-
* @type {
|
|
6526
|
+
* @type {BillingCreditExpiryType}
|
|
6143
6527
|
* @memberof PlanCreditGrantView
|
|
6144
6528
|
*/
|
|
6145
|
-
billingCreditAutoTopupExpiryType?:
|
|
6529
|
+
billingCreditAutoTopupExpiryType?: BillingCreditExpiryType | null;
|
|
6146
6530
|
/**
|
|
6147
6531
|
*
|
|
6148
|
-
* @type {
|
|
6532
|
+
* @type {BillingCreditExpiryUnit}
|
|
6149
6533
|
* @memberof PlanCreditGrantView
|
|
6150
6534
|
*/
|
|
6151
|
-
billingCreditAutoTopupExpiryUnit?:
|
|
6535
|
+
billingCreditAutoTopupExpiryUnit?: BillingCreditExpiryUnit | null;
|
|
6152
6536
|
/**
|
|
6153
6537
|
*
|
|
6154
6538
|
* @type {number}
|
|
@@ -6199,16 +6583,16 @@ declare interface PlanCreditGrantView {
|
|
|
6199
6583
|
creditName: string;
|
|
6200
6584
|
/**
|
|
6201
6585
|
*
|
|
6202
|
-
* @type {
|
|
6586
|
+
* @type {BillingCreditExpiryType}
|
|
6203
6587
|
* @memberof PlanCreditGrantView
|
|
6204
6588
|
*/
|
|
6205
|
-
expiryType?:
|
|
6589
|
+
expiryType?: BillingCreditExpiryType | null;
|
|
6206
6590
|
/**
|
|
6207
6591
|
*
|
|
6208
|
-
* @type {
|
|
6592
|
+
* @type {BillingCreditExpiryUnit}
|
|
6209
6593
|
* @memberof PlanCreditGrantView
|
|
6210
6594
|
*/
|
|
6211
|
-
expiryUnit?:
|
|
6595
|
+
expiryUnit?: BillingCreditExpiryUnit | null;
|
|
6212
6596
|
/**
|
|
6213
6597
|
*
|
|
6214
6598
|
* @type {number}
|
|
@@ -6241,22 +6625,22 @@ declare interface PlanCreditGrantView {
|
|
|
6241
6625
|
pluralName?: string | null;
|
|
6242
6626
|
/**
|
|
6243
6627
|
*
|
|
6244
|
-
* @type {
|
|
6628
|
+
* @type {BillingPlanCreditGrantResetCadence}
|
|
6245
6629
|
* @memberof PlanCreditGrantView
|
|
6246
6630
|
*/
|
|
6247
|
-
resetCadence:
|
|
6631
|
+
resetCadence: BillingPlanCreditGrantResetCadence;
|
|
6248
6632
|
/**
|
|
6249
6633
|
*
|
|
6250
|
-
* @type {
|
|
6634
|
+
* @type {BillingPlanCreditGrantResetStart}
|
|
6251
6635
|
* @memberof PlanCreditGrantView
|
|
6252
6636
|
*/
|
|
6253
|
-
resetStart:
|
|
6637
|
+
resetStart: BillingPlanCreditGrantResetStart;
|
|
6254
6638
|
/**
|
|
6255
6639
|
*
|
|
6256
|
-
* @type {
|
|
6640
|
+
* @type {BillingPlanCreditGrantResetType}
|
|
6257
6641
|
* @memberof PlanCreditGrantView
|
|
6258
6642
|
*/
|
|
6259
|
-
resetType:
|
|
6643
|
+
resetType: BillingPlanCreditGrantResetType;
|
|
6260
6644
|
/**
|
|
6261
6645
|
*
|
|
6262
6646
|
* @type {string}
|
|
@@ -6271,17 +6655,6 @@ declare interface PlanCreditGrantView {
|
|
|
6271
6655
|
updatedAt: Date;
|
|
6272
6656
|
}
|
|
6273
6657
|
|
|
6274
|
-
/**
|
|
6275
|
-
* Schematic API
|
|
6276
|
-
* Schematic API
|
|
6277
|
-
*
|
|
6278
|
-
* The version of the OpenAPI document: 0.1
|
|
6279
|
-
*
|
|
6280
|
-
*
|
|
6281
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6282
|
-
* https://openapi-generator.tech
|
|
6283
|
-
* Do not edit the class manually.
|
|
6284
|
-
*/
|
|
6285
6658
|
/**
|
|
6286
6659
|
*
|
|
6287
6660
|
* @export
|
|
@@ -6308,16 +6681,16 @@ declare interface PlanCreditGrantView_2 {
|
|
|
6308
6681
|
billingCreditAutoTopupEnabled: boolean;
|
|
6309
6682
|
/**
|
|
6310
6683
|
*
|
|
6311
|
-
* @type {
|
|
6684
|
+
* @type {BillingCreditExpiryType}
|
|
6312
6685
|
* @memberof PlanCreditGrantView
|
|
6313
6686
|
*/
|
|
6314
|
-
billingCreditAutoTopupExpiryType?:
|
|
6687
|
+
billingCreditAutoTopupExpiryType?: BillingCreditExpiryType_2 | null;
|
|
6315
6688
|
/**
|
|
6316
6689
|
*
|
|
6317
|
-
* @type {
|
|
6690
|
+
* @type {BillingCreditExpiryUnit}
|
|
6318
6691
|
* @memberof PlanCreditGrantView
|
|
6319
6692
|
*/
|
|
6320
|
-
billingCreditAutoTopupExpiryUnit?:
|
|
6693
|
+
billingCreditAutoTopupExpiryUnit?: BillingCreditExpiryUnit_2 | null;
|
|
6321
6694
|
/**
|
|
6322
6695
|
*
|
|
6323
6696
|
* @type {number}
|
|
@@ -6368,16 +6741,16 @@ declare interface PlanCreditGrantView_2 {
|
|
|
6368
6741
|
creditName: string;
|
|
6369
6742
|
/**
|
|
6370
6743
|
*
|
|
6371
|
-
* @type {
|
|
6744
|
+
* @type {BillingCreditExpiryType}
|
|
6372
6745
|
* @memberof PlanCreditGrantView
|
|
6373
6746
|
*/
|
|
6374
|
-
expiryType?:
|
|
6747
|
+
expiryType?: BillingCreditExpiryType_2 | null;
|
|
6375
6748
|
/**
|
|
6376
6749
|
*
|
|
6377
|
-
* @type {
|
|
6750
|
+
* @type {BillingCreditExpiryUnit}
|
|
6378
6751
|
* @memberof PlanCreditGrantView
|
|
6379
6752
|
*/
|
|
6380
|
-
expiryUnit?:
|
|
6753
|
+
expiryUnit?: BillingCreditExpiryUnit_2 | null;
|
|
6381
6754
|
/**
|
|
6382
6755
|
*
|
|
6383
6756
|
* @type {number}
|
|
@@ -6410,22 +6783,22 @@ declare interface PlanCreditGrantView_2 {
|
|
|
6410
6783
|
pluralName?: string | null;
|
|
6411
6784
|
/**
|
|
6412
6785
|
*
|
|
6413
|
-
* @type {
|
|
6786
|
+
* @type {BillingPlanCreditGrantResetCadence}
|
|
6414
6787
|
* @memberof PlanCreditGrantView
|
|
6415
6788
|
*/
|
|
6416
|
-
resetCadence:
|
|
6789
|
+
resetCadence: BillingPlanCreditGrantResetCadence_2;
|
|
6417
6790
|
/**
|
|
6418
6791
|
*
|
|
6419
|
-
* @type {
|
|
6792
|
+
* @type {BillingPlanCreditGrantResetStart}
|
|
6420
6793
|
* @memberof PlanCreditGrantView
|
|
6421
6794
|
*/
|
|
6422
|
-
resetStart:
|
|
6795
|
+
resetStart: BillingPlanCreditGrantResetStart_2;
|
|
6423
6796
|
/**
|
|
6424
6797
|
*
|
|
6425
|
-
* @type {
|
|
6798
|
+
* @type {BillingPlanCreditGrantResetType}
|
|
6426
6799
|
* @memberof PlanCreditGrantView
|
|
6427
6800
|
*/
|
|
6428
|
-
resetType:
|
|
6801
|
+
resetType: BillingPlanCreditGrantResetType_2;
|
|
6429
6802
|
/**
|
|
6430
6803
|
*
|
|
6431
6804
|
* @type {string}
|
|
@@ -6461,10 +6834,10 @@ declare interface PlanDetailResponseData {
|
|
|
6461
6834
|
billingProduct?: BillingProductDetailResponseData;
|
|
6462
6835
|
/**
|
|
6463
6836
|
*
|
|
6464
|
-
* @type {
|
|
6837
|
+
* @type {ChargeType}
|
|
6465
6838
|
* @memberof PlanDetailResponseData
|
|
6466
6839
|
*/
|
|
6467
|
-
chargeType:
|
|
6840
|
+
chargeType: ChargeType;
|
|
6468
6841
|
/**
|
|
6469
6842
|
*
|
|
6470
6843
|
* @type {number}
|
|
@@ -6473,10 +6846,10 @@ declare interface PlanDetailResponseData {
|
|
|
6473
6846
|
companyCount: number;
|
|
6474
6847
|
/**
|
|
6475
6848
|
*
|
|
6476
|
-
* @type {
|
|
6849
|
+
* @type {PlanControlledByType}
|
|
6477
6850
|
* @memberof PlanDetailResponseData
|
|
6478
6851
|
*/
|
|
6479
|
-
controlledBy:
|
|
6852
|
+
controlledBy: PlanControlledByType;
|
|
6480
6853
|
/**
|
|
6481
6854
|
*
|
|
6482
6855
|
* @type {Date}
|
|
@@ -6552,10 +6925,10 @@ declare interface PlanDetailResponseData {
|
|
|
6552
6925
|
oneTimePrice?: BillingPriceResponseData;
|
|
6553
6926
|
/**
|
|
6554
6927
|
*
|
|
6555
|
-
* @type {
|
|
6928
|
+
* @type {PlanType}
|
|
6556
6929
|
* @memberof PlanDetailResponseData
|
|
6557
6930
|
*/
|
|
6558
|
-
planType:
|
|
6931
|
+
planType: PlanType;
|
|
6559
6932
|
/**
|
|
6560
6933
|
*
|
|
6561
6934
|
* @type {number}
|
|
@@ -6662,10 +7035,10 @@ declare interface PlanEntitlementResponseData {
|
|
|
6662
7035
|
planId: string;
|
|
6663
7036
|
/**
|
|
6664
7037
|
*
|
|
6665
|
-
* @type {
|
|
7038
|
+
* @type {EntitlementPriceBehavior}
|
|
6666
7039
|
* @memberof PlanEntitlementResponseData
|
|
6667
7040
|
*/
|
|
6668
|
-
priceBehavior?:
|
|
7041
|
+
priceBehavior?: EntitlementPriceBehavior | null;
|
|
6669
7042
|
/**
|
|
6670
7043
|
*
|
|
6671
7044
|
* @type {string}
|
|
@@ -6728,10 +7101,10 @@ declare interface PlanEntitlementResponseData {
|
|
|
6728
7101
|
valueTraitId?: string | null;
|
|
6729
7102
|
/**
|
|
6730
7103
|
*
|
|
6731
|
-
* @type {
|
|
7104
|
+
* @type {EntitlementValueType}
|
|
6732
7105
|
* @memberof PlanEntitlementResponseData
|
|
6733
7106
|
*/
|
|
6734
|
-
valueType:
|
|
7107
|
+
valueType: EntitlementValueType;
|
|
6735
7108
|
}
|
|
6736
7109
|
|
|
6737
7110
|
/**
|
|
@@ -6820,10 +7193,10 @@ declare interface PlanEntitlementResponseData_2 {
|
|
|
6820
7193
|
planId: string;
|
|
6821
7194
|
/**
|
|
6822
7195
|
*
|
|
6823
|
-
* @type {
|
|
7196
|
+
* @type {EntitlementPriceBehavior}
|
|
6824
7197
|
* @memberof PlanEntitlementResponseData
|
|
6825
7198
|
*/
|
|
6826
|
-
priceBehavior?:
|
|
7199
|
+
priceBehavior?: EntitlementPriceBehavior_2 | null;
|
|
6827
7200
|
/**
|
|
6828
7201
|
*
|
|
6829
7202
|
* @type {string}
|
|
@@ -6886,10 +7259,10 @@ declare interface PlanEntitlementResponseData_2 {
|
|
|
6886
7259
|
valueTraitId?: string | null;
|
|
6887
7260
|
/**
|
|
6888
7261
|
*
|
|
6889
|
-
* @type {
|
|
7262
|
+
* @type {EntitlementValueType}
|
|
6890
7263
|
* @memberof PlanEntitlementResponseData
|
|
6891
7264
|
*/
|
|
6892
|
-
valueType:
|
|
7265
|
+
valueType: EntitlementValueType_2;
|
|
6893
7266
|
}
|
|
6894
7267
|
|
|
6895
7268
|
export declare const PlanManager: ForwardRefExoticComponent<ElementProps & DeepPartial<DesignProps_6> & HTMLAttributes<HTMLDivElement> & {
|
|
@@ -6898,17 +7271,6 @@ portal?: HTMLElement | null;
|
|
|
6898
7271
|
|
|
6899
7272
|
export declare type PlanManagerProps = DesignProps_6;
|
|
6900
7273
|
|
|
6901
|
-
/**
|
|
6902
|
-
* Schematic API
|
|
6903
|
-
* Schematic API
|
|
6904
|
-
*
|
|
6905
|
-
* The version of the OpenAPI document: 0.1
|
|
6906
|
-
*
|
|
6907
|
-
*
|
|
6908
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6909
|
-
* https://openapi-generator.tech
|
|
6910
|
-
* Do not edit the class manually.
|
|
6911
|
-
*/
|
|
6912
7274
|
/**
|
|
6913
7275
|
*
|
|
6914
7276
|
* @export
|
|
@@ -6954,10 +7316,10 @@ declare interface PlanResponseData {
|
|
|
6954
7316
|
name: string;
|
|
6955
7317
|
/**
|
|
6956
7318
|
*
|
|
6957
|
-
* @type {
|
|
7319
|
+
* @type {PlanType}
|
|
6958
7320
|
* @memberof PlanResponseData
|
|
6959
7321
|
*/
|
|
6960
|
-
planType:
|
|
7322
|
+
planType: PlanType;
|
|
6961
7323
|
/**
|
|
6962
7324
|
*
|
|
6963
7325
|
* @type {Date}
|
|
@@ -6966,17 +7328,6 @@ declare interface PlanResponseData {
|
|
|
6966
7328
|
updatedAt: Date;
|
|
6967
7329
|
}
|
|
6968
7330
|
|
|
6969
|
-
/**
|
|
6970
|
-
* Schematic API
|
|
6971
|
-
* Schematic API
|
|
6972
|
-
*
|
|
6973
|
-
* The version of the OpenAPI document: 0.1
|
|
6974
|
-
*
|
|
6975
|
-
*
|
|
6976
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6977
|
-
* https://openapi-generator.tech
|
|
6978
|
-
* Do not edit the class manually.
|
|
6979
|
-
*/
|
|
6980
7331
|
/**
|
|
6981
7332
|
*
|
|
6982
7333
|
* @export
|
|
@@ -7022,10 +7373,10 @@ declare interface PlanResponseData_2 {
|
|
|
7022
7373
|
name: string;
|
|
7023
7374
|
/**
|
|
7024
7375
|
*
|
|
7025
|
-
* @type {
|
|
7376
|
+
* @type {PlanType}
|
|
7026
7377
|
* @memberof PlanResponseData
|
|
7027
7378
|
*/
|
|
7028
|
-
planType:
|
|
7379
|
+
planType: PlanType_2;
|
|
7029
7380
|
/**
|
|
7030
7381
|
*
|
|
7031
7382
|
* @type {Date}
|
|
@@ -7034,6 +7385,28 @@ declare interface PlanResponseData_2 {
|
|
|
7034
7385
|
updatedAt: Date;
|
|
7035
7386
|
}
|
|
7036
7387
|
|
|
7388
|
+
/**
|
|
7389
|
+
*
|
|
7390
|
+
* @export
|
|
7391
|
+
*/
|
|
7392
|
+
declare const PlanType: {
|
|
7393
|
+
readonly Plan: "plan";
|
|
7394
|
+
readonly AddOn: "add_on";
|
|
7395
|
+
};
|
|
7396
|
+
|
|
7397
|
+
declare type PlanType = (typeof PlanType)[keyof typeof PlanType];
|
|
7398
|
+
|
|
7399
|
+
/**
|
|
7400
|
+
*
|
|
7401
|
+
* @export
|
|
7402
|
+
*/
|
|
7403
|
+
declare const PlanType_2: {
|
|
7404
|
+
readonly Plan: "plan";
|
|
7405
|
+
readonly AddOn: "add_on";
|
|
7406
|
+
};
|
|
7407
|
+
|
|
7408
|
+
declare type PlanType_2 = (typeof PlanType_2)[keyof typeof PlanType_2];
|
|
7409
|
+
|
|
7037
7410
|
/**
|
|
7038
7411
|
*
|
|
7039
7412
|
* @export
|
|
@@ -7055,10 +7428,10 @@ declare interface PlanViewPublicResponseData {
|
|
|
7055
7428
|
billingProduct?: BillingProductDetailResponseData_2;
|
|
7056
7429
|
/**
|
|
7057
7430
|
*
|
|
7058
|
-
* @type {
|
|
7431
|
+
* @type {ChargeType}
|
|
7059
7432
|
* @memberof PlanViewPublicResponseData
|
|
7060
7433
|
*/
|
|
7061
|
-
chargeType:
|
|
7434
|
+
chargeType: ChargeType_2;
|
|
7062
7435
|
/**
|
|
7063
7436
|
*
|
|
7064
7437
|
* @type {number}
|
|
@@ -7073,10 +7446,10 @@ declare interface PlanViewPublicResponseData {
|
|
|
7073
7446
|
compatiblePlanIds: Array<string>;
|
|
7074
7447
|
/**
|
|
7075
7448
|
*
|
|
7076
|
-
* @type {
|
|
7449
|
+
* @type {PlanControlledByType}
|
|
7077
7450
|
* @memberof PlanViewPublicResponseData
|
|
7078
7451
|
*/
|
|
7079
|
-
controlledBy:
|
|
7452
|
+
controlledBy: PlanControlledByType_2;
|
|
7080
7453
|
/**
|
|
7081
7454
|
*
|
|
7082
7455
|
* @type {Date}
|
|
@@ -7176,10 +7549,10 @@ declare interface PlanViewPublicResponseData {
|
|
|
7176
7549
|
oneTimePrice?: BillingPriceResponseData_2;
|
|
7177
7550
|
/**
|
|
7178
7551
|
*
|
|
7179
|
-
* @type {
|
|
7552
|
+
* @type {PlanType}
|
|
7180
7553
|
* @memberof PlanViewPublicResponseData
|
|
7181
7554
|
*/
|
|
7182
|
-
planType:
|
|
7555
|
+
planType: PlanType_2;
|
|
7183
7556
|
/**
|
|
7184
7557
|
*
|
|
7185
7558
|
* @type {number}
|
|
@@ -7881,10 +8254,10 @@ declare interface RuleConditionDetailResponseData {
|
|
|
7881
8254
|
trait?: EntityTraitDefinitionResponseData;
|
|
7882
8255
|
/**
|
|
7883
8256
|
*
|
|
7884
|
-
* @type {
|
|
8257
|
+
* @type {EntityType}
|
|
7885
8258
|
* @memberof RuleConditionDetailResponseData
|
|
7886
8259
|
*/
|
|
7887
|
-
traitEntityType?:
|
|
8260
|
+
traitEntityType?: EntityType | null;
|
|
7888
8261
|
/**
|
|
7889
8262
|
*
|
|
7890
8263
|
* @type {string}
|
|
@@ -8015,10 +8388,10 @@ declare interface RuleConditionDetailResponseData_2 {
|
|
|
8015
8388
|
trait?: EntityTraitDefinitionResponseData_2;
|
|
8016
8389
|
/**
|
|
8017
8390
|
*
|
|
8018
|
-
* @type {
|
|
8391
|
+
* @type {EntityType}
|
|
8019
8392
|
* @memberof RuleConditionDetailResponseData
|
|
8020
8393
|
*/
|
|
8021
|
-
traitEntityType?:
|
|
8394
|
+
traitEntityType?: EntityType_2 | null;
|
|
8022
8395
|
/**
|
|
8023
8396
|
*
|
|
8024
8397
|
* @type {string}
|
|
@@ -8463,17 +8836,6 @@ export declare interface TooltipProps extends BoxProps {
|
|
|
8463
8836
|
fullWidth?: boolean;
|
|
8464
8837
|
}
|
|
8465
8838
|
|
|
8466
|
-
/**
|
|
8467
|
-
* Schematic API
|
|
8468
|
-
* Schematic API
|
|
8469
|
-
*
|
|
8470
|
-
* The version of the OpenAPI document: 0.1
|
|
8471
|
-
*
|
|
8472
|
-
*
|
|
8473
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8474
|
-
* https://openapi-generator.tech
|
|
8475
|
-
* Do not edit the class manually.
|
|
8476
|
-
*/
|
|
8477
8839
|
/**
|
|
8478
8840
|
*
|
|
8479
8841
|
* @export
|
|
@@ -8488,10 +8850,10 @@ declare interface TraitDefinition {
|
|
|
8488
8850
|
comparableType: TraitDefinitionComparableTypeEnum;
|
|
8489
8851
|
/**
|
|
8490
8852
|
*
|
|
8491
|
-
* @type {
|
|
8853
|
+
* @type {EntityType}
|
|
8492
8854
|
* @memberof TraitDefinition
|
|
8493
8855
|
*/
|
|
8494
|
-
entityType:
|
|
8856
|
+
entityType: EntityType;
|
|
8495
8857
|
/**
|
|
8496
8858
|
*
|
|
8497
8859
|
* @type {string}
|
|
@@ -8513,14 +8875,34 @@ declare const TraitDefinitionComparableTypeEnum: {
|
|
|
8513
8875
|
declare type TraitDefinitionComparableTypeEnum = (typeof TraitDefinitionComparableTypeEnum)[keyof typeof TraitDefinitionComparableTypeEnum];
|
|
8514
8876
|
|
|
8515
8877
|
/**
|
|
8878
|
+
*
|
|
8516
8879
|
* @export
|
|
8517
8880
|
*/
|
|
8518
|
-
declare const
|
|
8519
|
-
readonly
|
|
8520
|
-
readonly
|
|
8881
|
+
declare const TraitType: {
|
|
8882
|
+
readonly Boolean: "boolean";
|
|
8883
|
+
readonly Currency: "currency";
|
|
8884
|
+
readonly Date: "date";
|
|
8885
|
+
readonly Number: "number";
|
|
8886
|
+
readonly String: "string";
|
|
8887
|
+
readonly Url: "url";
|
|
8888
|
+
};
|
|
8889
|
+
|
|
8890
|
+
declare type TraitType = (typeof TraitType)[keyof typeof TraitType];
|
|
8891
|
+
|
|
8892
|
+
/**
|
|
8893
|
+
*
|
|
8894
|
+
* @export
|
|
8895
|
+
*/
|
|
8896
|
+
declare const TraitType_2: {
|
|
8897
|
+
readonly Boolean: "boolean";
|
|
8898
|
+
readonly Currency: "currency";
|
|
8899
|
+
readonly Date: "date";
|
|
8900
|
+
readonly Number: "number";
|
|
8901
|
+
readonly String: "string";
|
|
8902
|
+
readonly Url: "url";
|
|
8521
8903
|
};
|
|
8522
8904
|
|
|
8523
|
-
declare type
|
|
8905
|
+
declare type TraitType_2 = (typeof TraitType_2)[keyof typeof TraitType_2];
|
|
8524
8906
|
|
|
8525
8907
|
declare type TransientCSSProperties = {
|
|
8526
8908
|
[Property in keyof React.CSSProperties as `$${string & Property}`]: React.CSSProperties[Property];
|
|
@@ -8528,10 +8910,10 @@ declare type TransientCSSProperties = {
|
|
|
8528
8910
|
|
|
8529
8911
|
export declare const TransitionBox: IStyledComponentBase<"web", Substitute<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
8530
8912
|
$viewport?: {
|
|
8531
|
-
sm?: TransientCSSProperties;
|
|
8532
|
-
md?: TransientCSSProperties;
|
|
8533
|
-
lg?: TransientCSSProperties;
|
|
8534
|
-
xl?: TransientCSSProperties;
|
|
8913
|
+
"sm"?: TransientCSSProperties;
|
|
8914
|
+
"md"?: TransientCSSProperties;
|
|
8915
|
+
"lg"?: TransientCSSProperties;
|
|
8916
|
+
"xl"?: TransientCSSProperties;
|
|
8535
8917
|
"2xl"?: TransientCSSProperties;
|
|
8536
8918
|
[key: string]: TransientCSSProperties | undefined;
|
|
8537
8919
|
};
|
|
@@ -8727,10 +9109,10 @@ declare interface UsageBasedEntitlementResponseData {
|
|
|
8727
9109
|
monthlyUsageBasedPrice?: BillingPriceView;
|
|
8728
9110
|
/**
|
|
8729
9111
|
*
|
|
8730
|
-
* @type {
|
|
9112
|
+
* @type {EntitlementPriceBehavior}
|
|
8731
9113
|
* @memberof UsageBasedEntitlementResponseData
|
|
8732
9114
|
*/
|
|
8733
|
-
priceBehavior?:
|
|
9115
|
+
priceBehavior?: EntitlementPriceBehavior | null;
|
|
8734
9116
|
/**
|
|
8735
9117
|
*
|
|
8736
9118
|
* @type {boolean}
|
|
@@ -8745,10 +9127,10 @@ declare interface UsageBasedEntitlementResponseData {
|
|
|
8745
9127
|
valueNumeric?: number | null;
|
|
8746
9128
|
/**
|
|
8747
9129
|
*
|
|
8748
|
-
* @type {
|
|
9130
|
+
* @type {EntitlementValueType}
|
|
8749
9131
|
* @memberof UsageBasedEntitlementResponseData
|
|
8750
9132
|
*/
|
|
8751
|
-
valueType:
|
|
9133
|
+
valueType: EntitlementValueType;
|
|
8752
9134
|
/**
|
|
8753
9135
|
*
|
|
8754
9136
|
* @type {BillingPriceView}
|