@schematichq/schematic-components 0.7.11 → 0.7.13
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 +347 -90
- package/dist/schematic-components.d.ts +33 -1
- package/dist/schematic-components.esm.js +376 -119
- package/package.json +11 -11
|
@@ -1109,6 +1109,14 @@ declare class CheckoutexternalApi extends runtime.BaseAPI {
|
|
|
1109
1109
|
* Hydrate component
|
|
1110
1110
|
*/
|
|
1111
1111
|
hydrateComponent(requestParameters: HydrateComponentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<HydrateComponentResponse>;
|
|
1112
|
+
/**
|
|
1113
|
+
* Hydrate upcoming invoice
|
|
1114
|
+
*/
|
|
1115
|
+
hydrateUpcomingInvoiceRaw(requestParameters: HydrateUpcomingInvoiceRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<HydrateUpcomingInvoiceResponse>>;
|
|
1116
|
+
/**
|
|
1117
|
+
* Hydrate upcoming invoice
|
|
1118
|
+
*/
|
|
1119
|
+
hydrateUpcomingInvoice(requestParameters: HydrateUpcomingInvoiceRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<HydrateUpcomingInvoiceResponse>;
|
|
1112
1120
|
/**
|
|
1113
1121
|
* List invoices
|
|
1114
1122
|
*/
|
|
@@ -3312,6 +3320,30 @@ declare interface HydrateComponentResponse {
|
|
|
3312
3320
|
params: object;
|
|
3313
3321
|
}
|
|
3314
3322
|
|
|
3323
|
+
declare interface HydrateUpcomingInvoiceRequest {
|
|
3324
|
+
componentId: string;
|
|
3325
|
+
}
|
|
3326
|
+
|
|
3327
|
+
/**
|
|
3328
|
+
*
|
|
3329
|
+
* @export
|
|
3330
|
+
* @interface HydrateUpcomingInvoiceResponse
|
|
3331
|
+
*/
|
|
3332
|
+
declare interface HydrateUpcomingInvoiceResponse {
|
|
3333
|
+
/**
|
|
3334
|
+
*
|
|
3335
|
+
* @type {InvoiceResponseData}
|
|
3336
|
+
* @memberof HydrateUpcomingInvoiceResponse
|
|
3337
|
+
*/
|
|
3338
|
+
data: InvoiceResponseData;
|
|
3339
|
+
/**
|
|
3340
|
+
* Input parameters
|
|
3341
|
+
* @type {object}
|
|
3342
|
+
* @memberof HydrateUpcomingInvoiceResponse
|
|
3343
|
+
*/
|
|
3344
|
+
params: object;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3315
3347
|
export declare const Icon: ({ name, className, ...props }: IconProps) => JSX.Element;
|
|
3316
3348
|
|
|
3317
3349
|
export declare type IconNameTypes = keyof typeof _default;
|
|
@@ -3356,7 +3388,7 @@ $variant?: "filled" | "outline" | "ghost" | "text";
|
|
|
3356
3388
|
* Do not edit the class manually.
|
|
3357
3389
|
*/
|
|
3358
3390
|
/**
|
|
3359
|
-
*
|
|
3391
|
+
* The returned resource
|
|
3360
3392
|
* @export
|
|
3361
3393
|
* @interface InvoiceResponseData
|
|
3362
3394
|
*/
|