@kanda-libs/ks-schema 1.0.114 → 1.0.116
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 +1 -1
- package/dist/components/schemas/DirectorInfo.d.ts +2 -2
- package/dist/components/schemas/DirectorInfo.d.ts.map +1 -1
- package/dist/components/schemas/DirectorInfo.js +1 -2
- package/dist/components/schemas/InfoCompany.d.ts +1 -1
- package/dist/components/schemas/UserType.d.ts +1 -1
- package/dist/operations/approveCompany.d.ts +1 -1
- package/dist/operations/deleteCompany.d.ts +1 -1
- package/dist/operations/directorCompany.d.ts +1 -1
- package/dist/operations/getCompanies.d.ts +1 -1
- package/dist/operations/getCompany.d.ts +1 -1
- package/dist/operations/index.d.ts +9 -175
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/infoCompany.d.ts +1 -1
- package/dist/operations/postCompany.d.ts +1 -1
- package/dist/operations/putCompany.d.ts +1 -1
- package/dist/operations/resendJob.d.ts +2 -169
- package/dist/operations/resendJob.d.ts.map +1 -1
- package/dist/operations/resendJob.js +2 -5
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +2600 -2600
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +5638 -5638
- package/package.json +1 -1
- package/schema.yaml +0 -7
|
@@ -36,7 +36,7 @@ export declare const Company: t.IntersectionC<[t.TypeC<{
|
|
|
36
36
|
}>]>;
|
|
37
37
|
}>, t.PartialC<{
|
|
38
38
|
verification_status: t.UnionC<[t.LiteralC<"not_verified">, t.LiteralC<"verified">]>;
|
|
39
|
-
date_of_birth:
|
|
39
|
+
date_of_birth: t.StringC;
|
|
40
40
|
}>]>;
|
|
41
41
|
last_name: t.StringC;
|
|
42
42
|
mobile: t.StringC;
|
|
@@ -15,11 +15,11 @@ export declare const DirectorInfo: t.IntersectionC<[t.TypeC<{
|
|
|
15
15
|
}>]>;
|
|
16
16
|
}>, t.PartialC<{
|
|
17
17
|
verification_status: t.UnionC<[t.LiteralC<"not_verified">, t.LiteralC<"verified">]>;
|
|
18
|
-
date_of_birth:
|
|
18
|
+
date_of_birth: t.StringC;
|
|
19
19
|
}>]>;
|
|
20
20
|
export interface DirectorInfo {
|
|
21
21
|
verification_status?: "not_verified" | "verified";
|
|
22
22
|
home_address: Address;
|
|
23
|
-
date_of_birth?:
|
|
23
|
+
date_of_birth?: string;
|
|
24
24
|
}
|
|
25
25
|
//# sourceMappingURL=DirectorInfo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DirectorInfo.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/DirectorInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"DirectorInfo.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/DirectorInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;IAWvB,CAAC;AAEH,MAAM,WAAW,YAAY;IAC3B,mBAAmB,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC;IAClD,YAAY,EAAE,OAAO,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -25,7 +25,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.DirectorInfo = void 0;
|
|
27
27
|
const t = __importStar(require("io-ts"));
|
|
28
|
-
const DateFromISOString_1 = require("io-ts-types/DateFromISOString");
|
|
29
28
|
const Address_1 = require("./Address");
|
|
30
29
|
exports.DirectorInfo = t.intersection([
|
|
31
30
|
t.type({
|
|
@@ -36,6 +35,6 @@ exports.DirectorInfo = t.intersection([
|
|
|
36
35
|
t.literal("not_verified"),
|
|
37
36
|
t.literal("verified"),
|
|
38
37
|
]),
|
|
39
|
-
date_of_birth:
|
|
38
|
+
date_of_birth: t.string,
|
|
40
39
|
}),
|
|
41
40
|
]);
|
|
@@ -55,7 +55,7 @@ export declare const InfoCompany: t.IntersectionC<[t.TypeC<{
|
|
|
55
55
|
}>]>;
|
|
56
56
|
}>, t.PartialC<{
|
|
57
57
|
verification_status: t.UnionC<[t.LiteralC<"not_verified">, t.LiteralC<"verified">]>;
|
|
58
|
-
date_of_birth:
|
|
58
|
+
date_of_birth: t.StringC;
|
|
59
59
|
}>]>;
|
|
60
60
|
last_name: t.StringC;
|
|
61
61
|
mobile: t.StringC;
|
|
@@ -20,7 +20,7 @@ export declare const UserType: t.IntersectionC<[t.TypeC<{
|
|
|
20
20
|
}>]>;
|
|
21
21
|
}>, t.PartialC<{
|
|
22
22
|
verification_status: t.UnionC<[t.LiteralC<"not_verified">, t.LiteralC<"verified">]>;
|
|
23
|
-
date_of_birth:
|
|
23
|
+
date_of_birth: t.StringC;
|
|
24
24
|
}>]>;
|
|
25
25
|
last_name: t.StringC;
|
|
26
26
|
mobile: t.StringC;
|
|
@@ -37,7 +37,7 @@ export declare const approveCompanyOperation: {
|
|
|
37
37
|
}>]>;
|
|
38
38
|
}>, import("io-ts").PartialC<{
|
|
39
39
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
40
|
-
date_of_birth: import("io-ts
|
|
40
|
+
date_of_birth: import("io-ts").StringC;
|
|
41
41
|
}>]>;
|
|
42
42
|
last_name: import("io-ts").StringC;
|
|
43
43
|
mobile: import("io-ts").StringC;
|
|
@@ -37,7 +37,7 @@ export declare const deleteCompanyOperation: {
|
|
|
37
37
|
}>]>;
|
|
38
38
|
}>, import("io-ts").PartialC<{
|
|
39
39
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
40
|
-
date_of_birth: import("io-ts
|
|
40
|
+
date_of_birth: import("io-ts").StringC;
|
|
41
41
|
}>]>;
|
|
42
42
|
last_name: import("io-ts").StringC;
|
|
43
43
|
mobile: import("io-ts").StringC;
|
|
@@ -37,7 +37,7 @@ export declare const directorCompanyOperation: {
|
|
|
37
37
|
}>]>;
|
|
38
38
|
}>, import("io-ts").PartialC<{
|
|
39
39
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
40
|
-
date_of_birth: import("io-ts
|
|
40
|
+
date_of_birth: import("io-ts").StringC;
|
|
41
41
|
}>]>;
|
|
42
42
|
last_name: import("io-ts").StringC;
|
|
43
43
|
mobile: import("io-ts").StringC;
|
|
@@ -35,7 +35,7 @@ export declare const getCompaniesOperation: {
|
|
|
35
35
|
}>]>;
|
|
36
36
|
}>, t.PartialC<{
|
|
37
37
|
verification_status: t.UnionC<[t.LiteralC<"not_verified">, t.LiteralC<"verified">]>;
|
|
38
|
-
date_of_birth:
|
|
38
|
+
date_of_birth: t.StringC;
|
|
39
39
|
}>]>;
|
|
40
40
|
last_name: t.StringC;
|
|
41
41
|
mobile: t.StringC;
|
|
@@ -37,7 +37,7 @@ export declare const getCompanyOperation: {
|
|
|
37
37
|
}>]>;
|
|
38
38
|
}>, import("io-ts").PartialC<{
|
|
39
39
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
40
|
-
date_of_birth: import("io-ts
|
|
40
|
+
date_of_birth: import("io-ts").StringC;
|
|
41
41
|
}>]>;
|
|
42
42
|
last_name: import("io-ts").StringC;
|
|
43
43
|
mobile: import("io-ts").StringC;
|
|
@@ -301,7 +301,7 @@ export declare const operations: {
|
|
|
301
301
|
}>]>;
|
|
302
302
|
}>, import("io-ts").PartialC<{
|
|
303
303
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
304
|
-
date_of_birth: import("io-ts
|
|
304
|
+
date_of_birth: import("io-ts").StringC;
|
|
305
305
|
}>]>;
|
|
306
306
|
last_name: import("io-ts").StringC;
|
|
307
307
|
mobile: import("io-ts").StringC;
|
|
@@ -597,7 +597,7 @@ export declare const operations: {
|
|
|
597
597
|
}>]>;
|
|
598
598
|
}>, import("io-ts").PartialC<{
|
|
599
599
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
600
|
-
date_of_birth: import("io-ts
|
|
600
|
+
date_of_birth: import("io-ts").StringC;
|
|
601
601
|
}>]>;
|
|
602
602
|
last_name: import("io-ts").StringC;
|
|
603
603
|
mobile: import("io-ts").StringC;
|
|
@@ -776,7 +776,7 @@ export declare const operations: {
|
|
|
776
776
|
}>]>;
|
|
777
777
|
}>, import("io-ts").PartialC<{
|
|
778
778
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
779
|
-
date_of_birth: import("io-ts
|
|
779
|
+
date_of_birth: import("io-ts").StringC;
|
|
780
780
|
}>]>;
|
|
781
781
|
last_name: import("io-ts").StringC;
|
|
782
782
|
mobile: import("io-ts").StringC;
|
|
@@ -959,7 +959,7 @@ export declare const operations: {
|
|
|
959
959
|
}>]>;
|
|
960
960
|
}>, import("io-ts").PartialC<{
|
|
961
961
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
962
|
-
date_of_birth: import("io-ts
|
|
962
|
+
date_of_birth: import("io-ts").StringC;
|
|
963
963
|
}>]>;
|
|
964
964
|
last_name: import("io-ts").StringC;
|
|
965
965
|
mobile: import("io-ts").StringC;
|
|
@@ -1143,7 +1143,7 @@ export declare const operations: {
|
|
|
1143
1143
|
}>]>;
|
|
1144
1144
|
}>, import("io-ts").PartialC<{
|
|
1145
1145
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
1146
|
-
date_of_birth: import("io-ts
|
|
1146
|
+
date_of_birth: import("io-ts").StringC;
|
|
1147
1147
|
}>]>;
|
|
1148
1148
|
last_name: import("io-ts").StringC;
|
|
1149
1149
|
mobile: import("io-ts").StringC;
|
|
@@ -1331,7 +1331,7 @@ export declare const operations: {
|
|
|
1331
1331
|
}>]>;
|
|
1332
1332
|
}>, import("io-ts").PartialC<{
|
|
1333
1333
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
1334
|
-
date_of_birth: import("io-ts
|
|
1334
|
+
date_of_birth: import("io-ts").StringC;
|
|
1335
1335
|
}>]>;
|
|
1336
1336
|
last_name: import("io-ts").StringC;
|
|
1337
1337
|
mobile: import("io-ts").StringC;
|
|
@@ -1515,7 +1515,7 @@ export declare const operations: {
|
|
|
1515
1515
|
}>]>;
|
|
1516
1516
|
}>, import("io-ts").PartialC<{
|
|
1517
1517
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
1518
|
-
date_of_birth: import("io-ts
|
|
1518
|
+
date_of_birth: import("io-ts").StringC;
|
|
1519
1519
|
}>]>;
|
|
1520
1520
|
last_name: import("io-ts").StringC;
|
|
1521
1521
|
mobile: import("io-ts").StringC;
|
|
@@ -1699,7 +1699,7 @@ export declare const operations: {
|
|
|
1699
1699
|
}>]>;
|
|
1700
1700
|
}>, import("io-ts").PartialC<{
|
|
1701
1701
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
1702
|
-
date_of_birth: import("io-ts
|
|
1702
|
+
date_of_birth: import("io-ts").StringC;
|
|
1703
1703
|
}>]>;
|
|
1704
1704
|
last_name: import("io-ts").StringC;
|
|
1705
1705
|
mobile: import("io-ts").StringC;
|
|
@@ -2973,170 +2973,6 @@ export declare const operations: {
|
|
|
2973
2973
|
readonly path: "/api/job/{id}/resend";
|
|
2974
2974
|
readonly method: "post";
|
|
2975
2975
|
readonly responses: {
|
|
2976
|
-
readonly "200": {
|
|
2977
|
-
readonly _tag: "JsonResponse";
|
|
2978
|
-
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
2979
|
-
title: import("io-ts").StringC;
|
|
2980
|
-
deposit_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_deposit">, import("io-ts").LiteralC<"partial_deposit">, import("io-ts").LiteralC<"fixed_deposit">]>;
|
|
2981
|
-
deposit_value: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
2982
|
-
amount: import("io-ts").NumberC;
|
|
2983
|
-
}>, import("io-ts").PartialC<{
|
|
2984
|
-
currency: import("io-ts").LiteralC<"GBP">;
|
|
2985
|
-
}>]>;
|
|
2986
|
-
job_items: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
2987
|
-
title: import("io-ts").StringC;
|
|
2988
|
-
quantity: import("io-ts").NumberC;
|
|
2989
|
-
price: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
2990
|
-
amount: import("io-ts").NumberC;
|
|
2991
|
-
}>, import("io-ts").PartialC<{
|
|
2992
|
-
currency: import("io-ts").LiteralC<"GBP">;
|
|
2993
|
-
}>]>;
|
|
2994
|
-
vat: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
2995
|
-
amount: import("io-ts").NumberC;
|
|
2996
|
-
}>, import("io-ts").PartialC<{
|
|
2997
|
-
currency: import("io-ts").LiteralC<"GBP">;
|
|
2998
|
-
}>]>;
|
|
2999
|
-
}>, import("io-ts").PartialC<{
|
|
3000
|
-
description: import("io-ts").StringC;
|
|
3001
|
-
vat_rate: import("io-ts").UnionC<[import("io-ts").LiteralC<"vat_not_set">, import("io-ts").LiteralC<"exempted">, import("io-ts").LiteralC<"0%">, import("io-ts").LiteralC<"5%">, import("io-ts").LiteralC<"20%">, import("io-ts").LiteralC<"custom">]>;
|
|
3002
|
-
quote_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3003
|
-
name: import("io-ts").StringC;
|
|
3004
|
-
}>, import("io-ts").PartialC<{
|
|
3005
|
-
id: import("io-ts").StringC;
|
|
3006
|
-
cid: import("io-ts").StringC;
|
|
3007
|
-
oid: import("io-ts").StringC;
|
|
3008
|
-
aid: import("io-ts").StringC;
|
|
3009
|
-
content: import("io-ts").StringC;
|
|
3010
|
-
mimetype: import("io-ts").StringC;
|
|
3011
|
-
metadata: import("io-ts").TypeC<{
|
|
3012
|
-
liveness: import("io-ts").BooleanC;
|
|
3013
|
-
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3014
|
-
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3015
|
-
}>;
|
|
3016
|
-
}>]>;
|
|
3017
|
-
style: import("io-ts").UnionC<[import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
|
|
3018
|
-
}>]>>;
|
|
3019
|
-
}>, import("io-ts").PartialC<{
|
|
3020
|
-
id: import("io-ts").StringC;
|
|
3021
|
-
cid: import("io-ts").StringC;
|
|
3022
|
-
oid: import("io-ts").StringC;
|
|
3023
|
-
aid: import("io-ts").StringC;
|
|
3024
|
-
description: import("io-ts").StringC;
|
|
3025
|
-
customer: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3026
|
-
first_name: import("io-ts").StringC;
|
|
3027
|
-
last_name: import("io-ts").StringC;
|
|
3028
|
-
email: import("io-ts").StringC;
|
|
3029
|
-
phone: import("io-ts").StringC;
|
|
3030
|
-
}>, import("io-ts").PartialC<{
|
|
3031
|
-
address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3032
|
-
line_1: import("io-ts").StringC;
|
|
3033
|
-
city: import("io-ts").StringC;
|
|
3034
|
-
country: import("io-ts").StringC;
|
|
3035
|
-
postcode: import("io-ts").StringC;
|
|
3036
|
-
}>, import("io-ts").PartialC<{
|
|
3037
|
-
building_number: import("io-ts").StringC;
|
|
3038
|
-
building_name: import("io-ts").StringC;
|
|
3039
|
-
line_2: import("io-ts").StringC;
|
|
3040
|
-
county: import("io-ts").StringC;
|
|
3041
|
-
months_at_address: import("io-ts").NumberC;
|
|
3042
|
-
}>]>;
|
|
3043
|
-
}>]>;
|
|
3044
|
-
total: import("io-ts").PartialC<{
|
|
3045
|
-
amount_vat_inclusive: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3046
|
-
amount: import("io-ts").NumberC;
|
|
3047
|
-
}>, import("io-ts").PartialC<{
|
|
3048
|
-
currency: import("io-ts").LiteralC<"GBP">;
|
|
3049
|
-
}>]>;
|
|
3050
|
-
amount_vat_exclusive: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3051
|
-
amount: import("io-ts").NumberC;
|
|
3052
|
-
}>, import("io-ts").PartialC<{
|
|
3053
|
-
currency: import("io-ts").LiteralC<"GBP">;
|
|
3054
|
-
}>]>;
|
|
3055
|
-
amount_vat: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3056
|
-
amount: import("io-ts").NumberC;
|
|
3057
|
-
}>, import("io-ts").PartialC<{
|
|
3058
|
-
currency: import("io-ts").LiteralC<"GBP">;
|
|
3059
|
-
}>]>;
|
|
3060
|
-
}>;
|
|
3061
|
-
notes: import("io-ts").ArrayC<import("io-ts").StringC>;
|
|
3062
|
-
archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
3063
|
-
status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
|
|
3064
|
-
finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">, import("io-ts").LiteralC<"finance_cancelled">]>;
|
|
3065
|
-
checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
|
|
3066
|
-
finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
|
|
3067
|
-
customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3068
|
-
checkout_option: import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>;
|
|
3069
|
-
finance_option: import("io-ts").StringC;
|
|
3070
|
-
}>, import("io-ts").PartialC<{
|
|
3071
|
-
deposit_value: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3072
|
-
amount: import("io-ts").NumberC;
|
|
3073
|
-
}>, import("io-ts").PartialC<{
|
|
3074
|
-
currency: import("io-ts").LiteralC<"GBP">;
|
|
3075
|
-
}>]>;
|
|
3076
|
-
}>]>;
|
|
3077
|
-
payments: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3078
|
-
payment_option: import("io-ts").TypeC<{
|
|
3079
|
-
payment_method: import("io-ts").UnionC<[import("io-ts").LiteralC<"cash">, import("io-ts").LiteralC<"card">, import("io-ts").LiteralC<"loan">]>;
|
|
3080
|
-
amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3081
|
-
amount: import("io-ts").NumberC;
|
|
3082
|
-
}>, import("io-ts").PartialC<{
|
|
3083
|
-
currency: import("io-ts").LiteralC<"GBP">;
|
|
3084
|
-
}>]>;
|
|
3085
|
-
}>;
|
|
3086
|
-
}>, import("io-ts").PartialC<{
|
|
3087
|
-
id: import("io-ts").StringC;
|
|
3088
|
-
cid: import("io-ts").StringC;
|
|
3089
|
-
oid: import("io-ts").StringC;
|
|
3090
|
-
aid: import("io-ts").StringC;
|
|
3091
|
-
kid: import("io-ts").StringC;
|
|
3092
|
-
kind: import("io-ts").UnionC<[import("io-ts").LiteralC<"job">, import("io-ts").LiteralC<"charge">]>;
|
|
3093
|
-
xid: import("io-ts").StringC;
|
|
3094
|
-
xref: import("io-ts").StringC;
|
|
3095
|
-
status: import("io-ts").UnionC<[import("io-ts").LiteralC<"unpaid">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"paid">, import("io-ts").LiteralC<"disputed">, import("io-ts").LiteralC<"cancelled">, import("io-ts").LiteralC<"refunded">]>;
|
|
3096
|
-
metadata: import("io-ts").TypeC<{
|
|
3097
|
-
liveness: import("io-ts").BooleanC;
|
|
3098
|
-
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3099
|
-
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3100
|
-
}>;
|
|
3101
|
-
}>]>>;
|
|
3102
|
-
sat_note_timeline: import("io-ts").PartialC<{
|
|
3103
|
-
sent_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3104
|
-
viewed_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3105
|
-
signed_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3106
|
-
}>;
|
|
3107
|
-
sat_note: import("io-ts").TypeC<{
|
|
3108
|
-
q_pressure: import("io-ts").UnionC<[import("io-ts").LiteralC<"no">, import("io-ts").LiteralC<"somewhat">, import("io-ts").LiteralC<"yes">]>;
|
|
3109
|
-
q_easiness: import("io-ts").UnionC<[import("io-ts").LiteralC<"no">, import("io-ts").LiteralC<"somewhat">, import("io-ts").LiteralC<"yes">]>;
|
|
3110
|
-
q_availability: import("io-ts").UnionC<[import("io-ts").LiteralC<"The installer told me when quoting me">, import("io-ts").LiteralC<"I saw it advertised by the installer">, import("io-ts").LiteralC<"I found out when the installer sent me a link via Kanda">]>;
|
|
3111
|
-
q_application: import("io-ts").UnionC<[import("io-ts").LiteralC<"I completed the application myself">, import("io-ts").LiteralC<"Someone completed the appliation on my behalf">]>;
|
|
3112
|
-
q_advice: import("io-ts").UnionC<[import("io-ts").LiteralC<"They just sent me a link to apply">, import("io-ts").LiteralC<"They told me what rates where available">, import("io-ts").LiteralC<"They helped me work out my potential repayments">, import("io-ts").LiteralC<"They completed the application for me">]>;
|
|
3113
|
-
signature: import("io-ts").TypeC<{
|
|
3114
|
-
signed: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
3115
|
-
fingerprint: import("io-ts").StringC;
|
|
3116
|
-
}>;
|
|
3117
|
-
certificate: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
3118
|
-
name: import("io-ts").StringC;
|
|
3119
|
-
}>, import("io-ts").PartialC<{
|
|
3120
|
-
id: import("io-ts").StringC;
|
|
3121
|
-
cid: import("io-ts").StringC;
|
|
3122
|
-
oid: import("io-ts").StringC;
|
|
3123
|
-
aid: import("io-ts").StringC;
|
|
3124
|
-
content: import("io-ts").StringC;
|
|
3125
|
-
mimetype: import("io-ts").StringC;
|
|
3126
|
-
metadata: import("io-ts").TypeC<{
|
|
3127
|
-
liveness: import("io-ts").BooleanC;
|
|
3128
|
-
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3129
|
-
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3130
|
-
}>;
|
|
3131
|
-
}>]>;
|
|
3132
|
-
}>;
|
|
3133
|
-
metadata: import("io-ts").TypeC<{
|
|
3134
|
-
liveness: import("io-ts").BooleanC;
|
|
3135
|
-
created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3136
|
-
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
3137
|
-
}>;
|
|
3138
|
-
}>]>;
|
|
3139
|
-
};
|
|
3140
2976
|
readonly default: {
|
|
3141
2977
|
readonly _tag: "JsonResponse";
|
|
3142
2978
|
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
@@ -3152,9 +2988,7 @@ export declare const operations: {
|
|
|
3152
2988
|
readonly in: "path";
|
|
3153
2989
|
readonly name: "id";
|
|
3154
2990
|
}];
|
|
3155
|
-
readonly requestDefaultHeaders: {
|
|
3156
|
-
readonly Accept: "application/json";
|
|
3157
|
-
};
|
|
2991
|
+
readonly requestDefaultHeaders: {};
|
|
3158
2992
|
};
|
|
3159
2993
|
readonly checkJob: {
|
|
3160
2994
|
readonly path: "/api/job/{id}/check";
|
|
@@ -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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"}
|
|
@@ -65,7 +65,7 @@ export declare const infoCompanyOperation: {
|
|
|
65
65
|
}>]>;
|
|
66
66
|
}>, t.PartialC<{
|
|
67
67
|
verification_status: t.UnionC<[t.LiteralC<"not_verified">, t.LiteralC<"verified">]>;
|
|
68
|
-
date_of_birth:
|
|
68
|
+
date_of_birth: t.StringC;
|
|
69
69
|
}>]>;
|
|
70
70
|
last_name: t.StringC;
|
|
71
71
|
mobile: t.StringC;
|
|
@@ -34,7 +34,7 @@ export declare const postCompanyOperation: {
|
|
|
34
34
|
}>]>;
|
|
35
35
|
}>, import("io-ts").PartialC<{
|
|
36
36
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
37
|
-
date_of_birth: import("io-ts
|
|
37
|
+
date_of_birth: import("io-ts").StringC;
|
|
38
38
|
}>]>;
|
|
39
39
|
last_name: import("io-ts").StringC;
|
|
40
40
|
mobile: import("io-ts").StringC;
|
|
@@ -37,7 +37,7 @@ export declare const putCompanyOperation: {
|
|
|
37
37
|
}>]>;
|
|
38
38
|
}>, import("io-ts").PartialC<{
|
|
39
39
|
verification_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_verified">, import("io-ts").LiteralC<"verified">]>;
|
|
40
|
-
date_of_birth: import("io-ts
|
|
40
|
+
date_of_birth: import("io-ts").StringC;
|
|
41
41
|
}>]>;
|
|
42
42
|
last_name: import("io-ts").StringC;
|
|
43
43
|
mobile: import("io-ts").StringC;
|