@kanda-libs/ks-schema 1.0.95 → 1.0.97
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 +3 -3
- package/dist/components/schemas/CompanyInfo.d.ts +4 -4
- package/dist/components/schemas/CompanyInfo.d.ts.map +1 -1
- package/dist/components/schemas/CompanyInfo.js +1 -1
- package/dist/operations/approveCompany.d.ts +3 -3
- package/dist/operations/deleteCompany.d.ts +3 -3
- package/dist/operations/getCompanies.d.ts +3 -3
- package/dist/operations/getCompany.d.ts +3 -3
- package/dist/operations/index.d.ts +49 -18
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +8 -1
- package/dist/operations/infoHealth.d.ts +30 -0
- package/dist/operations/infoHealth.d.ts.map +1 -0
- package/dist/operations/infoHealth.js +37 -0
- package/dist/operations/postCompany.d.ts +3 -3
- package/dist/operations/putCompany.d.ts +3 -3
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +2428 -2428
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +5197 -5197
- package/package.json +1 -1
- package/schema.yaml +20 -1
|
@@ -46,6 +46,9 @@ export declare const Company: t.IntersectionC<[t.TypeC<{
|
|
|
46
46
|
average_monthly_jobs: t.NumberC;
|
|
47
47
|
average_job_value: t.NumberC;
|
|
48
48
|
use_subcontractor: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
|
|
49
|
+
}>, t.PartialC<{
|
|
50
|
+
trade_body: t.UnionC<[t.LiteralC<"none">, t.LiteralC<"niceic">, t.LiteralC<"elecsa">, t.LiteralC<"gas_safe">, t.LiteralC<"napit">, t.LiteralC<"other">]>;
|
|
51
|
+
trade_body_number: t.StringC;
|
|
49
52
|
insurance_document: t.IntersectionC<[t.TypeC<{
|
|
50
53
|
name: t.StringC;
|
|
51
54
|
}>, t.PartialC<{
|
|
@@ -61,9 +64,6 @@ export declare const Company: t.IntersectionC<[t.TypeC<{
|
|
|
61
64
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
62
65
|
}>;
|
|
63
66
|
}>]>;
|
|
64
|
-
}>, t.PartialC<{
|
|
65
|
-
trade_body: t.UnionC<[t.LiteralC<"none">, t.LiteralC<"niceic">, t.LiteralC<"elecsa">, t.LiteralC<"gas_safe">, t.LiteralC<"napit">, t.LiteralC<"other">]>;
|
|
66
|
-
trade_body_number: t.StringC;
|
|
67
67
|
}>]>;
|
|
68
68
|
limited_company_info: t.IntersectionC<[t.TypeC<{
|
|
69
69
|
company_name: t.StringC;
|
|
@@ -7,6 +7,9 @@ export declare const CompanyInfo: t.IntersectionC<[t.TypeC<{
|
|
|
7
7
|
average_monthly_jobs: t.NumberC;
|
|
8
8
|
average_job_value: t.NumberC;
|
|
9
9
|
use_subcontractor: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
|
|
10
|
+
}>, t.PartialC<{
|
|
11
|
+
trade_body: t.UnionC<[t.LiteralC<"none">, t.LiteralC<"niceic">, t.LiteralC<"elecsa">, t.LiteralC<"gas_safe">, t.LiteralC<"napit">, t.LiteralC<"other">]>;
|
|
12
|
+
trade_body_number: t.StringC;
|
|
10
13
|
insurance_document: t.IntersectionC<[t.TypeC<{
|
|
11
14
|
name: t.StringC;
|
|
12
15
|
}>, t.PartialC<{
|
|
@@ -22,9 +25,6 @@ export declare const CompanyInfo: t.IntersectionC<[t.TypeC<{
|
|
|
22
25
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
23
26
|
}>;
|
|
24
27
|
}>]>;
|
|
25
|
-
}>, t.PartialC<{
|
|
26
|
-
trade_body: t.UnionC<[t.LiteralC<"none">, t.LiteralC<"niceic">, t.LiteralC<"elecsa">, t.LiteralC<"gas_safe">, t.LiteralC<"napit">, t.LiteralC<"other">]>;
|
|
27
|
-
trade_body_number: t.StringC;
|
|
28
28
|
}>]>;
|
|
29
29
|
export interface CompanyInfo {
|
|
30
30
|
trade_type: "gas_engineer" | "electrician" | "ev_charger_installer" | "tiler" | "kitchen_fitter" | "floor_layer" | "cctv_and_security_installations" | "windows_and_doors" | "landscaping" | "air_conditioning" | "bathrooms" | "driveways_and_patios" | "garage_doors" | "fireplaces" | "multi_trade" | "other_trade";
|
|
@@ -34,6 +34,6 @@ export interface CompanyInfo {
|
|
|
34
34
|
average_monthly_jobs: number;
|
|
35
35
|
average_job_value: Pence;
|
|
36
36
|
use_subcontractor: "yes" | "no";
|
|
37
|
-
insurance_document
|
|
37
|
+
insurance_document?: Document;
|
|
38
38
|
}
|
|
39
39
|
//# sourceMappingURL=CompanyInfo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompanyInfo.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/CompanyInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAEhC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;IAqCtB,CAAC;AAEH,MAAM,WAAW,WAAW;IAC1B,UAAU,EACN,cAAc,GACd,aAAa,GACb,sBAAsB,GACtB,OAAO,GACP,gBAAgB,GAChB,aAAa,GACb,iCAAiC,GACjC,mBAAmB,GACnB,aAAa,GACb,kBAAkB,GAClB,WAAW,GACX,sBAAsB,GACtB,cAAc,GACd,YAAY,GACZ,aAAa,GACb,aAAa,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,GAAG,OAAO,CAAC;IAC3E,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,iBAAiB,EAAE,KAAK,CAAC;IACzB,iBAAiB,EAAE,KAAK,GAAG,IAAI,CAAC;IAChC,kBAAkB,EAAE,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"CompanyInfo.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/CompanyInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAEhC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;IAqCtB,CAAC;AAEH,MAAM,WAAW,WAAW;IAC1B,UAAU,EACN,cAAc,GACd,aAAa,GACb,sBAAsB,GACtB,OAAO,GACP,gBAAgB,GAChB,aAAa,GACb,iCAAiC,GACjC,mBAAmB,GACnB,aAAa,GACb,kBAAkB,GAClB,WAAW,GACX,sBAAsB,GACtB,cAAc,GACd,YAAY,GACZ,aAAa,GACb,aAAa,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,GAAG,OAAO,CAAC;IAC3E,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,iBAAiB,EAAE,KAAK,CAAC;IACzB,iBAAiB,EAAE,KAAK,GAAG,IAAI,CAAC;IAChC,kBAAkB,CAAC,EAAE,QAAQ,CAAC;CAC/B"}
|
|
@@ -51,7 +51,6 @@ exports.CompanyInfo = t.intersection([
|
|
|
51
51
|
average_monthly_jobs: t.number,
|
|
52
52
|
average_job_value: Pence_1.Pence,
|
|
53
53
|
use_subcontractor: t.union([t.literal("yes"), t.literal("no")]),
|
|
54
|
-
insurance_document: Document_1.Document,
|
|
55
54
|
}),
|
|
56
55
|
t.partial({
|
|
57
56
|
trade_body: t.union([
|
|
@@ -63,5 +62,6 @@ exports.CompanyInfo = t.intersection([
|
|
|
63
62
|
t.literal("other"),
|
|
64
63
|
]),
|
|
65
64
|
trade_body_number: t.string,
|
|
65
|
+
insurance_document: Document_1.Document,
|
|
66
66
|
}),
|
|
67
67
|
]);
|
|
@@ -47,6 +47,9 @@ export declare const approveCompanyOperation: {
|
|
|
47
47
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
48
48
|
average_job_value: import("io-ts").NumberC;
|
|
49
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;
|
|
50
53
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
51
54
|
name: import("io-ts").StringC;
|
|
52
55
|
}>, import("io-ts").PartialC<{
|
|
@@ -62,9 +65,6 @@ export declare const approveCompanyOperation: {
|
|
|
62
65
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
63
66
|
}>;
|
|
64
67
|
}>]>;
|
|
65
|
-
}>, import("io-ts").PartialC<{
|
|
66
|
-
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">]>;
|
|
67
|
-
trade_body_number: import("io-ts").StringC;
|
|
68
68
|
}>]>;
|
|
69
69
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
70
70
|
company_name: import("io-ts").StringC;
|
|
@@ -47,6 +47,9 @@ export declare const deleteCompanyOperation: {
|
|
|
47
47
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
48
48
|
average_job_value: import("io-ts").NumberC;
|
|
49
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;
|
|
50
53
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
51
54
|
name: import("io-ts").StringC;
|
|
52
55
|
}>, import("io-ts").PartialC<{
|
|
@@ -62,9 +65,6 @@ export declare const deleteCompanyOperation: {
|
|
|
62
65
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
63
66
|
}>;
|
|
64
67
|
}>]>;
|
|
65
|
-
}>, import("io-ts").PartialC<{
|
|
66
|
-
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">]>;
|
|
67
|
-
trade_body_number: import("io-ts").StringC;
|
|
68
68
|
}>]>;
|
|
69
69
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
70
70
|
company_name: import("io-ts").StringC;
|
|
@@ -45,6 +45,9 @@ export declare const getCompaniesOperation: {
|
|
|
45
45
|
average_monthly_jobs: t.NumberC;
|
|
46
46
|
average_job_value: t.NumberC;
|
|
47
47
|
use_subcontractor: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
|
|
48
|
+
}>, t.PartialC<{
|
|
49
|
+
trade_body: t.UnionC<[t.LiteralC<"none">, t.LiteralC<"niceic">, t.LiteralC<"elecsa">, t.LiteralC<"gas_safe">, t.LiteralC<"napit">, t.LiteralC<"other">]>;
|
|
50
|
+
trade_body_number: t.StringC;
|
|
48
51
|
insurance_document: t.IntersectionC<[t.TypeC<{
|
|
49
52
|
name: t.StringC;
|
|
50
53
|
}>, t.PartialC<{
|
|
@@ -60,9 +63,6 @@ export declare const getCompaniesOperation: {
|
|
|
60
63
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
61
64
|
}>;
|
|
62
65
|
}>]>;
|
|
63
|
-
}>, t.PartialC<{
|
|
64
|
-
trade_body: t.UnionC<[t.LiteralC<"none">, t.LiteralC<"niceic">, t.LiteralC<"elecsa">, t.LiteralC<"gas_safe">, t.LiteralC<"napit">, t.LiteralC<"other">]>;
|
|
65
|
-
trade_body_number: t.StringC;
|
|
66
66
|
}>]>;
|
|
67
67
|
limited_company_info: t.IntersectionC<[t.TypeC<{
|
|
68
68
|
company_name: t.StringC;
|
|
@@ -47,6 +47,9 @@ export declare const getCompanyOperation: {
|
|
|
47
47
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
48
48
|
average_job_value: import("io-ts").NumberC;
|
|
49
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;
|
|
50
53
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
51
54
|
name: import("io-ts").StringC;
|
|
52
55
|
}>, import("io-ts").PartialC<{
|
|
@@ -62,9 +65,6 @@ export declare const getCompanyOperation: {
|
|
|
62
65
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
63
66
|
}>;
|
|
64
67
|
}>]>;
|
|
65
|
-
}>, import("io-ts").PartialC<{
|
|
66
|
-
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">]>;
|
|
67
|
-
trade_body_number: import("io-ts").StringC;
|
|
68
68
|
}>]>;
|
|
69
69
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
70
70
|
company_name: import("io-ts").StringC;
|
|
@@ -27,6 +27,7 @@ import { GetSubscriptionsRequestFunction } from "./getSubscriptions";
|
|
|
27
27
|
import { InfoAuthRequestFunction } from "./infoAuth";
|
|
28
28
|
import { InfoCompanyRequestFunction } from "./infoCompany";
|
|
29
29
|
import { InfoCustomerRequestFunction } from "./infoCustomer";
|
|
30
|
+
import { InfoHealthRequestFunction } from "./infoHealth";
|
|
30
31
|
import { InfoIPRequestFunction } from "./infoIP";
|
|
31
32
|
import { InfoPasswordRequestFunction } from "./infoPassword";
|
|
32
33
|
import { InfoVerifyRequestFunction } from "./infoVerify";
|
|
@@ -176,6 +177,32 @@ export declare const operations: {
|
|
|
176
177
|
readonly _tag: "JsonBody";
|
|
177
178
|
};
|
|
178
179
|
};
|
|
180
|
+
readonly infoHealth: {
|
|
181
|
+
readonly path: "/api/info/health";
|
|
182
|
+
readonly method: "get";
|
|
183
|
+
readonly responses: {
|
|
184
|
+
readonly "200": {
|
|
185
|
+
readonly _tag: "JsonResponse";
|
|
186
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
187
|
+
message: import("io-ts").StringC;
|
|
188
|
+
}>, import("io-ts").PartialC<{
|
|
189
|
+
code: import("io-ts").NumberC;
|
|
190
|
+
}>]>;
|
|
191
|
+
};
|
|
192
|
+
readonly default: {
|
|
193
|
+
readonly _tag: "JsonResponse";
|
|
194
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
195
|
+
message: import("io-ts").StringC;
|
|
196
|
+
}>, import("io-ts").PartialC<{
|
|
197
|
+
code: import("io-ts").NumberC;
|
|
198
|
+
}>]>;
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
readonly parameters: readonly [];
|
|
202
|
+
readonly requestDefaultHeaders: {
|
|
203
|
+
readonly Accept: "application/json";
|
|
204
|
+
};
|
|
205
|
+
};
|
|
179
206
|
readonly infoCompany: {
|
|
180
207
|
readonly path: "/api/info/company";
|
|
181
208
|
readonly method: "get";
|
|
@@ -478,6 +505,9 @@ export declare const operations: {
|
|
|
478
505
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
479
506
|
average_job_value: import("io-ts").NumberC;
|
|
480
507
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
508
|
+
}>, import("io-ts").PartialC<{
|
|
509
|
+
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">]>;
|
|
510
|
+
trade_body_number: import("io-ts").StringC;
|
|
481
511
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
482
512
|
name: import("io-ts").StringC;
|
|
483
513
|
}>, import("io-ts").PartialC<{
|
|
@@ -493,9 +523,6 @@ export declare const operations: {
|
|
|
493
523
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
494
524
|
}>;
|
|
495
525
|
}>]>;
|
|
496
|
-
}>, import("io-ts").PartialC<{
|
|
497
|
-
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">]>;
|
|
498
|
-
trade_body_number: import("io-ts").StringC;
|
|
499
526
|
}>]>;
|
|
500
527
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
501
528
|
company_name: import("io-ts").StringC;
|
|
@@ -655,6 +682,9 @@ export declare const operations: {
|
|
|
655
682
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
656
683
|
average_job_value: import("io-ts").NumberC;
|
|
657
684
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
685
|
+
}>, import("io-ts").PartialC<{
|
|
686
|
+
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">]>;
|
|
687
|
+
trade_body_number: import("io-ts").StringC;
|
|
658
688
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
659
689
|
name: import("io-ts").StringC;
|
|
660
690
|
}>, import("io-ts").PartialC<{
|
|
@@ -670,9 +700,6 @@ export declare const operations: {
|
|
|
670
700
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
671
701
|
}>;
|
|
672
702
|
}>]>;
|
|
673
|
-
}>, import("io-ts").PartialC<{
|
|
674
|
-
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">]>;
|
|
675
|
-
trade_body_number: import("io-ts").StringC;
|
|
676
703
|
}>]>;
|
|
677
704
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
678
705
|
company_name: import("io-ts").StringC;
|
|
@@ -836,6 +863,9 @@ export declare const operations: {
|
|
|
836
863
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
837
864
|
average_job_value: import("io-ts").NumberC;
|
|
838
865
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
866
|
+
}>, import("io-ts").PartialC<{
|
|
867
|
+
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">]>;
|
|
868
|
+
trade_body_number: import("io-ts").StringC;
|
|
839
869
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
840
870
|
name: import("io-ts").StringC;
|
|
841
871
|
}>, import("io-ts").PartialC<{
|
|
@@ -851,9 +881,6 @@ export declare const operations: {
|
|
|
851
881
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
852
882
|
}>;
|
|
853
883
|
}>]>;
|
|
854
|
-
}>, import("io-ts").PartialC<{
|
|
855
|
-
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">]>;
|
|
856
|
-
trade_body_number: import("io-ts").StringC;
|
|
857
884
|
}>]>;
|
|
858
885
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
859
886
|
company_name: import("io-ts").StringC;
|
|
@@ -1018,6 +1045,9 @@ export declare const operations: {
|
|
|
1018
1045
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
1019
1046
|
average_job_value: import("io-ts").NumberC;
|
|
1020
1047
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
1048
|
+
}>, import("io-ts").PartialC<{
|
|
1049
|
+
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">]>;
|
|
1050
|
+
trade_body_number: import("io-ts").StringC;
|
|
1021
1051
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1022
1052
|
name: import("io-ts").StringC;
|
|
1023
1053
|
}>, import("io-ts").PartialC<{
|
|
@@ -1033,9 +1063,6 @@ export declare const operations: {
|
|
|
1033
1063
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1034
1064
|
}>;
|
|
1035
1065
|
}>]>;
|
|
1036
|
-
}>, import("io-ts").PartialC<{
|
|
1037
|
-
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">]>;
|
|
1038
|
-
trade_body_number: import("io-ts").StringC;
|
|
1039
1066
|
}>]>;
|
|
1040
1067
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1041
1068
|
company_name: import("io-ts").StringC;
|
|
@@ -1204,6 +1231,9 @@ export declare const operations: {
|
|
|
1204
1231
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
1205
1232
|
average_job_value: import("io-ts").NumberC;
|
|
1206
1233
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
1234
|
+
}>, import("io-ts").PartialC<{
|
|
1235
|
+
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">]>;
|
|
1236
|
+
trade_body_number: import("io-ts").StringC;
|
|
1207
1237
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1208
1238
|
name: import("io-ts").StringC;
|
|
1209
1239
|
}>, import("io-ts").PartialC<{
|
|
@@ -1219,9 +1249,6 @@ export declare const operations: {
|
|
|
1219
1249
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1220
1250
|
}>;
|
|
1221
1251
|
}>]>;
|
|
1222
|
-
}>, import("io-ts").PartialC<{
|
|
1223
|
-
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">]>;
|
|
1224
|
-
trade_body_number: import("io-ts").StringC;
|
|
1225
1252
|
}>]>;
|
|
1226
1253
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1227
1254
|
company_name: import("io-ts").StringC;
|
|
@@ -1386,6 +1413,9 @@ export declare const operations: {
|
|
|
1386
1413
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
1387
1414
|
average_job_value: import("io-ts").NumberC;
|
|
1388
1415
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
1416
|
+
}>, import("io-ts").PartialC<{
|
|
1417
|
+
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">]>;
|
|
1418
|
+
trade_body_number: import("io-ts").StringC;
|
|
1389
1419
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1390
1420
|
name: import("io-ts").StringC;
|
|
1391
1421
|
}>, import("io-ts").PartialC<{
|
|
@@ -1401,9 +1431,6 @@ export declare const operations: {
|
|
|
1401
1431
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1402
1432
|
}>;
|
|
1403
1433
|
}>]>;
|
|
1404
|
-
}>, import("io-ts").PartialC<{
|
|
1405
|
-
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">]>;
|
|
1406
|
-
trade_body_number: import("io-ts").StringC;
|
|
1407
1434
|
}>]>;
|
|
1408
1435
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1409
1436
|
company_name: import("io-ts").StringC;
|
|
@@ -6730,6 +6757,7 @@ export interface OperationRequestFunctionMap {
|
|
|
6730
6757
|
me: MeRequestFunction;
|
|
6731
6758
|
postMe: PostMeRequestFunction;
|
|
6732
6759
|
putMe: PutMeRequestFunction;
|
|
6760
|
+
infoHealth: InfoHealthRequestFunction;
|
|
6733
6761
|
infoCompany: InfoCompanyRequestFunction;
|
|
6734
6762
|
infoCustomer: InfoCustomerRequestFunction;
|
|
6735
6763
|
infoAuth: InfoAuthRequestFunction;
|
|
@@ -6791,6 +6819,9 @@ export declare const authUserServiceBuilder: (requestFunctions: OperationRequest
|
|
|
6791
6819
|
postMe: PostMeRequestFunction;
|
|
6792
6820
|
putMe: PutMeRequestFunction;
|
|
6793
6821
|
};
|
|
6822
|
+
export declare const infoHealthServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6823
|
+
infoHealth: InfoHealthRequestFunction;
|
|
6824
|
+
};
|
|
6794
6825
|
export declare const infoCompanyServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6795
6826
|
infoCompany: InfoCompanyRequestFunction;
|
|
6796
6827
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
package/dist/operations/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.taskServiceBuilder = exports.webhookServiceBuilder = exports.subscriptionServiceBuilder = exports.documentServiceBuilder = exports.creditServiceBuilder = exports.paymentServiceBuilder = exports.jobServiceBuilder = exports.companyServiceBuilder = exports.infoIPServiceBuilder = exports.infoAuthServiceBuilder = exports.infoCustomerServiceBuilder = exports.infoCompanyServiceBuilder = exports.authUserServiceBuilder = exports.requestFunctionsBuilder = exports.operations = void 0;
|
|
3
|
+
exports.taskServiceBuilder = exports.webhookServiceBuilder = exports.subscriptionServiceBuilder = exports.documentServiceBuilder = exports.creditServiceBuilder = exports.paymentServiceBuilder = exports.jobServiceBuilder = exports.companyServiceBuilder = exports.infoIPServiceBuilder = exports.infoAuthServiceBuilder = exports.infoCustomerServiceBuilder = exports.infoCompanyServiceBuilder = exports.infoHealthServiceBuilder = exports.authUserServiceBuilder = exports.requestFunctionsBuilder = exports.operations = void 0;
|
|
4
4
|
const runtime_1 = require("@openapi-io-ts/runtime");
|
|
5
5
|
const applyCredit_1 = require("./applyCredit");
|
|
6
6
|
const applyJob_1 = require("./applyJob");
|
|
@@ -30,6 +30,7 @@ const getSubscriptions_1 = require("./getSubscriptions");
|
|
|
30
30
|
const infoAuth_1 = require("./infoAuth");
|
|
31
31
|
const infoCompany_1 = require("./infoCompany");
|
|
32
32
|
const infoCustomer_1 = require("./infoCustomer");
|
|
33
|
+
const infoHealth_1 = require("./infoHealth");
|
|
33
34
|
const infoIP_1 = require("./infoIP");
|
|
34
35
|
const infoPassword_1 = require("./infoPassword");
|
|
35
36
|
const infoVerify_1 = require("./infoVerify");
|
|
@@ -63,6 +64,7 @@ exports.operations = {
|
|
|
63
64
|
me: me_1.meOperation,
|
|
64
65
|
postMe: postMe_1.postMeOperation,
|
|
65
66
|
putMe: putMe_1.putMeOperation,
|
|
67
|
+
infoHealth: infoHealth_1.infoHealthOperation,
|
|
66
68
|
infoCompany: infoCompany_1.infoCompanyOperation,
|
|
67
69
|
infoCustomer: infoCustomer_1.infoCustomerOperation,
|
|
68
70
|
infoAuth: infoAuth_1.infoAuthOperation,
|
|
@@ -122,6 +124,7 @@ const requestFunctionsBuilder = (requestAdapter) => ({
|
|
|
122
124
|
me: (0, runtime_1.requestFunctionBuilder)(exports.operations.me, requestAdapter),
|
|
123
125
|
postMe: (0, runtime_1.requestFunctionBuilder)(exports.operations.postMe, requestAdapter),
|
|
124
126
|
putMe: (0, runtime_1.requestFunctionBuilder)(exports.operations.putMe, requestAdapter),
|
|
127
|
+
infoHealth: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoHealth, requestAdapter),
|
|
125
128
|
infoCompany: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoCompany, requestAdapter),
|
|
126
129
|
infoCustomer: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoCustomer, requestAdapter),
|
|
127
130
|
infoAuth: (0, runtime_1.requestFunctionBuilder)(exports.operations.infoAuth, requestAdapter),
|
|
@@ -184,6 +187,10 @@ const authUserServiceBuilder = (requestFunctions) => ({
|
|
|
184
187
|
putMe: requestFunctions.putMe,
|
|
185
188
|
});
|
|
186
189
|
exports.authUserServiceBuilder = authUserServiceBuilder;
|
|
190
|
+
const infoHealthServiceBuilder = (requestFunctions) => ({
|
|
191
|
+
infoHealth: requestFunctions.infoHealth,
|
|
192
|
+
});
|
|
193
|
+
exports.infoHealthServiceBuilder = infoHealthServiceBuilder;
|
|
187
194
|
const infoCompanyServiceBuilder = (requestFunctions) => ({
|
|
188
195
|
infoCompany: requestFunctions.infoCompany,
|
|
189
196
|
});
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { RequestFunction } from "@openapi-io-ts/runtime";
|
|
2
|
+
import * as schemas from "../components/schemas";
|
|
3
|
+
export declare const infoHealthOperation: {
|
|
4
|
+
readonly path: "/api/info/health";
|
|
5
|
+
readonly method: "get";
|
|
6
|
+
readonly responses: {
|
|
7
|
+
readonly "200": {
|
|
8
|
+
readonly _tag: "JsonResponse";
|
|
9
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
10
|
+
message: import("io-ts").StringC;
|
|
11
|
+
}>, import("io-ts").PartialC<{
|
|
12
|
+
code: import("io-ts").NumberC;
|
|
13
|
+
}>]>;
|
|
14
|
+
};
|
|
15
|
+
readonly default: {
|
|
16
|
+
readonly _tag: "JsonResponse";
|
|
17
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
18
|
+
message: import("io-ts").StringC;
|
|
19
|
+
}>, import("io-ts").PartialC<{
|
|
20
|
+
code: import("io-ts").NumberC;
|
|
21
|
+
}>]>;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
readonly parameters: readonly [];
|
|
25
|
+
readonly requestDefaultHeaders: {
|
|
26
|
+
readonly Accept: "application/json";
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export declare type InfoHealthRequestFunction = RequestFunction<undefined, schemas.Error>;
|
|
30
|
+
//# sourceMappingURL=infoHealth.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"infoHealth.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/infoHealth.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;CAStB,CAAC;AAEX,oBAAY,yBAAyB,GAAG,eAAe,CACrD,SAAS,EACT,OAAO,CAAC,KAAK,CACd,CAAC"}
|
|
@@ -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.infoHealthOperation = void 0;
|
|
27
|
+
const schemas = __importStar(require("../components/schemas"));
|
|
28
|
+
exports.infoHealthOperation = {
|
|
29
|
+
path: "/api/info/health",
|
|
30
|
+
method: "get",
|
|
31
|
+
responses: {
|
|
32
|
+
"200": { _tag: "JsonResponse", decoder: schemas.Error },
|
|
33
|
+
default: { _tag: "JsonResponse", decoder: schemas.Error },
|
|
34
|
+
},
|
|
35
|
+
parameters: [],
|
|
36
|
+
requestDefaultHeaders: { Accept: "application/json" },
|
|
37
|
+
};
|
|
@@ -44,6 +44,9 @@ export declare const postCompanyOperation: {
|
|
|
44
44
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
45
45
|
average_job_value: import("io-ts").NumberC;
|
|
46
46
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
47
|
+
}>, import("io-ts").PartialC<{
|
|
48
|
+
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">]>;
|
|
49
|
+
trade_body_number: import("io-ts").StringC;
|
|
47
50
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
48
51
|
name: import("io-ts").StringC;
|
|
49
52
|
}>, import("io-ts").PartialC<{
|
|
@@ -59,9 +62,6 @@ export declare const postCompanyOperation: {
|
|
|
59
62
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
60
63
|
}>;
|
|
61
64
|
}>]>;
|
|
62
|
-
}>, import("io-ts").PartialC<{
|
|
63
|
-
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">]>;
|
|
64
|
-
trade_body_number: import("io-ts").StringC;
|
|
65
65
|
}>]>;
|
|
66
66
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
67
67
|
company_name: import("io-ts").StringC;
|
|
@@ -47,6 +47,9 @@ export declare const putCompanyOperation: {
|
|
|
47
47
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
48
48
|
average_job_value: import("io-ts").NumberC;
|
|
49
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;
|
|
50
53
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
51
54
|
name: import("io-ts").StringC;
|
|
52
55
|
}>, import("io-ts").PartialC<{
|
|
@@ -62,9 +65,6 @@ export declare const putCompanyOperation: {
|
|
|
62
65
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
63
66
|
}>;
|
|
64
67
|
}>]>;
|
|
65
|
-
}>, import("io-ts").PartialC<{
|
|
66
|
-
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">]>;
|
|
67
|
-
trade_body_number: import("io-ts").StringC;
|
|
68
68
|
}>]>;
|
|
69
69
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
70
70
|
company_name: import("io-ts").StringC;
|