@kanda-libs/ks-schema 1.0.153 → 1.0.155
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/AvailableRate.d.ts +3 -0
- package/dist/components/schemas/AvailableRate.d.ts.map +1 -1
- package/dist/components/schemas/AvailableRate.js +2 -0
- package/dist/components/schemas/Company.d.ts +1 -0
- package/dist/components/schemas/Company.d.ts.map +1 -1
- package/dist/components/schemas/Credit.d.ts +2 -1
- package/dist/components/schemas/Credit.d.ts.map +1 -1
- package/dist/components/schemas/Credit.js +2 -1
- package/dist/components/schemas/{Identity.d.ts → DirectorVerification.d.ts} +3 -3
- package/dist/components/schemas/DirectorVerification.d.ts.map +1 -0
- package/dist/components/schemas/{Identity.js → DirectorVerification.js} +2 -2
- package/dist/components/schemas/Entity.d.ts +1 -0
- package/dist/components/schemas/Entity.d.ts.map +1 -1
- package/dist/components/schemas/Event.d.ts +1 -0
- package/dist/components/schemas/Event.d.ts.map +1 -1
- package/dist/components/schemas/FinanceProvider.d.ts +4 -0
- package/dist/components/schemas/FinanceProvider.d.ts.map +1 -0
- package/dist/components/schemas/FinanceProvider.js +31 -0
- package/dist/components/schemas/index.d.ts +2 -1
- package/dist/components/schemas/index.d.ts.map +1 -1
- package/dist/components/schemas/index.js +2 -1
- package/dist/operations/approveCompany.d.ts +1 -0
- package/dist/operations/approveCompany.d.ts.map +1 -1
- package/dist/operations/declineCompany.d.ts +1 -0
- package/dist/operations/declineCompany.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/directorCompany.d.ts +1 -0
- package/dist/operations/directorCompany.d.ts.map +1 -1
- 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/{getCompanyIdentity.d.ts → getCompanyDirectorVerification.d.ts} +6 -6
- package/dist/operations/getCompanyDirectorVerification.d.ts.map +1 -0
- package/dist/operations/{getCompanyIdentity.js → getCompanyDirectorVerification.js} +3 -3
- package/dist/operations/index.d.ts +18 -10
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +8 -8
- package/dist/operations/postCompany.d.ts +1 -0
- package/dist/operations/postCompany.d.ts.map +1 -1
- package/dist/operations/{postCompanyIdentity.d.ts → postCompanyDirectorVerification.d.ts} +7 -7
- package/dist/operations/postCompanyDirectorVerification.d.ts.map +1 -0
- package/dist/operations/{postCompanyIdentity.js → postCompanyDirectorVerification.js} +3 -3
- package/dist/operations/putCompany.d.ts +1 -0
- package/dist/operations/putCompany.d.ts.map +1 -1
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +5529 -5477
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +11955 -11895
- package/package.json +1 -1
- package/schema.yaml +20 -10
- package/dist/components/schemas/Identity.d.ts.map +0 -1
- package/dist/operations/getCompanyIdentity.d.ts.map +0 -1
- package/dist/operations/postCompanyIdentity.d.ts.map +0 -1
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import * as t from "io-ts";
|
|
2
|
+
import { FinanceProvider } from "./FinanceProvider";
|
|
2
3
|
export declare const AvailableRate: t.TypeC<{
|
|
3
4
|
name: t.StringC;
|
|
4
5
|
fee: t.NumberC;
|
|
5
6
|
enabled: t.BooleanC;
|
|
7
|
+
provider: t.UnionC<[t.LiteralC<"omni">, t.LiteralC<"propensio">]>;
|
|
6
8
|
}>;
|
|
7
9
|
export interface AvailableRate {
|
|
8
10
|
name: string;
|
|
9
11
|
fee: number;
|
|
10
12
|
enabled: boolean;
|
|
13
|
+
provider: FinanceProvider;
|
|
11
14
|
}
|
|
12
15
|
//# sourceMappingURL=AvailableRate.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AvailableRate.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/AvailableRate.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"AvailableRate.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/AvailableRate.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,eAAO,MAAM,aAAa;;;;;EAKxB,CAAC;AAEH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,eAAe,CAAC;CAC3B"}
|
|
@@ -25,8 +25,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.AvailableRate = void 0;
|
|
27
27
|
const t = __importStar(require("io-ts"));
|
|
28
|
+
const FinanceProvider_1 = require("./FinanceProvider");
|
|
28
29
|
exports.AvailableRate = t.type({
|
|
29
30
|
name: t.string,
|
|
30
31
|
fee: t.number,
|
|
31
32
|
enabled: t.boolean,
|
|
33
|
+
provider: FinanceProvider_1.FinanceProvider,
|
|
32
34
|
});
|
|
@@ -149,6 +149,7 @@ export declare const Company: t.IntersectionC<[t.TypeC<{
|
|
|
149
149
|
name: t.StringC;
|
|
150
150
|
fee: t.NumberC;
|
|
151
151
|
enabled: t.BooleanC;
|
|
152
|
+
provider: t.UnionC<[t.LiteralC<"omni">, t.LiteralC<"propensio">]>;
|
|
152
153
|
}>>;
|
|
153
154
|
quote_preference: t.UnionC<[t.LiteralC<"no_preference">, t.LiteralC<"kanda">, t.LiteralC<"custom">]>;
|
|
154
155
|
skip_deposit: t.UnionC<[t.LiteralC<"Yes">, t.LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Company.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Company.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"Company.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Company.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqDlB,CAAC;AAEH,MAAM,WAAW,OAAO;IACtB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACvB,KAAK,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;IACxB,YAAY,CAAC,EAAE,WAAW,CAAC;IAC3B,kBAAkB,CAAC,EAAE,gBAAgB,CAAC;IACtC,YAAY,EAAE,iBAAiB,GAAG,aAAa,CAAC;IAChD,oBAAoB,CAAC,EAAE,kBAAkB,CAAC;IAC1C,gBAAgB,CAAC,EAAE,cAAc,CAAC;IAClC,eAAe,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;IACvC,gBAAgB,CAAC,EAAE,eAAe,GAAG,OAAO,GAAG,QAAQ,CAAC;IACxD,YAAY,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;IAC5B,SAAS,CAAC,EACN,YAAY,GACZ,YAAY,GACZ,wBAAwB,GACxB,WAAW,GACX,oBAAoB,GACpB,iBAAiB,GACjB,UAAU,GACV,UAAU,CAAC;IACf,OAAO,CAAC,EACJ,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,GACV,YAAY,GACZ,4BAA4B,GAC5B,4BAA4B,GAC5B,4BAA4B,GAC5B,WAAW,GACX,WAAW,CAAC;IAChB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,QAAQ,CAAC;IACxB,YAAY,CAAC,EAAE,WAAW,CAAC;IAC3B,YAAY,CAAC,EAAE,WAAW,CAAC;IAC3B,QAAQ,CAAC,EAAE,QAAQ,CAAC;CACrB"}
|
|
@@ -5,6 +5,7 @@ import { CustomerDetails } from "./CustomerDetails";
|
|
|
5
5
|
import { Document } from "./Document";
|
|
6
6
|
import { EmploymentDetails } from "./EmploymentDetails";
|
|
7
7
|
import { FinanceDetails } from "./FinanceDetails";
|
|
8
|
+
import { FinanceProvider } from "./FinanceProvider";
|
|
8
9
|
import { Metadata } from "./Metadata";
|
|
9
10
|
import { Money } from "./Money";
|
|
10
11
|
import { Signature } from "./Signature";
|
|
@@ -380,7 +381,7 @@ export interface Credit {
|
|
|
380
381
|
aid?: string;
|
|
381
382
|
kid?: string;
|
|
382
383
|
kind?: "job" | "charge";
|
|
383
|
-
provider?:
|
|
384
|
+
provider?: FinanceProvider;
|
|
384
385
|
xid?: string;
|
|
385
386
|
xref?: string;
|
|
386
387
|
state?: "accepted" | "declined" | "referred" | "action_lender" | "action_customer" | "pending" | "finished" | "paid_out" | "cancelled";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Credit.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Credit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqCjB,CAAC;AAEH,MAAM,WAAW,MAAM;IACrB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC;IACxB,QAAQ,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"Credit.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Credit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqCjB,CAAC;AAEH,MAAM,WAAW,MAAM;IACrB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC;IACxB,QAAQ,CAAC,EAAE,eAAe,CAAC;IAC3B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EACF,UAAU,GACV,UAAU,GACV,UAAU,GACV,eAAe,GACf,iBAAiB,GACjB,SAAS,GACT,UAAU,GACV,UAAU,GACV,WAAW,CAAC;IAChB,MAAM,CAAC,EAAE,KAAK,CAAC;IACf,aAAa,CAAC,EAAE,KAAK,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,WAAW,CAAC;IAC1B,gBAAgB,EAAE,eAAe,CAAC;IAClC,kBAAkB,EAAE,iBAAiB,CAAC;IACtC,6BAA6B,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACzD,eAAe,CAAC,EAAE,cAAc,CAAC;IACjC,gBAAgB,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC3C,gBAAgB,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;IACnC,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,QAAQ,CAAC,EAAE,QAAQ,CAAC;CACrB"}
|
|
@@ -31,6 +31,7 @@ const CustomerDetails_1 = require("./CustomerDetails");
|
|
|
31
31
|
const Document_1 = require("./Document");
|
|
32
32
|
const EmploymentDetails_1 = require("./EmploymentDetails");
|
|
33
33
|
const FinanceDetails_1 = require("./FinanceDetails");
|
|
34
|
+
const FinanceProvider_1 = require("./FinanceProvider");
|
|
34
35
|
const Metadata_1 = require("./Metadata");
|
|
35
36
|
const Money_1 = require("./Money");
|
|
36
37
|
const Signature_1 = require("./Signature");
|
|
@@ -48,7 +49,7 @@ exports.Credit = t.intersection([
|
|
|
48
49
|
aid: t.string,
|
|
49
50
|
kid: t.string,
|
|
50
51
|
kind: t.union([t.literal("job"), t.literal("charge")]),
|
|
51
|
-
provider:
|
|
52
|
+
provider: FinanceProvider_1.FinanceProvider,
|
|
52
53
|
xid: t.string,
|
|
53
54
|
xref: t.string,
|
|
54
55
|
state: t.union([
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as t from "io-ts";
|
|
2
2
|
import { Address } from "./Address";
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const DirectorVerification: t.IntersectionC<[t.TypeC<{
|
|
4
4
|
first_name: t.StringC;
|
|
5
5
|
last_name: t.StringC;
|
|
6
6
|
email: t.StringC;
|
|
@@ -20,7 +20,7 @@ export declare const Identity: t.IntersectionC<[t.TypeC<{
|
|
|
20
20
|
}>, t.PartialC<{
|
|
21
21
|
date_of_birth: import("io-ts-types/DateFromISOString").DateFromISOStringC;
|
|
22
22
|
}>]>;
|
|
23
|
-
export interface
|
|
23
|
+
export interface DirectorVerification {
|
|
24
24
|
first_name: string;
|
|
25
25
|
last_name: string;
|
|
26
26
|
email: string;
|
|
@@ -28,4 +28,4 @@ export interface Identity {
|
|
|
28
28
|
date_of_birth?: Date;
|
|
29
29
|
home_address: Address;
|
|
30
30
|
}
|
|
31
|
-
//# sourceMappingURL=
|
|
31
|
+
//# sourceMappingURL=DirectorVerification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DirectorVerification.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/DirectorVerification.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;IAW/B,CAAC;AAEH,MAAM,WAAW,oBAAoB;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB,YAAY,EAAE,OAAO,CAAC;CACvB"}
|
|
@@ -23,11 +23,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
26
|
+
exports.DirectorVerification = void 0;
|
|
27
27
|
const t = __importStar(require("io-ts"));
|
|
28
28
|
const DateFromISOString_1 = require("io-ts-types/DateFromISOString");
|
|
29
29
|
const Address_1 = require("./Address");
|
|
30
|
-
exports.
|
|
30
|
+
exports.DirectorVerification = t.intersection([
|
|
31
31
|
t.type({
|
|
32
32
|
first_name: t.string,
|
|
33
33
|
last_name: t.string,
|
|
@@ -146,6 +146,7 @@ export declare const Entity: t.PartialC<{
|
|
|
146
146
|
name: t.StringC;
|
|
147
147
|
fee: t.NumberC;
|
|
148
148
|
enabled: t.BooleanC;
|
|
149
|
+
provider: t.UnionC<[t.LiteralC<"omni">, t.LiteralC<"propensio">]>;
|
|
149
150
|
}>>;
|
|
150
151
|
quote_preference: t.UnionC<[t.LiteralC<"no_preference">, t.LiteralC<"kanda">, t.LiteralC<"custom">]>;
|
|
151
152
|
skip_deposit: t.UnionC<[t.LiteralC<"Yes">, t.LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Entity.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Entity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"Entity.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Entity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOjB,CAAC;AAEH,MAAM,WAAW,MAAM;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,YAAY,CAAC;CAC7B"}
|
|
@@ -153,6 +153,7 @@ export declare const Event: t.IntersectionC<[t.TypeC<{
|
|
|
153
153
|
name: t.StringC;
|
|
154
154
|
fee: t.NumberC;
|
|
155
155
|
enabled: t.BooleanC;
|
|
156
|
+
provider: t.UnionC<[t.LiteralC<"omni">, t.LiteralC<"propensio">]>;
|
|
156
157
|
}>>;
|
|
157
158
|
quote_preference: t.UnionC<[t.LiteralC<"no_preference">, t.LiteralC<"kanda">, t.LiteralC<"custom">]>;
|
|
158
159
|
skip_deposit: t.UnionC<[t.LiteralC<"Yes">, t.LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Event.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Event.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"Event.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Event.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoBhB,CAAC;AAEH,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,KAAK,GAAG,OAAO,GAAG,SAAS,CAAC;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,QAAQ,CAAC,EAAE,QAAQ,CAAC;CACrB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FinanceProvider.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/FinanceProvider.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,eAAO,MAAM,eAAe,yDAG1B,CAAC;AAEH,oBAAY,eAAe,GAAG,MAAM,GAAG,WAAW,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
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.FinanceProvider = void 0;
|
|
27
|
+
const t = __importStar(require("io-ts"));
|
|
28
|
+
exports.FinanceProvider = t.union([
|
|
29
|
+
t.literal("omni"),
|
|
30
|
+
t.literal("propensio"),
|
|
31
|
+
]);
|
|
@@ -13,6 +13,7 @@ export * from "./Customer";
|
|
|
13
13
|
export * from "./CustomerDetails";
|
|
14
14
|
export * from "./CustomerOptions";
|
|
15
15
|
export * from "./DirectorInfo";
|
|
16
|
+
export * from "./DirectorVerification";
|
|
16
17
|
export * from "./Document";
|
|
17
18
|
export * from "./EmployedDetails";
|
|
18
19
|
export * from "./EmploymentDetails";
|
|
@@ -21,8 +22,8 @@ export * from "./Error";
|
|
|
21
22
|
export * from "./Event";
|
|
22
23
|
export * from "./Expenditure";
|
|
23
24
|
export * from "./FinanceDetails";
|
|
25
|
+
export * from "./FinanceProvider";
|
|
24
26
|
export * from "./FinanceStatus";
|
|
25
|
-
export * from "./Identity";
|
|
26
27
|
export * from "./Income";
|
|
27
28
|
export * from "./InfoAuth";
|
|
28
29
|
export * from "./InfoCompany";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,uBAAuB,CAAC;AACtC,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
|
|
@@ -29,6 +29,7 @@ __exportStar(require("./Customer"), exports);
|
|
|
29
29
|
__exportStar(require("./CustomerDetails"), exports);
|
|
30
30
|
__exportStar(require("./CustomerOptions"), exports);
|
|
31
31
|
__exportStar(require("./DirectorInfo"), exports);
|
|
32
|
+
__exportStar(require("./DirectorVerification"), exports);
|
|
32
33
|
__exportStar(require("./Document"), exports);
|
|
33
34
|
__exportStar(require("./EmployedDetails"), exports);
|
|
34
35
|
__exportStar(require("./EmploymentDetails"), exports);
|
|
@@ -37,8 +38,8 @@ __exportStar(require("./Error"), exports);
|
|
|
37
38
|
__exportStar(require("./Event"), exports);
|
|
38
39
|
__exportStar(require("./Expenditure"), exports);
|
|
39
40
|
__exportStar(require("./FinanceDetails"), exports);
|
|
41
|
+
__exportStar(require("./FinanceProvider"), exports);
|
|
40
42
|
__exportStar(require("./FinanceStatus"), exports);
|
|
41
|
-
__exportStar(require("./Identity"), exports);
|
|
42
43
|
__exportStar(require("./Income"), exports);
|
|
43
44
|
__exportStar(require("./InfoAuth"), exports);
|
|
44
45
|
__exportStar(require("./InfoCompany"), exports);
|
|
@@ -149,6 +149,7 @@ export declare const approveCompanyOperation: {
|
|
|
149
149
|
name: import("io-ts").StringC;
|
|
150
150
|
fee: import("io-ts").NumberC;
|
|
151
151
|
enabled: import("io-ts").BooleanC;
|
|
152
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
152
153
|
}>>;
|
|
153
154
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
154
155
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"approveCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/approveCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,+BAA+B,GAAG;IAC5C,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"approveCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/approveCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,+BAA+B,GAAG;IAC5C,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgB1B,CAAC;AAEX,oBAAY,6BAA6B,GAAG,eAAe,CACzD;IAAE,MAAM,EAAE,+BAA+B,CAAA;CAAE,EAC3C,OAAO,CAAC,OAAO,CAChB,CAAC"}
|
|
@@ -150,6 +150,7 @@ export declare const declineCompanyOperation: {
|
|
|
150
150
|
name: import("io-ts").StringC;
|
|
151
151
|
fee: import("io-ts").NumberC;
|
|
152
152
|
enabled: import("io-ts").BooleanC;
|
|
153
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
153
154
|
}>>;
|
|
154
155
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
155
156
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"declineCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/declineCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,+BAA+B,GAAG;IAC5C,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EACF,sCAAsC,GACtC,qCAAqC,GACrC,oCAAoC,GACpC,0CAA0C,GAC1C,2CAA2C,GAC3C,2CAA2C,GAC3C,wCAAwC,GACxC,4CAA4C,GAC5C,uCAAuC,CAAC;CAC7C,CAAC;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"declineCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/declineCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,+BAA+B,GAAG;IAC5C,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EACF,sCAAsC,GACtC,qCAAqC,GACrC,oCAAoC,GACpC,0CAA0C,GAC1C,2CAA2C,GAC3C,2CAA2C,GAC3C,wCAAwC,GACxC,4CAA4C,GAC5C,uCAAuC,CAAC;CAC7C,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsB1B,CAAC;AAEX,oBAAY,6BAA6B,GAAG,eAAe,CACzD;IAAE,MAAM,EAAE,+BAA+B,CAAA;CAAE,EAC3C,OAAO,CAAC,OAAO,CAChB,CAAC"}
|
|
@@ -149,6 +149,7 @@ export declare const deleteCompanyOperation: {
|
|
|
149
149
|
name: import("io-ts").StringC;
|
|
150
150
|
fee: import("io-ts").NumberC;
|
|
151
151
|
enabled: import("io-ts").BooleanC;
|
|
152
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
152
153
|
}>>;
|
|
153
154
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
154
155
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deleteCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/deleteCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,8BAA8B,GAAG;IAC3C,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"deleteCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/deleteCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,8BAA8B,GAAG;IAC3C,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBzB,CAAC;AAEX,oBAAY,4BAA4B,GAAG,eAAe,CACxD;IAAE,MAAM,EAAE,8BAA8B,CAAA;CAAE,EAC1C,OAAO,CAAC,OAAO,CAChB,CAAC"}
|
|
@@ -149,6 +149,7 @@ export declare const directorCompanyOperation: {
|
|
|
149
149
|
name: import("io-ts").StringC;
|
|
150
150
|
fee: import("io-ts").NumberC;
|
|
151
151
|
enabled: import("io-ts").BooleanC;
|
|
152
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
152
153
|
}>>;
|
|
153
154
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
154
155
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"directorCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/directorCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,gCAAgC,GAAG;IAC7C,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"directorCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/directorCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,gCAAgC,GAAG;IAC7C,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgB3B,CAAC;AAEX,oBAAY,8BAA8B,GAAG,eAAe,CAC1D;IAAE,MAAM,EAAE,gCAAgC,CAAA;CAAE,EAC5C,OAAO,CAAC,OAAO,CAChB,CAAC"}
|
|
@@ -147,6 +147,7 @@ export declare const getCompaniesOperation: {
|
|
|
147
147
|
name: t.StringC;
|
|
148
148
|
fee: t.NumberC;
|
|
149
149
|
enabled: t.BooleanC;
|
|
150
|
+
provider: t.UnionC<[t.LiteralC<"omni">, t.LiteralC<"propensio">]>;
|
|
150
151
|
}>>;
|
|
151
152
|
quote_preference: t.UnionC<[t.LiteralC<"no_preference">, t.LiteralC<"kanda">, t.LiteralC<"custom">]>;
|
|
152
153
|
skip_deposit: t.UnionC<[t.LiteralC<"Yes">, t.LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCompanies.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCompanies.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,qBAAqB
|
|
1
|
+
{"version":3,"file":"getCompanies.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCompanies.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,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASxB,CAAC;AAEX,oBAAY,2BAA2B,GAAG,eAAe,CACvD,SAAS,EACT,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CACvB,CAAC"}
|
|
@@ -149,6 +149,7 @@ export declare const getCompanyOperation: {
|
|
|
149
149
|
name: import("io-ts").StringC;
|
|
150
150
|
fee: import("io-ts").NumberC;
|
|
151
151
|
enabled: import("io-ts").BooleanC;
|
|
152
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
152
153
|
}>>;
|
|
153
154
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
154
155
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,2BAA2B,GAAG;IACxC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"getCompany.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCompany.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,2BAA2B,GAAG;IACxC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBtB,CAAC;AAEX,oBAAY,yBAAyB,GAAG,eAAe,CACrD;IAAE,MAAM,EAAE,2BAA2B,CAAA;CAAE,EACvC,OAAO,CAAC,OAAO,CAChB,CAAC"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { RequestFunction } from "@openapi-io-ts/runtime";
|
|
2
2
|
import * as schemas from "../components/schemas";
|
|
3
|
-
export declare type
|
|
3
|
+
export declare type GetCompanyDirectorVerificationRequestParameters = {
|
|
4
4
|
id: string;
|
|
5
5
|
email?: string;
|
|
6
6
|
};
|
|
7
|
-
export declare const
|
|
8
|
-
readonly path: "/api/company/{id}/
|
|
7
|
+
export declare const getCompanyDirectorVerificationOperation: {
|
|
8
|
+
readonly path: "/api/company/{id}/director-verification";
|
|
9
9
|
readonly method: "get";
|
|
10
10
|
readonly responses: {
|
|
11
11
|
readonly "200": {
|
|
@@ -115,7 +115,7 @@ export declare const getCompanyIdentityOperation: {
|
|
|
115
115
|
readonly Accept: "application/json";
|
|
116
116
|
};
|
|
117
117
|
};
|
|
118
|
-
export declare type
|
|
119
|
-
params:
|
|
118
|
+
export declare type GetCompanyDirectorVerificationRequestFunction = RequestFunction<{
|
|
119
|
+
params: GetCompanyDirectorVerificationRequestParameters;
|
|
120
120
|
}, schemas.InfoCompany>;
|
|
121
|
-
//# sourceMappingURL=
|
|
121
|
+
//# sourceMappingURL=getCompanyDirectorVerification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCompanyDirectorVerification.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCompanyDirectorVerification.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,+CAA+C,GAAG;IAC5D,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsB1C,CAAC;AAEX,oBAAY,6CAA6C,GAAG,eAAe,CACzE;IAAE,MAAM,EAAE,+CAA+C,CAAA;CAAE,EAC3D,OAAO,CAAC,WAAW,CACpB,CAAC"}
|
|
@@ -23,10 +23,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
26
|
+
exports.getCompanyDirectorVerificationOperation = void 0;
|
|
27
27
|
const schemas = __importStar(require("../components/schemas"));
|
|
28
|
-
exports.
|
|
29
|
-
path: "/api/company/{id}/
|
|
28
|
+
exports.getCompanyDirectorVerificationOperation = {
|
|
29
|
+
path: "/api/company/{id}/director-verification",
|
|
30
30
|
method: "get",
|
|
31
31
|
responses: {
|
|
32
32
|
"200": { _tag: "JsonResponse", decoder: schemas.InfoCompany },
|
|
@@ -17,7 +17,7 @@ import { DeleteSubscriptionRequestFunction } from "./deleteSubscription";
|
|
|
17
17
|
import { DirectorCompanyRequestFunction } from "./directorCompany";
|
|
18
18
|
import { GetCompaniesRequestFunction } from "./getCompanies";
|
|
19
19
|
import { GetCompanyRequestFunction } from "./getCompany";
|
|
20
|
-
import {
|
|
20
|
+
import { GetCompanyDirectorVerificationRequestFunction } from "./getCompanyDirectorVerification";
|
|
21
21
|
import { GetCreditRequestFunction } from "./getCredit";
|
|
22
22
|
import { GetCreditsRequestFunction } from "./getCredits";
|
|
23
23
|
import { GetDocumentRequestFunction } from "./getDocument";
|
|
@@ -46,7 +46,7 @@ import { PayJobRequestFunction } from "./payJob";
|
|
|
46
46
|
import { PayoutJobRequestFunction } from "./payoutJob";
|
|
47
47
|
import { PendingSubscriptionRequestFunction } from "./pendingSubscription";
|
|
48
48
|
import { PostCompanyRequestFunction } from "./postCompany";
|
|
49
|
-
import {
|
|
49
|
+
import { PostCompanyDirectorVerificationRequestFunction } from "./postCompanyDirectorVerification";
|
|
50
50
|
import { PostCreditRequestFunction } from "./postCredit";
|
|
51
51
|
import { PostDocumentRequestFunction } from "./postDocument";
|
|
52
52
|
import { PostJobRequestFunction } from "./postJob";
|
|
@@ -729,6 +729,7 @@ export declare const operations: {
|
|
|
729
729
|
name: import("io-ts").StringC;
|
|
730
730
|
fee: import("io-ts").NumberC;
|
|
731
731
|
enabled: import("io-ts").BooleanC;
|
|
732
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
732
733
|
}>>;
|
|
733
734
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
734
735
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -942,6 +943,7 @@ export declare const operations: {
|
|
|
942
943
|
name: import("io-ts").StringC;
|
|
943
944
|
fee: import("io-ts").NumberC;
|
|
944
945
|
enabled: import("io-ts").BooleanC;
|
|
946
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
945
947
|
}>>;
|
|
946
948
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
947
949
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1159,6 +1161,7 @@ export declare const operations: {
|
|
|
1159
1161
|
name: import("io-ts").StringC;
|
|
1160
1162
|
fee: import("io-ts").NumberC;
|
|
1161
1163
|
enabled: import("io-ts").BooleanC;
|
|
1164
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
1162
1165
|
}>>;
|
|
1163
1166
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
1164
1167
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1377,6 +1380,7 @@ export declare const operations: {
|
|
|
1377
1380
|
name: import("io-ts").StringC;
|
|
1378
1381
|
fee: import("io-ts").NumberC;
|
|
1379
1382
|
enabled: import("io-ts").BooleanC;
|
|
1383
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
1380
1384
|
}>>;
|
|
1381
1385
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
1382
1386
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1599,6 +1603,7 @@ export declare const operations: {
|
|
|
1599
1603
|
name: import("io-ts").StringC;
|
|
1600
1604
|
fee: import("io-ts").NumberC;
|
|
1601
1605
|
enabled: import("io-ts").BooleanC;
|
|
1606
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
1602
1607
|
}>>;
|
|
1603
1608
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
1604
1609
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -1671,8 +1676,8 @@ export declare const operations: {
|
|
|
1671
1676
|
readonly Accept: "application/json";
|
|
1672
1677
|
};
|
|
1673
1678
|
};
|
|
1674
|
-
readonly
|
|
1675
|
-
readonly path: "/api/company/{id}/
|
|
1679
|
+
readonly getCompanyDirectorVerification: {
|
|
1680
|
+
readonly path: "/api/company/{id}/director-verification";
|
|
1676
1681
|
readonly method: "get";
|
|
1677
1682
|
readonly responses: {
|
|
1678
1683
|
readonly "200": {
|
|
@@ -1782,8 +1787,8 @@ export declare const operations: {
|
|
|
1782
1787
|
readonly Accept: "application/json";
|
|
1783
1788
|
};
|
|
1784
1789
|
};
|
|
1785
|
-
readonly
|
|
1786
|
-
readonly path: "/api/company/{id}/
|
|
1790
|
+
readonly postCompanyDirectorVerification: {
|
|
1791
|
+
readonly path: "/api/company/{id}/director-verification";
|
|
1787
1792
|
readonly method: "post";
|
|
1788
1793
|
readonly responses: {
|
|
1789
1794
|
readonly "200": {
|
|
@@ -2043,6 +2048,7 @@ export declare const operations: {
|
|
|
2043
2048
|
name: import("io-ts").StringC;
|
|
2044
2049
|
fee: import("io-ts").NumberC;
|
|
2045
2050
|
enabled: import("io-ts").BooleanC;
|
|
2051
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
2046
2052
|
}>>;
|
|
2047
2053
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
2048
2054
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -2261,6 +2267,7 @@ export declare const operations: {
|
|
|
2261
2267
|
name: import("io-ts").StringC;
|
|
2262
2268
|
fee: import("io-ts").NumberC;
|
|
2263
2269
|
enabled: import("io-ts").BooleanC;
|
|
2270
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
2264
2271
|
}>>;
|
|
2265
2272
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
2266
2273
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -2479,6 +2486,7 @@ export declare const operations: {
|
|
|
2479
2486
|
name: import("io-ts").StringC;
|
|
2480
2487
|
fee: import("io-ts").NumberC;
|
|
2481
2488
|
enabled: import("io-ts").BooleanC;
|
|
2489
|
+
provider: import("io-ts").UnionC<[import("io-ts").LiteralC<"omni">, import("io-ts").LiteralC<"propensio">]>;
|
|
2482
2490
|
}>>;
|
|
2483
2491
|
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
2484
2492
|
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
@@ -10179,8 +10187,8 @@ export interface OperationRequestFunctionMap {
|
|
|
10179
10187
|
getCompany: GetCompanyRequestFunction;
|
|
10180
10188
|
putCompany: PutCompanyRequestFunction;
|
|
10181
10189
|
deleteCompany: DeleteCompanyRequestFunction;
|
|
10182
|
-
|
|
10183
|
-
|
|
10190
|
+
getCompanyDirectorVerification: GetCompanyDirectorVerificationRequestFunction;
|
|
10191
|
+
postCompanyDirectorVerification: PostCompanyDirectorVerificationRequestFunction;
|
|
10184
10192
|
directorCompany: DirectorCompanyRequestFunction;
|
|
10185
10193
|
approveCompany: ApproveCompanyRequestFunction;
|
|
10186
10194
|
declineCompany: DeclineCompanyRequestFunction;
|
|
@@ -10267,8 +10275,8 @@ export declare const companyServiceBuilder: (requestFunctions: OperationRequestF
|
|
|
10267
10275
|
getCompany: GetCompanyRequestFunction;
|
|
10268
10276
|
putCompany: PutCompanyRequestFunction;
|
|
10269
10277
|
deleteCompany: DeleteCompanyRequestFunction;
|
|
10270
|
-
|
|
10271
|
-
|
|
10278
|
+
getCompanyDirectorVerification: GetCompanyDirectorVerificationRequestFunction;
|
|
10279
|
+
postCompanyDirectorVerification: PostCompanyDirectorVerificationRequestFunction;
|
|
10272
10280
|
directorCompany: DirectorCompanyRequestFunction;
|
|
10273
10281
|
approveCompany: ApproveCompanyRequestFunction;
|
|
10274
10282
|
declineCompany: DeclineCompanyRequestFunction;
|