@schematichq/schematic-components 2.2.0 → 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/README.md +52 -0
- package/dist/schematic-components.cjs.js +696 -200
- package/dist/schematic-components.d.ts +923 -412
- package/dist/schematic-components.esm.js +735 -239
- package/package.json +19 -26
|
@@ -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
|
-
* https://openapi-generator.tech
|
|
345
|
-
* Do not edit the class manually.
|
|
485
|
+
* @export
|
|
346
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
|
|
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
|
};
|
|
@@ -1869,6 +2112,89 @@ export declare type ButtonSize = "sm" | "md" | "lg";
|
|
|
1869
2112
|
|
|
1870
2113
|
export declare type ButtonVariant = "filled" | "outline" | "ghost" | "text";
|
|
1871
2114
|
|
|
2115
|
+
/**
|
|
2116
|
+
* Configuration for controlling checkout stage flow and pre-selection.
|
|
2117
|
+
*
|
|
2118
|
+
* ## Three Behavior Modes
|
|
2119
|
+
*
|
|
2120
|
+
* ### 1. Pre-Selection Mode (object without `skipped`)
|
|
2121
|
+
* When you provide planId/addOnIds without explicit skip config, stages are
|
|
2122
|
+
* shown with values pre-selected for user review.
|
|
2123
|
+
*
|
|
2124
|
+
* @example
|
|
2125
|
+
* // Pre-select plan, show plan stage for review
|
|
2126
|
+
* initializeWithPlan({ planId: 'plan_xyz' })
|
|
2127
|
+
*
|
|
2128
|
+
* @example
|
|
2129
|
+
* // Pre-select plan and add-ons, show both stages for review
|
|
2130
|
+
* initializeWithPlan({
|
|
2131
|
+
* planId: 'plan_xyz',
|
|
2132
|
+
* addOnIds: ['addon_1', 'addon_2']
|
|
2133
|
+
* })
|
|
2134
|
+
*
|
|
2135
|
+
* ### 2. Explicit Skip Mode (object with `skipped`)
|
|
2136
|
+
* With explicit skip configuration, you control exactly which stages to skip.
|
|
2137
|
+
* You can skip stages without pre-selecting, or pre-select and skip together.
|
|
2138
|
+
*
|
|
2139
|
+
* @example
|
|
2140
|
+
* // Skip plan stage without pre-selecting (user chooses plan)
|
|
2141
|
+
* initializeWithPlan({
|
|
2142
|
+
* skipped: { planStage: true }
|
|
2143
|
+
* })
|
|
2144
|
+
*
|
|
2145
|
+
* @example
|
|
2146
|
+
* // Pre-select plan AND skip plan stage (go directly to add-ons)
|
|
2147
|
+
* initializeWithPlan({
|
|
2148
|
+
* planId: 'plan_xyz',
|
|
2149
|
+
* skipped: { planStage: true }
|
|
2150
|
+
* })
|
|
2151
|
+
*
|
|
2152
|
+
* @example
|
|
2153
|
+
* // Pre-select plan but show it, skip add-ons stage
|
|
2154
|
+
* initializeWithPlan({
|
|
2155
|
+
* planId: 'plan_xyz',
|
|
2156
|
+
* skipped: { planStage: false, addOnStage: true }
|
|
2157
|
+
* })
|
|
2158
|
+
*
|
|
2159
|
+
* @example
|
|
2160
|
+
* // Skip both stages, go straight to checkout
|
|
2161
|
+
* initializeWithPlan({
|
|
2162
|
+
* planId: 'plan_xyz',
|
|
2163
|
+
* addOnIds: ['addon_1'],
|
|
2164
|
+
* skipped: { planStage: true, addOnStage: true }
|
|
2165
|
+
* })
|
|
2166
|
+
*
|
|
2167
|
+
* ### 3. Legacy String Format
|
|
2168
|
+
* Backwards compatible mode: pre-selects plan and skips plan stage.
|
|
2169
|
+
*
|
|
2170
|
+
* @example
|
|
2171
|
+
* initializeWithPlan('plan_xyz')
|
|
2172
|
+
* // Equivalent to: { planId: 'plan_xyz', skipped: { planStage: true } }
|
|
2173
|
+
*/
|
|
2174
|
+
export declare interface BypassConfig {
|
|
2175
|
+
/**
|
|
2176
|
+
* Plan ID to pre-select.
|
|
2177
|
+
* Optional - you can skip stages without pre-selecting a plan.
|
|
2178
|
+
*/
|
|
2179
|
+
planId?: string;
|
|
2180
|
+
/**
|
|
2181
|
+
* Add-on IDs to pre-select.
|
|
2182
|
+
* Optional - you can skip stages without pre-selecting add-ons.
|
|
2183
|
+
*/
|
|
2184
|
+
addOnIds?: string[];
|
|
2185
|
+
/**
|
|
2186
|
+
* Explicit skip configuration for stages.
|
|
2187
|
+
* - If not provided: stages are shown with pre-selected values (review mode)
|
|
2188
|
+
* - If provided: you control exactly which stages to skip
|
|
2189
|
+
*/
|
|
2190
|
+
skipped?: CheckoutStageSkipConfig;
|
|
2191
|
+
/**
|
|
2192
|
+
* Hide skipped stages from breadcrumb navigation.
|
|
2193
|
+
* Default: false (skipped stages still appear in breadcrumbs)
|
|
2194
|
+
*/
|
|
2195
|
+
hideSkipped?: boolean;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
1872
2198
|
export declare const Card: ForwardRefExoticComponent<CardProps & RefAttributes<HTMLDivElement | null>>;
|
|
1873
2199
|
|
|
1874
2200
|
export declare const cardBoxShadow = "0px 1px 20px 0px #1018280F, 0px 1px 3px 0px #1018281A";
|
|
@@ -1940,6 +2266,30 @@ declare interface ChangeSubscriptionRequestBody {
|
|
|
1940
2266
|
skipTrial: boolean;
|
|
1941
2267
|
}
|
|
1942
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
|
+
|
|
1943
2293
|
export declare const CheckoutDialog: ({ top }: CheckoutDialogProps) => JSX.Element;
|
|
1944
2294
|
|
|
1945
2295
|
declare interface CheckoutDialogProps {
|
|
@@ -1966,17 +2316,6 @@ declare interface CheckoutResponse {
|
|
|
1966
2316
|
params: object;
|
|
1967
2317
|
}
|
|
1968
2318
|
|
|
1969
|
-
/**
|
|
1970
|
-
* Schematic API
|
|
1971
|
-
* Schematic API
|
|
1972
|
-
*
|
|
1973
|
-
* The version of the OpenAPI document: 0.1
|
|
1974
|
-
*
|
|
1975
|
-
*
|
|
1976
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1977
|
-
* https://openapi-generator.tech
|
|
1978
|
-
* Do not edit the class manually.
|
|
1979
|
-
*/
|
|
1980
2319
|
/**
|
|
1981
2320
|
*
|
|
1982
2321
|
* @export
|
|
@@ -2105,10 +2444,10 @@ declare interface CheckoutResponseData {
|
|
|
2105
2444
|
trialEnd?: number | null;
|
|
2106
2445
|
/**
|
|
2107
2446
|
*
|
|
2108
|
-
* @type {
|
|
2447
|
+
* @type {BillingSubscriptionTrialEndSetting}
|
|
2109
2448
|
* @memberof CheckoutResponseData
|
|
2110
2449
|
*/
|
|
2111
|
-
trialEndSetting?:
|
|
2450
|
+
trialEndSetting?: BillingSubscriptionTrialEndSetting | null;
|
|
2112
2451
|
}
|
|
2113
2452
|
|
|
2114
2453
|
export declare interface CheckoutStage {
|
|
@@ -2118,6 +2457,49 @@ export declare interface CheckoutStage {
|
|
|
2118
2457
|
description?: string;
|
|
2119
2458
|
}
|
|
2120
2459
|
|
|
2460
|
+
/**
|
|
2461
|
+
* Explicit configuration for skipping checkout stages.
|
|
2462
|
+
*
|
|
2463
|
+
* This configuration is independent of pre-selection (planId/addOnIds).
|
|
2464
|
+
* You have full control to:
|
|
2465
|
+
* - Skip stages without pre-selecting values
|
|
2466
|
+
* - Pre-select values without skipping stages
|
|
2467
|
+
* - Pre-select AND skip stages
|
|
2468
|
+
* - Any combination that suits your checkout flow
|
|
2469
|
+
*
|
|
2470
|
+
* @example
|
|
2471
|
+
* // Skip both stages (go directly to checkout/payment)
|
|
2472
|
+
* { planStage: true, addOnStage: true }
|
|
2473
|
+
*
|
|
2474
|
+
* @example
|
|
2475
|
+
* // Skip only plan stage (show add-ons)
|
|
2476
|
+
* { planStage: true, addOnStage: false }
|
|
2477
|
+
*
|
|
2478
|
+
* @example
|
|
2479
|
+
* // Show plan stage, skip add-ons stage
|
|
2480
|
+
* { planStage: false, addOnStage: true }
|
|
2481
|
+
*
|
|
2482
|
+
* @example
|
|
2483
|
+
* // Show both stages (same as not providing skipped config)
|
|
2484
|
+
* { planStage: false, addOnStage: false }
|
|
2485
|
+
*/
|
|
2486
|
+
export declare interface CheckoutStageSkipConfig {
|
|
2487
|
+
/**
|
|
2488
|
+
* Skip the plan selection stage.
|
|
2489
|
+
* - true: Skip directly to next stage
|
|
2490
|
+
* - false: Show plan stage (user can review/change selection)
|
|
2491
|
+
* - undefined: Defaults to false (show stage)
|
|
2492
|
+
*/
|
|
2493
|
+
planStage?: boolean;
|
|
2494
|
+
/**
|
|
2495
|
+
* Skip the add-on selection stage.
|
|
2496
|
+
* - true: Skip directly to next stage
|
|
2497
|
+
* - false: Show add-on stage (user can review/change selection)
|
|
2498
|
+
* - undefined: Defaults to false (show stage)
|
|
2499
|
+
*/
|
|
2500
|
+
addOnStage?: boolean;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2121
2503
|
export declare type CheckoutState = {
|
|
2122
2504
|
period?: string;
|
|
2123
2505
|
planId?: string | null;
|
|
@@ -2126,6 +2508,9 @@ export declare type CheckoutState = {
|
|
|
2126
2508
|
addOnUsage?: boolean;
|
|
2127
2509
|
credits?: boolean;
|
|
2128
2510
|
bypassPlanSelection?: boolean;
|
|
2511
|
+
bypassAddOnSelection?: boolean;
|
|
2512
|
+
addOnIds?: string[];
|
|
2513
|
+
hideSkippedStages?: boolean;
|
|
2129
2514
|
};
|
|
2130
2515
|
|
|
2131
2516
|
/**
|
|
@@ -2566,10 +2951,10 @@ declare interface CompanyOverrideResponseData {
|
|
|
2566
2951
|
valueTraitId?: string | null;
|
|
2567
2952
|
/**
|
|
2568
2953
|
*
|
|
2569
|
-
* @type {
|
|
2954
|
+
* @type {EntitlementValueType}
|
|
2570
2955
|
* @memberof CompanyOverrideResponseData
|
|
2571
2956
|
*/
|
|
2572
|
-
valueType:
|
|
2957
|
+
valueType: EntitlementValueType;
|
|
2573
2958
|
}
|
|
2574
2959
|
|
|
2575
2960
|
/**
|
|
@@ -2593,10 +2978,10 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2593
2978
|
billingProduct?: BillingProductDetailResponseData;
|
|
2594
2979
|
/**
|
|
2595
2980
|
*
|
|
2596
|
-
* @type {
|
|
2981
|
+
* @type {ChargeType}
|
|
2597
2982
|
* @memberof CompanyPlanDetailResponseData
|
|
2598
2983
|
*/
|
|
2599
|
-
chargeType:
|
|
2984
|
+
chargeType: ChargeType;
|
|
2600
2985
|
/**
|
|
2601
2986
|
*
|
|
2602
2987
|
* @type {boolean}
|
|
@@ -2617,10 +3002,10 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2617
3002
|
compatiblePlanIds: Array<string>;
|
|
2618
3003
|
/**
|
|
2619
3004
|
*
|
|
2620
|
-
* @type {
|
|
3005
|
+
* @type {PlanControlledByType}
|
|
2621
3006
|
* @memberof CompanyPlanDetailResponseData
|
|
2622
3007
|
*/
|
|
2623
|
-
controlledBy:
|
|
3008
|
+
controlledBy: PlanControlledByType;
|
|
2624
3009
|
/**
|
|
2625
3010
|
*
|
|
2626
3011
|
* @type {Date}
|
|
@@ -2681,6 +3066,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2681
3066
|
* @memberof CompanyPlanDetailResponseData
|
|
2682
3067
|
*/
|
|
2683
3068
|
includedCreditGrants: Array<PlanCreditGrantView>;
|
|
3069
|
+
/**
|
|
3070
|
+
*
|
|
3071
|
+
* @type {string}
|
|
3072
|
+
* @memberof CompanyPlanDetailResponseData
|
|
3073
|
+
*/
|
|
3074
|
+
invalidReason?: CompanyPlanDetailResponseDataInvalidReasonEnum | null;
|
|
2684
3075
|
/**
|
|
2685
3076
|
*
|
|
2686
3077
|
* @type {boolean}
|
|
@@ -2726,10 +3117,10 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2726
3117
|
oneTimePrice?: BillingPriceResponseData;
|
|
2727
3118
|
/**
|
|
2728
3119
|
*
|
|
2729
|
-
* @type {
|
|
3120
|
+
* @type {PlanType}
|
|
2730
3121
|
* @memberof CompanyPlanDetailResponseData
|
|
2731
3122
|
*/
|
|
2732
|
-
planType:
|
|
3123
|
+
planType: PlanType;
|
|
2733
3124
|
/**
|
|
2734
3125
|
*
|
|
2735
3126
|
* @type {number}
|
|
@@ -2762,6 +3153,16 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
2762
3153
|
yearlyPrice?: BillingPriceResponseData;
|
|
2763
3154
|
}
|
|
2764
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
|
+
|
|
2765
3166
|
/**
|
|
2766
3167
|
*
|
|
2767
3168
|
* @export
|
|
@@ -3089,6 +3490,17 @@ declare interface ComponentCheckoutSettings {
|
|
|
3089
3490
|
taxCollectionEnabled: boolean;
|
|
3090
3491
|
}
|
|
3091
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
|
+
|
|
3092
3504
|
/**
|
|
3093
3505
|
*
|
|
3094
3506
|
* @export
|
|
@@ -3173,6 +3585,24 @@ declare interface ComponentHydrateResponseData {
|
|
|
3173
3585
|
* @memberof ComponentHydrateResponseData
|
|
3174
3586
|
*/
|
|
3175
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;
|
|
3176
3606
|
/**
|
|
3177
3607
|
*
|
|
3178
3608
|
* @type {boolean}
|
|
@@ -3221,17 +3651,6 @@ declare interface ComponentProps extends TransientCSSProperties {
|
|
|
3221
3651
|
children?: React.ReactNode;
|
|
3222
3652
|
}
|
|
3223
3653
|
|
|
3224
|
-
/**
|
|
3225
|
-
* Schematic API
|
|
3226
|
-
* Schematic API
|
|
3227
|
-
*
|
|
3228
|
-
* The version of the OpenAPI document: 0.1
|
|
3229
|
-
*
|
|
3230
|
-
*
|
|
3231
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3232
|
-
* https://openapi-generator.tech
|
|
3233
|
-
* Do not edit the class manually.
|
|
3234
|
-
*/
|
|
3235
3654
|
/**
|
|
3236
3655
|
*
|
|
3237
3656
|
* @export
|
|
@@ -3266,16 +3685,16 @@ declare interface ComponentResponseData {
|
|
|
3266
3685
|
name: string;
|
|
3267
3686
|
/**
|
|
3268
3687
|
*
|
|
3269
|
-
* @type {
|
|
3688
|
+
* @type {ComponentState}
|
|
3270
3689
|
* @memberof ComponentResponseData
|
|
3271
3690
|
*/
|
|
3272
|
-
state:
|
|
3691
|
+
state: ComponentState;
|
|
3273
3692
|
/**
|
|
3274
3693
|
*
|
|
3275
|
-
* @type {
|
|
3694
|
+
* @type {ComponentEntityType}
|
|
3276
3695
|
* @memberof ComponentResponseData
|
|
3277
3696
|
*/
|
|
3278
|
-
type:
|
|
3697
|
+
type: ComponentEntityType;
|
|
3279
3698
|
/**
|
|
3280
3699
|
*
|
|
3281
3700
|
* @type {Date}
|
|
@@ -3284,6 +3703,17 @@ declare interface ComponentResponseData {
|
|
|
3284
3703
|
updatedAt: Date;
|
|
3285
3704
|
}
|
|
3286
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
|
+
|
|
3287
3717
|
declare type ComponentStyle = "primary" | "secondary" | "tertiary";
|
|
3288
3718
|
|
|
3289
3719
|
/**
|
|
@@ -3541,16 +3971,16 @@ declare interface CreditCompanyGrantView {
|
|
|
3541
3971
|
expiresAt?: Date | null;
|
|
3542
3972
|
/**
|
|
3543
3973
|
*
|
|
3544
|
-
* @type {
|
|
3974
|
+
* @type {BillingCreditExpiryType}
|
|
3545
3975
|
* @memberof CreditCompanyGrantView
|
|
3546
3976
|
*/
|
|
3547
|
-
expiryType?:
|
|
3977
|
+
expiryType?: BillingCreditExpiryType | null;
|
|
3548
3978
|
/**
|
|
3549
3979
|
*
|
|
3550
|
-
* @type {
|
|
3980
|
+
* @type {BillingCreditExpiryUnit}
|
|
3551
3981
|
* @memberof CreditCompanyGrantView
|
|
3552
3982
|
*/
|
|
3553
|
-
expiryUnit?:
|
|
3983
|
+
expiryUnit?: BillingCreditExpiryUnit | null;
|
|
3554
3984
|
/**
|
|
3555
3985
|
*
|
|
3556
3986
|
* @type {number}
|
|
@@ -3559,10 +3989,10 @@ declare interface CreditCompanyGrantView {
|
|
|
3559
3989
|
expiryUnitCount?: number | null;
|
|
3560
3990
|
/**
|
|
3561
3991
|
*
|
|
3562
|
-
* @type {
|
|
3992
|
+
* @type {BillingCreditGrantReason}
|
|
3563
3993
|
* @memberof CreditCompanyGrantView
|
|
3564
3994
|
*/
|
|
3565
|
-
grantReason:
|
|
3995
|
+
grantReason: BillingCreditGrantReason;
|
|
3566
3996
|
/**
|
|
3567
3997
|
*
|
|
3568
3998
|
* @type {string}
|
|
@@ -3643,23 +4073,12 @@ declare interface CreditCompanyGrantView {
|
|
|
3643
4073
|
zeroedOutDate?: Date | null;
|
|
3644
4074
|
/**
|
|
3645
4075
|
*
|
|
3646
|
-
* @type {
|
|
4076
|
+
* @type {BillingCreditGrantZeroedOutReason}
|
|
3647
4077
|
* @memberof CreditCompanyGrantView
|
|
3648
4078
|
*/
|
|
3649
|
-
zeroedOutReason?:
|
|
4079
|
+
zeroedOutReason?: BillingCreditGrantZeroedOutReason | null;
|
|
3650
4080
|
}
|
|
3651
4081
|
|
|
3652
|
-
/**
|
|
3653
|
-
* Schematic API
|
|
3654
|
-
* Schematic API
|
|
3655
|
-
*
|
|
3656
|
-
* The version of the OpenAPI document: 0.1
|
|
3657
|
-
*
|
|
3658
|
-
*
|
|
3659
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3660
|
-
* https://openapi-generator.tech
|
|
3661
|
-
* Do not edit the class manually.
|
|
3662
|
-
*/
|
|
3663
4082
|
/**
|
|
3664
4083
|
*
|
|
3665
4084
|
* @export
|
|
@@ -3680,10 +4099,10 @@ declare interface CreditGrantDetail {
|
|
|
3680
4099
|
expiresAt?: Date | null;
|
|
3681
4100
|
/**
|
|
3682
4101
|
*
|
|
3683
|
-
* @type {
|
|
4102
|
+
* @type {BillingCreditGrantReason}
|
|
3684
4103
|
* @memberof CreditGrantDetail
|
|
3685
4104
|
*/
|
|
3686
|
-
grantReason:
|
|
4105
|
+
grantReason: BillingCreditGrantReason;
|
|
3687
4106
|
/**
|
|
3688
4107
|
*
|
|
3689
4108
|
* @type {number}
|
|
@@ -3692,17 +4111,6 @@ declare interface CreditGrantDetail {
|
|
|
3692
4111
|
quantity: number;
|
|
3693
4112
|
}
|
|
3694
4113
|
|
|
3695
|
-
/**
|
|
3696
|
-
* @export
|
|
3697
|
-
*/
|
|
3698
|
-
declare const CreditGrantDetailGrantReasonEnum: {
|
|
3699
|
-
readonly Free: "free";
|
|
3700
|
-
readonly Plan: "plan";
|
|
3701
|
-
readonly Purchased: "purchased";
|
|
3702
|
-
};
|
|
3703
|
-
|
|
3704
|
-
declare type CreditGrantDetailGrantReasonEnum = (typeof CreditGrantDetailGrantReasonEnum)[keyof typeof CreditGrantDetailGrantReasonEnum];
|
|
3705
|
-
|
|
3706
4114
|
/**
|
|
3707
4115
|
* Schematic API
|
|
3708
4116
|
* Schematic API
|
|
@@ -4063,10 +4471,10 @@ declare interface DesignProps_9 {
|
|
|
4063
4471
|
|
|
4064
4472
|
declare const Element_2: IStyledComponentBase<"web", FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4065
4473
|
$viewport?: {
|
|
4066
|
-
sm?: TransientCSSProperties;
|
|
4067
|
-
md?: TransientCSSProperties;
|
|
4068
|
-
lg?: TransientCSSProperties;
|
|
4069
|
-
xl?: TransientCSSProperties;
|
|
4474
|
+
"sm"?: TransientCSSProperties;
|
|
4475
|
+
"md"?: TransientCSSProperties;
|
|
4476
|
+
"lg"?: TransientCSSProperties;
|
|
4477
|
+
"xl"?: TransientCSSProperties;
|
|
4070
4478
|
"2xl"?: TransientCSSProperties;
|
|
4071
4479
|
[key: string]: TransientCSSProperties | undefined;
|
|
4072
4480
|
};
|
|
@@ -4100,7 +4508,7 @@ export declare interface EmbedContextProps extends EmbedState {
|
|
|
4100
4508
|
setError: (error: Error) => void;
|
|
4101
4509
|
setLayout: (layout: EmbedLayout) => void;
|
|
4102
4510
|
setCheckoutState: (state: CheckoutState) => void;
|
|
4103
|
-
initializeWithPlan: (
|
|
4511
|
+
initializeWithPlan: (config: string | BypassConfig) => void;
|
|
4104
4512
|
setData: (data: HydrateDataWithCompanyContext) => void;
|
|
4105
4513
|
updateSettings: (settings: DeepPartial<EmbedSettings>, options?: {
|
|
4106
4514
|
update?: boolean;
|
|
@@ -4148,16 +4556,75 @@ export declare interface EmbedState {
|
|
|
4148
4556
|
}
|
|
4149
4557
|
|
|
4150
4558
|
/**
|
|
4151
|
-
* Schematic API
|
|
4152
|
-
* Schematic API
|
|
4153
4559
|
*
|
|
4154
|
-
*
|
|
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
|
+
/**
|
|
4155
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
|
+
/**
|
|
4156
4587
|
*
|
|
4157
|
-
*
|
|
4158
|
-
|
|
4159
|
-
|
|
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
|
|
4160
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
|
|
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
|
+
|
|
4161
4628
|
/**
|
|
4162
4629
|
*
|
|
4163
4630
|
* @export
|
|
@@ -4172,10 +4639,10 @@ declare interface EntityKeyDefinitionResponseData {
|
|
|
4172
4639
|
createdAt: Date;
|
|
4173
4640
|
/**
|
|
4174
4641
|
*
|
|
4175
|
-
* @type {
|
|
4642
|
+
* @type {EntityType}
|
|
4176
4643
|
* @memberof EntityKeyDefinitionResponseData
|
|
4177
4644
|
*/
|
|
4178
|
-
entityType:
|
|
4645
|
+
entityType: EntityType;
|
|
4179
4646
|
/**
|
|
4180
4647
|
*
|
|
4181
4648
|
* @type {string}
|
|
@@ -4228,10 +4695,10 @@ declare interface EntityKeyDetailResponseData {
|
|
|
4228
4695
|
entityId: string;
|
|
4229
4696
|
/**
|
|
4230
4697
|
*
|
|
4231
|
-
* @type {
|
|
4698
|
+
* @type {EntityType}
|
|
4232
4699
|
* @memberof EntityKeyDetailResponseData
|
|
4233
4700
|
*/
|
|
4234
|
-
entityType:
|
|
4701
|
+
entityType: EntityType;
|
|
4235
4702
|
/**
|
|
4236
4703
|
*
|
|
4237
4704
|
* @type {string}
|
|
@@ -4262,19 +4729,8 @@ declare interface EntityKeyDetailResponseData {
|
|
|
4262
4729
|
* @memberof EntityKeyDetailResponseData
|
|
4263
4730
|
*/
|
|
4264
4731
|
value: string;
|
|
4265
|
-
}
|
|
4266
|
-
|
|
4267
|
-
/**
|
|
4268
|
-
* Schematic API
|
|
4269
|
-
* Schematic API
|
|
4270
|
-
*
|
|
4271
|
-
* The version of the OpenAPI document: 0.1
|
|
4272
|
-
*
|
|
4273
|
-
*
|
|
4274
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4275
|
-
* https://openapi-generator.tech
|
|
4276
|
-
* Do not edit the class manually.
|
|
4277
|
-
*/
|
|
4732
|
+
}
|
|
4733
|
+
|
|
4278
4734
|
/**
|
|
4279
4735
|
*
|
|
4280
4736
|
* @export
|
|
@@ -4295,10 +4751,10 @@ declare interface EntityTraitDefinitionResponseData {
|
|
|
4295
4751
|
displayName: string;
|
|
4296
4752
|
/**
|
|
4297
4753
|
*
|
|
4298
|
-
* @type {
|
|
4754
|
+
* @type {EntityType}
|
|
4299
4755
|
* @memberof EntityTraitDefinitionResponseData
|
|
4300
4756
|
*/
|
|
4301
|
-
entityType:
|
|
4757
|
+
entityType: EntityType;
|
|
4302
4758
|
/**
|
|
4303
4759
|
*
|
|
4304
4760
|
* @type {Array<string>}
|
|
@@ -4313,10 +4769,10 @@ declare interface EntityTraitDefinitionResponseData {
|
|
|
4313
4769
|
id: string;
|
|
4314
4770
|
/**
|
|
4315
4771
|
*
|
|
4316
|
-
* @type {
|
|
4772
|
+
* @type {TraitType}
|
|
4317
4773
|
* @memberof EntityTraitDefinitionResponseData
|
|
4318
4774
|
*/
|
|
4319
|
-
traitType:
|
|
4775
|
+
traitType: TraitType;
|
|
4320
4776
|
/**
|
|
4321
4777
|
*
|
|
4322
4778
|
* @type {Date}
|
|
@@ -4325,17 +4781,6 @@ declare interface EntityTraitDefinitionResponseData {
|
|
|
4325
4781
|
updatedAt: Date;
|
|
4326
4782
|
}
|
|
4327
4783
|
|
|
4328
|
-
/**
|
|
4329
|
-
* Schematic API
|
|
4330
|
-
* Schematic API
|
|
4331
|
-
*
|
|
4332
|
-
* The version of the OpenAPI document: 0.1
|
|
4333
|
-
*
|
|
4334
|
-
*
|
|
4335
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4336
|
-
* https://openapi-generator.tech
|
|
4337
|
-
* Do not edit the class manually.
|
|
4338
|
-
*/
|
|
4339
4784
|
/**
|
|
4340
4785
|
*
|
|
4341
4786
|
* @export
|
|
@@ -4356,10 +4801,10 @@ declare interface EntityTraitDefinitionResponseData_2 {
|
|
|
4356
4801
|
displayName: string;
|
|
4357
4802
|
/**
|
|
4358
4803
|
*
|
|
4359
|
-
* @type {
|
|
4804
|
+
* @type {EntityType}
|
|
4360
4805
|
* @memberof EntityTraitDefinitionResponseData
|
|
4361
4806
|
*/
|
|
4362
|
-
entityType:
|
|
4807
|
+
entityType: EntityType_2;
|
|
4363
4808
|
/**
|
|
4364
4809
|
*
|
|
4365
4810
|
* @type {Array<string>}
|
|
@@ -4374,10 +4819,10 @@ declare interface EntityTraitDefinitionResponseData_2 {
|
|
|
4374
4819
|
id: string;
|
|
4375
4820
|
/**
|
|
4376
4821
|
*
|
|
4377
|
-
* @type {
|
|
4822
|
+
* @type {TraitType}
|
|
4378
4823
|
* @memberof EntityTraitDefinitionResponseData
|
|
4379
4824
|
*/
|
|
4380
|
-
traitType:
|
|
4825
|
+
traitType: TraitType_2;
|
|
4381
4826
|
/**
|
|
4382
4827
|
*
|
|
4383
4828
|
* @type {Date}
|
|
@@ -4436,6 +4881,28 @@ declare interface EntityTraitDetailResponseData {
|
|
|
4436
4881
|
value: string;
|
|
4437
4882
|
}
|
|
4438
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
|
+
|
|
4439
4906
|
declare interface ErrorContext {
|
|
4440
4907
|
fetch: FetchAPI;
|
|
4441
4908
|
url: string;
|
|
@@ -4586,10 +5053,10 @@ declare interface FeatureDetailResponseData {
|
|
|
4586
5053
|
eventSummary?: EventSummaryResponseData;
|
|
4587
5054
|
/**
|
|
4588
5055
|
*
|
|
4589
|
-
* @type {
|
|
5056
|
+
* @type {FeatureType}
|
|
4590
5057
|
* @memberof FeatureDetailResponseData
|
|
4591
5058
|
*/
|
|
4592
|
-
featureType:
|
|
5059
|
+
featureType: FeatureType;
|
|
4593
5060
|
/**
|
|
4594
5061
|
*
|
|
4595
5062
|
* @type {Array<FlagDetailResponseData>}
|
|
@@ -4610,10 +5077,10 @@ declare interface FeatureDetailResponseData {
|
|
|
4610
5077
|
id: string;
|
|
4611
5078
|
/**
|
|
4612
5079
|
*
|
|
4613
|
-
* @type {
|
|
5080
|
+
* @type {FeatureLifecyclePhase}
|
|
4614
5081
|
* @memberof FeatureDetailResponseData
|
|
4615
5082
|
*/
|
|
4616
|
-
lifecyclePhase?:
|
|
5083
|
+
lifecyclePhase?: FeatureLifecyclePhase | null;
|
|
4617
5084
|
/**
|
|
4618
5085
|
*
|
|
4619
5086
|
* @type {string}
|
|
@@ -4696,10 +5163,10 @@ declare interface FeatureDetailResponseData_2 {
|
|
|
4696
5163
|
eventSummary?: EventSummaryResponseData_2;
|
|
4697
5164
|
/**
|
|
4698
5165
|
*
|
|
4699
|
-
* @type {
|
|
5166
|
+
* @type {FeatureType}
|
|
4700
5167
|
* @memberof FeatureDetailResponseData
|
|
4701
5168
|
*/
|
|
4702
|
-
featureType:
|
|
5169
|
+
featureType: FeatureType_2;
|
|
4703
5170
|
/**
|
|
4704
5171
|
*
|
|
4705
5172
|
* @type {Array<FlagDetailResponseData>}
|
|
@@ -4720,10 +5187,10 @@ declare interface FeatureDetailResponseData_2 {
|
|
|
4720
5187
|
id: string;
|
|
4721
5188
|
/**
|
|
4722
5189
|
*
|
|
4723
|
-
* @type {
|
|
5190
|
+
* @type {FeatureLifecyclePhase}
|
|
4724
5191
|
* @memberof FeatureDetailResponseData
|
|
4725
5192
|
*/
|
|
4726
|
-
lifecyclePhase?:
|
|
5193
|
+
lifecyclePhase?: FeatureLifecyclePhase_2 | null;
|
|
4727
5194
|
/**
|
|
4728
5195
|
*
|
|
4729
5196
|
* @type {string}
|
|
@@ -4775,16 +5242,41 @@ declare interface FeatureDetailResponseData_2 {
|
|
|
4775
5242
|
}
|
|
4776
5243
|
|
|
4777
5244
|
/**
|
|
4778
|
-
* Schematic API
|
|
4779
|
-
* Schematic API
|
|
4780
|
-
*
|
|
4781
|
-
* The version of the OpenAPI document: 0.1
|
|
4782
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
|
+
/**
|
|
4783
5263
|
*
|
|
4784
|
-
*
|
|
4785
|
-
* https://openapi-generator.tech
|
|
4786
|
-
* Do not edit the class manually.
|
|
5264
|
+
* @export
|
|
4787
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
|
+
|
|
4788
5280
|
/**
|
|
4789
5281
|
*
|
|
4790
5282
|
* @export
|
|
@@ -4811,10 +5303,10 @@ declare interface FeatureResponseData {
|
|
|
4811
5303
|
eventSubtype?: string | null;
|
|
4812
5304
|
/**
|
|
4813
5305
|
*
|
|
4814
|
-
* @type {
|
|
5306
|
+
* @type {FeatureType}
|
|
4815
5307
|
* @memberof FeatureResponseData
|
|
4816
5308
|
*/
|
|
4817
|
-
featureType:
|
|
5309
|
+
featureType: FeatureType;
|
|
4818
5310
|
/**
|
|
4819
5311
|
*
|
|
4820
5312
|
* @type {string}
|
|
@@ -4829,10 +5321,10 @@ declare interface FeatureResponseData {
|
|
|
4829
5321
|
id: string;
|
|
4830
5322
|
/**
|
|
4831
5323
|
*
|
|
4832
|
-
* @type {
|
|
5324
|
+
* @type {FeatureLifecyclePhase}
|
|
4833
5325
|
* @memberof FeatureResponseData
|
|
4834
5326
|
*/
|
|
4835
|
-
lifecyclePhase?:
|
|
5327
|
+
lifecyclePhase?: FeatureLifecyclePhase | null;
|
|
4836
5328
|
/**
|
|
4837
5329
|
*
|
|
4838
5330
|
* @type {string}
|
|
@@ -4871,17 +5363,6 @@ declare interface FeatureResponseData {
|
|
|
4871
5363
|
updatedAt: Date;
|
|
4872
5364
|
}
|
|
4873
5365
|
|
|
4874
|
-
/**
|
|
4875
|
-
* Schematic API
|
|
4876
|
-
* Schematic API
|
|
4877
|
-
*
|
|
4878
|
-
* The version of the OpenAPI document: 0.1
|
|
4879
|
-
*
|
|
4880
|
-
*
|
|
4881
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4882
|
-
* https://openapi-generator.tech
|
|
4883
|
-
* Do not edit the class manually.
|
|
4884
|
-
*/
|
|
4885
5366
|
/**
|
|
4886
5367
|
*
|
|
4887
5368
|
* @export
|
|
@@ -4908,10 +5389,10 @@ declare interface FeatureResponseData_2 {
|
|
|
4908
5389
|
eventSubtype?: string | null;
|
|
4909
5390
|
/**
|
|
4910
5391
|
*
|
|
4911
|
-
* @type {
|
|
5392
|
+
* @type {FeatureType}
|
|
4912
5393
|
* @memberof FeatureResponseData
|
|
4913
5394
|
*/
|
|
4914
|
-
featureType:
|
|
5395
|
+
featureType: FeatureType_2;
|
|
4915
5396
|
/**
|
|
4916
5397
|
*
|
|
4917
5398
|
* @type {string}
|
|
@@ -4926,10 +5407,10 @@ declare interface FeatureResponseData_2 {
|
|
|
4926
5407
|
id: string;
|
|
4927
5408
|
/**
|
|
4928
5409
|
*
|
|
4929
|
-
* @type {
|
|
5410
|
+
* @type {FeatureLifecyclePhase}
|
|
4930
5411
|
* @memberof FeatureResponseData
|
|
4931
5412
|
*/
|
|
4932
|
-
lifecyclePhase?:
|
|
5413
|
+
lifecyclePhase?: FeatureLifecyclePhase_2 | null;
|
|
4933
5414
|
/**
|
|
4934
5415
|
*
|
|
4935
5416
|
* @type {string}
|
|
@@ -4968,6 +5449,30 @@ declare interface FeatureResponseData_2 {
|
|
|
4968
5449
|
updatedAt: Date;
|
|
4969
5450
|
}
|
|
4970
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
|
+
|
|
4971
5476
|
/**
|
|
4972
5477
|
*
|
|
4973
5478
|
* @export
|
|
@@ -5001,11 +5506,11 @@ declare interface FeatureUsageResponseData {
|
|
|
5001
5506
|
*/
|
|
5002
5507
|
allocation?: number | null;
|
|
5003
5508
|
/**
|
|
5004
|
-
*
|
|
5005
|
-
* @type {
|
|
5509
|
+
*
|
|
5510
|
+
* @type {EntitlementValueType}
|
|
5006
5511
|
* @memberof FeatureUsageResponseData
|
|
5007
5512
|
*/
|
|
5008
|
-
allocationType:
|
|
5513
|
+
allocationType: EntitlementValueType;
|
|
5009
5514
|
/**
|
|
5010
5515
|
*
|
|
5011
5516
|
* @type {CompanyOverrideResponseData}
|
|
@@ -5033,11 +5538,11 @@ declare interface FeatureUsageResponseData {
|
|
|
5033
5538
|
*/
|
|
5034
5539
|
creditGrantDetails?: Array<CreditGrantDetail>;
|
|
5035
5540
|
/**
|
|
5036
|
-
*
|
|
5037
|
-
* @type {
|
|
5541
|
+
*
|
|
5542
|
+
* @type {BillingCreditGrantReason}
|
|
5038
5543
|
* @memberof FeatureUsageResponseData
|
|
5039
5544
|
*/
|
|
5040
|
-
creditGrantReason?:
|
|
5545
|
+
creditGrantReason?: BillingCreditGrantReason | null;
|
|
5041
5546
|
/**
|
|
5042
5547
|
*
|
|
5043
5548
|
* @type {number}
|
|
@@ -5094,10 +5599,10 @@ declare interface FeatureUsageResponseData {
|
|
|
5094
5599
|
entitlementSource?: string | null;
|
|
5095
5600
|
/**
|
|
5096
5601
|
*
|
|
5097
|
-
* @type {
|
|
5602
|
+
* @type {EntitlementType}
|
|
5098
5603
|
* @memberof FeatureUsageResponseData
|
|
5099
5604
|
*/
|
|
5100
|
-
entitlementType:
|
|
5605
|
+
entitlementType: EntitlementType;
|
|
5101
5606
|
/**
|
|
5102
5607
|
*
|
|
5103
5608
|
* @type {FeatureDetailResponseData}
|
|
@@ -5166,10 +5671,10 @@ declare interface FeatureUsageResponseData {
|
|
|
5166
5671
|
planEntitlement?: PlanEntitlementResponseData;
|
|
5167
5672
|
/**
|
|
5168
5673
|
*
|
|
5169
|
-
* @type {
|
|
5674
|
+
* @type {EntitlementPriceBehavior}
|
|
5170
5675
|
* @memberof FeatureUsageResponseData
|
|
5171
5676
|
*/
|
|
5172
|
-
priceBehavior?:
|
|
5677
|
+
priceBehavior?: EntitlementPriceBehavior | null;
|
|
5173
5678
|
/**
|
|
5174
5679
|
* The soft limit for the feature usage. Available only for overage price behavior
|
|
5175
5680
|
* @type {number}
|
|
@@ -5190,29 +5695,6 @@ declare interface FeatureUsageResponseData {
|
|
|
5190
5695
|
yearlyUsageBasedPrice?: BillingPriceView;
|
|
5191
5696
|
}
|
|
5192
5697
|
|
|
5193
|
-
/**
|
|
5194
|
-
* @export
|
|
5195
|
-
*/
|
|
5196
|
-
declare const FeatureUsageResponseDataAllocationTypeEnum: {
|
|
5197
|
-
readonly Boolean: "boolean";
|
|
5198
|
-
readonly Numeric: "numeric";
|
|
5199
|
-
readonly Trait: "trait";
|
|
5200
|
-
readonly Unlimited: "unlimited";
|
|
5201
|
-
};
|
|
5202
|
-
|
|
5203
|
-
declare type FeatureUsageResponseDataAllocationTypeEnum = (typeof FeatureUsageResponseDataAllocationTypeEnum)[keyof typeof FeatureUsageResponseDataAllocationTypeEnum];
|
|
5204
|
-
|
|
5205
|
-
/**
|
|
5206
|
-
* @export
|
|
5207
|
-
*/
|
|
5208
|
-
declare const FeatureUsageResponseDataCreditGrantReasonEnum: {
|
|
5209
|
-
readonly Free: "free";
|
|
5210
|
-
readonly Plan: "plan";
|
|
5211
|
-
readonly Purchased: "purchased";
|
|
5212
|
-
};
|
|
5213
|
-
|
|
5214
|
-
declare type FeatureUsageResponseDataCreditGrantReasonEnum = (typeof FeatureUsageResponseDataCreditGrantReasonEnum)[keyof typeof FeatureUsageResponseDataCreditGrantReasonEnum];
|
|
5215
|
-
|
|
5216
5698
|
declare type FetchAPI = WindowOrWorkerGlobalScope["fetch"];
|
|
5217
5699
|
|
|
5218
5700
|
/**
|
|
@@ -5278,10 +5760,10 @@ declare interface FlagDetailResponseData {
|
|
|
5278
5760
|
featureId?: string | null;
|
|
5279
5761
|
/**
|
|
5280
5762
|
*
|
|
5281
|
-
* @type {
|
|
5763
|
+
* @type {FlagType}
|
|
5282
5764
|
* @memberof FlagDetailResponseData
|
|
5283
5765
|
*/
|
|
5284
|
-
flagType:
|
|
5766
|
+
flagType: FlagType;
|
|
5285
5767
|
/**
|
|
5286
5768
|
*
|
|
5287
5769
|
* @type {string}
|
|
@@ -5364,10 +5846,10 @@ declare interface FlagDetailResponseData_2 {
|
|
|
5364
5846
|
featureId?: string | null;
|
|
5365
5847
|
/**
|
|
5366
5848
|
*
|
|
5367
|
-
* @type {
|
|
5849
|
+
* @type {FlagType}
|
|
5368
5850
|
* @memberof FlagDetailResponseData
|
|
5369
5851
|
*/
|
|
5370
|
-
flagType:
|
|
5852
|
+
flagType: FlagType_2;
|
|
5371
5853
|
/**
|
|
5372
5854
|
*
|
|
5373
5855
|
* @type {string}
|
|
@@ -5412,12 +5894,32 @@ declare interface FlagDetailResponseData_2 {
|
|
|
5412
5894
|
updatedAt: Date;
|
|
5413
5895
|
}
|
|
5414
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
|
+
|
|
5415
5917
|
export declare const Flex: IStyledComponentBase<"web", FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5416
5918
|
$viewport?: {
|
|
5417
|
-
sm?: TransientCSSProperties;
|
|
5418
|
-
md?: TransientCSSProperties;
|
|
5419
|
-
lg?: TransientCSSProperties;
|
|
5420
|
-
xl?: TransientCSSProperties;
|
|
5919
|
+
"sm"?: TransientCSSProperties;
|
|
5920
|
+
"md"?: TransientCSSProperties;
|
|
5921
|
+
"lg"?: TransientCSSProperties;
|
|
5922
|
+
"xl"?: TransientCSSProperties;
|
|
5421
5923
|
"2xl"?: TransientCSSProperties;
|
|
5422
5924
|
[key: string]: TransientCSSProperties | undefined;
|
|
5423
5925
|
};
|
|
@@ -5427,10 +5929,10 @@ export declare type FontStyle = keyof ThemeSettings["typography"];
|
|
|
5427
5929
|
|
|
5428
5930
|
export declare const FussyChild: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5429
5931
|
$viewport?: {
|
|
5430
|
-
sm?: TransientCSSProperties;
|
|
5431
|
-
md?: TransientCSSProperties;
|
|
5432
|
-
lg?: TransientCSSProperties;
|
|
5433
|
-
xl?: TransientCSSProperties;
|
|
5932
|
+
"sm"?: TransientCSSProperties;
|
|
5933
|
+
"md"?: TransientCSSProperties;
|
|
5934
|
+
"lg"?: TransientCSSProperties;
|
|
5935
|
+
"xl"?: TransientCSSProperties;
|
|
5434
5936
|
"2xl"?: TransientCSSProperties;
|
|
5435
5937
|
[key: string]: TransientCSSProperties | undefined;
|
|
5436
5938
|
};
|
|
@@ -5816,10 +6318,10 @@ export declare type ModalSize = "sm" | "md" | "lg" | "auto";
|
|
|
5816
6318
|
|
|
5817
6319
|
export declare const Notice: IStyledComponentBase<"web", FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5818
6320
|
$viewport?: {
|
|
5819
|
-
sm?: TransientCSSProperties;
|
|
5820
|
-
md?: TransientCSSProperties;
|
|
5821
|
-
lg?: TransientCSSProperties;
|
|
5822
|
-
xl?: TransientCSSProperties;
|
|
6321
|
+
"sm"?: TransientCSSProperties;
|
|
6322
|
+
"md"?: TransientCSSProperties;
|
|
6323
|
+
"lg"?: TransientCSSProperties;
|
|
6324
|
+
"xl"?: TransientCSSProperties;
|
|
5823
6325
|
"2xl"?: TransientCSSProperties;
|
|
5824
6326
|
[key: string]: TransientCSSProperties | undefined;
|
|
5825
6327
|
};
|
|
@@ -5974,16 +6476,27 @@ declare interface PaymentMethodResponseData {
|
|
|
5974
6476
|
declare type Plan = CompanyPlanDetailResponseData;
|
|
5975
6477
|
|
|
5976
6478
|
/**
|
|
5977
|
-
* Schematic API
|
|
5978
|
-
* Schematic API
|
|
5979
|
-
*
|
|
5980
|
-
* The version of the OpenAPI document: 0.1
|
|
5981
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
|
+
/**
|
|
5982
6490
|
*
|
|
5983
|
-
*
|
|
5984
|
-
* https://openapi-generator.tech
|
|
5985
|
-
* Do not edit the class manually.
|
|
6491
|
+
* @export
|
|
5986
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
|
+
|
|
5987
6500
|
/**
|
|
5988
6501
|
*
|
|
5989
6502
|
* @export
|
|
@@ -6010,16 +6523,16 @@ declare interface PlanCreditGrantView {
|
|
|
6010
6523
|
billingCreditAutoTopupEnabled: boolean;
|
|
6011
6524
|
/**
|
|
6012
6525
|
*
|
|
6013
|
-
* @type {
|
|
6526
|
+
* @type {BillingCreditExpiryType}
|
|
6014
6527
|
* @memberof PlanCreditGrantView
|
|
6015
6528
|
*/
|
|
6016
|
-
billingCreditAutoTopupExpiryType?:
|
|
6529
|
+
billingCreditAutoTopupExpiryType?: BillingCreditExpiryType | null;
|
|
6017
6530
|
/**
|
|
6018
6531
|
*
|
|
6019
|
-
* @type {
|
|
6532
|
+
* @type {BillingCreditExpiryUnit}
|
|
6020
6533
|
* @memberof PlanCreditGrantView
|
|
6021
6534
|
*/
|
|
6022
|
-
billingCreditAutoTopupExpiryUnit?:
|
|
6535
|
+
billingCreditAutoTopupExpiryUnit?: BillingCreditExpiryUnit | null;
|
|
6023
6536
|
/**
|
|
6024
6537
|
*
|
|
6025
6538
|
* @type {number}
|
|
@@ -6070,16 +6583,16 @@ declare interface PlanCreditGrantView {
|
|
|
6070
6583
|
creditName: string;
|
|
6071
6584
|
/**
|
|
6072
6585
|
*
|
|
6073
|
-
* @type {
|
|
6586
|
+
* @type {BillingCreditExpiryType}
|
|
6074
6587
|
* @memberof PlanCreditGrantView
|
|
6075
6588
|
*/
|
|
6076
|
-
expiryType?:
|
|
6589
|
+
expiryType?: BillingCreditExpiryType | null;
|
|
6077
6590
|
/**
|
|
6078
6591
|
*
|
|
6079
|
-
* @type {
|
|
6592
|
+
* @type {BillingCreditExpiryUnit}
|
|
6080
6593
|
* @memberof PlanCreditGrantView
|
|
6081
6594
|
*/
|
|
6082
|
-
expiryUnit?:
|
|
6595
|
+
expiryUnit?: BillingCreditExpiryUnit | null;
|
|
6083
6596
|
/**
|
|
6084
6597
|
*
|
|
6085
6598
|
* @type {number}
|
|
@@ -6112,22 +6625,22 @@ declare interface PlanCreditGrantView {
|
|
|
6112
6625
|
pluralName?: string | null;
|
|
6113
6626
|
/**
|
|
6114
6627
|
*
|
|
6115
|
-
* @type {
|
|
6628
|
+
* @type {BillingPlanCreditGrantResetCadence}
|
|
6116
6629
|
* @memberof PlanCreditGrantView
|
|
6117
6630
|
*/
|
|
6118
|
-
resetCadence:
|
|
6631
|
+
resetCadence: BillingPlanCreditGrantResetCadence;
|
|
6119
6632
|
/**
|
|
6120
6633
|
*
|
|
6121
|
-
* @type {
|
|
6634
|
+
* @type {BillingPlanCreditGrantResetStart}
|
|
6122
6635
|
* @memberof PlanCreditGrantView
|
|
6123
6636
|
*/
|
|
6124
|
-
resetStart:
|
|
6637
|
+
resetStart: BillingPlanCreditGrantResetStart;
|
|
6125
6638
|
/**
|
|
6126
6639
|
*
|
|
6127
|
-
* @type {
|
|
6640
|
+
* @type {BillingPlanCreditGrantResetType}
|
|
6128
6641
|
* @memberof PlanCreditGrantView
|
|
6129
6642
|
*/
|
|
6130
|
-
resetType:
|
|
6643
|
+
resetType: BillingPlanCreditGrantResetType;
|
|
6131
6644
|
/**
|
|
6132
6645
|
*
|
|
6133
6646
|
* @type {string}
|
|
@@ -6142,17 +6655,6 @@ declare interface PlanCreditGrantView {
|
|
|
6142
6655
|
updatedAt: Date;
|
|
6143
6656
|
}
|
|
6144
6657
|
|
|
6145
|
-
/**
|
|
6146
|
-
* Schematic API
|
|
6147
|
-
* Schematic API
|
|
6148
|
-
*
|
|
6149
|
-
* The version of the OpenAPI document: 0.1
|
|
6150
|
-
*
|
|
6151
|
-
*
|
|
6152
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6153
|
-
* https://openapi-generator.tech
|
|
6154
|
-
* Do not edit the class manually.
|
|
6155
|
-
*/
|
|
6156
6658
|
/**
|
|
6157
6659
|
*
|
|
6158
6660
|
* @export
|
|
@@ -6179,16 +6681,16 @@ declare interface PlanCreditGrantView_2 {
|
|
|
6179
6681
|
billingCreditAutoTopupEnabled: boolean;
|
|
6180
6682
|
/**
|
|
6181
6683
|
*
|
|
6182
|
-
* @type {
|
|
6684
|
+
* @type {BillingCreditExpiryType}
|
|
6183
6685
|
* @memberof PlanCreditGrantView
|
|
6184
6686
|
*/
|
|
6185
|
-
billingCreditAutoTopupExpiryType?:
|
|
6687
|
+
billingCreditAutoTopupExpiryType?: BillingCreditExpiryType_2 | null;
|
|
6186
6688
|
/**
|
|
6187
6689
|
*
|
|
6188
|
-
* @type {
|
|
6690
|
+
* @type {BillingCreditExpiryUnit}
|
|
6189
6691
|
* @memberof PlanCreditGrantView
|
|
6190
6692
|
*/
|
|
6191
|
-
billingCreditAutoTopupExpiryUnit?:
|
|
6693
|
+
billingCreditAutoTopupExpiryUnit?: BillingCreditExpiryUnit_2 | null;
|
|
6192
6694
|
/**
|
|
6193
6695
|
*
|
|
6194
6696
|
* @type {number}
|
|
@@ -6239,16 +6741,16 @@ declare interface PlanCreditGrantView_2 {
|
|
|
6239
6741
|
creditName: string;
|
|
6240
6742
|
/**
|
|
6241
6743
|
*
|
|
6242
|
-
* @type {
|
|
6744
|
+
* @type {BillingCreditExpiryType}
|
|
6243
6745
|
* @memberof PlanCreditGrantView
|
|
6244
6746
|
*/
|
|
6245
|
-
expiryType?:
|
|
6747
|
+
expiryType?: BillingCreditExpiryType_2 | null;
|
|
6246
6748
|
/**
|
|
6247
6749
|
*
|
|
6248
|
-
* @type {
|
|
6750
|
+
* @type {BillingCreditExpiryUnit}
|
|
6249
6751
|
* @memberof PlanCreditGrantView
|
|
6250
6752
|
*/
|
|
6251
|
-
expiryUnit?:
|
|
6753
|
+
expiryUnit?: BillingCreditExpiryUnit_2 | null;
|
|
6252
6754
|
/**
|
|
6253
6755
|
*
|
|
6254
6756
|
* @type {number}
|
|
@@ -6281,22 +6783,22 @@ declare interface PlanCreditGrantView_2 {
|
|
|
6281
6783
|
pluralName?: string | null;
|
|
6282
6784
|
/**
|
|
6283
6785
|
*
|
|
6284
|
-
* @type {
|
|
6786
|
+
* @type {BillingPlanCreditGrantResetCadence}
|
|
6285
6787
|
* @memberof PlanCreditGrantView
|
|
6286
6788
|
*/
|
|
6287
|
-
resetCadence:
|
|
6789
|
+
resetCadence: BillingPlanCreditGrantResetCadence_2;
|
|
6288
6790
|
/**
|
|
6289
6791
|
*
|
|
6290
|
-
* @type {
|
|
6792
|
+
* @type {BillingPlanCreditGrantResetStart}
|
|
6291
6793
|
* @memberof PlanCreditGrantView
|
|
6292
6794
|
*/
|
|
6293
|
-
resetStart:
|
|
6795
|
+
resetStart: BillingPlanCreditGrantResetStart_2;
|
|
6294
6796
|
/**
|
|
6295
6797
|
*
|
|
6296
|
-
* @type {
|
|
6798
|
+
* @type {BillingPlanCreditGrantResetType}
|
|
6297
6799
|
* @memberof PlanCreditGrantView
|
|
6298
6800
|
*/
|
|
6299
|
-
resetType:
|
|
6801
|
+
resetType: BillingPlanCreditGrantResetType_2;
|
|
6300
6802
|
/**
|
|
6301
6803
|
*
|
|
6302
6804
|
* @type {string}
|
|
@@ -6332,10 +6834,10 @@ declare interface PlanDetailResponseData {
|
|
|
6332
6834
|
billingProduct?: BillingProductDetailResponseData;
|
|
6333
6835
|
/**
|
|
6334
6836
|
*
|
|
6335
|
-
* @type {
|
|
6837
|
+
* @type {ChargeType}
|
|
6336
6838
|
* @memberof PlanDetailResponseData
|
|
6337
6839
|
*/
|
|
6338
|
-
chargeType:
|
|
6840
|
+
chargeType: ChargeType;
|
|
6339
6841
|
/**
|
|
6340
6842
|
*
|
|
6341
6843
|
* @type {number}
|
|
@@ -6344,10 +6846,10 @@ declare interface PlanDetailResponseData {
|
|
|
6344
6846
|
companyCount: number;
|
|
6345
6847
|
/**
|
|
6346
6848
|
*
|
|
6347
|
-
* @type {
|
|
6849
|
+
* @type {PlanControlledByType}
|
|
6348
6850
|
* @memberof PlanDetailResponseData
|
|
6349
6851
|
*/
|
|
6350
|
-
controlledBy:
|
|
6852
|
+
controlledBy: PlanControlledByType;
|
|
6351
6853
|
/**
|
|
6352
6854
|
*
|
|
6353
6855
|
* @type {Date}
|
|
@@ -6423,10 +6925,10 @@ declare interface PlanDetailResponseData {
|
|
|
6423
6925
|
oneTimePrice?: BillingPriceResponseData;
|
|
6424
6926
|
/**
|
|
6425
6927
|
*
|
|
6426
|
-
* @type {
|
|
6928
|
+
* @type {PlanType}
|
|
6427
6929
|
* @memberof PlanDetailResponseData
|
|
6428
6930
|
*/
|
|
6429
|
-
planType:
|
|
6931
|
+
planType: PlanType;
|
|
6430
6932
|
/**
|
|
6431
6933
|
*
|
|
6432
6934
|
* @type {number}
|
|
@@ -6533,10 +7035,10 @@ declare interface PlanEntitlementResponseData {
|
|
|
6533
7035
|
planId: string;
|
|
6534
7036
|
/**
|
|
6535
7037
|
*
|
|
6536
|
-
* @type {
|
|
7038
|
+
* @type {EntitlementPriceBehavior}
|
|
6537
7039
|
* @memberof PlanEntitlementResponseData
|
|
6538
7040
|
*/
|
|
6539
|
-
priceBehavior?:
|
|
7041
|
+
priceBehavior?: EntitlementPriceBehavior | null;
|
|
6540
7042
|
/**
|
|
6541
7043
|
*
|
|
6542
7044
|
* @type {string}
|
|
@@ -6599,10 +7101,10 @@ declare interface PlanEntitlementResponseData {
|
|
|
6599
7101
|
valueTraitId?: string | null;
|
|
6600
7102
|
/**
|
|
6601
7103
|
*
|
|
6602
|
-
* @type {
|
|
7104
|
+
* @type {EntitlementValueType}
|
|
6603
7105
|
* @memberof PlanEntitlementResponseData
|
|
6604
7106
|
*/
|
|
6605
|
-
valueType:
|
|
7107
|
+
valueType: EntitlementValueType;
|
|
6606
7108
|
}
|
|
6607
7109
|
|
|
6608
7110
|
/**
|
|
@@ -6691,10 +7193,10 @@ declare interface PlanEntitlementResponseData_2 {
|
|
|
6691
7193
|
planId: string;
|
|
6692
7194
|
/**
|
|
6693
7195
|
*
|
|
6694
|
-
* @type {
|
|
7196
|
+
* @type {EntitlementPriceBehavior}
|
|
6695
7197
|
* @memberof PlanEntitlementResponseData
|
|
6696
7198
|
*/
|
|
6697
|
-
priceBehavior?:
|
|
7199
|
+
priceBehavior?: EntitlementPriceBehavior_2 | null;
|
|
6698
7200
|
/**
|
|
6699
7201
|
*
|
|
6700
7202
|
* @type {string}
|
|
@@ -6757,10 +7259,10 @@ declare interface PlanEntitlementResponseData_2 {
|
|
|
6757
7259
|
valueTraitId?: string | null;
|
|
6758
7260
|
/**
|
|
6759
7261
|
*
|
|
6760
|
-
* @type {
|
|
7262
|
+
* @type {EntitlementValueType}
|
|
6761
7263
|
* @memberof PlanEntitlementResponseData
|
|
6762
7264
|
*/
|
|
6763
|
-
valueType:
|
|
7265
|
+
valueType: EntitlementValueType_2;
|
|
6764
7266
|
}
|
|
6765
7267
|
|
|
6766
7268
|
export declare const PlanManager: ForwardRefExoticComponent<ElementProps & DeepPartial<DesignProps_6> & HTMLAttributes<HTMLDivElement> & {
|
|
@@ -6769,17 +7271,6 @@ portal?: HTMLElement | null;
|
|
|
6769
7271
|
|
|
6770
7272
|
export declare type PlanManagerProps = DesignProps_6;
|
|
6771
7273
|
|
|
6772
|
-
/**
|
|
6773
|
-
* Schematic API
|
|
6774
|
-
* Schematic API
|
|
6775
|
-
*
|
|
6776
|
-
* The version of the OpenAPI document: 0.1
|
|
6777
|
-
*
|
|
6778
|
-
*
|
|
6779
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6780
|
-
* https://openapi-generator.tech
|
|
6781
|
-
* Do not edit the class manually.
|
|
6782
|
-
*/
|
|
6783
7274
|
/**
|
|
6784
7275
|
*
|
|
6785
7276
|
* @export
|
|
@@ -6825,10 +7316,10 @@ declare interface PlanResponseData {
|
|
|
6825
7316
|
name: string;
|
|
6826
7317
|
/**
|
|
6827
7318
|
*
|
|
6828
|
-
* @type {
|
|
7319
|
+
* @type {PlanType}
|
|
6829
7320
|
* @memberof PlanResponseData
|
|
6830
7321
|
*/
|
|
6831
|
-
planType:
|
|
7322
|
+
planType: PlanType;
|
|
6832
7323
|
/**
|
|
6833
7324
|
*
|
|
6834
7325
|
* @type {Date}
|
|
@@ -6837,17 +7328,6 @@ declare interface PlanResponseData {
|
|
|
6837
7328
|
updatedAt: Date;
|
|
6838
7329
|
}
|
|
6839
7330
|
|
|
6840
|
-
/**
|
|
6841
|
-
* Schematic API
|
|
6842
|
-
* Schematic API
|
|
6843
|
-
*
|
|
6844
|
-
* The version of the OpenAPI document: 0.1
|
|
6845
|
-
*
|
|
6846
|
-
*
|
|
6847
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6848
|
-
* https://openapi-generator.tech
|
|
6849
|
-
* Do not edit the class manually.
|
|
6850
|
-
*/
|
|
6851
7331
|
/**
|
|
6852
7332
|
*
|
|
6853
7333
|
* @export
|
|
@@ -6893,10 +7373,10 @@ declare interface PlanResponseData_2 {
|
|
|
6893
7373
|
name: string;
|
|
6894
7374
|
/**
|
|
6895
7375
|
*
|
|
6896
|
-
* @type {
|
|
7376
|
+
* @type {PlanType}
|
|
6897
7377
|
* @memberof PlanResponseData
|
|
6898
7378
|
*/
|
|
6899
|
-
planType:
|
|
7379
|
+
planType: PlanType_2;
|
|
6900
7380
|
/**
|
|
6901
7381
|
*
|
|
6902
7382
|
* @type {Date}
|
|
@@ -6905,6 +7385,28 @@ declare interface PlanResponseData_2 {
|
|
|
6905
7385
|
updatedAt: Date;
|
|
6906
7386
|
}
|
|
6907
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
|
+
|
|
6908
7410
|
/**
|
|
6909
7411
|
*
|
|
6910
7412
|
* @export
|
|
@@ -6926,10 +7428,10 @@ declare interface PlanViewPublicResponseData {
|
|
|
6926
7428
|
billingProduct?: BillingProductDetailResponseData_2;
|
|
6927
7429
|
/**
|
|
6928
7430
|
*
|
|
6929
|
-
* @type {
|
|
7431
|
+
* @type {ChargeType}
|
|
6930
7432
|
* @memberof PlanViewPublicResponseData
|
|
6931
7433
|
*/
|
|
6932
|
-
chargeType:
|
|
7434
|
+
chargeType: ChargeType_2;
|
|
6933
7435
|
/**
|
|
6934
7436
|
*
|
|
6935
7437
|
* @type {number}
|
|
@@ -6944,10 +7446,10 @@ declare interface PlanViewPublicResponseData {
|
|
|
6944
7446
|
compatiblePlanIds: Array<string>;
|
|
6945
7447
|
/**
|
|
6946
7448
|
*
|
|
6947
|
-
* @type {
|
|
7449
|
+
* @type {PlanControlledByType}
|
|
6948
7450
|
* @memberof PlanViewPublicResponseData
|
|
6949
7451
|
*/
|
|
6950
|
-
controlledBy:
|
|
7452
|
+
controlledBy: PlanControlledByType_2;
|
|
6951
7453
|
/**
|
|
6952
7454
|
*
|
|
6953
7455
|
* @type {Date}
|
|
@@ -7047,10 +7549,10 @@ declare interface PlanViewPublicResponseData {
|
|
|
7047
7549
|
oneTimePrice?: BillingPriceResponseData_2;
|
|
7048
7550
|
/**
|
|
7049
7551
|
*
|
|
7050
|
-
* @type {
|
|
7552
|
+
* @type {PlanType}
|
|
7051
7553
|
* @memberof PlanViewPublicResponseData
|
|
7052
7554
|
*/
|
|
7053
|
-
planType:
|
|
7555
|
+
planType: PlanType_2;
|
|
7054
7556
|
/**
|
|
7055
7557
|
*
|
|
7056
7558
|
* @type {number}
|
|
@@ -7752,10 +8254,10 @@ declare interface RuleConditionDetailResponseData {
|
|
|
7752
8254
|
trait?: EntityTraitDefinitionResponseData;
|
|
7753
8255
|
/**
|
|
7754
8256
|
*
|
|
7755
|
-
* @type {
|
|
8257
|
+
* @type {EntityType}
|
|
7756
8258
|
* @memberof RuleConditionDetailResponseData
|
|
7757
8259
|
*/
|
|
7758
|
-
traitEntityType?:
|
|
8260
|
+
traitEntityType?: EntityType | null;
|
|
7759
8261
|
/**
|
|
7760
8262
|
*
|
|
7761
8263
|
* @type {string}
|
|
@@ -7886,10 +8388,10 @@ declare interface RuleConditionDetailResponseData_2 {
|
|
|
7886
8388
|
trait?: EntityTraitDefinitionResponseData_2;
|
|
7887
8389
|
/**
|
|
7888
8390
|
*
|
|
7889
|
-
* @type {
|
|
8391
|
+
* @type {EntityType}
|
|
7890
8392
|
* @memberof RuleConditionDetailResponseData
|
|
7891
8393
|
*/
|
|
7892
|
-
traitEntityType?:
|
|
8394
|
+
traitEntityType?: EntityType_2 | null;
|
|
7893
8395
|
/**
|
|
7894
8396
|
*
|
|
7895
8397
|
* @type {string}
|
|
@@ -8334,17 +8836,6 @@ export declare interface TooltipProps extends BoxProps {
|
|
|
8334
8836
|
fullWidth?: boolean;
|
|
8335
8837
|
}
|
|
8336
8838
|
|
|
8337
|
-
/**
|
|
8338
|
-
* Schematic API
|
|
8339
|
-
* Schematic API
|
|
8340
|
-
*
|
|
8341
|
-
* The version of the OpenAPI document: 0.1
|
|
8342
|
-
*
|
|
8343
|
-
*
|
|
8344
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8345
|
-
* https://openapi-generator.tech
|
|
8346
|
-
* Do not edit the class manually.
|
|
8347
|
-
*/
|
|
8348
8839
|
/**
|
|
8349
8840
|
*
|
|
8350
8841
|
* @export
|
|
@@ -8359,10 +8850,10 @@ declare interface TraitDefinition {
|
|
|
8359
8850
|
comparableType: TraitDefinitionComparableTypeEnum;
|
|
8360
8851
|
/**
|
|
8361
8852
|
*
|
|
8362
|
-
* @type {
|
|
8853
|
+
* @type {EntityType}
|
|
8363
8854
|
* @memberof TraitDefinition
|
|
8364
8855
|
*/
|
|
8365
|
-
entityType:
|
|
8856
|
+
entityType: EntityType;
|
|
8366
8857
|
/**
|
|
8367
8858
|
*
|
|
8368
8859
|
* @type {string}
|
|
@@ -8384,14 +8875,34 @@ declare const TraitDefinitionComparableTypeEnum: {
|
|
|
8384
8875
|
declare type TraitDefinitionComparableTypeEnum = (typeof TraitDefinitionComparableTypeEnum)[keyof typeof TraitDefinitionComparableTypeEnum];
|
|
8385
8876
|
|
|
8386
8877
|
/**
|
|
8878
|
+
*
|
|
8387
8879
|
* @export
|
|
8388
8880
|
*/
|
|
8389
|
-
declare const
|
|
8390
|
-
readonly
|
|
8391
|
-
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";
|
|
8392
8903
|
};
|
|
8393
8904
|
|
|
8394
|
-
declare type
|
|
8905
|
+
declare type TraitType_2 = (typeof TraitType_2)[keyof typeof TraitType_2];
|
|
8395
8906
|
|
|
8396
8907
|
declare type TransientCSSProperties = {
|
|
8397
8908
|
[Property in keyof React.CSSProperties as `$${string & Property}`]: React.CSSProperties[Property];
|
|
@@ -8399,10 +8910,10 @@ declare type TransientCSSProperties = {
|
|
|
8399
8910
|
|
|
8400
8911
|
export declare const TransitionBox: IStyledComponentBase<"web", Substitute<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
8401
8912
|
$viewport?: {
|
|
8402
|
-
sm?: TransientCSSProperties;
|
|
8403
|
-
md?: TransientCSSProperties;
|
|
8404
|
-
lg?: TransientCSSProperties;
|
|
8405
|
-
xl?: TransientCSSProperties;
|
|
8913
|
+
"sm"?: TransientCSSProperties;
|
|
8914
|
+
"md"?: TransientCSSProperties;
|
|
8915
|
+
"lg"?: TransientCSSProperties;
|
|
8916
|
+
"xl"?: TransientCSSProperties;
|
|
8406
8917
|
"2xl"?: TransientCSSProperties;
|
|
8407
8918
|
[key: string]: TransientCSSProperties | undefined;
|
|
8408
8919
|
};
|
|
@@ -8598,10 +9109,10 @@ declare interface UsageBasedEntitlementResponseData {
|
|
|
8598
9109
|
monthlyUsageBasedPrice?: BillingPriceView;
|
|
8599
9110
|
/**
|
|
8600
9111
|
*
|
|
8601
|
-
* @type {
|
|
9112
|
+
* @type {EntitlementPriceBehavior}
|
|
8602
9113
|
* @memberof UsageBasedEntitlementResponseData
|
|
8603
9114
|
*/
|
|
8604
|
-
priceBehavior?:
|
|
9115
|
+
priceBehavior?: EntitlementPriceBehavior | null;
|
|
8605
9116
|
/**
|
|
8606
9117
|
*
|
|
8607
9118
|
* @type {boolean}
|
|
@@ -8616,10 +9127,10 @@ declare interface UsageBasedEntitlementResponseData {
|
|
|
8616
9127
|
valueNumeric?: number | null;
|
|
8617
9128
|
/**
|
|
8618
9129
|
*
|
|
8619
|
-
* @type {
|
|
9130
|
+
* @type {EntitlementValueType}
|
|
8620
9131
|
* @memberof UsageBasedEntitlementResponseData
|
|
8621
9132
|
*/
|
|
8622
|
-
valueType:
|
|
9133
|
+
valueType: EntitlementValueType;
|
|
8623
9134
|
/**
|
|
8624
9135
|
*
|
|
8625
9136
|
* @type {BillingPriceView}
|