@kanda-libs/ks-schema 1.0.98 → 1.0.100
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/InfoValidationEmail.d.ts +14 -0
- package/dist/components/schemas/InfoValidationEmail.d.ts.map +1 -0
- package/dist/components/schemas/InfoValidationEmail.js +37 -0
- package/dist/components/schemas/index.d.ts +1 -0
- package/dist/components/schemas/index.d.ts.map +1 -1
- package/dist/components/schemas/index.js +1 -0
- package/dist/operations/directorCompany.d.ts +191 -0
- package/dist/operations/directorCompany.d.ts.map +1 -0
- package/dist/operations/directorCompany.js +44 -0
- package/dist/operations/index.d.ts +222 -0
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +12 -1
- package/dist/operations/infoValidateEmail.d.ts +41 -0
- package/dist/operations/infoValidateEmail.d.ts.map +1 -0
- package/dist/operations/infoValidateEmail.js +44 -0
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +2138 -2109
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +4255 -4212
- package/package.json +1 -1
- package/schema.yaml +81 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as t from "io-ts";
|
|
2
|
+
export declare const InfoValidationEmail: t.PartialC<{
|
|
3
|
+
email: t.StringC;
|
|
4
|
+
verdict: t.UnionC<[t.LiteralC<"valid">, t.LiteralC<"risky">, t.LiteralC<"invalid">]>;
|
|
5
|
+
suggestion: t.StringC;
|
|
6
|
+
source: t.StringC;
|
|
7
|
+
}>;
|
|
8
|
+
export interface InfoValidationEmail {
|
|
9
|
+
email?: string;
|
|
10
|
+
verdict?: "valid" | "risky" | "invalid";
|
|
11
|
+
suggestion?: string;
|
|
12
|
+
source?: string;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=InfoValidationEmail.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InfoValidationEmail.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/InfoValidationEmail.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,eAAO,MAAM,mBAAmB;;;;;EAS9B,CAAC;AAEH,MAAM,WAAW,mBAAmB;IAClC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,SAAS,CAAC;IACxC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,37 @@
|
|
|
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.InfoValidationEmail = void 0;
|
|
27
|
+
const t = __importStar(require("io-ts"));
|
|
28
|
+
exports.InfoValidationEmail = t.partial({
|
|
29
|
+
email: t.string,
|
|
30
|
+
verdict: t.union([
|
|
31
|
+
t.literal("valid"),
|
|
32
|
+
t.literal("risky"),
|
|
33
|
+
t.literal("invalid"),
|
|
34
|
+
]),
|
|
35
|
+
suggestion: t.string,
|
|
36
|
+
source: t.string,
|
|
37
|
+
});
|
|
@@ -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,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,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,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,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,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,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,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,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,uBAAuB,CAAC;AACtC,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,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,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
|
|
@@ -37,6 +37,7 @@ __exportStar(require("./InfoAuth"), exports);
|
|
|
37
37
|
__exportStar(require("./InfoCompany"), exports);
|
|
38
38
|
__exportStar(require("./InfoIP"), exports);
|
|
39
39
|
__exportStar(require("./InfoMe"), exports);
|
|
40
|
+
__exportStar(require("./InfoValidationEmail"), exports);
|
|
40
41
|
__exportStar(require("./Job"), exports);
|
|
41
42
|
__exportStar(require("./JobCompanyInfo"), exports);
|
|
42
43
|
__exportStar(require("./JobItem"), exports);
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import type { RequestFunction } from "@openapi-io-ts/runtime";
|
|
2
|
+
import * as schemas from "../components/schemas";
|
|
3
|
+
export declare type DirectorCompanyRequestParameters = {
|
|
4
|
+
id: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const directorCompanyOperation: {
|
|
7
|
+
readonly path: "/api/company/{id}/director";
|
|
8
|
+
readonly method: "post";
|
|
9
|
+
readonly responses: {
|
|
10
|
+
readonly "200": {
|
|
11
|
+
readonly _tag: "JsonResponse";
|
|
12
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
13
|
+
company_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"limited_company">, import("io-ts").LiteralC<"sole_trader">]>;
|
|
14
|
+
}>, import("io-ts").PartialC<{
|
|
15
|
+
id: import("io-ts").StringC;
|
|
16
|
+
cid: import("io-ts").StringC;
|
|
17
|
+
oid: import("io-ts").StringC;
|
|
18
|
+
aid: import("io-ts").StringC;
|
|
19
|
+
emails: import("io-ts").ArrayC<import("io-ts").StringC>;
|
|
20
|
+
users: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
21
|
+
role: import("io-ts").UnionC<[import("io-ts").LiteralC<"company-admin">, import("io-ts").LiteralC<"company-manager">, import("io-ts").LiteralC<"company-staff">]>;
|
|
22
|
+
first_name: import("io-ts").StringC;
|
|
23
|
+
email: import("io-ts").StringC;
|
|
24
|
+
}>, import("io-ts").PartialC<{
|
|
25
|
+
director_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
26
|
+
home_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
27
|
+
line_1: import("io-ts").StringC;
|
|
28
|
+
city: import("io-ts").StringC;
|
|
29
|
+
country: import("io-ts").StringC;
|
|
30
|
+
postcode: import("io-ts").StringC;
|
|
31
|
+
}>, import("io-ts").PartialC<{
|
|
32
|
+
building_number: import("io-ts").StringC;
|
|
33
|
+
building_name: import("io-ts").StringC;
|
|
34
|
+
line_2: import("io-ts").StringC;
|
|
35
|
+
county: import("io-ts").StringC;
|
|
36
|
+
months_at_address: import("io-ts").NumberC;
|
|
37
|
+
}>]>;
|
|
38
|
+
}>, import("io-ts").PartialC<{
|
|
39
|
+
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
40
|
+
}>]>;
|
|
41
|
+
last_name: import("io-ts").StringC;
|
|
42
|
+
mobile: import("io-ts").StringC;
|
|
43
|
+
}>]>>;
|
|
44
|
+
company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
45
|
+
trade_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"gas_engineer">, import("io-ts").LiteralC<"electrician">, import("io-ts").LiteralC<"ev_charger_installer">, import("io-ts").LiteralC<"tiler">, import("io-ts").LiteralC<"kitchen_fitter">, import("io-ts").LiteralC<"floor_layer">, import("io-ts").LiteralC<"cctv_and_security_installations">, import("io-ts").LiteralC<"windows_and_doors">, import("io-ts").LiteralC<"landscaping">, import("io-ts").LiteralC<"air_conditioning">, import("io-ts").LiteralC<"bathrooms">, import("io-ts").LiteralC<"driveways_and_patios">, import("io-ts").LiteralC<"garage_doors">, import("io-ts").LiteralC<"fireplaces">, import("io-ts").LiteralC<"multi_trade">, import("io-ts").LiteralC<"other_trade">]>;
|
|
46
|
+
warranty_length: import("io-ts").NumberC;
|
|
47
|
+
average_monthly_jobs: import("io-ts").NumberC;
|
|
48
|
+
average_job_value: import("io-ts").NumberC;
|
|
49
|
+
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
50
|
+
}>, import("io-ts").PartialC<{
|
|
51
|
+
trade_body: import("io-ts").UnionC<[import("io-ts").LiteralC<"none">, import("io-ts").LiteralC<"niceic">, import("io-ts").LiteralC<"elecsa">, import("io-ts").LiteralC<"gas_safe">, import("io-ts").LiteralC<"napit">, import("io-ts").LiteralC<"other">]>;
|
|
52
|
+
trade_body_number: import("io-ts").StringC;
|
|
53
|
+
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
54
|
+
name: import("io-ts").StringC;
|
|
55
|
+
}>, import("io-ts").PartialC<{
|
|
56
|
+
id: import("io-ts").StringC;
|
|
57
|
+
cid: import("io-ts").StringC;
|
|
58
|
+
oid: import("io-ts").StringC;
|
|
59
|
+
aid: import("io-ts").StringC;
|
|
60
|
+
content: import("io-ts").StringC;
|
|
61
|
+
mimetype: import("io-ts").StringC;
|
|
62
|
+
metadata: import("io-ts").TypeC<{
|
|
63
|
+
liveness: import("io-ts").BooleanC;
|
|
64
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
65
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
66
|
+
}>;
|
|
67
|
+
}>]>;
|
|
68
|
+
}>]>;
|
|
69
|
+
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
70
|
+
company_name: import("io-ts").StringC;
|
|
71
|
+
company_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
72
|
+
line_1: import("io-ts").StringC;
|
|
73
|
+
city: import("io-ts").StringC;
|
|
74
|
+
country: import("io-ts").StringC;
|
|
75
|
+
postcode: import("io-ts").StringC;
|
|
76
|
+
}>, import("io-ts").PartialC<{
|
|
77
|
+
building_number: import("io-ts").StringC;
|
|
78
|
+
building_name: import("io-ts").StringC;
|
|
79
|
+
line_2: import("io-ts").StringC;
|
|
80
|
+
county: import("io-ts").StringC;
|
|
81
|
+
months_at_address: import("io-ts").NumberC;
|
|
82
|
+
}>]>;
|
|
83
|
+
company_number: import("io-ts").StringC;
|
|
84
|
+
}>, import("io-ts").PartialC<{
|
|
85
|
+
trading_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
86
|
+
line_1: import("io-ts").StringC;
|
|
87
|
+
city: import("io-ts").StringC;
|
|
88
|
+
country: import("io-ts").StringC;
|
|
89
|
+
postcode: import("io-ts").StringC;
|
|
90
|
+
}>, import("io-ts").PartialC<{
|
|
91
|
+
building_number: import("io-ts").StringC;
|
|
92
|
+
building_name: import("io-ts").StringC;
|
|
93
|
+
line_2: import("io-ts").StringC;
|
|
94
|
+
county: import("io-ts").StringC;
|
|
95
|
+
months_at_address: import("io-ts").NumberC;
|
|
96
|
+
}>]>;
|
|
97
|
+
vat_number: import("io-ts").StringC;
|
|
98
|
+
}>]>;
|
|
99
|
+
sole_trader_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
100
|
+
trading_name: import("io-ts").StringC;
|
|
101
|
+
trading_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
102
|
+
line_1: import("io-ts").StringC;
|
|
103
|
+
city: import("io-ts").StringC;
|
|
104
|
+
country: import("io-ts").StringC;
|
|
105
|
+
postcode: import("io-ts").StringC;
|
|
106
|
+
}>, import("io-ts").PartialC<{
|
|
107
|
+
building_number: import("io-ts").StringC;
|
|
108
|
+
building_name: import("io-ts").StringC;
|
|
109
|
+
line_2: import("io-ts").StringC;
|
|
110
|
+
county: import("io-ts").StringC;
|
|
111
|
+
months_at_address: import("io-ts").NumberC;
|
|
112
|
+
}>]>;
|
|
113
|
+
}>, import("io-ts").PartialC<{
|
|
114
|
+
national_insurance_number: import("io-ts").StringC;
|
|
115
|
+
}>]>;
|
|
116
|
+
available_rates: import("io-ts").ArrayC<import("io-ts").TypeC<{
|
|
117
|
+
name: import("io-ts").StringC;
|
|
118
|
+
fee: import("io-ts").NumberC;
|
|
119
|
+
enabled: import("io-ts").BooleanC;
|
|
120
|
+
}>>;
|
|
121
|
+
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
122
|
+
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
123
|
+
lifecycle: import("io-ts").UnionC<[import("io-ts").LiteralC<"registered">, import("io-ts").LiteralC<"subscribed">, import("io-ts").LiteralC<"director_info_provided">, import("io-ts").LiteralC<"onboarded">, import("io-ts").LiteralC<"completed_setup">, import("io-ts").LiteralC<"verified">]>;
|
|
124
|
+
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">]>;
|
|
125
|
+
company_logo: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
126
|
+
name: import("io-ts").StringC;
|
|
127
|
+
}>, import("io-ts").PartialC<{
|
|
128
|
+
id: import("io-ts").StringC;
|
|
129
|
+
cid: import("io-ts").StringC;
|
|
130
|
+
oid: import("io-ts").StringC;
|
|
131
|
+
aid: import("io-ts").StringC;
|
|
132
|
+
content: import("io-ts").StringC;
|
|
133
|
+
mimetype: import("io-ts").StringC;
|
|
134
|
+
metadata: import("io-ts").TypeC<{
|
|
135
|
+
liveness: import("io-ts").BooleanC;
|
|
136
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
137
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
138
|
+
}>;
|
|
139
|
+
}>]>;
|
|
140
|
+
bank_account: import("io-ts").TypeC<{
|
|
141
|
+
account_name: import("io-ts").StringC;
|
|
142
|
+
account_number: import("io-ts").StringC;
|
|
143
|
+
sort_code: import("io-ts").StringC;
|
|
144
|
+
}>;
|
|
145
|
+
contact_info: import("io-ts").PartialC<{
|
|
146
|
+
contact_name: import("io-ts").StringC;
|
|
147
|
+
contact_email: import("io-ts").StringC;
|
|
148
|
+
contact_phone: import("io-ts").StringC;
|
|
149
|
+
contact_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
150
|
+
line_1: import("io-ts").StringC;
|
|
151
|
+
city: import("io-ts").StringC;
|
|
152
|
+
country: import("io-ts").StringC;
|
|
153
|
+
postcode: import("io-ts").StringC;
|
|
154
|
+
}>, import("io-ts").PartialC<{
|
|
155
|
+
building_number: import("io-ts").StringC;
|
|
156
|
+
building_name: import("io-ts").StringC;
|
|
157
|
+
line_2: import("io-ts").StringC;
|
|
158
|
+
county: import("io-ts").StringC;
|
|
159
|
+
months_at_address: import("io-ts").NumberC;
|
|
160
|
+
}>]>;
|
|
161
|
+
}>;
|
|
162
|
+
metadata: import("io-ts").TypeC<{
|
|
163
|
+
liveness: import("io-ts").BooleanC;
|
|
164
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
165
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
166
|
+
}>;
|
|
167
|
+
}>]>;
|
|
168
|
+
};
|
|
169
|
+
readonly default: {
|
|
170
|
+
readonly _tag: "JsonResponse";
|
|
171
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
172
|
+
message: import("io-ts").StringC;
|
|
173
|
+
}>, import("io-ts").PartialC<{
|
|
174
|
+
code: import("io-ts").NumberC;
|
|
175
|
+
}>]>;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
readonly parameters: readonly [{
|
|
179
|
+
readonly _tag: "FormParameter";
|
|
180
|
+
readonly explode: false;
|
|
181
|
+
readonly in: "path";
|
|
182
|
+
readonly name: "id";
|
|
183
|
+
}];
|
|
184
|
+
readonly requestDefaultHeaders: {
|
|
185
|
+
readonly Accept: "application/json";
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
export declare type DirectorCompanyRequestFunction = RequestFunction<{
|
|
189
|
+
params: DirectorCompanyRequestParameters;
|
|
190
|
+
}, schemas.Company>;
|
|
191
|
+
//# sourceMappingURL=directorCompany.d.ts.map
|
|
@@ -0,0 +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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgB3B,CAAC;AAEX,oBAAY,8BAA8B,GAAG,eAAe,CAC1D;IAAE,MAAM,EAAE,gCAAgC,CAAA;CAAE,EAC5C,OAAO,CAAC,OAAO,CAChB,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
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.directorCompanyOperation = void 0;
|
|
27
|
+
const schemas = __importStar(require("../components/schemas"));
|
|
28
|
+
exports.directorCompanyOperation = {
|
|
29
|
+
path: "/api/company/{id}/director",
|
|
30
|
+
method: "post",
|
|
31
|
+
responses: {
|
|
32
|
+
"200": { _tag: "JsonResponse", decoder: schemas.Company },
|
|
33
|
+
default: { _tag: "JsonResponse", decoder: schemas.Error },
|
|
34
|
+
},
|
|
35
|
+
parameters: [
|
|
36
|
+
{
|
|
37
|
+
_tag: "FormParameter",
|
|
38
|
+
explode: false,
|
|
39
|
+
in: "path",
|
|
40
|
+
name: "id",
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
requestDefaultHeaders: { Accept: "application/json" },
|
|
44
|
+
};
|
|
@@ -12,6 +12,7 @@ import { DeleteDocumentRequestFunction } from "./deleteDocument";
|
|
|
12
12
|
import { DeleteJobRequestFunction } from "./deleteJob";
|
|
13
13
|
import { DeletePaymentRequestFunction } from "./deletePayment";
|
|
14
14
|
import { DeleteSubscriptionRequestFunction } from "./deleteSubscription";
|
|
15
|
+
import { DirectorCompanyRequestFunction } from "./directorCompany";
|
|
15
16
|
import { GetCompaniesRequestFunction } from "./getCompanies";
|
|
16
17
|
import { GetCompanyRequestFunction } from "./getCompany";
|
|
17
18
|
import { GetCreditRequestFunction } from "./getCredit";
|
|
@@ -30,6 +31,7 @@ import { InfoCustomerRequestFunction } from "./infoCustomer";
|
|
|
30
31
|
import { InfoHealthRequestFunction } from "./infoHealth";
|
|
31
32
|
import { InfoIPRequestFunction } from "./infoIP";
|
|
32
33
|
import { InfoPasswordRequestFunction } from "./infoPassword";
|
|
34
|
+
import { InfoValidateEmailRequestFunction } from "./infoValidateEmail";
|
|
33
35
|
import { InfoVerifyRequestFunction } from "./infoVerify";
|
|
34
36
|
import { JobCompanyInfoRequestFunction } from "./jobCompanyInfo";
|
|
35
37
|
import { MarkPaymentRequestFunction } from "./markPayment";
|
|
@@ -461,6 +463,38 @@ export declare const operations: {
|
|
|
461
463
|
readonly Accept: "application/json";
|
|
462
464
|
};
|
|
463
465
|
};
|
|
466
|
+
readonly infoValidateEmail: {
|
|
467
|
+
readonly path: "/api/info/validate-email";
|
|
468
|
+
readonly method: "get";
|
|
469
|
+
readonly responses: {
|
|
470
|
+
readonly "200": {
|
|
471
|
+
readonly _tag: "JsonResponse";
|
|
472
|
+
readonly decoder: import("io-ts").PartialC<{
|
|
473
|
+
email: import("io-ts").StringC;
|
|
474
|
+
verdict: import("io-ts").UnionC<[import("io-ts").LiteralC<"valid">, import("io-ts").LiteralC<"risky">, import("io-ts").LiteralC<"invalid">]>;
|
|
475
|
+
suggestion: import("io-ts").StringC;
|
|
476
|
+
source: import("io-ts").StringC;
|
|
477
|
+
}>;
|
|
478
|
+
};
|
|
479
|
+
readonly default: {
|
|
480
|
+
readonly _tag: "JsonResponse";
|
|
481
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
482
|
+
message: import("io-ts").StringC;
|
|
483
|
+
}>, import("io-ts").PartialC<{
|
|
484
|
+
code: import("io-ts").NumberC;
|
|
485
|
+
}>]>;
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
readonly parameters: readonly [{
|
|
489
|
+
readonly _tag: "FormParameter";
|
|
490
|
+
readonly explode: true;
|
|
491
|
+
readonly in: "query";
|
|
492
|
+
readonly name: "email";
|
|
493
|
+
}];
|
|
494
|
+
readonly requestDefaultHeaders: {
|
|
495
|
+
readonly Accept: "application/json";
|
|
496
|
+
};
|
|
497
|
+
};
|
|
464
498
|
readonly getCompanies: {
|
|
465
499
|
readonly path: "/api/company";
|
|
466
500
|
readonly method: "get";
|
|
@@ -1369,6 +1403,188 @@ export declare const operations: {
|
|
|
1369
1403
|
readonly Accept: "application/json";
|
|
1370
1404
|
};
|
|
1371
1405
|
};
|
|
1406
|
+
readonly directorCompany: {
|
|
1407
|
+
readonly path: "/api/company/{id}/director";
|
|
1408
|
+
readonly method: "post";
|
|
1409
|
+
readonly responses: {
|
|
1410
|
+
readonly "200": {
|
|
1411
|
+
readonly _tag: "JsonResponse";
|
|
1412
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1413
|
+
company_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"limited_company">, import("io-ts").LiteralC<"sole_trader">]>;
|
|
1414
|
+
}>, import("io-ts").PartialC<{
|
|
1415
|
+
id: import("io-ts").StringC;
|
|
1416
|
+
cid: import("io-ts").StringC;
|
|
1417
|
+
oid: import("io-ts").StringC;
|
|
1418
|
+
aid: import("io-ts").StringC;
|
|
1419
|
+
emails: import("io-ts").ArrayC<import("io-ts").StringC>;
|
|
1420
|
+
users: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1421
|
+
role: import("io-ts").UnionC<[import("io-ts").LiteralC<"company-admin">, import("io-ts").LiteralC<"company-manager">, import("io-ts").LiteralC<"company-staff">]>;
|
|
1422
|
+
first_name: import("io-ts").StringC;
|
|
1423
|
+
email: import("io-ts").StringC;
|
|
1424
|
+
}>, import("io-ts").PartialC<{
|
|
1425
|
+
director_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1426
|
+
home_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1427
|
+
line_1: import("io-ts").StringC;
|
|
1428
|
+
city: import("io-ts").StringC;
|
|
1429
|
+
country: import("io-ts").StringC;
|
|
1430
|
+
postcode: import("io-ts").StringC;
|
|
1431
|
+
}>, import("io-ts").PartialC<{
|
|
1432
|
+
building_number: import("io-ts").StringC;
|
|
1433
|
+
building_name: import("io-ts").StringC;
|
|
1434
|
+
line_2: import("io-ts").StringC;
|
|
1435
|
+
county: import("io-ts").StringC;
|
|
1436
|
+
months_at_address: import("io-ts").NumberC;
|
|
1437
|
+
}>]>;
|
|
1438
|
+
}>, import("io-ts").PartialC<{
|
|
1439
|
+
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
1440
|
+
}>]>;
|
|
1441
|
+
last_name: import("io-ts").StringC;
|
|
1442
|
+
mobile: import("io-ts").StringC;
|
|
1443
|
+
}>]>>;
|
|
1444
|
+
company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1445
|
+
trade_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"gas_engineer">, import("io-ts").LiteralC<"electrician">, import("io-ts").LiteralC<"ev_charger_installer">, import("io-ts").LiteralC<"tiler">, import("io-ts").LiteralC<"kitchen_fitter">, import("io-ts").LiteralC<"floor_layer">, import("io-ts").LiteralC<"cctv_and_security_installations">, import("io-ts").LiteralC<"windows_and_doors">, import("io-ts").LiteralC<"landscaping">, import("io-ts").LiteralC<"air_conditioning">, import("io-ts").LiteralC<"bathrooms">, import("io-ts").LiteralC<"driveways_and_patios">, import("io-ts").LiteralC<"garage_doors">, import("io-ts").LiteralC<"fireplaces">, import("io-ts").LiteralC<"multi_trade">, import("io-ts").LiteralC<"other_trade">]>;
|
|
1446
|
+
warranty_length: import("io-ts").NumberC;
|
|
1447
|
+
average_monthly_jobs: import("io-ts").NumberC;
|
|
1448
|
+
average_job_value: import("io-ts").NumberC;
|
|
1449
|
+
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
1450
|
+
}>, import("io-ts").PartialC<{
|
|
1451
|
+
trade_body: import("io-ts").UnionC<[import("io-ts").LiteralC<"none">, import("io-ts").LiteralC<"niceic">, import("io-ts").LiteralC<"elecsa">, import("io-ts").LiteralC<"gas_safe">, import("io-ts").LiteralC<"napit">, import("io-ts").LiteralC<"other">]>;
|
|
1452
|
+
trade_body_number: import("io-ts").StringC;
|
|
1453
|
+
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1454
|
+
name: import("io-ts").StringC;
|
|
1455
|
+
}>, import("io-ts").PartialC<{
|
|
1456
|
+
id: import("io-ts").StringC;
|
|
1457
|
+
cid: import("io-ts").StringC;
|
|
1458
|
+
oid: import("io-ts").StringC;
|
|
1459
|
+
aid: import("io-ts").StringC;
|
|
1460
|
+
content: import("io-ts").StringC;
|
|
1461
|
+
mimetype: import("io-ts").StringC;
|
|
1462
|
+
metadata: import("io-ts").TypeC<{
|
|
1463
|
+
liveness: import("io-ts").BooleanC;
|
|
1464
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1465
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1466
|
+
}>;
|
|
1467
|
+
}>]>;
|
|
1468
|
+
}>]>;
|
|
1469
|
+
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1470
|
+
company_name: import("io-ts").StringC;
|
|
1471
|
+
company_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1472
|
+
line_1: import("io-ts").StringC;
|
|
1473
|
+
city: import("io-ts").StringC;
|
|
1474
|
+
country: import("io-ts").StringC;
|
|
1475
|
+
postcode: import("io-ts").StringC;
|
|
1476
|
+
}>, import("io-ts").PartialC<{
|
|
1477
|
+
building_number: import("io-ts").StringC;
|
|
1478
|
+
building_name: import("io-ts").StringC;
|
|
1479
|
+
line_2: import("io-ts").StringC;
|
|
1480
|
+
county: import("io-ts").StringC;
|
|
1481
|
+
months_at_address: import("io-ts").NumberC;
|
|
1482
|
+
}>]>;
|
|
1483
|
+
company_number: import("io-ts").StringC;
|
|
1484
|
+
}>, import("io-ts").PartialC<{
|
|
1485
|
+
trading_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1486
|
+
line_1: import("io-ts").StringC;
|
|
1487
|
+
city: import("io-ts").StringC;
|
|
1488
|
+
country: import("io-ts").StringC;
|
|
1489
|
+
postcode: import("io-ts").StringC;
|
|
1490
|
+
}>, import("io-ts").PartialC<{
|
|
1491
|
+
building_number: import("io-ts").StringC;
|
|
1492
|
+
building_name: import("io-ts").StringC;
|
|
1493
|
+
line_2: import("io-ts").StringC;
|
|
1494
|
+
county: import("io-ts").StringC;
|
|
1495
|
+
months_at_address: import("io-ts").NumberC;
|
|
1496
|
+
}>]>;
|
|
1497
|
+
vat_number: import("io-ts").StringC;
|
|
1498
|
+
}>]>;
|
|
1499
|
+
sole_trader_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1500
|
+
trading_name: import("io-ts").StringC;
|
|
1501
|
+
trading_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1502
|
+
line_1: import("io-ts").StringC;
|
|
1503
|
+
city: import("io-ts").StringC;
|
|
1504
|
+
country: import("io-ts").StringC;
|
|
1505
|
+
postcode: import("io-ts").StringC;
|
|
1506
|
+
}>, import("io-ts").PartialC<{
|
|
1507
|
+
building_number: import("io-ts").StringC;
|
|
1508
|
+
building_name: import("io-ts").StringC;
|
|
1509
|
+
line_2: import("io-ts").StringC;
|
|
1510
|
+
county: import("io-ts").StringC;
|
|
1511
|
+
months_at_address: import("io-ts").NumberC;
|
|
1512
|
+
}>]>;
|
|
1513
|
+
}>, import("io-ts").PartialC<{
|
|
1514
|
+
national_insurance_number: import("io-ts").StringC;
|
|
1515
|
+
}>]>;
|
|
1516
|
+
available_rates: import("io-ts").ArrayC<import("io-ts").TypeC<{
|
|
1517
|
+
name: import("io-ts").StringC;
|
|
1518
|
+
fee: import("io-ts").NumberC;
|
|
1519
|
+
enabled: import("io-ts").BooleanC;
|
|
1520
|
+
}>>;
|
|
1521
|
+
quote_preference: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_preference">, import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
1522
|
+
skip_deposit: import("io-ts").UnionC<[import("io-ts").LiteralC<"Yes">, import("io-ts").LiteralC<"No">]>;
|
|
1523
|
+
lifecycle: import("io-ts").UnionC<[import("io-ts").LiteralC<"registered">, import("io-ts").LiteralC<"subscribed">, import("io-ts").LiteralC<"director_info_provided">, import("io-ts").LiteralC<"onboarded">, import("io-ts").LiteralC<"completed_setup">, import("io-ts").LiteralC<"verified">]>;
|
|
1524
|
+
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">]>;
|
|
1525
|
+
company_logo: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1526
|
+
name: import("io-ts").StringC;
|
|
1527
|
+
}>, import("io-ts").PartialC<{
|
|
1528
|
+
id: import("io-ts").StringC;
|
|
1529
|
+
cid: import("io-ts").StringC;
|
|
1530
|
+
oid: import("io-ts").StringC;
|
|
1531
|
+
aid: import("io-ts").StringC;
|
|
1532
|
+
content: import("io-ts").StringC;
|
|
1533
|
+
mimetype: import("io-ts").StringC;
|
|
1534
|
+
metadata: import("io-ts").TypeC<{
|
|
1535
|
+
liveness: import("io-ts").BooleanC;
|
|
1536
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1537
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1538
|
+
}>;
|
|
1539
|
+
}>]>;
|
|
1540
|
+
bank_account: import("io-ts").TypeC<{
|
|
1541
|
+
account_name: import("io-ts").StringC;
|
|
1542
|
+
account_number: import("io-ts").StringC;
|
|
1543
|
+
sort_code: import("io-ts").StringC;
|
|
1544
|
+
}>;
|
|
1545
|
+
contact_info: import("io-ts").PartialC<{
|
|
1546
|
+
contact_name: import("io-ts").StringC;
|
|
1547
|
+
contact_email: import("io-ts").StringC;
|
|
1548
|
+
contact_phone: import("io-ts").StringC;
|
|
1549
|
+
contact_address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1550
|
+
line_1: import("io-ts").StringC;
|
|
1551
|
+
city: import("io-ts").StringC;
|
|
1552
|
+
country: import("io-ts").StringC;
|
|
1553
|
+
postcode: import("io-ts").StringC;
|
|
1554
|
+
}>, import("io-ts").PartialC<{
|
|
1555
|
+
building_number: import("io-ts").StringC;
|
|
1556
|
+
building_name: import("io-ts").StringC;
|
|
1557
|
+
line_2: import("io-ts").StringC;
|
|
1558
|
+
county: import("io-ts").StringC;
|
|
1559
|
+
months_at_address: import("io-ts").NumberC;
|
|
1560
|
+
}>]>;
|
|
1561
|
+
}>;
|
|
1562
|
+
metadata: import("io-ts").TypeC<{
|
|
1563
|
+
liveness: import("io-ts").BooleanC;
|
|
1564
|
+
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1565
|
+
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1566
|
+
}>;
|
|
1567
|
+
}>]>;
|
|
1568
|
+
};
|
|
1569
|
+
readonly default: {
|
|
1570
|
+
readonly _tag: "JsonResponse";
|
|
1571
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1572
|
+
message: import("io-ts").StringC;
|
|
1573
|
+
}>, import("io-ts").PartialC<{
|
|
1574
|
+
code: import("io-ts").NumberC;
|
|
1575
|
+
}>]>;
|
|
1576
|
+
};
|
|
1577
|
+
};
|
|
1578
|
+
readonly parameters: readonly [{
|
|
1579
|
+
readonly _tag: "FormParameter";
|
|
1580
|
+
readonly explode: false;
|
|
1581
|
+
readonly in: "path";
|
|
1582
|
+
readonly name: "id";
|
|
1583
|
+
}];
|
|
1584
|
+
readonly requestDefaultHeaders: {
|
|
1585
|
+
readonly Accept: "application/json";
|
|
1586
|
+
};
|
|
1587
|
+
};
|
|
1372
1588
|
readonly approveCompany: {
|
|
1373
1589
|
readonly path: "/api/company/{id}/approve";
|
|
1374
1590
|
readonly method: "post";
|
|
@@ -6764,11 +6980,13 @@ export interface OperationRequestFunctionMap {
|
|
|
6764
6980
|
infoVerify: InfoVerifyRequestFunction;
|
|
6765
6981
|
infoPassword: InfoPasswordRequestFunction;
|
|
6766
6982
|
infoIP: InfoIPRequestFunction;
|
|
6983
|
+
infoValidateEmail: InfoValidateEmailRequestFunction;
|
|
6767
6984
|
getCompanies: GetCompaniesRequestFunction;
|
|
6768
6985
|
postCompany: PostCompanyRequestFunction;
|
|
6769
6986
|
getCompany: GetCompanyRequestFunction;
|
|
6770
6987
|
putCompany: PutCompanyRequestFunction;
|
|
6771
6988
|
deleteCompany: DeleteCompanyRequestFunction;
|
|
6989
|
+
directorCompany: DirectorCompanyRequestFunction;
|
|
6772
6990
|
approveCompany: ApproveCompanyRequestFunction;
|
|
6773
6991
|
getJobs: GetJobsRequestFunction;
|
|
6774
6992
|
postJob: PostJobRequestFunction;
|
|
@@ -6836,12 +7054,16 @@ export declare const infoAuthServiceBuilder: (requestFunctions: OperationRequest
|
|
|
6836
7054
|
export declare const infoIPServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6837
7055
|
infoIP: InfoIPRequestFunction;
|
|
6838
7056
|
};
|
|
7057
|
+
export declare const infoValidationServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
7058
|
+
infoValidateEmail: InfoValidateEmailRequestFunction;
|
|
7059
|
+
};
|
|
6839
7060
|
export declare const companyServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6840
7061
|
getCompanies: GetCompaniesRequestFunction;
|
|
6841
7062
|
postCompany: PostCompanyRequestFunction;
|
|
6842
7063
|
getCompany: GetCompanyRequestFunction;
|
|
6843
7064
|
putCompany: PutCompanyRequestFunction;
|
|
6844
7065
|
deleteCompany: DeleteCompanyRequestFunction;
|
|
7066
|
+
directorCompany: DirectorCompanyRequestFunction;
|
|
6845
7067
|
approveCompany: ApproveCompanyRequestFunction;
|
|
6846
7068
|
};
|
|
6847
7069
|
export declare const jobServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|