@schematichq/schematic-components 0.7.14 → 0.7.15
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 +260 -306
- package/dist/schematic-components.d.ts +41 -1
- package/dist/schematic-components.esm.js +296 -342
- package/package.json +1 -1
|
@@ -1097,6 +1097,14 @@ declare class CheckoutexternalApi extends runtime.BaseAPI {
|
|
|
1097
1097
|
* Checkout unsubscribe
|
|
1098
1098
|
*/
|
|
1099
1099
|
checkoutUnsubscribe(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CheckoutUnsubscribeResponse>;
|
|
1100
|
+
/**
|
|
1101
|
+
* Create setup intent
|
|
1102
|
+
*/
|
|
1103
|
+
createSetupIntentRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CreateSetupIntentResponse>>;
|
|
1104
|
+
/**
|
|
1105
|
+
* Create setup intent
|
|
1106
|
+
*/
|
|
1107
|
+
createSetupIntent(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CreateSetupIntentResponse>;
|
|
1100
1108
|
/**
|
|
1101
1109
|
* Delete payment method
|
|
1102
1110
|
*/
|
|
@@ -1455,6 +1463,12 @@ declare interface CompanyPlanDetailResponseData {
|
|
|
1455
1463
|
* @memberof CompanyPlanDetailResponseData
|
|
1456
1464
|
*/
|
|
1457
1465
|
companyCount: number;
|
|
1466
|
+
/**
|
|
1467
|
+
*
|
|
1468
|
+
* @type {string}
|
|
1469
|
+
* @memberof CompanyPlanDetailResponseData
|
|
1470
|
+
*/
|
|
1471
|
+
controlledBy: string;
|
|
1458
1472
|
/**
|
|
1459
1473
|
*
|
|
1460
1474
|
* @type {Date}
|
|
@@ -1963,6 +1977,26 @@ declare interface Consume {
|
|
|
1963
1977
|
|
|
1964
1978
|
export declare const Container: IStyledComponentBase<"web", FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
1965
1979
|
|
|
1980
|
+
/**
|
|
1981
|
+
*
|
|
1982
|
+
* @export
|
|
1983
|
+
* @interface CreateSetupIntentResponse
|
|
1984
|
+
*/
|
|
1985
|
+
declare interface CreateSetupIntentResponse {
|
|
1986
|
+
/**
|
|
1987
|
+
*
|
|
1988
|
+
* @type {SetupIntentResponseData}
|
|
1989
|
+
* @memberof CreateSetupIntentResponse
|
|
1990
|
+
*/
|
|
1991
|
+
data: SetupIntentResponseData;
|
|
1992
|
+
/**
|
|
1993
|
+
* Input parameters
|
|
1994
|
+
* @type {object}
|
|
1995
|
+
* @memberof CreateSetupIntentResponse
|
|
1996
|
+
*/
|
|
1997
|
+
params: object;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
1966
2000
|
/**
|
|
1967
2001
|
* Schematic API
|
|
1968
2002
|
* Schematic API
|
|
@@ -3801,6 +3835,12 @@ declare interface PlanDetailResponseData {
|
|
|
3801
3835
|
* @memberof PlanDetailResponseData
|
|
3802
3836
|
*/
|
|
3803
3837
|
companyCount: number;
|
|
3838
|
+
/**
|
|
3839
|
+
*
|
|
3840
|
+
* @type {string}
|
|
3841
|
+
* @memberof PlanDetailResponseData
|
|
3842
|
+
*/
|
|
3843
|
+
controlledBy: string;
|
|
3804
3844
|
/**
|
|
3805
3845
|
*
|
|
3806
3846
|
* @type {Date}
|
|
@@ -4805,7 +4845,7 @@ declare type SerializedNodeWithChildren = SerializedNode & {
|
|
|
4805
4845
|
* Do not edit the class manually.
|
|
4806
4846
|
*/
|
|
4807
4847
|
/**
|
|
4808
|
-
*
|
|
4848
|
+
*
|
|
4809
4849
|
* @export
|
|
4810
4850
|
* @interface SetupIntentResponseData
|
|
4811
4851
|
*/
|