@kanda-libs/ks-component-ts 0.2.384 → 0.2.385
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/index.d.ts +13439 -13439
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +3 -3
- package/package.json +1 -1
- package/src/generated/operations/postCompanyBillingSuccess.ts +7 -0
- package/src/generated/widget/index.tsx +61480 -61480
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@ import * as schemas from "../components/schemas";
|
|
|
3
3
|
|
|
4
4
|
export type PostCompanyBillingSuccessRequestParameters = {
|
|
5
5
|
id: string;
|
|
6
|
+
provider?: "stripe" | "premium_credit";
|
|
6
7
|
};
|
|
7
8
|
|
|
8
9
|
export const postCompanyBillingSuccessOperation = {
|
|
@@ -19,6 +20,12 @@ export const postCompanyBillingSuccessOperation = {
|
|
|
19
20
|
in: "path",
|
|
20
21
|
name: "id",
|
|
21
22
|
},
|
|
23
|
+
{
|
|
24
|
+
_tag: "FormParameter",
|
|
25
|
+
explode: true,
|
|
26
|
+
in: "query",
|
|
27
|
+
name: "provider",
|
|
28
|
+
},
|
|
22
29
|
],
|
|
23
30
|
requestDefaultHeaders: { Accept: "application/json" },
|
|
24
31
|
} as const;
|