@kanda-libs/ks-schema 1.0.93 → 1.0.94
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/components/schemas/Company.d.ts +2 -0
- package/dist/components/schemas/Company.d.ts.map +1 -1
- package/dist/components/schemas/Company.js +11 -0
- package/dist/components/schemas/Event.d.ts +39 -0
- package/dist/components/schemas/Event.d.ts.map +1 -0
- package/dist/components/schemas/Event.js +50 -0
- package/dist/components/schemas/Subscription.d.ts +70 -0
- package/dist/components/schemas/Subscription.d.ts.map +1 -0
- package/dist/components/schemas/Subscription.js +48 -0
- package/dist/components/schemas/index.d.ts +2 -0
- package/dist/components/schemas/index.d.ts.map +1 -1
- package/dist/components/schemas/index.js +2 -0
- package/dist/operations/approveCompany.d.ts +1 -0
- package/dist/operations/approveCompany.d.ts.map +1 -1
- package/dist/operations/deleteCompany.d.ts +1 -0
- package/dist/operations/deleteCompany.d.ts.map +1 -1
- package/dist/operations/deleteSubscription.d.ts +82 -0
- package/dist/operations/deleteSubscription.d.ts.map +1 -0
- package/dist/operations/deleteSubscription.js +44 -0
- package/dist/operations/getCompanies.d.ts +1 -0
- package/dist/operations/getCompanies.d.ts.map +1 -1
- package/dist/operations/getCompany.d.ts +1 -0
- package/dist/operations/getCompany.d.ts.map +1 -1
- package/dist/operations/getSubscription.d.ts +82 -0
- package/dist/operations/getSubscription.d.ts.map +1 -0
- package/dist/operations/getSubscription.js +44 -0
- package/dist/operations/getSubscriptions.d.ts +73 -0
- package/dist/operations/getSubscriptions.d.ts.map +1 -0
- package/dist/operations/getSubscriptions.js +38 -0
- package/dist/operations/index.d.ts +386 -0
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +24 -1
- package/dist/operations/postCompany.d.ts +1 -0
- package/dist/operations/postCompany.d.ts.map +1 -1
- package/dist/operations/postSubscription.d.ts +78 -0
- package/dist/operations/postSubscription.d.ts.map +1 -0
- package/dist/operations/postSubscription.js +43 -0
- package/dist/operations/providerWebhook.d.ts +1 -1
- package/dist/operations/providerWebhook.d.ts.map +1 -1
- package/dist/operations/putCompany.d.ts +1 -0
- package/dist/operations/putCompany.d.ts.map +1 -1
- package/dist/operations/putSubscription.d.ts +87 -0
- package/dist/operations/putSubscription.d.ts.map +1 -0
- package/dist/operations/putSubscription.js +50 -0
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +2692 -2252
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +5499 -5030
- package/package.json +1 -1
- package/schema.yaml +293 -2
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { RequestFunction } from "@openapi-io-ts/runtime";
|
|
2
|
+
import * as t from "io-ts";
|
|
3
|
+
import * as schemas from "../components/schemas";
|
|
4
|
+
export declare const getSubscriptionsOperation: {
|
|
5
|
+
readonly path: "/api/subscription";
|
|
6
|
+
readonly method: "get";
|
|
7
|
+
readonly responses: {
|
|
8
|
+
readonly "200": {
|
|
9
|
+
readonly _tag: "JsonResponse";
|
|
10
|
+
readonly decoder: t.ArrayC<t.PartialC<{
|
|
11
|
+
id: t.StringC;
|
|
12
|
+
cid: t.StringC;
|
|
13
|
+
oid: t.StringC;
|
|
14
|
+
aid: t.StringC;
|
|
15
|
+
billing: t.StringC;
|
|
16
|
+
billing_status: t.StringC;
|
|
17
|
+
mandate: t.StringC;
|
|
18
|
+
mandate_status: t.StringC;
|
|
19
|
+
authorisation_url: t.StringC;
|
|
20
|
+
interval: t.UnionC<[t.LiteralC<"monthly">, t.LiteralC<"yearly">]>;
|
|
21
|
+
day_of_month: t.NumberC;
|
|
22
|
+
amount: t.IntersectionC<[t.TypeC<{
|
|
23
|
+
amount: t.NumberC;
|
|
24
|
+
}>, t.PartialC<{
|
|
25
|
+
currency: t.LiteralC<"GBP">;
|
|
26
|
+
}>]>;
|
|
27
|
+
events: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
28
|
+
id: t.StringC;
|
|
29
|
+
cid: t.StringC;
|
|
30
|
+
oid: t.StringC;
|
|
31
|
+
resource: t.StringC;
|
|
32
|
+
action: t.StringC;
|
|
33
|
+
source: t.UnionC<[t.LiteralC<"api">, t.LiteralC<"kanda">, t.LiteralC<"webhook">]>;
|
|
34
|
+
result: t.StringC;
|
|
35
|
+
}>, t.PartialC<{
|
|
36
|
+
aid: t.StringC;
|
|
37
|
+
resource_id: t.StringC;
|
|
38
|
+
error: t.IntersectionC<[t.TypeC<{
|
|
39
|
+
message: t.StringC;
|
|
40
|
+
}>, t.PartialC<{
|
|
41
|
+
code: t.NumberC;
|
|
42
|
+
}>]>;
|
|
43
|
+
metadata: t.TypeC<{
|
|
44
|
+
liveness: t.BooleanC;
|
|
45
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
46
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
47
|
+
}>;
|
|
48
|
+
}>]>>;
|
|
49
|
+
xid: t.StringC;
|
|
50
|
+
xref: t.StringC;
|
|
51
|
+
metadata: t.TypeC<{
|
|
52
|
+
liveness: t.BooleanC;
|
|
53
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
54
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
55
|
+
}>;
|
|
56
|
+
}>>;
|
|
57
|
+
};
|
|
58
|
+
readonly default: {
|
|
59
|
+
readonly _tag: "JsonResponse";
|
|
60
|
+
readonly decoder: t.IntersectionC<[t.TypeC<{
|
|
61
|
+
message: t.StringC;
|
|
62
|
+
}>, t.PartialC<{
|
|
63
|
+
code: t.NumberC;
|
|
64
|
+
}>]>;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
readonly parameters: readonly [];
|
|
68
|
+
readonly requestDefaultHeaders: {
|
|
69
|
+
readonly Accept: "application/json";
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
export declare type GetSubscriptionsRequestFunction = RequestFunction<undefined, Array<schemas.Subscription>>;
|
|
73
|
+
//# sourceMappingURL=getSubscriptions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSubscriptions.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getSubscriptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAS5B,CAAC;AAEX,oBAAY,+BAA+B,GAAG,eAAe,CAC3D,SAAS,EACT,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,CAC5B,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.getSubscriptionsOperation = void 0;
|
|
27
|
+
const t = __importStar(require("io-ts"));
|
|
28
|
+
const schemas = __importStar(require("../components/schemas"));
|
|
29
|
+
exports.getSubscriptionsOperation = {
|
|
30
|
+
path: "/api/subscription",
|
|
31
|
+
method: "get",
|
|
32
|
+
responses: {
|
|
33
|
+
"200": { _tag: "JsonResponse", decoder: t.array(schemas.Subscription) },
|
|
34
|
+
default: { _tag: "JsonResponse", decoder: schemas.Error },
|
|
35
|
+
},
|
|
36
|
+
parameters: [],
|
|
37
|
+
requestDefaultHeaders: { Accept: "application/json" },
|
|
38
|
+
};
|
|
@@ -11,6 +11,7 @@ import { DeleteCreditRequestFunction } from "./deleteCredit";
|
|
|
11
11
|
import { DeleteDocumentRequestFunction } from "./deleteDocument";
|
|
12
12
|
import { DeleteJobRequestFunction } from "./deleteJob";
|
|
13
13
|
import { DeletePaymentRequestFunction } from "./deletePayment";
|
|
14
|
+
import { DeleteSubscriptionRequestFunction } from "./deleteSubscription";
|
|
14
15
|
import { GetCompaniesRequestFunction } from "./getCompanies";
|
|
15
16
|
import { GetCompanyRequestFunction } from "./getCompany";
|
|
16
17
|
import { GetCreditRequestFunction } from "./getCredit";
|
|
@@ -21,6 +22,8 @@ import { GetJobRequestFunction } from "./getJob";
|
|
|
21
22
|
import { GetJobsRequestFunction } from "./getJobs";
|
|
22
23
|
import { GetPaymentRequestFunction } from "./getPayment";
|
|
23
24
|
import { GetPaymentsRequestFunction } from "./getPayments";
|
|
25
|
+
import { GetSubscriptionRequestFunction } from "./getSubscription";
|
|
26
|
+
import { GetSubscriptionsRequestFunction } from "./getSubscriptions";
|
|
24
27
|
import { InfoAuthRequestFunction } from "./infoAuth";
|
|
25
28
|
import { InfoCompanyRequestFunction } from "./infoCompany";
|
|
26
29
|
import { InfoCustomerRequestFunction } from "./infoCustomer";
|
|
@@ -37,6 +40,7 @@ import { PostCreditRequestFunction } from "./postCredit";
|
|
|
37
40
|
import { PostDocumentRequestFunction } from "./postDocument";
|
|
38
41
|
import { PostJobRequestFunction } from "./postJob";
|
|
39
42
|
import { PostPaymentRequestFunction } from "./postPayment";
|
|
43
|
+
import { PostSubscriptionRequestFunction } from "./postSubscription";
|
|
40
44
|
import { ProviderWebhookRequestFunction } from "./providerWebhook";
|
|
41
45
|
import { PutCompanyRequestFunction } from "./putCompany";
|
|
42
46
|
import { PutCreditRequestFunction } from "./putCredit";
|
|
@@ -44,6 +48,7 @@ import { PutDocumentRequestFunction } from "./putDocument";
|
|
|
44
48
|
import { PutJobRequestFunction } from "./putJob";
|
|
45
49
|
import { PutMeRequestFunction } from "./putMe";
|
|
46
50
|
import { PutPaymentRequestFunction } from "./putPayment";
|
|
51
|
+
import { PutSubscriptionRequestFunction } from "./putSubscription";
|
|
47
52
|
import { QuoteCreditRequestFunction } from "./quoteCredit";
|
|
48
53
|
import { RunnerRequestFunction } from "./runner";
|
|
49
54
|
import { SendJobRequestFunction } from "./sendJob";
|
|
@@ -505,6 +510,7 @@ export declare const operations: {
|
|
|
505
510
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
506
511
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
507
512
|
lifecycle: import("io-ts").UnionC<[import("io-ts").LiteralC<"registered">, import("io-ts").LiteralC<"onboarded">, import("io-ts").LiteralC<"completed_setup">, import("io-ts").LiteralC<"verified">]>;
|
|
513
|
+
billing: import("io-ts").UnionC<[import("io-ts").LiteralC<"legacy">, import("io-ts").LiteralC<"trial">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"subscribed">, import("io-ts").LiteralC<"recurring_payment_failed_1">, import("io-ts").LiteralC<"recurring_payment_failed_2">, import("io-ts").LiteralC<"recurring_payment_failed_3">, import("io-ts").LiteralC<"suspended">, import("io-ts").LiteralC<"cancelled">]>;
|
|
508
514
|
company_logo: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
509
515
|
name: import("io-ts").StringC;
|
|
510
516
|
}>, import("io-ts").PartialC<{
|
|
@@ -681,6 +687,7 @@ export declare const operations: {
|
|
|
681
687
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
682
688
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
683
689
|
lifecycle: import("io-ts").UnionC<[import("io-ts").LiteralC<"registered">, import("io-ts").LiteralC<"onboarded">, import("io-ts").LiteralC<"completed_setup">, import("io-ts").LiteralC<"verified">]>;
|
|
690
|
+
billing: import("io-ts").UnionC<[import("io-ts").LiteralC<"legacy">, import("io-ts").LiteralC<"trial">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"subscribed">, import("io-ts").LiteralC<"recurring_payment_failed_1">, import("io-ts").LiteralC<"recurring_payment_failed_2">, import("io-ts").LiteralC<"recurring_payment_failed_3">, import("io-ts").LiteralC<"suspended">, import("io-ts").LiteralC<"cancelled">]>;
|
|
684
691
|
company_logo: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
685
692
|
name: import("io-ts").StringC;
|
|
686
693
|
}>, import("io-ts").PartialC<{
|
|
@@ -861,6 +868,7 @@ export declare const operations: {
|
|
|
861
868
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
862
869
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
863
870
|
lifecycle: import("io-ts").UnionC<[import("io-ts").LiteralC<"registered">, import("io-ts").LiteralC<"onboarded">, import("io-ts").LiteralC<"completed_setup">, import("io-ts").LiteralC<"verified">]>;
|
|
871
|
+
billing: import("io-ts").UnionC<[import("io-ts").LiteralC<"legacy">, import("io-ts").LiteralC<"trial">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"subscribed">, import("io-ts").LiteralC<"recurring_payment_failed_1">, import("io-ts").LiteralC<"recurring_payment_failed_2">, import("io-ts").LiteralC<"recurring_payment_failed_3">, import("io-ts").LiteralC<"suspended">, import("io-ts").LiteralC<"cancelled">]>;
|
|
864
872
|
company_logo: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
865
873
|
name: import("io-ts").StringC;
|
|
866
874
|
}>, import("io-ts").PartialC<{
|
|
@@ -1042,6 +1050,7 @@ export declare const operations: {
|
|
|
1042
1050
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
1043
1051
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
1044
1052
|
lifecycle: import("io-ts").UnionC<[import("io-ts").LiteralC<"registered">, import("io-ts").LiteralC<"onboarded">, import("io-ts").LiteralC<"completed_setup">, import("io-ts").LiteralC<"verified">]>;
|
|
1053
|
+
billing: import("io-ts").UnionC<[import("io-ts").LiteralC<"legacy">, import("io-ts").LiteralC<"trial">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"subscribed">, import("io-ts").LiteralC<"recurring_payment_failed_1">, import("io-ts").LiteralC<"recurring_payment_failed_2">, import("io-ts").LiteralC<"recurring_payment_failed_3">, import("io-ts").LiteralC<"suspended">, import("io-ts").LiteralC<"cancelled">]>;
|
|
1045
1054
|
company_logo: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1046
1055
|
name: import("io-ts").StringC;
|
|
1047
1056
|
}>, import("io-ts").PartialC<{
|
|
@@ -1227,6 +1236,7 @@ export declare const operations: {
|
|
|
1227
1236
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
1228
1237
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
1229
1238
|
lifecycle: import("io-ts").UnionC<[import("io-ts").LiteralC<"registered">, import("io-ts").LiteralC<"onboarded">, import("io-ts").LiteralC<"completed_setup">, import("io-ts").LiteralC<"verified">]>;
|
|
1239
|
+
billing: import("io-ts").UnionC<[import("io-ts").LiteralC<"legacy">, import("io-ts").LiteralC<"trial">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"subscribed">, import("io-ts").LiteralC<"recurring_payment_failed_1">, import("io-ts").LiteralC<"recurring_payment_failed_2">, import("io-ts").LiteralC<"recurring_payment_failed_3">, import("io-ts").LiteralC<"suspended">, import("io-ts").LiteralC<"cancelled">]>;
|
|
1230
1240
|
company_logo: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1231
1241
|
name: import("io-ts").StringC;
|
|
1232
1242
|
}>, import("io-ts").PartialC<{
|
|
@@ -1408,6 +1418,7 @@ export declare const operations: {
|
|
|
1408
1418
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
1409
1419
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
1410
1420
|
lifecycle: import("io-ts").UnionC<[import("io-ts").LiteralC<"registered">, import("io-ts").LiteralC<"onboarded">, import("io-ts").LiteralC<"completed_setup">, import("io-ts").LiteralC<"verified">]>;
|
|
1421
|
+
billing: import("io-ts").UnionC<[import("io-ts").LiteralC<"legacy">, import("io-ts").LiteralC<"trial">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"subscribed">, import("io-ts").LiteralC<"recurring_payment_failed_1">, import("io-ts").LiteralC<"recurring_payment_failed_2">, import("io-ts").LiteralC<"recurring_payment_failed_3">, import("io-ts").LiteralC<"suspended">, import("io-ts").LiteralC<"cancelled">]>;
|
|
1411
1422
|
company_logo: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1412
1423
|
name: import("io-ts").StringC;
|
|
1413
1424
|
}>, import("io-ts").PartialC<{
|
|
@@ -6309,6 +6320,369 @@ export declare const operations: {
|
|
|
6309
6320
|
}];
|
|
6310
6321
|
readonly requestDefaultHeaders: {};
|
|
6311
6322
|
};
|
|
6323
|
+
readonly getSubscriptions: {
|
|
6324
|
+
readonly path: "/api/subscription";
|
|
6325
|
+
readonly method: "get";
|
|
6326
|
+
readonly responses: {
|
|
6327
|
+
readonly "200": {
|
|
6328
|
+
readonly _tag: "JsonResponse";
|
|
6329
|
+
readonly decoder: import("io-ts").ArrayC<import("io-ts").PartialC<{
|
|
6330
|
+
id: import("io-ts").StringC;
|
|
6331
|
+
cid: import("io-ts").StringC;
|
|
6332
|
+
oid: import("io-ts").StringC;
|
|
6333
|
+
aid: import("io-ts").StringC;
|
|
6334
|
+
billing: import("io-ts").StringC;
|
|
6335
|
+
billing_status: import("io-ts").StringC;
|
|
6336
|
+
mandate: import("io-ts").StringC;
|
|
6337
|
+
mandate_status: import("io-ts").StringC;
|
|
6338
|
+
authorisation_url: import("io-ts").StringC;
|
|
6339
|
+
interval: import("io-ts").UnionC<[import("io-ts").LiteralC<"monthly">, import("io-ts").LiteralC<"yearly">]>;
|
|
6340
|
+
day_of_month: import("io-ts").NumberC;
|
|
6341
|
+
amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6342
|
+
amount: import("io-ts").NumberC;
|
|
6343
|
+
}>, import("io-ts").PartialC<{
|
|
6344
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
6345
|
+
}>]>;
|
|
6346
|
+
events: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6347
|
+
id: import("io-ts").StringC;
|
|
6348
|
+
cid: import("io-ts").StringC;
|
|
6349
|
+
oid: import("io-ts").StringC;
|
|
6350
|
+
resource: import("io-ts").StringC;
|
|
6351
|
+
action: import("io-ts").StringC;
|
|
6352
|
+
source: import("io-ts").UnionC<[import("io-ts").LiteralC<"api">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"webhook">]>;
|
|
6353
|
+
result: import("io-ts").StringC;
|
|
6354
|
+
}>, import("io-ts").PartialC<{
|
|
6355
|
+
aid: import("io-ts").StringC;
|
|
6356
|
+
resource_id: import("io-ts").StringC;
|
|
6357
|
+
error: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6358
|
+
message: import("io-ts").StringC;
|
|
6359
|
+
}>, import("io-ts").PartialC<{
|
|
6360
|
+
code: import("io-ts").NumberC;
|
|
6361
|
+
}>]>;
|
|
6362
|
+
metadata: import("io-ts").TypeC<{
|
|
6363
|
+
liveness: import("io-ts").BooleanC;
|
|
6364
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6365
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6366
|
+
}>;
|
|
6367
|
+
}>]>>;
|
|
6368
|
+
xid: import("io-ts").StringC;
|
|
6369
|
+
xref: import("io-ts").StringC;
|
|
6370
|
+
metadata: import("io-ts").TypeC<{
|
|
6371
|
+
liveness: import("io-ts").BooleanC;
|
|
6372
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6373
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6374
|
+
}>;
|
|
6375
|
+
}>>;
|
|
6376
|
+
};
|
|
6377
|
+
readonly default: {
|
|
6378
|
+
readonly _tag: "JsonResponse";
|
|
6379
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6380
|
+
message: import("io-ts").StringC;
|
|
6381
|
+
}>, import("io-ts").PartialC<{
|
|
6382
|
+
code: import("io-ts").NumberC;
|
|
6383
|
+
}>]>;
|
|
6384
|
+
};
|
|
6385
|
+
};
|
|
6386
|
+
readonly parameters: readonly [];
|
|
6387
|
+
readonly requestDefaultHeaders: {
|
|
6388
|
+
readonly Accept: "application/json";
|
|
6389
|
+
};
|
|
6390
|
+
};
|
|
6391
|
+
readonly postSubscription: {
|
|
6392
|
+
readonly path: "/api/subscription";
|
|
6393
|
+
readonly method: "post";
|
|
6394
|
+
readonly responses: {
|
|
6395
|
+
readonly "200": {
|
|
6396
|
+
readonly _tag: "JsonResponse";
|
|
6397
|
+
readonly decoder: import("io-ts").PartialC<{
|
|
6398
|
+
id: import("io-ts").StringC;
|
|
6399
|
+
cid: import("io-ts").StringC;
|
|
6400
|
+
oid: import("io-ts").StringC;
|
|
6401
|
+
aid: import("io-ts").StringC;
|
|
6402
|
+
billing: import("io-ts").StringC;
|
|
6403
|
+
billing_status: import("io-ts").StringC;
|
|
6404
|
+
mandate: import("io-ts").StringC;
|
|
6405
|
+
mandate_status: import("io-ts").StringC;
|
|
6406
|
+
authorisation_url: import("io-ts").StringC;
|
|
6407
|
+
interval: import("io-ts").UnionC<[import("io-ts").LiteralC<"monthly">, import("io-ts").LiteralC<"yearly">]>;
|
|
6408
|
+
day_of_month: import("io-ts").NumberC;
|
|
6409
|
+
amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6410
|
+
amount: import("io-ts").NumberC;
|
|
6411
|
+
}>, import("io-ts").PartialC<{
|
|
6412
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
6413
|
+
}>]>;
|
|
6414
|
+
events: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6415
|
+
id: import("io-ts").StringC;
|
|
6416
|
+
cid: import("io-ts").StringC;
|
|
6417
|
+
oid: import("io-ts").StringC;
|
|
6418
|
+
resource: import("io-ts").StringC;
|
|
6419
|
+
action: import("io-ts").StringC;
|
|
6420
|
+
source: import("io-ts").UnionC<[import("io-ts").LiteralC<"api">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"webhook">]>;
|
|
6421
|
+
result: import("io-ts").StringC;
|
|
6422
|
+
}>, import("io-ts").PartialC<{
|
|
6423
|
+
aid: import("io-ts").StringC;
|
|
6424
|
+
resource_id: import("io-ts").StringC;
|
|
6425
|
+
error: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6426
|
+
message: import("io-ts").StringC;
|
|
6427
|
+
}>, import("io-ts").PartialC<{
|
|
6428
|
+
code: import("io-ts").NumberC;
|
|
6429
|
+
}>]>;
|
|
6430
|
+
metadata: import("io-ts").TypeC<{
|
|
6431
|
+
liveness: import("io-ts").BooleanC;
|
|
6432
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6433
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6434
|
+
}>;
|
|
6435
|
+
}>]>>;
|
|
6436
|
+
xid: import("io-ts").StringC;
|
|
6437
|
+
xref: import("io-ts").StringC;
|
|
6438
|
+
metadata: import("io-ts").TypeC<{
|
|
6439
|
+
liveness: import("io-ts").BooleanC;
|
|
6440
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6441
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6442
|
+
}>;
|
|
6443
|
+
}>;
|
|
6444
|
+
};
|
|
6445
|
+
readonly default: {
|
|
6446
|
+
readonly _tag: "JsonResponse";
|
|
6447
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6448
|
+
message: import("io-ts").StringC;
|
|
6449
|
+
}>, import("io-ts").PartialC<{
|
|
6450
|
+
code: import("io-ts").NumberC;
|
|
6451
|
+
}>]>;
|
|
6452
|
+
};
|
|
6453
|
+
};
|
|
6454
|
+
readonly parameters: readonly [];
|
|
6455
|
+
readonly requestDefaultHeaders: {
|
|
6456
|
+
readonly "Content-Type": "application/json";
|
|
6457
|
+
readonly Accept: "application/json";
|
|
6458
|
+
};
|
|
6459
|
+
readonly body: {
|
|
6460
|
+
readonly _tag: "JsonBody";
|
|
6461
|
+
};
|
|
6462
|
+
};
|
|
6463
|
+
readonly getSubscription: {
|
|
6464
|
+
readonly path: "/api/subscription/{id}";
|
|
6465
|
+
readonly method: "get";
|
|
6466
|
+
readonly responses: {
|
|
6467
|
+
readonly "200": {
|
|
6468
|
+
readonly _tag: "JsonResponse";
|
|
6469
|
+
readonly decoder: import("io-ts").PartialC<{
|
|
6470
|
+
id: import("io-ts").StringC;
|
|
6471
|
+
cid: import("io-ts").StringC;
|
|
6472
|
+
oid: import("io-ts").StringC;
|
|
6473
|
+
aid: import("io-ts").StringC;
|
|
6474
|
+
billing: import("io-ts").StringC;
|
|
6475
|
+
billing_status: import("io-ts").StringC;
|
|
6476
|
+
mandate: import("io-ts").StringC;
|
|
6477
|
+
mandate_status: import("io-ts").StringC;
|
|
6478
|
+
authorisation_url: import("io-ts").StringC;
|
|
6479
|
+
interval: import("io-ts").UnionC<[import("io-ts").LiteralC<"monthly">, import("io-ts").LiteralC<"yearly">]>;
|
|
6480
|
+
day_of_month: import("io-ts").NumberC;
|
|
6481
|
+
amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6482
|
+
amount: import("io-ts").NumberC;
|
|
6483
|
+
}>, import("io-ts").PartialC<{
|
|
6484
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
6485
|
+
}>]>;
|
|
6486
|
+
events: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6487
|
+
id: import("io-ts").StringC;
|
|
6488
|
+
cid: import("io-ts").StringC;
|
|
6489
|
+
oid: import("io-ts").StringC;
|
|
6490
|
+
resource: import("io-ts").StringC;
|
|
6491
|
+
action: import("io-ts").StringC;
|
|
6492
|
+
source: import("io-ts").UnionC<[import("io-ts").LiteralC<"api">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"webhook">]>;
|
|
6493
|
+
result: import("io-ts").StringC;
|
|
6494
|
+
}>, import("io-ts").PartialC<{
|
|
6495
|
+
aid: import("io-ts").StringC;
|
|
6496
|
+
resource_id: import("io-ts").StringC;
|
|
6497
|
+
error: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6498
|
+
message: import("io-ts").StringC;
|
|
6499
|
+
}>, import("io-ts").PartialC<{
|
|
6500
|
+
code: import("io-ts").NumberC;
|
|
6501
|
+
}>]>;
|
|
6502
|
+
metadata: import("io-ts").TypeC<{
|
|
6503
|
+
liveness: import("io-ts").BooleanC;
|
|
6504
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6505
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6506
|
+
}>;
|
|
6507
|
+
}>]>>;
|
|
6508
|
+
xid: import("io-ts").StringC;
|
|
6509
|
+
xref: import("io-ts").StringC;
|
|
6510
|
+
metadata: import("io-ts").TypeC<{
|
|
6511
|
+
liveness: import("io-ts").BooleanC;
|
|
6512
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6513
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6514
|
+
}>;
|
|
6515
|
+
}>;
|
|
6516
|
+
};
|
|
6517
|
+
readonly default: {
|
|
6518
|
+
readonly _tag: "JsonResponse";
|
|
6519
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6520
|
+
message: import("io-ts").StringC;
|
|
6521
|
+
}>, import("io-ts").PartialC<{
|
|
6522
|
+
code: import("io-ts").NumberC;
|
|
6523
|
+
}>]>;
|
|
6524
|
+
};
|
|
6525
|
+
};
|
|
6526
|
+
readonly parameters: readonly [{
|
|
6527
|
+
readonly _tag: "FormParameter";
|
|
6528
|
+
readonly explode: false;
|
|
6529
|
+
readonly in: "path";
|
|
6530
|
+
readonly name: "id";
|
|
6531
|
+
}];
|
|
6532
|
+
readonly requestDefaultHeaders: {
|
|
6533
|
+
readonly Accept: "application/json";
|
|
6534
|
+
};
|
|
6535
|
+
};
|
|
6536
|
+
readonly putSubscription: {
|
|
6537
|
+
readonly path: "/api/subscription/{id}";
|
|
6538
|
+
readonly method: "put";
|
|
6539
|
+
readonly responses: {
|
|
6540
|
+
readonly "200": {
|
|
6541
|
+
readonly _tag: "JsonResponse";
|
|
6542
|
+
readonly decoder: import("io-ts").PartialC<{
|
|
6543
|
+
id: import("io-ts").StringC;
|
|
6544
|
+
cid: import("io-ts").StringC;
|
|
6545
|
+
oid: import("io-ts").StringC;
|
|
6546
|
+
aid: import("io-ts").StringC;
|
|
6547
|
+
billing: import("io-ts").StringC;
|
|
6548
|
+
billing_status: import("io-ts").StringC;
|
|
6549
|
+
mandate: import("io-ts").StringC;
|
|
6550
|
+
mandate_status: import("io-ts").StringC;
|
|
6551
|
+
authorisation_url: import("io-ts").StringC;
|
|
6552
|
+
interval: import("io-ts").UnionC<[import("io-ts").LiteralC<"monthly">, import("io-ts").LiteralC<"yearly">]>;
|
|
6553
|
+
day_of_month: import("io-ts").NumberC;
|
|
6554
|
+
amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6555
|
+
amount: import("io-ts").NumberC;
|
|
6556
|
+
}>, import("io-ts").PartialC<{
|
|
6557
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
6558
|
+
}>]>;
|
|
6559
|
+
events: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6560
|
+
id: import("io-ts").StringC;
|
|
6561
|
+
cid: import("io-ts").StringC;
|
|
6562
|
+
oid: import("io-ts").StringC;
|
|
6563
|
+
resource: import("io-ts").StringC;
|
|
6564
|
+
action: import("io-ts").StringC;
|
|
6565
|
+
source: import("io-ts").UnionC<[import("io-ts").LiteralC<"api">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"webhook">]>;
|
|
6566
|
+
result: import("io-ts").StringC;
|
|
6567
|
+
}>, import("io-ts").PartialC<{
|
|
6568
|
+
aid: import("io-ts").StringC;
|
|
6569
|
+
resource_id: import("io-ts").StringC;
|
|
6570
|
+
error: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6571
|
+
message: import("io-ts").StringC;
|
|
6572
|
+
}>, import("io-ts").PartialC<{
|
|
6573
|
+
code: import("io-ts").NumberC;
|
|
6574
|
+
}>]>;
|
|
6575
|
+
metadata: import("io-ts").TypeC<{
|
|
6576
|
+
liveness: import("io-ts").BooleanC;
|
|
6577
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6578
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6579
|
+
}>;
|
|
6580
|
+
}>]>>;
|
|
6581
|
+
xid: import("io-ts").StringC;
|
|
6582
|
+
xref: import("io-ts").StringC;
|
|
6583
|
+
metadata: import("io-ts").TypeC<{
|
|
6584
|
+
liveness: import("io-ts").BooleanC;
|
|
6585
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6586
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6587
|
+
}>;
|
|
6588
|
+
}>;
|
|
6589
|
+
};
|
|
6590
|
+
readonly default: {
|
|
6591
|
+
readonly _tag: "JsonResponse";
|
|
6592
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6593
|
+
message: import("io-ts").StringC;
|
|
6594
|
+
}>, import("io-ts").PartialC<{
|
|
6595
|
+
code: import("io-ts").NumberC;
|
|
6596
|
+
}>]>;
|
|
6597
|
+
};
|
|
6598
|
+
};
|
|
6599
|
+
readonly parameters: readonly [{
|
|
6600
|
+
readonly _tag: "FormParameter";
|
|
6601
|
+
readonly explode: false;
|
|
6602
|
+
readonly in: "path";
|
|
6603
|
+
readonly name: "id";
|
|
6604
|
+
}];
|
|
6605
|
+
readonly requestDefaultHeaders: {
|
|
6606
|
+
readonly "Content-Type": "application/json";
|
|
6607
|
+
readonly Accept: "application/json";
|
|
6608
|
+
};
|
|
6609
|
+
readonly body: {
|
|
6610
|
+
readonly _tag: "JsonBody";
|
|
6611
|
+
};
|
|
6612
|
+
};
|
|
6613
|
+
readonly deleteSubscription: {
|
|
6614
|
+
readonly path: "/api/subscription/{id}";
|
|
6615
|
+
readonly method: "delete";
|
|
6616
|
+
readonly responses: {
|
|
6617
|
+
readonly "200": {
|
|
6618
|
+
readonly _tag: "JsonResponse";
|
|
6619
|
+
readonly decoder: import("io-ts").PartialC<{
|
|
6620
|
+
id: import("io-ts").StringC;
|
|
6621
|
+
cid: import("io-ts").StringC;
|
|
6622
|
+
oid: import("io-ts").StringC;
|
|
6623
|
+
aid: import("io-ts").StringC;
|
|
6624
|
+
billing: import("io-ts").StringC;
|
|
6625
|
+
billing_status: import("io-ts").StringC;
|
|
6626
|
+
mandate: import("io-ts").StringC;
|
|
6627
|
+
mandate_status: import("io-ts").StringC;
|
|
6628
|
+
authorisation_url: import("io-ts").StringC;
|
|
6629
|
+
interval: import("io-ts").UnionC<[import("io-ts").LiteralC<"monthly">, import("io-ts").LiteralC<"yearly">]>;
|
|
6630
|
+
day_of_month: import("io-ts").NumberC;
|
|
6631
|
+
amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6632
|
+
amount: import("io-ts").NumberC;
|
|
6633
|
+
}>, import("io-ts").PartialC<{
|
|
6634
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
6635
|
+
}>]>;
|
|
6636
|
+
events: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6637
|
+
id: import("io-ts").StringC;
|
|
6638
|
+
cid: import("io-ts").StringC;
|
|
6639
|
+
oid: import("io-ts").StringC;
|
|
6640
|
+
resource: import("io-ts").StringC;
|
|
6641
|
+
action: import("io-ts").StringC;
|
|
6642
|
+
source: import("io-ts").UnionC<[import("io-ts").LiteralC<"api">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"webhook">]>;
|
|
6643
|
+
result: import("io-ts").StringC;
|
|
6644
|
+
}>, import("io-ts").PartialC<{
|
|
6645
|
+
aid: import("io-ts").StringC;
|
|
6646
|
+
resource_id: import("io-ts").StringC;
|
|
6647
|
+
error: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6648
|
+
message: import("io-ts").StringC;
|
|
6649
|
+
}>, import("io-ts").PartialC<{
|
|
6650
|
+
code: import("io-ts").NumberC;
|
|
6651
|
+
}>]>;
|
|
6652
|
+
metadata: import("io-ts").TypeC<{
|
|
6653
|
+
liveness: import("io-ts").BooleanC;
|
|
6654
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6655
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6656
|
+
}>;
|
|
6657
|
+
}>]>>;
|
|
6658
|
+
xid: import("io-ts").StringC;
|
|
6659
|
+
xref: import("io-ts").StringC;
|
|
6660
|
+
metadata: import("io-ts").TypeC<{
|
|
6661
|
+
liveness: import("io-ts").BooleanC;
|
|
6662
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6663
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
6664
|
+
}>;
|
|
6665
|
+
}>;
|
|
6666
|
+
};
|
|
6667
|
+
readonly default: {
|
|
6668
|
+
readonly _tag: "JsonResponse";
|
|
6669
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6670
|
+
message: import("io-ts").StringC;
|
|
6671
|
+
}>, import("io-ts").PartialC<{
|
|
6672
|
+
code: import("io-ts").NumberC;
|
|
6673
|
+
}>]>;
|
|
6674
|
+
};
|
|
6675
|
+
};
|
|
6676
|
+
readonly parameters: readonly [{
|
|
6677
|
+
readonly _tag: "FormParameter";
|
|
6678
|
+
readonly explode: false;
|
|
6679
|
+
readonly in: "path";
|
|
6680
|
+
readonly name: "id";
|
|
6681
|
+
}];
|
|
6682
|
+
readonly requestDefaultHeaders: {
|
|
6683
|
+
readonly Accept: "application/json";
|
|
6684
|
+
};
|
|
6685
|
+
};
|
|
6312
6686
|
};
|
|
6313
6687
|
export interface OperationRequestFunctionMap {
|
|
6314
6688
|
me: MeRequestFunction;
|
|
@@ -6362,6 +6736,11 @@ export interface OperationRequestFunctionMap {
|
|
|
6362
6736
|
deleteDocument: DeleteDocumentRequestFunction;
|
|
6363
6737
|
providerWebhook: ProviderWebhookRequestFunction;
|
|
6364
6738
|
runner: RunnerRequestFunction;
|
|
6739
|
+
getSubscriptions: GetSubscriptionsRequestFunction;
|
|
6740
|
+
postSubscription: PostSubscriptionRequestFunction;
|
|
6741
|
+
getSubscription: GetSubscriptionRequestFunction;
|
|
6742
|
+
putSubscription: PutSubscriptionRequestFunction;
|
|
6743
|
+
deleteSubscription: DeleteSubscriptionRequestFunction;
|
|
6365
6744
|
}
|
|
6366
6745
|
export declare const requestFunctionsBuilder: (requestAdapter: HttpRequestAdapter) => OperationRequestFunctionMap;
|
|
6367
6746
|
export declare const authUserServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
@@ -6439,4 +6818,11 @@ export declare const webhookServiceBuilder: (requestFunctions: OperationRequestF
|
|
|
6439
6818
|
export declare const taskServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6440
6819
|
runner: RunnerRequestFunction;
|
|
6441
6820
|
};
|
|
6821
|
+
export declare const subscriptionServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6822
|
+
getSubscriptions: GetSubscriptionsRequestFunction;
|
|
6823
|
+
postSubscription: PostSubscriptionRequestFunction;
|
|
6824
|
+
getSubscription: GetSubscriptionRequestFunction;
|
|
6825
|
+
putSubscription: PutSubscriptionRequestFunction;
|
|
6826
|
+
deleteSubscription: DeleteSubscriptionRequestFunction;
|
|
6827
|
+
};
|
|
6442
6828
|
//# sourceMappingURL=index.d.ts.map
|