@schematichq/schematic-components 0.4.1 → 0.4.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 +294 -144
- package/dist/schematic-components.d.ts +61 -0
- package/dist/schematic-components.esm.js +295 -145
- package/package.json +10 -11
|
@@ -787,6 +787,12 @@ declare interface ChangeSubscriptionRequestBody {
|
|
|
787
787
|
* @memberof ChangeSubscriptionRequestBody
|
|
788
788
|
*/
|
|
789
789
|
addOnIds: Array<UpdateAddOnRequestBody>;
|
|
790
|
+
/**
|
|
791
|
+
*
|
|
792
|
+
* @type {string}
|
|
793
|
+
* @memberof ChangeSubscriptionRequestBody
|
|
794
|
+
*/
|
|
795
|
+
couponExternalId?: string | null;
|
|
790
796
|
/**
|
|
791
797
|
*
|
|
792
798
|
* @type {string}
|
|
@@ -1147,6 +1153,18 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
1147
1153
|
* @memberof CompanyPlanDetailResponseData
|
|
1148
1154
|
*/
|
|
1149
1155
|
current: boolean;
|
|
1156
|
+
/**
|
|
1157
|
+
*
|
|
1158
|
+
* @type {boolean}
|
|
1159
|
+
* @memberof CompanyPlanDetailResponseData
|
|
1160
|
+
*/
|
|
1161
|
+
custom: boolean;
|
|
1162
|
+
/**
|
|
1163
|
+
*
|
|
1164
|
+
* @type {CustomPlanConfig}
|
|
1165
|
+
* @memberof CompanyPlanDetailResponseData
|
|
1166
|
+
*/
|
|
1167
|
+
customPlanConfig?: CustomPlanConfig;
|
|
1150
1168
|
/**
|
|
1151
1169
|
*
|
|
1152
1170
|
* @type {string}
|
|
@@ -1177,6 +1195,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
1177
1195
|
* @memberof CompanyPlanDetailResponseData
|
|
1178
1196
|
*/
|
|
1179
1197
|
id: string;
|
|
1198
|
+
/**
|
|
1199
|
+
*
|
|
1200
|
+
* @type {boolean}
|
|
1201
|
+
* @memberof CompanyPlanDetailResponseData
|
|
1202
|
+
*/
|
|
1203
|
+
isCustom: boolean;
|
|
1180
1204
|
/**
|
|
1181
1205
|
*
|
|
1182
1206
|
* @type {boolean}
|
|
@@ -1596,6 +1620,43 @@ xl?: TransientCSSProperties;
|
|
|
1596
1620
|
};
|
|
1597
1621
|
}, never>> & string;
|
|
1598
1622
|
|
|
1623
|
+
/**
|
|
1624
|
+
* Schematic API
|
|
1625
|
+
* Schematic API
|
|
1626
|
+
*
|
|
1627
|
+
* The version of the OpenAPI document: 0.1
|
|
1628
|
+
*
|
|
1629
|
+
*
|
|
1630
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1631
|
+
* https://openapi-generator.tech
|
|
1632
|
+
* Do not edit the class manually.
|
|
1633
|
+
*/
|
|
1634
|
+
/**
|
|
1635
|
+
*
|
|
1636
|
+
* @export
|
|
1637
|
+
* @interface CustomPlanConfig
|
|
1638
|
+
*/
|
|
1639
|
+
declare interface CustomPlanConfig {
|
|
1640
|
+
/**
|
|
1641
|
+
*
|
|
1642
|
+
* @type {string}
|
|
1643
|
+
* @memberof CustomPlanConfig
|
|
1644
|
+
*/
|
|
1645
|
+
ctaText: string;
|
|
1646
|
+
/**
|
|
1647
|
+
*
|
|
1648
|
+
* @type {string}
|
|
1649
|
+
* @memberof CustomPlanConfig
|
|
1650
|
+
*/
|
|
1651
|
+
ctaWebSite: string;
|
|
1652
|
+
/**
|
|
1653
|
+
*
|
|
1654
|
+
* @type {string}
|
|
1655
|
+
* @memberof CustomPlanConfig
|
|
1656
|
+
*/
|
|
1657
|
+
priceText: string;
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1599
1660
|
declare const _default: {
|
|
1600
1661
|
alarm: number;
|
|
1601
1662
|
amazonpay: number;
|