@schematichq/schematic-components 2.6.1 → 2.7.0
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 +2062 -1270
- package/dist/schematic-components.d.ts +36 -0
- package/dist/schematic-components.esm.js +1760 -968
- package/package.json +17 -14
|
@@ -3173,6 +3173,12 @@ declare interface CompanyOverrideResponseData {
|
|
|
3173
3173
|
* @interface CompanyPlanDetailResponseData
|
|
3174
3174
|
*/
|
|
3175
3175
|
declare interface CompanyPlanDetailResponseData {
|
|
3176
|
+
/**
|
|
3177
|
+
*
|
|
3178
|
+
* @type {PlanVersionResponseData}
|
|
3179
|
+
* @memberof CompanyPlanDetailResponseData
|
|
3180
|
+
*/
|
|
3181
|
+
activeVersion?: PlanVersionResponseData;
|
|
3176
3182
|
/**
|
|
3177
3183
|
*
|
|
3178
3184
|
* @type {string}
|
|
@@ -3246,6 +3252,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
3246
3252
|
* @memberof CompanyPlanDetailResponseData
|
|
3247
3253
|
*/
|
|
3248
3254
|
description: string;
|
|
3255
|
+
/**
|
|
3256
|
+
*
|
|
3257
|
+
* @type {PlanVersionResponseData}
|
|
3258
|
+
* @memberof CompanyPlanDetailResponseData
|
|
3259
|
+
*/
|
|
3260
|
+
draftVersion?: PlanVersionResponseData;
|
|
3249
3261
|
/**
|
|
3250
3262
|
*
|
|
3251
3263
|
* @type {Array<PlanEntitlementResponseData>}
|
|
@@ -7532,6 +7544,12 @@ declare interface PlanCreditGrantView_2 {
|
|
|
7532
7544
|
* @interface PlanDetailResponseData
|
|
7533
7545
|
*/
|
|
7534
7546
|
declare interface PlanDetailResponseData {
|
|
7547
|
+
/**
|
|
7548
|
+
*
|
|
7549
|
+
* @type {PlanVersionResponseData}
|
|
7550
|
+
* @memberof PlanDetailResponseData
|
|
7551
|
+
*/
|
|
7552
|
+
activeVersion?: PlanVersionResponseData;
|
|
7535
7553
|
/**
|
|
7536
7554
|
*
|
|
7537
7555
|
* @type {string}
|
|
@@ -7575,6 +7593,12 @@ declare interface PlanDetailResponseData {
|
|
|
7575
7593
|
* @memberof PlanDetailResponseData
|
|
7576
7594
|
*/
|
|
7577
7595
|
description: string;
|
|
7596
|
+
/**
|
|
7597
|
+
*
|
|
7598
|
+
* @type {PlanVersionResponseData}
|
|
7599
|
+
* @memberof PlanDetailResponseData
|
|
7600
|
+
*/
|
|
7601
|
+
draftVersion?: PlanVersionResponseData;
|
|
7578
7602
|
/**
|
|
7579
7603
|
*
|
|
7580
7604
|
* @type {Array<FeatureDetailResponseData>}
|
|
@@ -8318,6 +8342,12 @@ declare type PlanVersionStatus_2 = (typeof PlanVersionStatus_2)[keyof typeof Pla
|
|
|
8318
8342
|
* @interface PlanViewPublicResponseData
|
|
8319
8343
|
*/
|
|
8320
8344
|
declare interface PlanViewPublicResponseData {
|
|
8345
|
+
/**
|
|
8346
|
+
*
|
|
8347
|
+
* @type {PlanVersionResponseData}
|
|
8348
|
+
* @memberof PlanViewPublicResponseData
|
|
8349
|
+
*/
|
|
8350
|
+
activeVersion?: PlanVersionResponseData_2;
|
|
8321
8351
|
/**
|
|
8322
8352
|
*
|
|
8323
8353
|
* @type {string}
|
|
@@ -8379,6 +8409,12 @@ declare interface PlanViewPublicResponseData {
|
|
|
8379
8409
|
* @memberof PlanViewPublicResponseData
|
|
8380
8410
|
*/
|
|
8381
8411
|
description: string;
|
|
8412
|
+
/**
|
|
8413
|
+
*
|
|
8414
|
+
* @type {PlanVersionResponseData}
|
|
8415
|
+
* @memberof PlanViewPublicResponseData
|
|
8416
|
+
*/
|
|
8417
|
+
draftVersion?: PlanVersionResponseData_2;
|
|
8382
8418
|
/**
|
|
8383
8419
|
*
|
|
8384
8420
|
* @type {Array<PlanEntitlementResponseData>}
|