@schematichq/schematic-components 1.4.0 → 1.4.2
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 +331 -263
- package/dist/schematic-components.d.ts +103 -0
- package/dist/schematic-components.esm.js +331 -263
- package/package.json +5 -5
|
@@ -85,6 +85,12 @@ declare interface BillingCreditBundleView {
|
|
|
85
85
|
* @memberof BillingCreditBundleView
|
|
86
86
|
*/
|
|
87
87
|
expiryUnitCount?: number | null;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @type {boolean}
|
|
91
|
+
* @memberof BillingCreditBundleView
|
|
92
|
+
*/
|
|
93
|
+
hasGrants: boolean;
|
|
88
94
|
/**
|
|
89
95
|
*
|
|
90
96
|
* @type {string}
|
|
@@ -911,6 +917,12 @@ declare interface BillingProductForSubscriptionResponseData {
|
|
|
911
917
|
* @memberof BillingProductForSubscriptionResponseData
|
|
912
918
|
*/
|
|
913
919
|
billingScheme: string;
|
|
920
|
+
/**
|
|
921
|
+
*
|
|
922
|
+
* @type {number}
|
|
923
|
+
* @memberof BillingProductForSubscriptionResponseData
|
|
924
|
+
*/
|
|
925
|
+
billingThreshold?: number | null;
|
|
914
926
|
/**
|
|
915
927
|
*
|
|
916
928
|
* @type {Date}
|
|
@@ -1007,6 +1019,12 @@ declare interface BillingProductForSubscriptionResponseData {
|
|
|
1007
1019
|
* @memberof BillingProductForSubscriptionResponseData
|
|
1008
1020
|
*/
|
|
1009
1021
|
subscriptionId: string;
|
|
1022
|
+
/**
|
|
1023
|
+
*
|
|
1024
|
+
* @type {string}
|
|
1025
|
+
* @memberof BillingProductForSubscriptionResponseData
|
|
1026
|
+
*/
|
|
1027
|
+
subscriptionItemExternalId?: string | null;
|
|
1010
1028
|
/**
|
|
1011
1029
|
*
|
|
1012
1030
|
* @type {Date}
|
|
@@ -2756,6 +2774,43 @@ declare interface ComponentCapabilities_2 {
|
|
|
2756
2774
|
checkout: boolean;
|
|
2757
2775
|
}
|
|
2758
2776
|
|
|
2777
|
+
/**
|
|
2778
|
+
* Schematic API
|
|
2779
|
+
* Schematic API
|
|
2780
|
+
*
|
|
2781
|
+
* The version of the OpenAPI document: 0.1
|
|
2782
|
+
*
|
|
2783
|
+
*
|
|
2784
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2785
|
+
* https://openapi-generator.tech
|
|
2786
|
+
* Do not edit the class manually.
|
|
2787
|
+
*/
|
|
2788
|
+
/**
|
|
2789
|
+
*
|
|
2790
|
+
* @export
|
|
2791
|
+
* @interface ComponentCheckoutSettings
|
|
2792
|
+
*/
|
|
2793
|
+
declare interface ComponentCheckoutSettings {
|
|
2794
|
+
/**
|
|
2795
|
+
*
|
|
2796
|
+
* @type {boolean}
|
|
2797
|
+
* @memberof ComponentCheckoutSettings
|
|
2798
|
+
*/
|
|
2799
|
+
collectAddress: boolean;
|
|
2800
|
+
/**
|
|
2801
|
+
*
|
|
2802
|
+
* @type {boolean}
|
|
2803
|
+
* @memberof ComponentCheckoutSettings
|
|
2804
|
+
*/
|
|
2805
|
+
collectEmail: boolean;
|
|
2806
|
+
/**
|
|
2807
|
+
*
|
|
2808
|
+
* @type {boolean}
|
|
2809
|
+
* @memberof ComponentCheckoutSettings
|
|
2810
|
+
*/
|
|
2811
|
+
collectPhone: boolean;
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2759
2814
|
/**
|
|
2760
2815
|
* The returned resource
|
|
2761
2816
|
* @export
|
|
@@ -2792,6 +2847,12 @@ declare interface ComponentHydrateResponseData {
|
|
|
2792
2847
|
* @memberof ComponentHydrateResponseData
|
|
2793
2848
|
*/
|
|
2794
2849
|
capabilities?: ComponentCapabilities;
|
|
2850
|
+
/**
|
|
2851
|
+
*
|
|
2852
|
+
* @type {ComponentCheckoutSettings}
|
|
2853
|
+
* @memberof ComponentHydrateResponseData
|
|
2854
|
+
*/
|
|
2855
|
+
checkoutSettings: ComponentCheckoutSettings;
|
|
2795
2856
|
/**
|
|
2796
2857
|
*
|
|
2797
2858
|
* @type {CompanyDetailResponseData}
|
|
@@ -3006,6 +3067,24 @@ declare interface CreditCompanyGrantView {
|
|
|
3006
3067
|
* @memberof CreditCompanyGrantView
|
|
3007
3068
|
*/
|
|
3008
3069
|
expiresAt?: Date | null;
|
|
3070
|
+
/**
|
|
3071
|
+
*
|
|
3072
|
+
* @type {string}
|
|
3073
|
+
* @memberof CreditCompanyGrantView
|
|
3074
|
+
*/
|
|
3075
|
+
expiryType?: string | null;
|
|
3076
|
+
/**
|
|
3077
|
+
*
|
|
3078
|
+
* @type {string}
|
|
3079
|
+
* @memberof CreditCompanyGrantView
|
|
3080
|
+
*/
|
|
3081
|
+
expiryUnit?: string | null;
|
|
3082
|
+
/**
|
|
3083
|
+
*
|
|
3084
|
+
* @type {number}
|
|
3085
|
+
* @memberof CreditCompanyGrantView
|
|
3086
|
+
*/
|
|
3087
|
+
expiryUnitCount?: number | null;
|
|
3009
3088
|
/**
|
|
3010
3089
|
*
|
|
3011
3090
|
* @type {string}
|
|
@@ -5532,6 +5611,12 @@ declare interface PlanDetailResponseData {
|
|
|
5532
5611
|
* @interface PlanEntitlementResponseData
|
|
5533
5612
|
*/
|
|
5534
5613
|
declare interface PlanEntitlementResponseData {
|
|
5614
|
+
/**
|
|
5615
|
+
*
|
|
5616
|
+
* @type {number}
|
|
5617
|
+
* @memberof PlanEntitlementResponseData
|
|
5618
|
+
*/
|
|
5619
|
+
billingThreshold?: number | null;
|
|
5535
5620
|
/**
|
|
5536
5621
|
*
|
|
5537
5622
|
* @type {number}
|
|
@@ -5684,6 +5769,12 @@ declare interface PlanEntitlementResponseData {
|
|
|
5684
5769
|
* @interface PlanEntitlementResponseData
|
|
5685
5770
|
*/
|
|
5686
5771
|
declare interface PlanEntitlementResponseData_2 {
|
|
5772
|
+
/**
|
|
5773
|
+
*
|
|
5774
|
+
* @type {number}
|
|
5775
|
+
* @memberof PlanEntitlementResponseData
|
|
5776
|
+
*/
|
|
5777
|
+
billingThreshold?: number | null;
|
|
5687
5778
|
/**
|
|
5688
5779
|
*
|
|
5689
5780
|
* @type {number}
|
|
@@ -6573,6 +6664,12 @@ declare interface PublicPlansResponseData {
|
|
|
6573
6664
|
* @memberof PublicPlansResponseData
|
|
6574
6665
|
*/
|
|
6575
6666
|
capabilities?: ComponentCapabilities_2;
|
|
6667
|
+
/**
|
|
6668
|
+
*
|
|
6669
|
+
* @type {boolean}
|
|
6670
|
+
* @memberof PublicPlansResponseData
|
|
6671
|
+
*/
|
|
6672
|
+
showPeriodToggle: boolean;
|
|
6576
6673
|
}
|
|
6577
6674
|
|
|
6578
6675
|
declare interface RequestContext {
|
|
@@ -7474,6 +7571,12 @@ declare interface UsageBasedEntitlement extends PlanEntitlementResponseData_2 {
|
|
|
7474
7571
|
* @interface UsageBasedEntitlementResponseData
|
|
7475
7572
|
*/
|
|
7476
7573
|
declare interface UsageBasedEntitlementResponseData {
|
|
7574
|
+
/**
|
|
7575
|
+
*
|
|
7576
|
+
* @type {number}
|
|
7577
|
+
* @memberof UsageBasedEntitlementResponseData
|
|
7578
|
+
*/
|
|
7579
|
+
billingThreshold?: number | null;
|
|
7477
7580
|
/**
|
|
7478
7581
|
*
|
|
7479
7582
|
* @type {number}
|