@schematichq/schematic-components 2.11.0 → 2.12.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.
@@ -1120,6 +1120,12 @@ declare interface BillingPriceResponseData {
1120
1120
  * @memberof BillingPriceResponseData
1121
1121
  */
1122
1122
  interval: BillingProductPriceInterval;
1123
+ /**
1124
+ *
1125
+ * @type {number}
1126
+ * @memberof BillingPriceResponseData
1127
+ */
1128
+ intervalCount: number;
1123
1129
  /**
1124
1130
  *
1125
1131
  * @type {string}
@@ -1182,6 +1188,12 @@ declare interface BillingPriceResponseData_2 {
1182
1188
  * @memberof BillingPriceResponseData
1183
1189
  */
1184
1190
  interval: BillingProductPriceInterval_2;
1191
+ /**
1192
+ *
1193
+ * @type {number}
1194
+ * @memberof BillingPriceResponseData
1195
+ */
1196
+ intervalCount: number;
1185
1197
  /**
1186
1198
  *
1187
1199
  * @type {string}
@@ -1294,6 +1306,12 @@ declare interface BillingPriceView {
1294
1306
  * @memberof BillingPriceView
1295
1307
  */
1296
1308
  interval: BillingProductPriceInterval;
1309
+ /**
1310
+ *
1311
+ * @type {number}
1312
+ * @memberof BillingPriceView
1313
+ */
1314
+ intervalCount: number;
1297
1315
  /**
1298
1316
  *
1299
1317
  * @type {boolean}
@@ -1440,6 +1458,12 @@ declare interface BillingPriceView_2 {
1440
1458
  * @memberof BillingPriceView
1441
1459
  */
1442
1460
  interval: BillingProductPriceInterval_2;
1461
+ /**
1462
+ *
1463
+ * @type {number}
1464
+ * @memberof BillingPriceView
1465
+ */
1466
+ intervalCount: number;
1443
1467
  /**
1444
1468
  *
1445
1469
  * @type {boolean}
@@ -1802,6 +1826,12 @@ declare interface BillingProductForSubscriptionResponseData {
1802
1826
  * @memberof BillingProductForSubscriptionResponseData
1803
1827
  */
1804
1828
  interval: string;
1829
+ /**
1830
+ *
1831
+ * @type {number}
1832
+ * @memberof BillingProductForSubscriptionResponseData
1833
+ */
1834
+ intervalCount?: number | null;
1805
1835
  /**
1806
1836
  *
1807
1837
  * @type {string}
@@ -1950,6 +1980,12 @@ declare interface BillingProductPriceResponseData {
1950
1980
  * @memberof BillingProductPriceResponseData
1951
1981
  */
1952
1982
  interval: BillingProductPriceInterval;
1983
+ /**
1984
+ *
1985
+ * @type {number}
1986
+ * @memberof BillingProductPriceResponseData
1987
+ */
1988
+ intervalCount: number;
1953
1989
  /**
1954
1990
  *
1955
1991
  * @type {boolean}
@@ -3990,6 +4026,12 @@ declare interface CompanyPlanDetailResponseData {
3990
4026
  * @memberof CompanyPlanDetailResponseData
3991
4027
  */
3992
4028
  planType: PlanType;
4029
+ /**
4030
+ *
4031
+ * @type {BillingPriceResponseData}
4032
+ * @memberof CompanyPlanDetailResponseData
4033
+ */
4034
+ quarterlyPrice?: BillingPriceResponseData;
3993
4035
  /**
3994
4036
  *
3995
4037
  * @type {number}
@@ -6063,6 +6105,12 @@ declare interface EntitlementCurrencyPricesResponseData {
6063
6105
  * @memberof EntitlementCurrencyPricesResponseData
6064
6106
  */
6065
6107
  monthlyPrice?: BillingPriceView;
6108
+ /**
6109
+ *
6110
+ * @type {BillingPriceView}
6111
+ * @memberof EntitlementCurrencyPricesResponseData
6112
+ */
6113
+ quarterlyPrice?: BillingPriceView;
6066
6114
  /**
6067
6115
  *
6068
6116
  * @type {BillingPriceView}
@@ -6089,6 +6137,12 @@ declare interface EntitlementCurrencyPricesResponseData_2 {
6089
6137
  * @memberof EntitlementCurrencyPricesResponseData
6090
6138
  */
6091
6139
  monthlyPrice?: BillingPriceView_2;
6140
+ /**
6141
+ *
6142
+ * @type {BillingPriceView}
6143
+ * @memberof EntitlementCurrencyPricesResponseData
6144
+ */
6145
+ quarterlyPrice?: BillingPriceView_2;
6092
6146
  /**
6093
6147
  *
6094
6148
  * @type {BillingPriceView}
@@ -7336,6 +7390,12 @@ declare interface FeatureUsageResponseData {
7336
7390
  * @memberof FeatureUsageResponseData
7337
7391
  */
7338
7392
  priceBehavior?: EntitlementPriceBehavior | null;
7393
+ /**
7394
+ *
7395
+ * @type {BillingPriceView}
7396
+ * @memberof FeatureUsageResponseData
7397
+ */
7398
+ quarterlyUsageBasedPrice?: BillingPriceView;
7339
7399
  /**
7340
7400
  * The soft limit for the feature usage. Available only for overage price behavior
7341
7401
  * @type {number}
@@ -8881,6 +8941,12 @@ declare interface PlanCurrencyPricesResponseData {
8881
8941
  * @memberof PlanCurrencyPricesResponseData
8882
8942
  */
8883
8943
  oneTimePrice?: BillingPriceResponseData;
8944
+ /**
8945
+ *
8946
+ * @type {BillingPriceResponseData}
8947
+ * @memberof PlanCurrencyPricesResponseData
8948
+ */
8949
+ quarterlyPrice?: BillingPriceResponseData;
8884
8950
  /**
8885
8951
  *
8886
8952
  * @type {BillingPriceResponseData}
@@ -8913,6 +8979,12 @@ declare interface PlanCurrencyPricesResponseData_2 {
8913
8979
  * @memberof PlanCurrencyPricesResponseData
8914
8980
  */
8915
8981
  oneTimePrice?: BillingPriceResponseData_2;
8982
+ /**
8983
+ *
8984
+ * @type {BillingPriceResponseData}
8985
+ * @memberof PlanCurrencyPricesResponseData
8986
+ */
8987
+ quarterlyPrice?: BillingPriceResponseData_2;
8916
8988
  /**
8917
8989
  *
8918
8990
  * @type {BillingPriceResponseData}
@@ -9079,6 +9151,12 @@ declare interface PlanDetailResponseData {
9079
9151
  * @memberof PlanDetailResponseData
9080
9152
  */
9081
9153
  planType: PlanType;
9154
+ /**
9155
+ *
9156
+ * @type {BillingPriceResponseData}
9157
+ * @memberof PlanDetailResponseData
9158
+ */
9159
+ quarterlyPrice?: BillingPriceResponseData;
9082
9160
  /**
9083
9161
  *
9084
9162
  * @type {number}
@@ -9171,6 +9249,12 @@ declare interface PlanEntitlementResponseData {
9171
9249
  * @memberof PlanEntitlementResponseData
9172
9250
  */
9173
9251
  meteredMonthlyPrice?: BillingPriceView;
9252
+ /**
9253
+ *
9254
+ * @type {BillingPriceView}
9255
+ * @memberof PlanEntitlementResponseData
9256
+ */
9257
+ meteredQuarterlyPrice?: BillingPriceView;
9174
9258
  /**
9175
9259
  *
9176
9260
  * @type {BillingPriceView}
@@ -9341,6 +9425,12 @@ declare interface PlanEntitlementResponseData_2 {
9341
9425
  * @memberof PlanEntitlementResponseData
9342
9426
  */
9343
9427
  meteredMonthlyPrice?: BillingPriceView_2;
9428
+ /**
9429
+ *
9430
+ * @type {BillingPriceView}
9431
+ * @memberof PlanEntitlementResponseData
9432
+ */
9433
+ meteredQuarterlyPrice?: BillingPriceView_2;
9344
9434
  /**
9345
9435
  *
9346
9436
  * @type {BillingPriceView}
@@ -10054,6 +10144,12 @@ declare interface PlanViewPublicResponseData {
10054
10144
  * @memberof PlanViewPublicResponseData
10055
10145
  */
10056
10146
  planType: PlanType_2;
10147
+ /**
10148
+ *
10149
+ * @type {BillingPriceResponseData}
10150
+ * @memberof PlanViewPublicResponseData
10151
+ */
10152
+ quarterlyPrice?: BillingPriceResponseData_2;
10057
10153
  /**
10058
10154
  *
10059
10155
  * @type {number}
@@ -11872,6 +11968,12 @@ declare interface UsageBasedEntitlementResponseData {
11872
11968
  * @memberof UsageBasedEntitlementResponseData
11873
11969
  */
11874
11970
  priceBehavior?: EntitlementPriceBehavior | null;
11971
+ /**
11972
+ *
11973
+ * @type {BillingPriceView}
11974
+ * @memberof UsageBasedEntitlementResponseData
11975
+ */
11976
+ quarterlyUsageBasedPrice?: BillingPriceView;
11875
11977
  /**
11876
11978
  *
11877
11979
  * @type {boolean}