@kanda-libs/ks-schema 1.0.148 → 1.0.150
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/ApplicantDetails.d.ts +29 -6
- package/dist/components/schemas/ApplicantDetails.d.ts.map +1 -1
- package/dist/components/schemas/ApplicantDetails.js +1 -2
- package/dist/components/schemas/Credit.d.ts +28 -4
- package/dist/components/schemas/Credit.d.ts.map +1 -1
- package/dist/components/schemas/Entity.d.ts +28 -4
- package/dist/components/schemas/Entity.d.ts.map +1 -1
- package/dist/components/schemas/Event.d.ts +28 -4
- package/dist/components/schemas/Event.d.ts.map +1 -1
- package/dist/operations/applyCredit.d.ts +28 -4
- package/dist/operations/applyCredit.d.ts.map +1 -1
- package/dist/operations/checkCredit.d.ts +28 -4
- package/dist/operations/checkCredit.d.ts.map +1 -1
- package/dist/operations/deleteCredit.d.ts +28 -4
- package/dist/operations/deleteCredit.d.ts.map +1 -1
- package/dist/operations/getCredit.d.ts +28 -4
- package/dist/operations/getCredit.d.ts.map +1 -1
- package/dist/operations/getCredits.d.ts +28 -4
- package/dist/operations/getCredits.d.ts.map +1 -1
- package/dist/operations/index.d.ts +252 -36
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/postCredit.d.ts +28 -4
- package/dist/operations/postCredit.d.ts.map +1 -1
- package/dist/operations/putCredit.d.ts +28 -4
- package/dist/operations/putCredit.d.ts.map +1 -1
- package/dist/operations/quoteCredit.d.ts +28 -4
- package/dist/operations/quoteCredit.d.ts.map +1 -1
- package/dist/operations/signCredit.d.ts +28 -4
- package/dist/operations/signCredit.d.ts.map +1 -1
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +7147 -6799
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +17394 -16992
- package/package.json +1 -1
- package/schema.yaml +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as t from "io-ts";
|
|
2
2
|
import { BankAccount } from "./BankAccount";
|
|
3
3
|
import { CustomerDetails } from "./CustomerDetails";
|
|
4
|
-
import { EmployedDetails } from "./EmployedDetails";
|
|
5
4
|
import { EmploymentDetails } from "./EmploymentDetails";
|
|
6
5
|
import { FinanceDetails } from "./FinanceDetails";
|
|
7
6
|
export declare const ApplicantDetails: t.IntersectionC<[t.TypeC<{
|
|
@@ -133,18 +132,42 @@ export declare const ApplicantDetails: t.IntersectionC<[t.TypeC<{
|
|
|
133
132
|
}>;
|
|
134
133
|
}>, t.PartialC<{
|
|
135
134
|
additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
135
|
+
employment_status: t.UnionC<[t.LiteralC<"employed">, t.LiteralC<"self_employed">, t.LiteralC<"not_employed">, t.LiteralC<"retired">]>;
|
|
136
|
+
gross_annual_income: t.IntersectionC<[t.TypeC<{
|
|
137
|
+
amount: t.NumberC;
|
|
138
|
+
}>, t.PartialC<{
|
|
139
|
+
currency: t.LiteralC<"GBP">;
|
|
140
|
+
}>]>;
|
|
139
141
|
}>, t.PartialC<{
|
|
140
|
-
|
|
142
|
+
employed_details: t.IntersectionC<[t.TypeC<{
|
|
143
|
+
employer_name: t.StringC;
|
|
144
|
+
main_occupation: t.StringC;
|
|
145
|
+
months_employed: t.NumberC;
|
|
146
|
+
}>, t.PartialC<{
|
|
147
|
+
employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
148
|
+
}>]>;
|
|
149
|
+
self_employed_details: t.IntersectionC<[t.TypeC<{
|
|
150
|
+
business_name: t.StringC;
|
|
151
|
+
type_of_business: t.StringC;
|
|
152
|
+
months_self_employed: t.NumberC;
|
|
153
|
+
}>, t.PartialC<{
|
|
154
|
+
self_employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
155
|
+
}>]>;
|
|
156
|
+
not_employed_details: t.TypeC<{
|
|
157
|
+
source_of_income: t.UnionC<[t.LiteralC<"partner">, t.LiteralC<"benefits">, t.LiteralC<"maintenance">, t.LiteralC<"disabled">, t.LiteralC<"fulltime_carer">, t.LiteralC<"homemaker">, t.LiteralC<"permanent_dla">, t.LiteralC<"other">]>;
|
|
158
|
+
}>;
|
|
159
|
+
household_annual_income: t.IntersectionC<[t.TypeC<{
|
|
160
|
+
amount: t.NumberC;
|
|
161
|
+
}>, t.PartialC<{
|
|
162
|
+
currency: t.LiteralC<"GBP">;
|
|
163
|
+
}>]>;
|
|
141
164
|
}>]>>;
|
|
142
165
|
}>]>;
|
|
143
166
|
export interface ApplicantDetails {
|
|
144
167
|
bank_account: BankAccount;
|
|
145
168
|
customer_details: CustomerDetails;
|
|
146
169
|
employment_details: EmploymentDetails;
|
|
147
|
-
additional_employment_details?: Array<
|
|
170
|
+
additional_employment_details?: Array<EmploymentDetails>;
|
|
148
171
|
finance_details: FinanceDetails;
|
|
149
172
|
}
|
|
150
173
|
//# sourceMappingURL=ApplicantDetails.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApplicantDetails.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/ApplicantDetails.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"ApplicantDetails.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/ApplicantDetails.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAU3B,CAAC;AAEH,MAAM,WAAW,gBAAgB;IAC/B,YAAY,EAAE,WAAW,CAAC;IAC1B,gBAAgB,EAAE,eAAe,CAAC;IAClC,kBAAkB,EAAE,iBAAiB,CAAC;IACtC,6BAA6B,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACzD,eAAe,EAAE,cAAc,CAAC;CACjC"}
|
|
@@ -27,7 +27,6 @@ exports.ApplicantDetails = void 0;
|
|
|
27
27
|
const t = __importStar(require("io-ts"));
|
|
28
28
|
const BankAccount_1 = require("./BankAccount");
|
|
29
29
|
const CustomerDetails_1 = require("./CustomerDetails");
|
|
30
|
-
const EmployedDetails_1 = require("./EmployedDetails");
|
|
31
30
|
const EmploymentDetails_1 = require("./EmploymentDetails");
|
|
32
31
|
const FinanceDetails_1 = require("./FinanceDetails");
|
|
33
32
|
exports.ApplicantDetails = t.intersection([
|
|
@@ -38,6 +37,6 @@ exports.ApplicantDetails = t.intersection([
|
|
|
38
37
|
finance_details: FinanceDetails_1.FinanceDetails,
|
|
39
38
|
}),
|
|
40
39
|
t.partial({
|
|
41
|
-
additional_employment_details: t.array(
|
|
40
|
+
additional_employment_details: t.array(EmploymentDetails_1.EmploymentDetails),
|
|
42
41
|
}),
|
|
43
42
|
]);
|
|
@@ -317,11 +317,35 @@ export declare const Credit: t.IntersectionC<[t.TypeC<{
|
|
|
317
317
|
}>;
|
|
318
318
|
}>, t.PartialC<{
|
|
319
319
|
additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
320
|
+
employment_status: t.UnionC<[t.LiteralC<"employed">, t.LiteralC<"self_employed">, t.LiteralC<"not_employed">, t.LiteralC<"retired">]>;
|
|
321
|
+
gross_annual_income: t.IntersectionC<[t.TypeC<{
|
|
322
|
+
amount: t.NumberC;
|
|
323
|
+
}>, t.PartialC<{
|
|
324
|
+
currency: t.LiteralC<"GBP">;
|
|
325
|
+
}>]>;
|
|
323
326
|
}>, t.PartialC<{
|
|
324
|
-
|
|
327
|
+
employed_details: t.IntersectionC<[t.TypeC<{
|
|
328
|
+
employer_name: t.StringC;
|
|
329
|
+
main_occupation: t.StringC;
|
|
330
|
+
months_employed: t.NumberC;
|
|
331
|
+
}>, t.PartialC<{
|
|
332
|
+
employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
333
|
+
}>]>;
|
|
334
|
+
self_employed_details: t.IntersectionC<[t.TypeC<{
|
|
335
|
+
business_name: t.StringC;
|
|
336
|
+
type_of_business: t.StringC;
|
|
337
|
+
months_self_employed: t.NumberC;
|
|
338
|
+
}>, t.PartialC<{
|
|
339
|
+
self_employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
340
|
+
}>]>;
|
|
341
|
+
not_employed_details: t.TypeC<{
|
|
342
|
+
source_of_income: t.UnionC<[t.LiteralC<"partner">, t.LiteralC<"benefits">, t.LiteralC<"maintenance">, t.LiteralC<"disabled">, t.LiteralC<"fulltime_carer">, t.LiteralC<"homemaker">, t.LiteralC<"permanent_dla">, t.LiteralC<"other">]>;
|
|
343
|
+
}>;
|
|
344
|
+
household_annual_income: t.IntersectionC<[t.TypeC<{
|
|
345
|
+
amount: t.NumberC;
|
|
346
|
+
}>, t.PartialC<{
|
|
347
|
+
currency: t.LiteralC<"GBP">;
|
|
348
|
+
}>]>;
|
|
325
349
|
}>]>>;
|
|
326
350
|
}>]>>;
|
|
327
351
|
credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Credit.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Credit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"Credit.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Credit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqCjB,CAAC;AAEH,MAAM,WAAW,MAAM;IACrB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,GAAG,WAAW,CAAC;IAChC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EACF,UAAU,GACV,UAAU,GACV,UAAU,GACV,eAAe,GACf,iBAAiB,GACjB,SAAS,GACT,UAAU,GACV,UAAU,GACV,WAAW,CAAC;IAChB,MAAM,CAAC,EAAE,KAAK,CAAC;IACf,aAAa,CAAC,EAAE,KAAK,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,WAAW,CAAC;IAC1B,gBAAgB,EAAE,eAAe,CAAC;IAClC,kBAAkB,EAAE,iBAAiB,CAAC;IACtC,6BAA6B,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACzD,eAAe,CAAC,EAAE,cAAc,CAAC;IACjC,gBAAgB,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC3C,gBAAgB,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;IACnC,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,QAAQ,CAAC,EAAE,QAAQ,CAAC;CACrB"}
|
|
@@ -507,11 +507,35 @@ export declare const Entity: t.PartialC<{
|
|
|
507
507
|
}>;
|
|
508
508
|
}>, t.PartialC<{
|
|
509
509
|
additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
510
|
+
employment_status: t.UnionC<[t.LiteralC<"employed">, t.LiteralC<"self_employed">, t.LiteralC<"not_employed">, t.LiteralC<"retired">]>;
|
|
511
|
+
gross_annual_income: t.IntersectionC<[t.TypeC<{
|
|
512
|
+
amount: t.NumberC;
|
|
513
|
+
}>, t.PartialC<{
|
|
514
|
+
currency: t.LiteralC<"GBP">;
|
|
515
|
+
}>]>;
|
|
513
516
|
}>, t.PartialC<{
|
|
514
|
-
|
|
517
|
+
employed_details: t.IntersectionC<[t.TypeC<{
|
|
518
|
+
employer_name: t.StringC;
|
|
519
|
+
main_occupation: t.StringC;
|
|
520
|
+
months_employed: t.NumberC;
|
|
521
|
+
}>, t.PartialC<{
|
|
522
|
+
employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
523
|
+
}>]>;
|
|
524
|
+
self_employed_details: t.IntersectionC<[t.TypeC<{
|
|
525
|
+
business_name: t.StringC;
|
|
526
|
+
type_of_business: t.StringC;
|
|
527
|
+
months_self_employed: t.NumberC;
|
|
528
|
+
}>, t.PartialC<{
|
|
529
|
+
self_employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
530
|
+
}>]>;
|
|
531
|
+
not_employed_details: t.TypeC<{
|
|
532
|
+
source_of_income: t.UnionC<[t.LiteralC<"partner">, t.LiteralC<"benefits">, t.LiteralC<"maintenance">, t.LiteralC<"disabled">, t.LiteralC<"fulltime_carer">, t.LiteralC<"homemaker">, t.LiteralC<"permanent_dla">, t.LiteralC<"other">]>;
|
|
533
|
+
}>;
|
|
534
|
+
household_annual_income: t.IntersectionC<[t.TypeC<{
|
|
535
|
+
amount: t.NumberC;
|
|
536
|
+
}>, t.PartialC<{
|
|
537
|
+
currency: t.LiteralC<"GBP">;
|
|
538
|
+
}>]>;
|
|
515
539
|
}>]>>;
|
|
516
540
|
}>]>>;
|
|
517
541
|
credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Entity.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Entity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"Entity.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Entity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOjB,CAAC;AAEH,MAAM,WAAW,MAAM;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,YAAY,CAAC;CAC7B"}
|
|
@@ -514,11 +514,35 @@ export declare const Event: t.IntersectionC<[t.TypeC<{
|
|
|
514
514
|
}>;
|
|
515
515
|
}>, t.PartialC<{
|
|
516
516
|
additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
517
|
+
employment_status: t.UnionC<[t.LiteralC<"employed">, t.LiteralC<"self_employed">, t.LiteralC<"not_employed">, t.LiteralC<"retired">]>;
|
|
518
|
+
gross_annual_income: t.IntersectionC<[t.TypeC<{
|
|
519
|
+
amount: t.NumberC;
|
|
520
|
+
}>, t.PartialC<{
|
|
521
|
+
currency: t.LiteralC<"GBP">;
|
|
522
|
+
}>]>;
|
|
520
523
|
}>, t.PartialC<{
|
|
521
|
-
|
|
524
|
+
employed_details: t.IntersectionC<[t.TypeC<{
|
|
525
|
+
employer_name: t.StringC;
|
|
526
|
+
main_occupation: t.StringC;
|
|
527
|
+
months_employed: t.NumberC;
|
|
528
|
+
}>, t.PartialC<{
|
|
529
|
+
employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
530
|
+
}>]>;
|
|
531
|
+
self_employed_details: t.IntersectionC<[t.TypeC<{
|
|
532
|
+
business_name: t.StringC;
|
|
533
|
+
type_of_business: t.StringC;
|
|
534
|
+
months_self_employed: t.NumberC;
|
|
535
|
+
}>, t.PartialC<{
|
|
536
|
+
self_employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
537
|
+
}>]>;
|
|
538
|
+
not_employed_details: t.TypeC<{
|
|
539
|
+
source_of_income: t.UnionC<[t.LiteralC<"partner">, t.LiteralC<"benefits">, t.LiteralC<"maintenance">, t.LiteralC<"disabled">, t.LiteralC<"fulltime_carer">, t.LiteralC<"homemaker">, t.LiteralC<"permanent_dla">, t.LiteralC<"other">]>;
|
|
540
|
+
}>;
|
|
541
|
+
household_annual_income: t.IntersectionC<[t.TypeC<{
|
|
542
|
+
amount: t.NumberC;
|
|
543
|
+
}>, t.PartialC<{
|
|
544
|
+
currency: t.LiteralC<"GBP">;
|
|
545
|
+
}>]>;
|
|
522
546
|
}>]>>;
|
|
523
547
|
}>]>>;
|
|
524
548
|
credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Event.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Event.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"Event.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Event.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoBhB,CAAC;AAEH,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,KAAK,GAAG,OAAO,GAAG,SAAS,CAAC;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,QAAQ,CAAC,EAAE,QAAQ,CAAC;CACrB"}
|
|
@@ -318,11 +318,35 @@ export declare const applyCreditOperation: {
|
|
|
318
318
|
}>;
|
|
319
319
|
}>, import("io-ts").PartialC<{
|
|
320
320
|
additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
321
|
+
employment_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"employed">, import("io-ts").LiteralC<"self_employed">, import("io-ts").LiteralC<"not_employed">, import("io-ts").LiteralC<"retired">]>;
|
|
322
|
+
gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
323
|
+
amount: import("io-ts").NumberC;
|
|
324
|
+
}>, import("io-ts").PartialC<{
|
|
325
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
326
|
+
}>]>;
|
|
324
327
|
}>, import("io-ts").PartialC<{
|
|
325
|
-
|
|
328
|
+
employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
329
|
+
employer_name: import("io-ts").StringC;
|
|
330
|
+
main_occupation: import("io-ts").StringC;
|
|
331
|
+
months_employed: import("io-ts").NumberC;
|
|
332
|
+
}>, import("io-ts").PartialC<{
|
|
333
|
+
employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
|
|
334
|
+
}>]>;
|
|
335
|
+
self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
336
|
+
business_name: import("io-ts").StringC;
|
|
337
|
+
type_of_business: import("io-ts").StringC;
|
|
338
|
+
months_self_employed: import("io-ts").NumberC;
|
|
339
|
+
}>, import("io-ts").PartialC<{
|
|
340
|
+
self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
|
|
341
|
+
}>]>;
|
|
342
|
+
not_employed_details: import("io-ts").TypeC<{
|
|
343
|
+
source_of_income: import("io-ts").UnionC<[import("io-ts").LiteralC<"partner">, import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"maintenance">, import("io-ts").LiteralC<"disabled">, import("io-ts").LiteralC<"fulltime_carer">, import("io-ts").LiteralC<"homemaker">, import("io-ts").LiteralC<"permanent_dla">, import("io-ts").LiteralC<"other">]>;
|
|
344
|
+
}>;
|
|
345
|
+
household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
346
|
+
amount: import("io-ts").NumberC;
|
|
347
|
+
}>, import("io-ts").PartialC<{
|
|
348
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
349
|
+
}>]>;
|
|
326
350
|
}>]>>;
|
|
327
351
|
}>]>>;
|
|
328
352
|
credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applyCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/applyCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,4BAA4B,GAAG;IACzC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"applyCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/applyCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,4BAA4B,GAAG;IACzC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBvB,CAAC;AAEX,oBAAY,0BAA0B,GAAG,eAAe,CACtD;IAAE,MAAM,EAAE,4BAA4B,CAAA;CAAE,EACxC,OAAO,CAAC,MAAM,CACf,CAAC"}
|
|
@@ -318,11 +318,35 @@ export declare const checkCreditOperation: {
|
|
|
318
318
|
}>;
|
|
319
319
|
}>, import("io-ts").PartialC<{
|
|
320
320
|
additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
321
|
+
employment_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"employed">, import("io-ts").LiteralC<"self_employed">, import("io-ts").LiteralC<"not_employed">, import("io-ts").LiteralC<"retired">]>;
|
|
322
|
+
gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
323
|
+
amount: import("io-ts").NumberC;
|
|
324
|
+
}>, import("io-ts").PartialC<{
|
|
325
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
326
|
+
}>]>;
|
|
324
327
|
}>, import("io-ts").PartialC<{
|
|
325
|
-
|
|
328
|
+
employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
329
|
+
employer_name: import("io-ts").StringC;
|
|
330
|
+
main_occupation: import("io-ts").StringC;
|
|
331
|
+
months_employed: import("io-ts").NumberC;
|
|
332
|
+
}>, import("io-ts").PartialC<{
|
|
333
|
+
employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
|
|
334
|
+
}>]>;
|
|
335
|
+
self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
336
|
+
business_name: import("io-ts").StringC;
|
|
337
|
+
type_of_business: import("io-ts").StringC;
|
|
338
|
+
months_self_employed: import("io-ts").NumberC;
|
|
339
|
+
}>, import("io-ts").PartialC<{
|
|
340
|
+
self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
|
|
341
|
+
}>]>;
|
|
342
|
+
not_employed_details: import("io-ts").TypeC<{
|
|
343
|
+
source_of_income: import("io-ts").UnionC<[import("io-ts").LiteralC<"partner">, import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"maintenance">, import("io-ts").LiteralC<"disabled">, import("io-ts").LiteralC<"fulltime_carer">, import("io-ts").LiteralC<"homemaker">, import("io-ts").LiteralC<"permanent_dla">, import("io-ts").LiteralC<"other">]>;
|
|
344
|
+
}>;
|
|
345
|
+
household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
346
|
+
amount: import("io-ts").NumberC;
|
|
347
|
+
}>, import("io-ts").PartialC<{
|
|
348
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
349
|
+
}>]>;
|
|
326
350
|
}>]>>;
|
|
327
351
|
}>]>>;
|
|
328
352
|
credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/checkCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,4BAA4B,GAAG;IACzC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"checkCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/checkCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,4BAA4B,GAAG;IACzC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBvB,CAAC;AAEX,oBAAY,0BAA0B,GAAG,eAAe,CACtD;IAAE,MAAM,EAAE,4BAA4B,CAAA;CAAE,EACxC,OAAO,CAAC,MAAM,CACf,CAAC"}
|
|
@@ -318,11 +318,35 @@ export declare const deleteCreditOperation: {
|
|
|
318
318
|
}>;
|
|
319
319
|
}>, import("io-ts").PartialC<{
|
|
320
320
|
additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
321
|
+
employment_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"employed">, import("io-ts").LiteralC<"self_employed">, import("io-ts").LiteralC<"not_employed">, import("io-ts").LiteralC<"retired">]>;
|
|
322
|
+
gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
323
|
+
amount: import("io-ts").NumberC;
|
|
324
|
+
}>, import("io-ts").PartialC<{
|
|
325
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
326
|
+
}>]>;
|
|
324
327
|
}>, import("io-ts").PartialC<{
|
|
325
|
-
|
|
328
|
+
employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
329
|
+
employer_name: import("io-ts").StringC;
|
|
330
|
+
main_occupation: import("io-ts").StringC;
|
|
331
|
+
months_employed: import("io-ts").NumberC;
|
|
332
|
+
}>, import("io-ts").PartialC<{
|
|
333
|
+
employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
|
|
334
|
+
}>]>;
|
|
335
|
+
self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
336
|
+
business_name: import("io-ts").StringC;
|
|
337
|
+
type_of_business: import("io-ts").StringC;
|
|
338
|
+
months_self_employed: import("io-ts").NumberC;
|
|
339
|
+
}>, import("io-ts").PartialC<{
|
|
340
|
+
self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
|
|
341
|
+
}>]>;
|
|
342
|
+
not_employed_details: import("io-ts").TypeC<{
|
|
343
|
+
source_of_income: import("io-ts").UnionC<[import("io-ts").LiteralC<"partner">, import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"maintenance">, import("io-ts").LiteralC<"disabled">, import("io-ts").LiteralC<"fulltime_carer">, import("io-ts").LiteralC<"homemaker">, import("io-ts").LiteralC<"permanent_dla">, import("io-ts").LiteralC<"other">]>;
|
|
344
|
+
}>;
|
|
345
|
+
household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
346
|
+
amount: import("io-ts").NumberC;
|
|
347
|
+
}>, import("io-ts").PartialC<{
|
|
348
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
349
|
+
}>]>;
|
|
326
350
|
}>]>>;
|
|
327
351
|
}>]>>;
|
|
328
352
|
credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deleteCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/deleteCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,6BAA6B,GAAG;IAC1C,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"deleteCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/deleteCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,6BAA6B,GAAG;IAC1C,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBxB,CAAC;AAEX,oBAAY,2BAA2B,GAAG,eAAe,CACvD;IAAE,MAAM,EAAE,6BAA6B,CAAA;CAAE,EACzC,OAAO,CAAC,MAAM,CACf,CAAC"}
|
|
@@ -318,11 +318,35 @@ export declare const getCreditOperation: {
|
|
|
318
318
|
}>;
|
|
319
319
|
}>, import("io-ts").PartialC<{
|
|
320
320
|
additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
321
|
+
employment_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"employed">, import("io-ts").LiteralC<"self_employed">, import("io-ts").LiteralC<"not_employed">, import("io-ts").LiteralC<"retired">]>;
|
|
322
|
+
gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
323
|
+
amount: import("io-ts").NumberC;
|
|
324
|
+
}>, import("io-ts").PartialC<{
|
|
325
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
326
|
+
}>]>;
|
|
324
327
|
}>, import("io-ts").PartialC<{
|
|
325
|
-
|
|
328
|
+
employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
329
|
+
employer_name: import("io-ts").StringC;
|
|
330
|
+
main_occupation: import("io-ts").StringC;
|
|
331
|
+
months_employed: import("io-ts").NumberC;
|
|
332
|
+
}>, import("io-ts").PartialC<{
|
|
333
|
+
employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
|
|
334
|
+
}>]>;
|
|
335
|
+
self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
336
|
+
business_name: import("io-ts").StringC;
|
|
337
|
+
type_of_business: import("io-ts").StringC;
|
|
338
|
+
months_self_employed: import("io-ts").NumberC;
|
|
339
|
+
}>, import("io-ts").PartialC<{
|
|
340
|
+
self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
|
|
341
|
+
}>]>;
|
|
342
|
+
not_employed_details: import("io-ts").TypeC<{
|
|
343
|
+
source_of_income: import("io-ts").UnionC<[import("io-ts").LiteralC<"partner">, import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"maintenance">, import("io-ts").LiteralC<"disabled">, import("io-ts").LiteralC<"fulltime_carer">, import("io-ts").LiteralC<"homemaker">, import("io-ts").LiteralC<"permanent_dla">, import("io-ts").LiteralC<"other">]>;
|
|
344
|
+
}>;
|
|
345
|
+
household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
346
|
+
amount: import("io-ts").NumberC;
|
|
347
|
+
}>, import("io-ts").PartialC<{
|
|
348
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
349
|
+
}>]>;
|
|
326
350
|
}>]>>;
|
|
327
351
|
}>]>>;
|
|
328
352
|
credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,0BAA0B,GAAG;IACvC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"getCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,0BAA0B,GAAG;IACvC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,eAAe,CACpD;IAAE,MAAM,EAAE,0BAA0B,CAAA;CAAE,EACtC,OAAO,CAAC,MAAM,CACf,CAAC"}
|
|
@@ -316,11 +316,35 @@ export declare const getCreditsOperation: {
|
|
|
316
316
|
}>;
|
|
317
317
|
}>, t.PartialC<{
|
|
318
318
|
additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
319
|
+
employment_status: t.UnionC<[t.LiteralC<"employed">, t.LiteralC<"self_employed">, t.LiteralC<"not_employed">, t.LiteralC<"retired">]>;
|
|
320
|
+
gross_annual_income: t.IntersectionC<[t.TypeC<{
|
|
321
|
+
amount: t.NumberC;
|
|
322
|
+
}>, t.PartialC<{
|
|
323
|
+
currency: t.LiteralC<"GBP">;
|
|
324
|
+
}>]>;
|
|
322
325
|
}>, t.PartialC<{
|
|
323
|
-
|
|
326
|
+
employed_details: t.IntersectionC<[t.TypeC<{
|
|
327
|
+
employer_name: t.StringC;
|
|
328
|
+
main_occupation: t.StringC;
|
|
329
|
+
months_employed: t.NumberC;
|
|
330
|
+
}>, t.PartialC<{
|
|
331
|
+
employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
332
|
+
}>]>;
|
|
333
|
+
self_employed_details: t.IntersectionC<[t.TypeC<{
|
|
334
|
+
business_name: t.StringC;
|
|
335
|
+
type_of_business: t.StringC;
|
|
336
|
+
months_self_employed: t.NumberC;
|
|
337
|
+
}>, t.PartialC<{
|
|
338
|
+
self_employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
|
|
339
|
+
}>]>;
|
|
340
|
+
not_employed_details: t.TypeC<{
|
|
341
|
+
source_of_income: t.UnionC<[t.LiteralC<"partner">, t.LiteralC<"benefits">, t.LiteralC<"maintenance">, t.LiteralC<"disabled">, t.LiteralC<"fulltime_carer">, t.LiteralC<"homemaker">, t.LiteralC<"permanent_dla">, t.LiteralC<"other">]>;
|
|
342
|
+
}>;
|
|
343
|
+
household_annual_income: t.IntersectionC<[t.TypeC<{
|
|
344
|
+
amount: t.NumberC;
|
|
345
|
+
}>, t.PartialC<{
|
|
346
|
+
currency: t.LiteralC<"GBP">;
|
|
347
|
+
}>]>;
|
|
324
348
|
}>]>>;
|
|
325
349
|
}>]>>;
|
|
326
350
|
credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCredits.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCredits.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"getCredits.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCredits.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAStB,CAAC;AAEX,oBAAY,yBAAyB,GAAG,eAAe,CACrD,SAAS,EACT,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CACtB,CAAC"}
|