@schematichq/schematic-components 0.7.7 → 0.7.9
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 +438 -506
- package/dist/schematic-components.d.ts +97 -11
- package/dist/schematic-components.esm.js +438 -506
- package/package.json +1 -1
|
@@ -1409,6 +1409,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
1409
1409
|
* @memberof CompanyPlanDetailResponseData
|
|
1410
1410
|
*/
|
|
1411
1411
|
billingProduct?: BillingProductDetailResponseData;
|
|
1412
|
+
/**
|
|
1413
|
+
*
|
|
1414
|
+
* @type {string}
|
|
1415
|
+
* @memberof CompanyPlanDetailResponseData
|
|
1416
|
+
*/
|
|
1417
|
+
chargeType: string;
|
|
1412
1418
|
/**
|
|
1413
1419
|
*
|
|
1414
1420
|
* @type {boolean}
|
|
@@ -1511,6 +1517,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
1511
1517
|
* @memberof CompanyPlanDetailResponseData
|
|
1512
1518
|
*/
|
|
1513
1519
|
name: string;
|
|
1520
|
+
/**
|
|
1521
|
+
*
|
|
1522
|
+
* @type {BillingPriceResponseData}
|
|
1523
|
+
* @memberof CompanyPlanDetailResponseData
|
|
1524
|
+
*/
|
|
1525
|
+
oneTimePrice?: BillingPriceResponseData;
|
|
1514
1526
|
/**
|
|
1515
1527
|
*
|
|
1516
1528
|
* @type {string}
|
|
@@ -1560,6 +1572,18 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
1560
1572
|
* @interface CompanyPlanWithBillingSubView
|
|
1561
1573
|
*/
|
|
1562
1574
|
declare interface CompanyPlanWithBillingSubView {
|
|
1575
|
+
/**
|
|
1576
|
+
*
|
|
1577
|
+
* @type {Date}
|
|
1578
|
+
* @memberof CompanyPlanWithBillingSubView
|
|
1579
|
+
*/
|
|
1580
|
+
addedOn?: Date | null;
|
|
1581
|
+
/**
|
|
1582
|
+
*
|
|
1583
|
+
* @type {string}
|
|
1584
|
+
* @memberof CompanyPlanWithBillingSubView
|
|
1585
|
+
*/
|
|
1586
|
+
billingProductExternalId?: string | null;
|
|
1563
1587
|
/**
|
|
1564
1588
|
*
|
|
1565
1589
|
* @type {string}
|
|
@@ -3724,6 +3748,12 @@ declare interface PlanDetailResponseData {
|
|
|
3724
3748
|
* @memberof PlanDetailResponseData
|
|
3725
3749
|
*/
|
|
3726
3750
|
billingProduct?: BillingProductDetailResponseData;
|
|
3751
|
+
/**
|
|
3752
|
+
*
|
|
3753
|
+
* @type {string}
|
|
3754
|
+
* @memberof PlanDetailResponseData
|
|
3755
|
+
*/
|
|
3756
|
+
chargeType: string;
|
|
3727
3757
|
/**
|
|
3728
3758
|
*
|
|
3729
3759
|
* @type {number}
|
|
@@ -3790,6 +3820,12 @@ declare interface PlanDetailResponseData {
|
|
|
3790
3820
|
* @memberof PlanDetailResponseData
|
|
3791
3821
|
*/
|
|
3792
3822
|
name: string;
|
|
3823
|
+
/**
|
|
3824
|
+
*
|
|
3825
|
+
* @type {BillingPriceResponseData}
|
|
3826
|
+
* @memberof PlanDetailResponseData
|
|
3827
|
+
*/
|
|
3828
|
+
oneTimePrice?: BillingPriceResponseData;
|
|
3793
3829
|
/**
|
|
3794
3830
|
*
|
|
3795
3831
|
* @type {string}
|
|
@@ -4209,17 +4245,6 @@ declare interface PreviewSubscriptionChangeResponseData {
|
|
|
4209
4245
|
usageViolations: Array<FeatureUsageResponseData>;
|
|
4210
4246
|
}
|
|
4211
4247
|
|
|
4212
|
-
/**
|
|
4213
|
-
* Schematic API
|
|
4214
|
-
* Schematic API
|
|
4215
|
-
*
|
|
4216
|
-
* The version of the OpenAPI document: 0.1
|
|
4217
|
-
*
|
|
4218
|
-
*
|
|
4219
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4220
|
-
* https://openapi-generator.tech
|
|
4221
|
-
* Do not edit the class manually.
|
|
4222
|
-
*/
|
|
4223
4248
|
/**
|
|
4224
4249
|
*
|
|
4225
4250
|
* @export
|
|
@@ -4274,10 +4299,67 @@ declare interface PreviewSubscriptionFinanceResponseData {
|
|
|
4274
4299
|
* @memberof PreviewSubscriptionFinanceResponseData
|
|
4275
4300
|
*/
|
|
4276
4301
|
trialEnd?: Date | null;
|
|
4302
|
+
/**
|
|
4303
|
+
*
|
|
4304
|
+
* @type {Array<PreviewSubscriptionUpcomingInvoiceLineItems>}
|
|
4305
|
+
* @memberof PreviewSubscriptionFinanceResponseData
|
|
4306
|
+
*/
|
|
4307
|
+
upcomingInvoiceLineItems: Array<PreviewSubscriptionUpcomingInvoiceLineItems>;
|
|
4308
|
+
}
|
|
4309
|
+
|
|
4310
|
+
/**
|
|
4311
|
+
* Schematic API
|
|
4312
|
+
* Schematic API
|
|
4313
|
+
*
|
|
4314
|
+
* The version of the OpenAPI document: 0.1
|
|
4315
|
+
*
|
|
4316
|
+
*
|
|
4317
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4318
|
+
* https://openapi-generator.tech
|
|
4319
|
+
* Do not edit the class manually.
|
|
4320
|
+
*/
|
|
4321
|
+
/**
|
|
4322
|
+
*
|
|
4323
|
+
* @export
|
|
4324
|
+
* @interface PreviewSubscriptionUpcomingInvoiceLineItems
|
|
4325
|
+
*/
|
|
4326
|
+
declare interface PreviewSubscriptionUpcomingInvoiceLineItems {
|
|
4327
|
+
/**
|
|
4328
|
+
*
|
|
4329
|
+
* @type {number}
|
|
4330
|
+
* @memberof PreviewSubscriptionUpcomingInvoiceLineItems
|
|
4331
|
+
*/
|
|
4332
|
+
amount: number;
|
|
4333
|
+
/**
|
|
4334
|
+
*
|
|
4335
|
+
* @type {string}
|
|
4336
|
+
* @memberof PreviewSubscriptionUpcomingInvoiceLineItems
|
|
4337
|
+
*/
|
|
4338
|
+
description: string;
|
|
4339
|
+
/**
|
|
4340
|
+
*
|
|
4341
|
+
* @type {string}
|
|
4342
|
+
* @memberof PreviewSubscriptionUpcomingInvoiceLineItems
|
|
4343
|
+
*/
|
|
4344
|
+
priceId: string;
|
|
4345
|
+
/**
|
|
4346
|
+
*
|
|
4347
|
+
* @type {boolean}
|
|
4348
|
+
* @memberof PreviewSubscriptionUpcomingInvoiceLineItems
|
|
4349
|
+
*/
|
|
4350
|
+
proration: boolean;
|
|
4351
|
+
/**
|
|
4352
|
+
*
|
|
4353
|
+
* @type {number}
|
|
4354
|
+
* @memberof PreviewSubscriptionUpcomingInvoiceLineItems
|
|
4355
|
+
*/
|
|
4356
|
+
quantity: number;
|
|
4277
4357
|
}
|
|
4278
4358
|
|
|
4279
4359
|
export declare const PricingTable: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_7> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
|
|
4280
4360
|
|
|
4361
|
+
export declare type PricingTableProps = DesignProps_7;
|
|
4362
|
+
|
|
4281
4363
|
export declare const ProgressBar: ({ progress, value, total, color, bgColor, ...props }: ProgressBarProps) => JSX.Element;
|
|
4282
4364
|
|
|
4283
4365
|
export declare interface ProgressBarProps extends React.ComponentPropsWithoutRef<typeof Flex> {
|
|
@@ -4984,6 +5066,7 @@ export declare function useAvailablePlans(activePeriod: string): {
|
|
|
4984
5066
|
isSelected: boolean;
|
|
4985
5067
|
audienceType?: string | null;
|
|
4986
5068
|
billingProduct?: BillingProductDetailResponseData;
|
|
5069
|
+
chargeType: string;
|
|
4987
5070
|
companyCanTrial: boolean;
|
|
4988
5071
|
companyCount: number;
|
|
4989
5072
|
createdAt: Date;
|
|
@@ -5001,6 +5084,7 @@ export declare function useAvailablePlans(activePeriod: string): {
|
|
|
5001
5084
|
isTrialable: boolean;
|
|
5002
5085
|
monthlyPrice?: BillingPriceResponseData;
|
|
5003
5086
|
name: string;
|
|
5087
|
+
oneTimePrice?: BillingPriceResponseData;
|
|
5004
5088
|
planType: string;
|
|
5005
5089
|
trialDays?: number | null;
|
|
5006
5090
|
updatedAt: Date;
|
|
@@ -5011,6 +5095,7 @@ export declare function useAvailablePlans(activePeriod: string): {
|
|
|
5011
5095
|
isSelected: boolean;
|
|
5012
5096
|
audienceType?: string | null;
|
|
5013
5097
|
billingProduct?: BillingProductDetailResponseData;
|
|
5098
|
+
chargeType: string;
|
|
5014
5099
|
companyCanTrial: boolean;
|
|
5015
5100
|
companyCount: number;
|
|
5016
5101
|
createdAt: Date;
|
|
@@ -5028,6 +5113,7 @@ export declare function useAvailablePlans(activePeriod: string): {
|
|
|
5028
5113
|
isTrialable: boolean;
|
|
5029
5114
|
monthlyPrice?: BillingPriceResponseData;
|
|
5030
5115
|
name: string;
|
|
5116
|
+
oneTimePrice?: BillingPriceResponseData;
|
|
5031
5117
|
planType: string;
|
|
5032
5118
|
trialDays?: number | null;
|
|
5033
5119
|
updatedAt: Date;
|