@kanda-libs/ks-schema 1.0.94 → 1.0.96
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/components/schemas/InfoMe.d.ts +2 -0
- package/dist/components/schemas/InfoMe.d.ts.map +1 -1
- package/dist/components/schemas/InfoMe.js +1 -0
- 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 +123 -79
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +17 -13
- package/dist/operations/postCompany.d.ts +3 -3
- package/dist/operations/postMe.d.ts +47 -0
- package/dist/operations/postMe.d.ts.map +1 -0
- package/dist/operations/postMe.js +43 -0
- package/dist/operations/putCompany.d.ts +3 -3
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +2521 -2519
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +5277 -5271
- package/package.json +1 -1
- package/schema.yaml +97 -68
|
@@ -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
|
]);
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import * as t from "io-ts";
|
|
2
2
|
export declare const InfoMe: t.PartialC<{
|
|
3
|
+
email: t.StringC;
|
|
3
4
|
name: t.StringC;
|
|
4
5
|
phone: t.StringC;
|
|
5
6
|
photoURL: t.StringC;
|
|
6
7
|
}>;
|
|
7
8
|
export interface InfoMe {
|
|
9
|
+
email?: string;
|
|
8
10
|
name?: string;
|
|
9
11
|
phone?: string;
|
|
10
12
|
photoURL?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InfoMe.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/InfoMe.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"InfoMe.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/InfoMe.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,eAAO,MAAM,MAAM;;;;;EAKjB,CAAC;AAEH,MAAM,WAAW,MAAM;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -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;
|
|
@@ -39,6 +39,7 @@ import { PostCompanyRequestFunction } from "./postCompany";
|
|
|
39
39
|
import { PostCreditRequestFunction } from "./postCredit";
|
|
40
40
|
import { PostDocumentRequestFunction } from "./postDocument";
|
|
41
41
|
import { PostJobRequestFunction } from "./postJob";
|
|
42
|
+
import { PostMeRequestFunction } from "./postMe";
|
|
42
43
|
import { PostPaymentRequestFunction } from "./postPayment";
|
|
43
44
|
import { PostSubscriptionRequestFunction } from "./postSubscription";
|
|
44
45
|
import { ProviderWebhookRequestFunction } from "./providerWebhook";
|
|
@@ -93,6 +94,47 @@ export declare const operations: {
|
|
|
93
94
|
readonly Accept: "application/json";
|
|
94
95
|
};
|
|
95
96
|
};
|
|
97
|
+
readonly postMe: {
|
|
98
|
+
readonly path: "/api/me";
|
|
99
|
+
readonly method: "post";
|
|
100
|
+
readonly responses: {
|
|
101
|
+
readonly "200": {
|
|
102
|
+
readonly _tag: "JsonResponse";
|
|
103
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
104
|
+
id: import("io-ts").StringC;
|
|
105
|
+
token: import("io-ts").StringC;
|
|
106
|
+
name: import("io-ts").StringC;
|
|
107
|
+
email: import("io-ts").StringC;
|
|
108
|
+
provider: import("io-ts").StringC;
|
|
109
|
+
subject: import("io-ts").StringC;
|
|
110
|
+
audience: import("io-ts").StringC;
|
|
111
|
+
issuer: import("io-ts").StringC;
|
|
112
|
+
verified: import("io-ts").BooleanC;
|
|
113
|
+
}>, import("io-ts").PartialC<{
|
|
114
|
+
role: import("io-ts").StringC;
|
|
115
|
+
phone: import("io-ts").StringC;
|
|
116
|
+
photoURL: import("io-ts").StringC;
|
|
117
|
+
disabled: import("io-ts").BooleanC;
|
|
118
|
+
}>]>;
|
|
119
|
+
};
|
|
120
|
+
readonly default: {
|
|
121
|
+
readonly _tag: "JsonResponse";
|
|
122
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
123
|
+
message: import("io-ts").StringC;
|
|
124
|
+
}>, import("io-ts").PartialC<{
|
|
125
|
+
code: import("io-ts").NumberC;
|
|
126
|
+
}>]>;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
readonly parameters: readonly [];
|
|
130
|
+
readonly requestDefaultHeaders: {
|
|
131
|
+
readonly "Content-Type": "application/json";
|
|
132
|
+
readonly Accept: "application/json";
|
|
133
|
+
};
|
|
134
|
+
readonly body: {
|
|
135
|
+
readonly _tag: "JsonBody";
|
|
136
|
+
};
|
|
137
|
+
};
|
|
96
138
|
readonly putMe: {
|
|
97
139
|
readonly path: "/api/me";
|
|
98
140
|
readonly method: "put";
|
|
@@ -436,6 +478,9 @@ export declare const operations: {
|
|
|
436
478
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
437
479
|
average_job_value: import("io-ts").NumberC;
|
|
438
480
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
481
|
+
}>, import("io-ts").PartialC<{
|
|
482
|
+
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">]>;
|
|
483
|
+
trade_body_number: import("io-ts").StringC;
|
|
439
484
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
440
485
|
name: import("io-ts").StringC;
|
|
441
486
|
}>, import("io-ts").PartialC<{
|
|
@@ -451,9 +496,6 @@ export declare const operations: {
|
|
|
451
496
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
452
497
|
}>;
|
|
453
498
|
}>]>;
|
|
454
|
-
}>, import("io-ts").PartialC<{
|
|
455
|
-
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">]>;
|
|
456
|
-
trade_body_number: import("io-ts").StringC;
|
|
457
499
|
}>]>;
|
|
458
500
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
459
501
|
company_name: import("io-ts").StringC;
|
|
@@ -613,6 +655,9 @@ export declare const operations: {
|
|
|
613
655
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
614
656
|
average_job_value: import("io-ts").NumberC;
|
|
615
657
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
658
|
+
}>, import("io-ts").PartialC<{
|
|
659
|
+
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">]>;
|
|
660
|
+
trade_body_number: import("io-ts").StringC;
|
|
616
661
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
617
662
|
name: import("io-ts").StringC;
|
|
618
663
|
}>, import("io-ts").PartialC<{
|
|
@@ -628,9 +673,6 @@ export declare const operations: {
|
|
|
628
673
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
629
674
|
}>;
|
|
630
675
|
}>]>;
|
|
631
|
-
}>, import("io-ts").PartialC<{
|
|
632
|
-
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">]>;
|
|
633
|
-
trade_body_number: import("io-ts").StringC;
|
|
634
676
|
}>]>;
|
|
635
677
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
636
678
|
company_name: import("io-ts").StringC;
|
|
@@ -794,6 +836,9 @@ export declare const operations: {
|
|
|
794
836
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
795
837
|
average_job_value: import("io-ts").NumberC;
|
|
796
838
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
839
|
+
}>, import("io-ts").PartialC<{
|
|
840
|
+
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">]>;
|
|
841
|
+
trade_body_number: import("io-ts").StringC;
|
|
797
842
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
798
843
|
name: import("io-ts").StringC;
|
|
799
844
|
}>, import("io-ts").PartialC<{
|
|
@@ -809,9 +854,6 @@ export declare const operations: {
|
|
|
809
854
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
810
855
|
}>;
|
|
811
856
|
}>]>;
|
|
812
|
-
}>, import("io-ts").PartialC<{
|
|
813
|
-
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">]>;
|
|
814
|
-
trade_body_number: import("io-ts").StringC;
|
|
815
857
|
}>]>;
|
|
816
858
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
817
859
|
company_name: import("io-ts").StringC;
|
|
@@ -976,6 +1018,9 @@ export declare const operations: {
|
|
|
976
1018
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
977
1019
|
average_job_value: import("io-ts").NumberC;
|
|
978
1020
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
1021
|
+
}>, import("io-ts").PartialC<{
|
|
1022
|
+
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">]>;
|
|
1023
|
+
trade_body_number: import("io-ts").StringC;
|
|
979
1024
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
980
1025
|
name: import("io-ts").StringC;
|
|
981
1026
|
}>, import("io-ts").PartialC<{
|
|
@@ -991,9 +1036,6 @@ export declare const operations: {
|
|
|
991
1036
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
992
1037
|
}>;
|
|
993
1038
|
}>]>;
|
|
994
|
-
}>, import("io-ts").PartialC<{
|
|
995
|
-
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">]>;
|
|
996
|
-
trade_body_number: import("io-ts").StringC;
|
|
997
1039
|
}>]>;
|
|
998
1040
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
999
1041
|
company_name: import("io-ts").StringC;
|
|
@@ -1162,6 +1204,9 @@ export declare const operations: {
|
|
|
1162
1204
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
1163
1205
|
average_job_value: import("io-ts").NumberC;
|
|
1164
1206
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
1207
|
+
}>, import("io-ts").PartialC<{
|
|
1208
|
+
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">]>;
|
|
1209
|
+
trade_body_number: import("io-ts").StringC;
|
|
1165
1210
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1166
1211
|
name: import("io-ts").StringC;
|
|
1167
1212
|
}>, import("io-ts").PartialC<{
|
|
@@ -1177,9 +1222,6 @@ export declare const operations: {
|
|
|
1177
1222
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1178
1223
|
}>;
|
|
1179
1224
|
}>]>;
|
|
1180
|
-
}>, import("io-ts").PartialC<{
|
|
1181
|
-
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">]>;
|
|
1182
|
-
trade_body_number: import("io-ts").StringC;
|
|
1183
1225
|
}>]>;
|
|
1184
1226
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1185
1227
|
company_name: import("io-ts").StringC;
|
|
@@ -1344,6 +1386,9 @@ export declare const operations: {
|
|
|
1344
1386
|
average_monthly_jobs: import("io-ts").NumberC;
|
|
1345
1387
|
average_job_value: import("io-ts").NumberC;
|
|
1346
1388
|
use_subcontractor: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
1389
|
+
}>, import("io-ts").PartialC<{
|
|
1390
|
+
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">]>;
|
|
1391
|
+
trade_body_number: import("io-ts").StringC;
|
|
1347
1392
|
insurance_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1348
1393
|
name: import("io-ts").StringC;
|
|
1349
1394
|
}>, import("io-ts").PartialC<{
|
|
@@ -1359,9 +1404,6 @@ export declare const operations: {
|
|
|
1359
1404
|
updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
|
|
1360
1405
|
}>;
|
|
1361
1406
|
}>]>;
|
|
1362
|
-
}>, import("io-ts").PartialC<{
|
|
1363
|
-
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">]>;
|
|
1364
|
-
trade_body_number: import("io-ts").StringC;
|
|
1365
1407
|
}>]>;
|
|
1366
1408
|
limited_company_info: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
1367
1409
|
company_name: import("io-ts").StringC;
|
|
@@ -6267,59 +6309,6 @@ export declare const operations: {
|
|
|
6267
6309
|
readonly Accept: "application/json";
|
|
6268
6310
|
};
|
|
6269
6311
|
};
|
|
6270
|
-
readonly providerWebhook: {
|
|
6271
|
-
readonly path: "/api/webhook/{provider}";
|
|
6272
|
-
readonly method: "post";
|
|
6273
|
-
readonly responses: {
|
|
6274
|
-
readonly "200": {
|
|
6275
|
-
readonly _tag: "EmptyResponse";
|
|
6276
|
-
};
|
|
6277
|
-
readonly default: {
|
|
6278
|
-
readonly _tag: "JsonResponse";
|
|
6279
|
-
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6280
|
-
message: import("io-ts").StringC;
|
|
6281
|
-
}>, import("io-ts").PartialC<{
|
|
6282
|
-
code: import("io-ts").NumberC;
|
|
6283
|
-
}>]>;
|
|
6284
|
-
};
|
|
6285
|
-
};
|
|
6286
|
-
readonly parameters: readonly [{
|
|
6287
|
-
readonly _tag: "FormParameter";
|
|
6288
|
-
readonly explode: false;
|
|
6289
|
-
readonly in: "path";
|
|
6290
|
-
readonly name: "provider";
|
|
6291
|
-
}];
|
|
6292
|
-
readonly requestDefaultHeaders: {};
|
|
6293
|
-
};
|
|
6294
|
-
readonly runner: {
|
|
6295
|
-
readonly path: "/api/runner";
|
|
6296
|
-
readonly method: "get";
|
|
6297
|
-
readonly responses: {
|
|
6298
|
-
readonly "200": {
|
|
6299
|
-
readonly _tag: "EmptyResponse";
|
|
6300
|
-
};
|
|
6301
|
-
readonly default: {
|
|
6302
|
-
readonly _tag: "JsonResponse";
|
|
6303
|
-
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6304
|
-
message: import("io-ts").StringC;
|
|
6305
|
-
}>, import("io-ts").PartialC<{
|
|
6306
|
-
code: import("io-ts").NumberC;
|
|
6307
|
-
}>]>;
|
|
6308
|
-
};
|
|
6309
|
-
};
|
|
6310
|
-
readonly parameters: readonly [{
|
|
6311
|
-
readonly _tag: "FormParameter";
|
|
6312
|
-
readonly explode: true;
|
|
6313
|
-
readonly in: "query";
|
|
6314
|
-
readonly name: "event";
|
|
6315
|
-
}, {
|
|
6316
|
-
readonly _tag: "FormParameter";
|
|
6317
|
-
readonly explode: true;
|
|
6318
|
-
readonly in: "query";
|
|
6319
|
-
readonly name: "task";
|
|
6320
|
-
}];
|
|
6321
|
-
readonly requestDefaultHeaders: {};
|
|
6322
|
-
};
|
|
6323
6312
|
readonly getSubscriptions: {
|
|
6324
6313
|
readonly path: "/api/subscription";
|
|
6325
6314
|
readonly method: "get";
|
|
@@ -6683,9 +6672,63 @@ export declare const operations: {
|
|
|
6683
6672
|
readonly Accept: "application/json";
|
|
6684
6673
|
};
|
|
6685
6674
|
};
|
|
6675
|
+
readonly providerWebhook: {
|
|
6676
|
+
readonly path: "/api/webhook/{provider}";
|
|
6677
|
+
readonly method: "post";
|
|
6678
|
+
readonly responses: {
|
|
6679
|
+
readonly "200": {
|
|
6680
|
+
readonly _tag: "EmptyResponse";
|
|
6681
|
+
};
|
|
6682
|
+
readonly default: {
|
|
6683
|
+
readonly _tag: "JsonResponse";
|
|
6684
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6685
|
+
message: import("io-ts").StringC;
|
|
6686
|
+
}>, import("io-ts").PartialC<{
|
|
6687
|
+
code: import("io-ts").NumberC;
|
|
6688
|
+
}>]>;
|
|
6689
|
+
};
|
|
6690
|
+
};
|
|
6691
|
+
readonly parameters: readonly [{
|
|
6692
|
+
readonly _tag: "FormParameter";
|
|
6693
|
+
readonly explode: false;
|
|
6694
|
+
readonly in: "path";
|
|
6695
|
+
readonly name: "provider";
|
|
6696
|
+
}];
|
|
6697
|
+
readonly requestDefaultHeaders: {};
|
|
6698
|
+
};
|
|
6699
|
+
readonly runner: {
|
|
6700
|
+
readonly path: "/api/runner";
|
|
6701
|
+
readonly method: "get";
|
|
6702
|
+
readonly responses: {
|
|
6703
|
+
readonly "200": {
|
|
6704
|
+
readonly _tag: "EmptyResponse";
|
|
6705
|
+
};
|
|
6706
|
+
readonly default: {
|
|
6707
|
+
readonly _tag: "JsonResponse";
|
|
6708
|
+
readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
6709
|
+
message: import("io-ts").StringC;
|
|
6710
|
+
}>, import("io-ts").PartialC<{
|
|
6711
|
+
code: import("io-ts").NumberC;
|
|
6712
|
+
}>]>;
|
|
6713
|
+
};
|
|
6714
|
+
};
|
|
6715
|
+
readonly parameters: readonly [{
|
|
6716
|
+
readonly _tag: "FormParameter";
|
|
6717
|
+
readonly explode: true;
|
|
6718
|
+
readonly in: "query";
|
|
6719
|
+
readonly name: "event";
|
|
6720
|
+
}, {
|
|
6721
|
+
readonly _tag: "FormParameter";
|
|
6722
|
+
readonly explode: true;
|
|
6723
|
+
readonly in: "query";
|
|
6724
|
+
readonly name: "task";
|
|
6725
|
+
}];
|
|
6726
|
+
readonly requestDefaultHeaders: {};
|
|
6727
|
+
};
|
|
6686
6728
|
};
|
|
6687
6729
|
export interface OperationRequestFunctionMap {
|
|
6688
6730
|
me: MeRequestFunction;
|
|
6731
|
+
postMe: PostMeRequestFunction;
|
|
6689
6732
|
putMe: PutMeRequestFunction;
|
|
6690
6733
|
infoCompany: InfoCompanyRequestFunction;
|
|
6691
6734
|
infoCustomer: InfoCustomerRequestFunction;
|
|
@@ -6734,17 +6777,18 @@ export interface OperationRequestFunctionMap {
|
|
|
6734
6777
|
getDocument: GetDocumentRequestFunction;
|
|
6735
6778
|
putDocument: PutDocumentRequestFunction;
|
|
6736
6779
|
deleteDocument: DeleteDocumentRequestFunction;
|
|
6737
|
-
providerWebhook: ProviderWebhookRequestFunction;
|
|
6738
|
-
runner: RunnerRequestFunction;
|
|
6739
6780
|
getSubscriptions: GetSubscriptionsRequestFunction;
|
|
6740
6781
|
postSubscription: PostSubscriptionRequestFunction;
|
|
6741
6782
|
getSubscription: GetSubscriptionRequestFunction;
|
|
6742
6783
|
putSubscription: PutSubscriptionRequestFunction;
|
|
6743
6784
|
deleteSubscription: DeleteSubscriptionRequestFunction;
|
|
6785
|
+
providerWebhook: ProviderWebhookRequestFunction;
|
|
6786
|
+
runner: RunnerRequestFunction;
|
|
6744
6787
|
}
|
|
6745
6788
|
export declare const requestFunctionsBuilder: (requestAdapter: HttpRequestAdapter) => OperationRequestFunctionMap;
|
|
6746
6789
|
export declare const authUserServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6747
6790
|
me: MeRequestFunction;
|
|
6791
|
+
postMe: PostMeRequestFunction;
|
|
6748
6792
|
putMe: PutMeRequestFunction;
|
|
6749
6793
|
};
|
|
6750
6794
|
export declare const infoCompanyServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
@@ -6812,12 +6856,6 @@ export declare const documentServiceBuilder: (requestFunctions: OperationRequest
|
|
|
6812
6856
|
putDocument: PutDocumentRequestFunction;
|
|
6813
6857
|
deleteDocument: DeleteDocumentRequestFunction;
|
|
6814
6858
|
};
|
|
6815
|
-
export declare const webhookServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6816
|
-
providerWebhook: ProviderWebhookRequestFunction;
|
|
6817
|
-
};
|
|
6818
|
-
export declare const taskServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6819
|
-
runner: RunnerRequestFunction;
|
|
6820
|
-
};
|
|
6821
6859
|
export declare const subscriptionServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6822
6860
|
getSubscriptions: GetSubscriptionsRequestFunction;
|
|
6823
6861
|
postSubscription: PostSubscriptionRequestFunction;
|
|
@@ -6825,4 +6863,10 @@ export declare const subscriptionServiceBuilder: (requestFunctions: OperationReq
|
|
|
6825
6863
|
putSubscription: PutSubscriptionRequestFunction;
|
|
6826
6864
|
deleteSubscription: DeleteSubscriptionRequestFunction;
|
|
6827
6865
|
};
|
|
6866
|
+
export declare const webhookServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6867
|
+
providerWebhook: ProviderWebhookRequestFunction;
|
|
6868
|
+
};
|
|
6869
|
+
export declare const taskServiceBuilder: (requestFunctions: OperationRequestFunctionMap) => {
|
|
6870
|
+
runner: RunnerRequestFunction;
|
|
6871
|
+
};
|
|
6828
6872
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -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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"}
|