@kanda-libs/ks-component-ts 0.3.76 → 0.3.77
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 +14199 -14199
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +3 -3
- package/package.json +1 -1
- package/src/generated/operations/postCompanyBilling.ts +7 -0
- package/src/generated/operations/postCompanyBillingSuccess.ts +1 -1
- package/src/generated/operations/providerCheckWebhook.ts +1 -0
- package/src/generated/widget/index.tsx +67162 -67162
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ import * as schemas from "../components/schemas";
|
|
|
5
5
|
export type PostCompanyBillingRequestParameters = {
|
|
6
6
|
id: string;
|
|
7
7
|
tier?: "base_rate" | "enterprise_rate";
|
|
8
|
+
provider?: "stripe" | "premium_credit" | "iwoca";
|
|
8
9
|
};
|
|
9
10
|
|
|
10
11
|
export const postCompanyBillingOperation = {
|
|
@@ -22,6 +23,12 @@ export const postCompanyBillingOperation = {
|
|
|
22
23
|
name: "id",
|
|
23
24
|
},
|
|
24
25
|
parameters.tier,
|
|
26
|
+
{
|
|
27
|
+
_tag: "FormParameter",
|
|
28
|
+
explode: true,
|
|
29
|
+
in: "query",
|
|
30
|
+
name: "provider",
|
|
31
|
+
},
|
|
25
32
|
],
|
|
26
33
|
requestDefaultHeaders: { Accept: "application/json" },
|
|
27
34
|
} as const;
|
|
@@ -4,7 +4,7 @@ import * as schemas from "../components/schemas";
|
|
|
4
4
|
|
|
5
5
|
export type PostCompanyBillingSuccessRequestParameters = {
|
|
6
6
|
id: string;
|
|
7
|
-
provider?: "stripe" | "premium_credit";
|
|
7
|
+
provider?: "stripe" | "premium_credit" | "iwoca";
|
|
8
8
|
tier?: "base_rate" | "enterprise_rate";
|
|
9
9
|
};
|
|
10
10
|
|