@schematichq/schematic-components 0.4.2 → 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 +288 -144
- package/dist/schematic-components.d.ts +55 -0
- package/dist/schematic-components.esm.js +289 -145
- package/package.json +10 -11
|
@@ -1153,6 +1153,18 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
1153
1153
|
* @memberof CompanyPlanDetailResponseData
|
|
1154
1154
|
*/
|
|
1155
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;
|
|
1156
1168
|
/**
|
|
1157
1169
|
*
|
|
1158
1170
|
* @type {string}
|
|
@@ -1183,6 +1195,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
1183
1195
|
* @memberof CompanyPlanDetailResponseData
|
|
1184
1196
|
*/
|
|
1185
1197
|
id: string;
|
|
1198
|
+
/**
|
|
1199
|
+
*
|
|
1200
|
+
* @type {boolean}
|
|
1201
|
+
* @memberof CompanyPlanDetailResponseData
|
|
1202
|
+
*/
|
|
1203
|
+
isCustom: boolean;
|
|
1186
1204
|
/**
|
|
1187
1205
|
*
|
|
1188
1206
|
* @type {boolean}
|
|
@@ -1602,6 +1620,43 @@ xl?: TransientCSSProperties;
|
|
|
1602
1620
|
};
|
|
1603
1621
|
}, never>> & string;
|
|
1604
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
|
+
|
|
1605
1660
|
declare const _default: {
|
|
1606
1661
|
alarm: number;
|
|
1607
1662
|
amazonpay: number;
|