@schematichq/schematic-components 2.8.2 → 2.8.3
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 +265 -136
- package/dist/schematic-components.d.ts +230 -0
- package/dist/schematic-components.esm.js +265 -136
- package/package.json +4 -4
|
@@ -93,6 +93,12 @@ declare interface BillingCreditBundleView {
|
|
|
93
93
|
* @memberof BillingCreditBundleView
|
|
94
94
|
*/
|
|
95
95
|
creditName: string;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {Array<CreditBundleCurrencyPrice>}
|
|
99
|
+
* @memberof BillingCreditBundleView
|
|
100
|
+
*/
|
|
101
|
+
currencyPrices?: Array<CreditBundleCurrencyPrice>;
|
|
96
102
|
/**
|
|
97
103
|
*
|
|
98
104
|
* @type {BillingCreditExpiryType}
|
|
@@ -299,6 +305,12 @@ declare interface BillingCreditResponseData {
|
|
|
299
305
|
* @memberof BillingCreditResponseData
|
|
300
306
|
*/
|
|
301
307
|
createdAt: Date;
|
|
308
|
+
/**
|
|
309
|
+
*
|
|
310
|
+
* @type {Array<CreditCurrencyPriceResponseData>}
|
|
311
|
+
* @memberof BillingCreditResponseData
|
|
312
|
+
*/
|
|
313
|
+
currencyPrices: Array<CreditCurrencyPriceResponseData>;
|
|
302
314
|
/**
|
|
303
315
|
*
|
|
304
316
|
* @type {BillingCreditExpiryUnit}
|
|
@@ -397,6 +409,12 @@ declare interface BillingCreditResponseData_2 {
|
|
|
397
409
|
* @memberof BillingCreditResponseData
|
|
398
410
|
*/
|
|
399
411
|
createdAt: Date;
|
|
412
|
+
/**
|
|
413
|
+
*
|
|
414
|
+
* @type {Array<CreditCurrencyPriceResponseData>}
|
|
415
|
+
* @memberof BillingCreditResponseData
|
|
416
|
+
*/
|
|
417
|
+
currencyPrices: Array<CreditCurrencyPriceResponseData_2>;
|
|
400
418
|
/**
|
|
401
419
|
*
|
|
402
420
|
* @type {BillingCreditExpiryUnit}
|
|
@@ -3475,6 +3493,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
3475
3493
|
* @memberof CompanyPlanDetailResponseData
|
|
3476
3494
|
*/
|
|
3477
3495
|
createdAt: Date;
|
|
3496
|
+
/**
|
|
3497
|
+
*
|
|
3498
|
+
* @type {Array<PlanCurrencyPricesResponseData>}
|
|
3499
|
+
* @memberof CompanyPlanDetailResponseData
|
|
3500
|
+
*/
|
|
3501
|
+
currencyPrices: Array<PlanCurrencyPricesResponseData>;
|
|
3478
3502
|
/**
|
|
3479
3503
|
*
|
|
3480
3504
|
* @type {boolean}
|
|
@@ -4534,6 +4558,26 @@ declare type CreditBundle = BillingCreditBundleView & {
|
|
|
4534
4558
|
count: number;
|
|
4535
4559
|
};
|
|
4536
4560
|
|
|
4561
|
+
/**
|
|
4562
|
+
*
|
|
4563
|
+
* @export
|
|
4564
|
+
* @interface CreditBundleCurrencyPrice
|
|
4565
|
+
*/
|
|
4566
|
+
declare interface CreditBundleCurrencyPrice {
|
|
4567
|
+
/**
|
|
4568
|
+
*
|
|
4569
|
+
* @type {string}
|
|
4570
|
+
* @memberof CreditBundleCurrencyPrice
|
|
4571
|
+
*/
|
|
4572
|
+
currency: string;
|
|
4573
|
+
/**
|
|
4574
|
+
*
|
|
4575
|
+
* @type {BillingPriceView}
|
|
4576
|
+
* @memberof CreditBundleCurrencyPrice
|
|
4577
|
+
*/
|
|
4578
|
+
price?: BillingPriceView;
|
|
4579
|
+
}
|
|
4580
|
+
|
|
4537
4581
|
/**
|
|
4538
4582
|
*
|
|
4539
4583
|
* @export
|
|
@@ -4588,6 +4632,12 @@ declare interface CreditCompanyGrantView {
|
|
|
4588
4632
|
* @memberof CreditCompanyGrantView
|
|
4589
4633
|
*/
|
|
4590
4634
|
creditName: string;
|
|
4635
|
+
/**
|
|
4636
|
+
*
|
|
4637
|
+
* @type {string}
|
|
4638
|
+
* @memberof CreditCompanyGrantView
|
|
4639
|
+
*/
|
|
4640
|
+
currency?: string | null;
|
|
4591
4641
|
/**
|
|
4592
4642
|
*
|
|
4593
4643
|
* @type {Date}
|
|
@@ -4728,6 +4778,46 @@ declare interface CreditCompanyGrantView {
|
|
|
4728
4778
|
zeroedOutReason?: BillingCreditGrantZeroedOutReason | null;
|
|
4729
4779
|
}
|
|
4730
4780
|
|
|
4781
|
+
/**
|
|
4782
|
+
*
|
|
4783
|
+
* @export
|
|
4784
|
+
* @interface CreditCurrencyPriceResponseData
|
|
4785
|
+
*/
|
|
4786
|
+
declare interface CreditCurrencyPriceResponseData {
|
|
4787
|
+
/**
|
|
4788
|
+
*
|
|
4789
|
+
* @type {string}
|
|
4790
|
+
* @memberof CreditCurrencyPriceResponseData
|
|
4791
|
+
*/
|
|
4792
|
+
currency: string;
|
|
4793
|
+
/**
|
|
4794
|
+
*
|
|
4795
|
+
* @type {BillingPriceResponseData}
|
|
4796
|
+
* @memberof CreditCurrencyPriceResponseData
|
|
4797
|
+
*/
|
|
4798
|
+
price?: BillingPriceResponseData;
|
|
4799
|
+
}
|
|
4800
|
+
|
|
4801
|
+
/**
|
|
4802
|
+
*
|
|
4803
|
+
* @export
|
|
4804
|
+
* @interface CreditCurrencyPriceResponseData
|
|
4805
|
+
*/
|
|
4806
|
+
declare interface CreditCurrencyPriceResponseData_2 {
|
|
4807
|
+
/**
|
|
4808
|
+
*
|
|
4809
|
+
* @type {string}
|
|
4810
|
+
* @memberof CreditCurrencyPriceResponseData
|
|
4811
|
+
*/
|
|
4812
|
+
currency: string;
|
|
4813
|
+
/**
|
|
4814
|
+
*
|
|
4815
|
+
* @type {BillingPriceResponseData}
|
|
4816
|
+
* @memberof CreditCurrencyPriceResponseData
|
|
4817
|
+
*/
|
|
4818
|
+
price?: BillingPriceResponseData_2;
|
|
4819
|
+
}
|
|
4820
|
+
|
|
4731
4821
|
/**
|
|
4732
4822
|
*
|
|
4733
4823
|
* @export
|
|
@@ -5370,6 +5460,58 @@ export declare interface EmbedState {
|
|
|
5370
5460
|
|
|
5371
5461
|
export declare const Entitlement: ({ entitlement, period, credits, tooltipPortal, }: EntitlementProps) => JSX.Element;
|
|
5372
5462
|
|
|
5463
|
+
/**
|
|
5464
|
+
*
|
|
5465
|
+
* @export
|
|
5466
|
+
* @interface EntitlementCurrencyPricesResponseData
|
|
5467
|
+
*/
|
|
5468
|
+
declare interface EntitlementCurrencyPricesResponseData {
|
|
5469
|
+
/**
|
|
5470
|
+
*
|
|
5471
|
+
* @type {string}
|
|
5472
|
+
* @memberof EntitlementCurrencyPricesResponseData
|
|
5473
|
+
*/
|
|
5474
|
+
currency: string;
|
|
5475
|
+
/**
|
|
5476
|
+
*
|
|
5477
|
+
* @type {BillingPriceView}
|
|
5478
|
+
* @memberof EntitlementCurrencyPricesResponseData
|
|
5479
|
+
*/
|
|
5480
|
+
monthlyPrice?: BillingPriceView;
|
|
5481
|
+
/**
|
|
5482
|
+
*
|
|
5483
|
+
* @type {BillingPriceView}
|
|
5484
|
+
* @memberof EntitlementCurrencyPricesResponseData
|
|
5485
|
+
*/
|
|
5486
|
+
yearlyPrice?: BillingPriceView;
|
|
5487
|
+
}
|
|
5488
|
+
|
|
5489
|
+
/**
|
|
5490
|
+
*
|
|
5491
|
+
* @export
|
|
5492
|
+
* @interface EntitlementCurrencyPricesResponseData
|
|
5493
|
+
*/
|
|
5494
|
+
declare interface EntitlementCurrencyPricesResponseData_2 {
|
|
5495
|
+
/**
|
|
5496
|
+
*
|
|
5497
|
+
* @type {string}
|
|
5498
|
+
* @memberof EntitlementCurrencyPricesResponseData
|
|
5499
|
+
*/
|
|
5500
|
+
currency: string;
|
|
5501
|
+
/**
|
|
5502
|
+
*
|
|
5503
|
+
* @type {BillingPriceView}
|
|
5504
|
+
* @memberof EntitlementCurrencyPricesResponseData
|
|
5505
|
+
*/
|
|
5506
|
+
monthlyPrice?: BillingPriceView_2;
|
|
5507
|
+
/**
|
|
5508
|
+
*
|
|
5509
|
+
* @type {BillingPriceView}
|
|
5510
|
+
* @memberof EntitlementCurrencyPricesResponseData
|
|
5511
|
+
*/
|
|
5512
|
+
yearlyPrice?: BillingPriceView_2;
|
|
5513
|
+
}
|
|
5514
|
+
|
|
5373
5515
|
/**
|
|
5374
5516
|
*
|
|
5375
5517
|
* @export
|
|
@@ -7856,6 +7998,70 @@ declare interface PlanCreditGrantView_2 {
|
|
|
7856
7998
|
updatedAt: Date;
|
|
7857
7999
|
}
|
|
7858
8000
|
|
|
8001
|
+
/**
|
|
8002
|
+
*
|
|
8003
|
+
* @export
|
|
8004
|
+
* @interface PlanCurrencyPricesResponseData
|
|
8005
|
+
*/
|
|
8006
|
+
declare interface PlanCurrencyPricesResponseData {
|
|
8007
|
+
/**
|
|
8008
|
+
*
|
|
8009
|
+
* @type {string}
|
|
8010
|
+
* @memberof PlanCurrencyPricesResponseData
|
|
8011
|
+
*/
|
|
8012
|
+
currency: string;
|
|
8013
|
+
/**
|
|
8014
|
+
*
|
|
8015
|
+
* @type {BillingPriceResponseData}
|
|
8016
|
+
* @memberof PlanCurrencyPricesResponseData
|
|
8017
|
+
*/
|
|
8018
|
+
monthlyPrice?: BillingPriceResponseData;
|
|
8019
|
+
/**
|
|
8020
|
+
*
|
|
8021
|
+
* @type {BillingPriceResponseData}
|
|
8022
|
+
* @memberof PlanCurrencyPricesResponseData
|
|
8023
|
+
*/
|
|
8024
|
+
oneTimePrice?: BillingPriceResponseData;
|
|
8025
|
+
/**
|
|
8026
|
+
*
|
|
8027
|
+
* @type {BillingPriceResponseData}
|
|
8028
|
+
* @memberof PlanCurrencyPricesResponseData
|
|
8029
|
+
*/
|
|
8030
|
+
yearlyPrice?: BillingPriceResponseData;
|
|
8031
|
+
}
|
|
8032
|
+
|
|
8033
|
+
/**
|
|
8034
|
+
*
|
|
8035
|
+
* @export
|
|
8036
|
+
* @interface PlanCurrencyPricesResponseData
|
|
8037
|
+
*/
|
|
8038
|
+
declare interface PlanCurrencyPricesResponseData_2 {
|
|
8039
|
+
/**
|
|
8040
|
+
*
|
|
8041
|
+
* @type {string}
|
|
8042
|
+
* @memberof PlanCurrencyPricesResponseData
|
|
8043
|
+
*/
|
|
8044
|
+
currency: string;
|
|
8045
|
+
/**
|
|
8046
|
+
*
|
|
8047
|
+
* @type {BillingPriceResponseData}
|
|
8048
|
+
* @memberof PlanCurrencyPricesResponseData
|
|
8049
|
+
*/
|
|
8050
|
+
monthlyPrice?: BillingPriceResponseData_2;
|
|
8051
|
+
/**
|
|
8052
|
+
*
|
|
8053
|
+
* @type {BillingPriceResponseData}
|
|
8054
|
+
* @memberof PlanCurrencyPricesResponseData
|
|
8055
|
+
*/
|
|
8056
|
+
oneTimePrice?: BillingPriceResponseData_2;
|
|
8057
|
+
/**
|
|
8058
|
+
*
|
|
8059
|
+
* @type {BillingPriceResponseData}
|
|
8060
|
+
* @memberof PlanCurrencyPricesResponseData
|
|
8061
|
+
*/
|
|
8062
|
+
yearlyPrice?: BillingPriceResponseData_2;
|
|
8063
|
+
}
|
|
8064
|
+
|
|
7859
8065
|
/**
|
|
7860
8066
|
*
|
|
7861
8067
|
* @export
|
|
@@ -7905,6 +8111,12 @@ declare interface PlanDetailResponseData {
|
|
|
7905
8111
|
* @memberof PlanDetailResponseData
|
|
7906
8112
|
*/
|
|
7907
8113
|
createdAt: Date;
|
|
8114
|
+
/**
|
|
8115
|
+
*
|
|
8116
|
+
* @type {Array<PlanCurrencyPricesResponseData>}
|
|
8117
|
+
* @memberof PlanDetailResponseData
|
|
8118
|
+
*/
|
|
8119
|
+
currencyPrices: Array<PlanCurrencyPricesResponseData>;
|
|
7908
8120
|
/**
|
|
7909
8121
|
*
|
|
7910
8122
|
* @type {string}
|
|
@@ -8034,6 +8246,12 @@ declare interface PlanEntitlementResponseData {
|
|
|
8034
8246
|
* @memberof PlanEntitlementResponseData
|
|
8035
8247
|
*/
|
|
8036
8248
|
createdAt: Date;
|
|
8249
|
+
/**
|
|
8250
|
+
*
|
|
8251
|
+
* @type {Array<EntitlementCurrencyPricesResponseData>}
|
|
8252
|
+
* @memberof PlanEntitlementResponseData
|
|
8253
|
+
*/
|
|
8254
|
+
currencyPrices: Array<EntitlementCurrencyPricesResponseData>;
|
|
8037
8255
|
/**
|
|
8038
8256
|
*
|
|
8039
8257
|
* @type {string}
|
|
@@ -8192,6 +8410,12 @@ declare interface PlanEntitlementResponseData_2 {
|
|
|
8192
8410
|
* @memberof PlanEntitlementResponseData
|
|
8193
8411
|
*/
|
|
8194
8412
|
createdAt: Date;
|
|
8413
|
+
/**
|
|
8414
|
+
*
|
|
8415
|
+
* @type {Array<EntitlementCurrencyPricesResponseData>}
|
|
8416
|
+
* @memberof PlanEntitlementResponseData
|
|
8417
|
+
*/
|
|
8418
|
+
currencyPrices: Array<EntitlementCurrencyPricesResponseData_2>;
|
|
8195
8419
|
/**
|
|
8196
8420
|
*
|
|
8197
8421
|
* @type {string}
|
|
@@ -8709,6 +8933,12 @@ declare interface PlanViewPublicResponseData {
|
|
|
8709
8933
|
* @memberof PlanViewPublicResponseData
|
|
8710
8934
|
*/
|
|
8711
8935
|
createdAt: Date;
|
|
8936
|
+
/**
|
|
8937
|
+
*
|
|
8938
|
+
* @type {Array<PlanCurrencyPricesResponseData>}
|
|
8939
|
+
* @memberof PlanViewPublicResponseData
|
|
8940
|
+
*/
|
|
8941
|
+
currencyPrices: Array<PlanCurrencyPricesResponseData_2>;
|
|
8712
8942
|
/**
|
|
8713
8943
|
*
|
|
8714
8944
|
* @type {boolean}
|