@kanda-libs/ks-schema 1.0.113 → 1.0.114

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.
@@ -36,10 +36,10 @@ 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: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
39
40
  }>]>;
40
41
  last_name: t.StringC;
41
42
  mobile: t.StringC;
42
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
43
43
  }>]>>;
44
44
  company_info: t.IntersectionC<[t.TypeC<{
45
45
  trade_type: t.UnionC<[t.LiteralC<"gas_engineer">, t.LiteralC<"electrician">, t.LiteralC<"ev_charger_installer">, t.LiteralC<"tiler">, t.LiteralC<"kitchen_fitter">, t.LiteralC<"floor_layer">, t.LiteralC<"cctv_and_security_installations">, t.LiteralC<"windows_and_doors">, t.LiteralC<"landscaping">, t.LiteralC<"air_conditioning">, t.LiteralC<"bathrooms">, t.LiteralC<"driveways_and_patios">, t.LiteralC<"garage_doors">, t.LiteralC<"fireplaces">, t.LiteralC<"multi_trade">, t.LiteralC<"other_trade">]>;
@@ -15,9 +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: import("io-ts-types/DateFromISOString").DateFromISOStringC;
18
19
  }>]>;
19
20
  export interface DirectorInfo {
20
21
  verification_status?: "not_verified" | "verified";
21
22
  home_address: Address;
23
+ date_of_birth?: Date;
22
24
  }
23
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;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;IAUvB,CAAC;AAEH,MAAM,WAAW,YAAY;IAC3B,mBAAmB,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC;IAClD,YAAY,EAAE,OAAO,CAAC;CACvB"}
1
+ {"version":3,"file":"DirectorInfo.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/DirectorInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,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,IAAI,CAAC;CACtB"}
@@ -25,6 +25,7 @@ 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");
28
29
  const Address_1 = require("./Address");
29
30
  exports.DirectorInfo = t.intersection([
30
31
  t.type({
@@ -35,5 +36,6 @@ exports.DirectorInfo = t.intersection([
35
36
  t.literal("not_verified"),
36
37
  t.literal("verified"),
37
38
  ]),
39
+ date_of_birth: DateFromISOString_1.DateFromISOString,
38
40
  }),
39
41
  ]);
@@ -55,10 +55,10 @@ 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: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
58
59
  }>]>;
59
60
  last_name: t.StringC;
60
61
  mobile: t.StringC;
61
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
62
62
  }>]>>;
63
63
  metadata: t.TypeC<{
64
64
  liveness: t.BooleanC;
@@ -20,10 +20,10 @@ 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: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
23
24
  }>]>;
24
25
  last_name: t.StringC;
25
26
  mobile: t.StringC;
26
- date_of_birth: import("io-ts-types/DateFromISOString").DateFromISOStringC;
27
27
  }>]>;
28
28
  export interface UserType {
29
29
  director_info?: DirectorInfo;
@@ -32,6 +32,5 @@ export interface UserType {
32
32
  last_name?: string;
33
33
  email: string;
34
34
  mobile?: string;
35
- date_of_birth?: Date;
36
35
  }
37
36
  //# sourceMappingURL=UserType.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"UserType.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/UserType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;IAgBnB,CAAC;AAEH,MAAM,WAAW,QAAQ;IACvB,aAAa,CAAC,EAAE,YAAY,CAAC;IAC7B,IAAI,EAAE,eAAe,GAAG,iBAAiB,GAAG,eAAe,CAAC;IAC5D,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,aAAa,CAAC,EAAE,IAAI,CAAC;CACtB"}
1
+ {"version":3,"file":"UserType.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/UserType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;IAenB,CAAC;AAEH,MAAM,WAAW,QAAQ;IACvB,aAAa,CAAC,EAAE,YAAY,CAAC;IAC7B,IAAI,EAAE,eAAe,GAAG,iBAAiB,GAAG,eAAe,CAAC;IAC5D,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
@@ -25,7 +25,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.UserType = void 0;
27
27
  const t = __importStar(require("io-ts"));
28
- const DateFromISOString_1 = require("io-ts-types/DateFromISOString");
29
28
  const DirectorInfo_1 = require("./DirectorInfo");
30
29
  exports.UserType = t.intersection([
31
30
  t.type({
@@ -41,6 +40,5 @@ exports.UserType = t.intersection([
41
40
  director_info: DirectorInfo_1.DirectorInfo,
42
41
  last_name: t.string,
43
42
  mobile: t.string,
44
- date_of_birth: DateFromISOString_1.DateFromISOString,
45
43
  }),
46
44
  ]);
@@ -37,10 +37,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
40
41
  }>]>;
41
42
  last_name: import("io-ts").StringC;
42
43
  mobile: import("io-ts").StringC;
43
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
44
44
  }>]>>;
45
45
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
46
46
  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">]>;
@@ -37,10 +37,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
40
41
  }>]>;
41
42
  last_name: import("io-ts").StringC;
42
43
  mobile: import("io-ts").StringC;
43
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
44
44
  }>]>>;
45
45
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
46
46
  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">]>;
@@ -37,10 +37,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
40
41
  }>]>;
41
42
  last_name: import("io-ts").StringC;
42
43
  mobile: import("io-ts").StringC;
43
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
44
44
  }>]>>;
45
45
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
46
46
  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">]>;
@@ -35,10 +35,10 @@ 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: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
38
39
  }>]>;
39
40
  last_name: t.StringC;
40
41
  mobile: t.StringC;
41
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
42
42
  }>]>>;
43
43
  company_info: t.IntersectionC<[t.TypeC<{
44
44
  trade_type: t.UnionC<[t.LiteralC<"gas_engineer">, t.LiteralC<"electrician">, t.LiteralC<"ev_charger_installer">, t.LiteralC<"tiler">, t.LiteralC<"kitchen_fitter">, t.LiteralC<"floor_layer">, t.LiteralC<"cctv_and_security_installations">, t.LiteralC<"windows_and_doors">, t.LiteralC<"landscaping">, t.LiteralC<"air_conditioning">, t.LiteralC<"bathrooms">, t.LiteralC<"driveways_and_patios">, t.LiteralC<"garage_doors">, t.LiteralC<"fireplaces">, t.LiteralC<"multi_trade">, t.LiteralC<"other_trade">]>;
@@ -37,10 +37,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
40
41
  }>]>;
41
42
  last_name: import("io-ts").StringC;
42
43
  mobile: import("io-ts").StringC;
43
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
44
44
  }>]>>;
45
45
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
46
46
  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">]>;
@@ -301,10 +301,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
304
305
  }>]>;
305
306
  last_name: import("io-ts").StringC;
306
307
  mobile: import("io-ts").StringC;
307
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
308
308
  }>]>>;
309
309
  metadata: import("io-ts").TypeC<{
310
310
  liveness: import("io-ts").BooleanC;
@@ -597,10 +597,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
600
601
  }>]>;
601
602
  last_name: import("io-ts").StringC;
602
603
  mobile: import("io-ts").StringC;
603
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
604
604
  }>]>>;
605
605
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
606
606
  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">]>;
@@ -776,10 +776,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
779
780
  }>]>;
780
781
  last_name: import("io-ts").StringC;
781
782
  mobile: import("io-ts").StringC;
782
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
783
783
  }>]>>;
784
784
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
785
785
  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">]>;
@@ -959,10 +959,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
962
963
  }>]>;
963
964
  last_name: import("io-ts").StringC;
964
965
  mobile: import("io-ts").StringC;
965
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
966
966
  }>]>>;
967
967
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
968
968
  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">]>;
@@ -1143,10 +1143,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
1146
1147
  }>]>;
1147
1148
  last_name: import("io-ts").StringC;
1148
1149
  mobile: import("io-ts").StringC;
1149
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
1150
1150
  }>]>>;
1151
1151
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
1152
1152
  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">]>;
@@ -1331,10 +1331,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
1334
1335
  }>]>;
1335
1336
  last_name: import("io-ts").StringC;
1336
1337
  mobile: import("io-ts").StringC;
1337
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
1338
1338
  }>]>>;
1339
1339
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
1340
1340
  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">]>;
@@ -1515,10 +1515,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
1518
1519
  }>]>;
1519
1520
  last_name: import("io-ts").StringC;
1520
1521
  mobile: import("io-ts").StringC;
1521
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
1522
1522
  }>]>>;
1523
1523
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
1524
1524
  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">]>;
@@ -1699,10 +1699,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
1702
1703
  }>]>;
1703
1704
  last_name: import("io-ts").StringC;
1704
1705
  mobile: import("io-ts").StringC;
1705
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
1706
1706
  }>]>>;
1707
1707
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
1708
1708
  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">]>;
@@ -65,10 +65,10 @@ 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: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
68
69
  }>]>;
69
70
  last_name: t.StringC;
70
71
  mobile: t.StringC;
71
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
72
72
  }>]>>;
73
73
  metadata: t.TypeC<{
74
74
  liveness: t.BooleanC;
@@ -34,10 +34,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
37
38
  }>]>;
38
39
  last_name: import("io-ts").StringC;
39
40
  mobile: import("io-ts").StringC;
40
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
41
41
  }>]>>;
42
42
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
43
43
  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">]>;
@@ -37,10 +37,10 @@ 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-types/lib/DateFromISOString").DateFromISOStringC;
40
41
  }>]>;
41
42
  last_name: import("io-ts").StringC;
42
43
  mobile: import("io-ts").StringC;
43
- date_of_birth: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
44
44
  }>]>>;
45
45
  company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
46
46
  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">]>;