@kanda-libs/ks-schema 1.0.142 → 1.0.144

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.
Files changed (45) hide show
  1. package/dist/components/schemas/ApplicantDetails.d.ts +18 -2
  2. package/dist/components/schemas/ApplicantDetails.d.ts.map +1 -1
  3. package/dist/components/schemas/ApplicantDetails.js +12 -6
  4. package/dist/components/schemas/Credit.d.ts +31 -2
  5. package/dist/components/schemas/Credit.d.ts.map +1 -1
  6. package/dist/components/schemas/Credit.js +2 -0
  7. package/dist/components/schemas/Entity.d.ts +29 -2
  8. package/dist/components/schemas/Entity.d.ts.map +1 -1
  9. package/dist/components/schemas/Event.d.ts +29 -2
  10. package/dist/components/schemas/Event.d.ts.map +1 -1
  11. package/dist/components/schemas/FinanceDetails.d.ts +10 -0
  12. package/dist/components/schemas/FinanceDetails.d.ts.map +1 -1
  13. package/dist/components/schemas/FinanceDetails.js +2 -0
  14. package/dist/components/schemas/Income.d.ts +15 -0
  15. package/dist/components/schemas/Income.d.ts.map +1 -0
  16. package/dist/components/schemas/Income.js +37 -0
  17. package/dist/components/schemas/index.d.ts +1 -0
  18. package/dist/components/schemas/index.d.ts.map +1 -1
  19. package/dist/components/schemas/index.js +1 -0
  20. package/dist/operations/applyCredit.d.ts +29 -2
  21. package/dist/operations/applyCredit.d.ts.map +1 -1
  22. package/dist/operations/checkCredit.d.ts +29 -2
  23. package/dist/operations/checkCredit.d.ts.map +1 -1
  24. package/dist/operations/deleteCredit.d.ts +29 -2
  25. package/dist/operations/deleteCredit.d.ts.map +1 -1
  26. package/dist/operations/getCredit.d.ts +29 -2
  27. package/dist/operations/getCredit.d.ts.map +1 -1
  28. package/dist/operations/getCredits.d.ts +29 -2
  29. package/dist/operations/getCredits.d.ts.map +1 -1
  30. package/dist/operations/index.d.ts +261 -18
  31. package/dist/operations/index.d.ts.map +1 -1
  32. package/dist/operations/postCredit.d.ts +29 -2
  33. package/dist/operations/postCredit.d.ts.map +1 -1
  34. package/dist/operations/putCredit.d.ts +29 -2
  35. package/dist/operations/putCredit.d.ts.map +1 -1
  36. package/dist/operations/quoteCredit.d.ts +29 -2
  37. package/dist/operations/quoteCredit.d.ts.map +1 -1
  38. package/dist/operations/signCredit.d.ts +29 -2
  39. package/dist/operations/signCredit.d.ts.map +1 -1
  40. package/dist/schema.json +1 -1
  41. package/dist/widget/index.d.ts +6685 -6224
  42. package/dist/widget/index.d.ts.map +1 -1
  43. package/dist/widget/index.js +11647 -11082
  44. package/package.json +1 -1
  45. package/schema.yaml +31 -0
@@ -1,9 +1,10 @@
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";
4
5
  import { EmploymentDetails } from "./EmploymentDetails";
5
6
  import { FinanceDetails } from "./FinanceDetails";
6
- export declare const ApplicantDetails: t.TypeC<{
7
+ export declare const ApplicantDetails: t.IntersectionC<[t.TypeC<{
7
8
  bank_account: t.IntersectionC<[t.TypeC<{
8
9
  account_name: t.StringC;
9
10
  account_number: t.StringC;
@@ -109,6 +110,14 @@ export declare const ApplicantDetails: t.TypeC<{
109
110
  }>]>;
110
111
  finance_details: t.PartialC<{
111
112
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
113
+ incomes: t.ArrayC<t.PartialC<{
114
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
115
+ monthly_amount: t.IntersectionC<[t.TypeC<{
116
+ amount: t.NumberC;
117
+ }>, t.PartialC<{
118
+ currency: t.LiteralC<"GBP">;
119
+ }>]>;
120
+ }>>;
112
121
  expenditures: t.ArrayC<t.PartialC<{
113
122
  expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
114
123
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -118,11 +127,18 @@ export declare const ApplicantDetails: t.TypeC<{
118
127
  }>]>;
119
128
  }>>;
120
129
  }>;
121
- }>;
130
+ }>, t.PartialC<{
131
+ additional_employment_details: t.ArrayC<t.TypeC<{
132
+ employer_name: t.StringC;
133
+ main_occupation: t.StringC;
134
+ months_employed: t.NumberC;
135
+ }>>;
136
+ }>]>;
122
137
  export interface ApplicantDetails {
123
138
  bank_account: BankAccount;
124
139
  customer_details: CustomerDetails;
125
140
  employment_details: EmploymentDetails;
141
+ additional_employment_details?: Array<EmployedDetails>;
126
142
  finance_details: FinanceDetails;
127
143
  }
128
144
  //# 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,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK3B,CAAC;AAEH,MAAM,WAAW,gBAAgB;IAC/B,YAAY,EAAE,WAAW,CAAC;IAC1B,gBAAgB,EAAE,eAAe,CAAC;IAClC,kBAAkB,EAAE,iBAAiB,CAAC;IACtC,eAAe,EAAE,cAAc,CAAC;CACjC"}
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,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,eAAe,CAAC,CAAC;IACvD,eAAe,EAAE,cAAc,CAAC;CACjC"}
@@ -27,11 +27,17 @@ 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");
30
31
  const EmploymentDetails_1 = require("./EmploymentDetails");
31
32
  const FinanceDetails_1 = require("./FinanceDetails");
32
- exports.ApplicantDetails = t.type({
33
- bank_account: BankAccount_1.BankAccount,
34
- customer_details: CustomerDetails_1.CustomerDetails,
35
- employment_details: EmploymentDetails_1.EmploymentDetails,
36
- finance_details: FinanceDetails_1.FinanceDetails,
37
- });
33
+ exports.ApplicantDetails = t.intersection([
34
+ t.type({
35
+ bank_account: BankAccount_1.BankAccount,
36
+ customer_details: CustomerDetails_1.CustomerDetails,
37
+ employment_details: EmploymentDetails_1.EmploymentDetails,
38
+ finance_details: FinanceDetails_1.FinanceDetails,
39
+ }),
40
+ t.partial({
41
+ additional_employment_details: t.array(EmployedDetails_1.EmployedDetails),
42
+ }),
43
+ ]);
@@ -3,6 +3,7 @@ import { ApplicantDetails } from "./ApplicantDetails";
3
3
  import { BankAccount } from "./BankAccount";
4
4
  import { CustomerDetails } from "./CustomerDetails";
5
5
  import { Document } from "./Document";
6
+ import { EmployedDetails } from "./EmployedDetails";
6
7
  import { EmploymentDetails } from "./EmploymentDetails";
7
8
  import { FinanceDetails } from "./FinanceDetails";
8
9
  import { Metadata } from "./Metadata";
@@ -134,8 +135,21 @@ export declare const Credit: t.IntersectionC<[t.TypeC<{
134
135
  }>, t.PartialC<{
135
136
  currency: t.LiteralC<"GBP">;
136
137
  }>]>;
138
+ additional_employment_details: t.ArrayC<t.TypeC<{
139
+ employer_name: t.StringC;
140
+ main_occupation: t.StringC;
141
+ months_employed: t.NumberC;
142
+ }>>;
137
143
  finance_details: t.PartialC<{
138
144
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
145
+ incomes: t.ArrayC<t.PartialC<{
146
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
147
+ monthly_amount: t.IntersectionC<[t.TypeC<{
148
+ amount: t.NumberC;
149
+ }>, t.PartialC<{
150
+ currency: t.LiteralC<"GBP">;
151
+ }>]>;
152
+ }>>;
139
153
  expenditures: t.ArrayC<t.PartialC<{
140
154
  expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
141
155
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -145,7 +159,7 @@ export declare const Credit: t.IntersectionC<[t.TypeC<{
145
159
  }>]>;
146
160
  }>>;
147
161
  }>;
148
- extra_applicants: t.ArrayC<t.TypeC<{
162
+ extra_applicants: t.ArrayC<t.IntersectionC<[t.TypeC<{
149
163
  bank_account: t.IntersectionC<[t.TypeC<{
150
164
  account_name: t.StringC;
151
165
  account_number: t.StringC;
@@ -251,6 +265,14 @@ export declare const Credit: t.IntersectionC<[t.TypeC<{
251
265
  }>]>;
252
266
  finance_details: t.PartialC<{
253
267
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
268
+ incomes: t.ArrayC<t.PartialC<{
269
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
270
+ monthly_amount: t.IntersectionC<[t.TypeC<{
271
+ amount: t.NumberC;
272
+ }>, t.PartialC<{
273
+ currency: t.LiteralC<"GBP">;
274
+ }>]>;
275
+ }>>;
254
276
  expenditures: t.ArrayC<t.PartialC<{
255
277
  expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
256
278
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -260,7 +282,13 @@ export declare const Credit: t.IntersectionC<[t.TypeC<{
260
282
  }>]>;
261
283
  }>>;
262
284
  }>;
263
- }>>;
285
+ }>, t.PartialC<{
286
+ additional_employment_details: t.ArrayC<t.TypeC<{
287
+ employer_name: t.StringC;
288
+ main_occupation: t.StringC;
289
+ months_employed: t.NumberC;
290
+ }>>;
291
+ }>]>>;
264
292
  credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
265
293
  name: t.StringC;
266
294
  }>, t.PartialC<{
@@ -303,6 +331,7 @@ export interface Credit {
303
331
  bank_account: BankAccount;
304
332
  customer_details: CustomerDetails;
305
333
  employment_details: EmploymentDetails;
334
+ additional_employment_details?: Array<EmployedDetails>;
306
335
  finance_details?: FinanceDetails;
307
336
  extra_applicants?: Array<ApplicantDetails>;
308
337
  credit_documents?: Array<Document>;
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoCjB,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,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"}
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,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,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,eAAe,CAAC,CAAC;IACvD,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"}
@@ -29,6 +29,7 @@ const ApplicantDetails_1 = require("./ApplicantDetails");
29
29
  const BankAccount_1 = require("./BankAccount");
30
30
  const CustomerDetails_1 = require("./CustomerDetails");
31
31
  const Document_1 = require("./Document");
32
+ const EmployedDetails_1 = require("./EmployedDetails");
32
33
  const EmploymentDetails_1 = require("./EmploymentDetails");
33
34
  const FinanceDetails_1 = require("./FinanceDetails");
34
35
  const Metadata_1 = require("./Metadata");
@@ -64,6 +65,7 @@ exports.Credit = t.intersection([
64
65
  ]),
65
66
  amount: Money_1.Money,
66
67
  deposit_value: Money_1.Money,
68
+ additional_employment_details: t.array(EmployedDetails_1.EmployedDetails),
67
69
  finance_details: FinanceDetails_1.FinanceDetails,
68
70
  extra_applicants: t.array(ApplicantDetails_1.ApplicantDetails),
69
71
  credit_documents: t.array(Document_1.Document),
@@ -324,8 +324,21 @@ export declare const Entity: t.PartialC<{
324
324
  }>, t.PartialC<{
325
325
  currency: t.LiteralC<"GBP">;
326
326
  }>]>;
327
+ additional_employment_details: t.ArrayC<t.TypeC<{
328
+ employer_name: t.StringC;
329
+ main_occupation: t.StringC;
330
+ months_employed: t.NumberC;
331
+ }>>;
327
332
  finance_details: t.PartialC<{
328
333
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
334
+ incomes: t.ArrayC<t.PartialC<{
335
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
336
+ monthly_amount: t.IntersectionC<[t.TypeC<{
337
+ amount: t.NumberC;
338
+ }>, t.PartialC<{
339
+ currency: t.LiteralC<"GBP">;
340
+ }>]>;
341
+ }>>;
329
342
  expenditures: t.ArrayC<t.PartialC<{
330
343
  expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
331
344
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -335,7 +348,7 @@ export declare const Entity: t.PartialC<{
335
348
  }>]>;
336
349
  }>>;
337
350
  }>;
338
- extra_applicants: t.ArrayC<t.TypeC<{
351
+ extra_applicants: t.ArrayC<t.IntersectionC<[t.TypeC<{
339
352
  bank_account: t.IntersectionC<[t.TypeC<{
340
353
  account_name: t.StringC;
341
354
  account_number: t.StringC;
@@ -441,6 +454,14 @@ export declare const Entity: t.PartialC<{
441
454
  }>]>;
442
455
  finance_details: t.PartialC<{
443
456
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
457
+ incomes: t.ArrayC<t.PartialC<{
458
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
459
+ monthly_amount: t.IntersectionC<[t.TypeC<{
460
+ amount: t.NumberC;
461
+ }>, t.PartialC<{
462
+ currency: t.LiteralC<"GBP">;
463
+ }>]>;
464
+ }>>;
444
465
  expenditures: t.ArrayC<t.PartialC<{
445
466
  expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
446
467
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -450,7 +471,13 @@ export declare const Entity: t.PartialC<{
450
471
  }>]>;
451
472
  }>>;
452
473
  }>;
453
- }>>;
474
+ }>, t.PartialC<{
475
+ additional_employment_details: t.ArrayC<t.TypeC<{
476
+ employer_name: t.StringC;
477
+ main_occupation: t.StringC;
478
+ months_employed: t.NumberC;
479
+ }>>;
480
+ }>]>>;
454
481
  credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
455
482
  name: t.StringC;
456
483
  }>, t.PartialC<{
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
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"}
@@ -331,8 +331,21 @@ export declare const Event: t.IntersectionC<[t.TypeC<{
331
331
  }>, t.PartialC<{
332
332
  currency: t.LiteralC<"GBP">;
333
333
  }>]>;
334
+ additional_employment_details: t.ArrayC<t.TypeC<{
335
+ employer_name: t.StringC;
336
+ main_occupation: t.StringC;
337
+ months_employed: t.NumberC;
338
+ }>>;
334
339
  finance_details: t.PartialC<{
335
340
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
341
+ incomes: t.ArrayC<t.PartialC<{
342
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
343
+ monthly_amount: t.IntersectionC<[t.TypeC<{
344
+ amount: t.NumberC;
345
+ }>, t.PartialC<{
346
+ currency: t.LiteralC<"GBP">;
347
+ }>]>;
348
+ }>>;
336
349
  expenditures: t.ArrayC<t.PartialC<{
337
350
  expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
338
351
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -342,7 +355,7 @@ export declare const Event: t.IntersectionC<[t.TypeC<{
342
355
  }>]>;
343
356
  }>>;
344
357
  }>;
345
- extra_applicants: t.ArrayC<t.TypeC<{
358
+ extra_applicants: t.ArrayC<t.IntersectionC<[t.TypeC<{
346
359
  bank_account: t.IntersectionC<[t.TypeC<{
347
360
  account_name: t.StringC;
348
361
  account_number: t.StringC;
@@ -448,6 +461,14 @@ export declare const Event: t.IntersectionC<[t.TypeC<{
448
461
  }>]>;
449
462
  finance_details: t.PartialC<{
450
463
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
464
+ incomes: t.ArrayC<t.PartialC<{
465
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
466
+ monthly_amount: t.IntersectionC<[t.TypeC<{
467
+ amount: t.NumberC;
468
+ }>, t.PartialC<{
469
+ currency: t.LiteralC<"GBP">;
470
+ }>]>;
471
+ }>>;
451
472
  expenditures: t.ArrayC<t.PartialC<{
452
473
  expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
453
474
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -457,7 +478,13 @@ export declare const Event: t.IntersectionC<[t.TypeC<{
457
478
  }>]>;
458
479
  }>>;
459
480
  }>;
460
- }>>;
481
+ }>, t.PartialC<{
482
+ additional_employment_details: t.ArrayC<t.TypeC<{
483
+ employer_name: t.StringC;
484
+ main_occupation: t.StringC;
485
+ months_employed: t.NumberC;
486
+ }>>;
487
+ }>]>>;
461
488
  credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
462
489
  name: t.StringC;
463
490
  }>, t.PartialC<{
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
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"}
@@ -1,7 +1,16 @@
1
1
  import * as t from "io-ts";
2
2
  import { Expenditure } from "./Expenditure";
3
+ import { Income } from "./Income";
3
4
  export declare const FinanceDetails: t.PartialC<{
4
5
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
6
+ incomes: t.ArrayC<t.PartialC<{
7
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
8
+ monthly_amount: t.IntersectionC<[t.TypeC<{
9
+ amount: t.NumberC;
10
+ }>, t.PartialC<{
11
+ currency: t.LiteralC<"GBP">;
12
+ }>]>;
13
+ }>>;
5
14
  expenditures: t.ArrayC<t.PartialC<{
6
15
  expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
7
16
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -13,6 +22,7 @@ export declare const FinanceDetails: t.PartialC<{
13
22
  }>;
14
23
  export interface FinanceDetails {
15
24
  bankrupcy_or_iva_in_last_5_years?: "yes" | "no";
25
+ incomes?: Array<Income>;
16
26
  expenditures?: Array<Expenditure>;
17
27
  }
18
28
  //# sourceMappingURL=FinanceDetails.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FinanceDetails.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/FinanceDetails.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,eAAO,MAAM,cAAc;;;;;;;;;;EAMzB,CAAC;AAEH,MAAM,WAAW,cAAc;IAC7B,gCAAgC,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;IAChD,YAAY,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;CACnC"}
1
+ {"version":3,"file":"FinanceDetails.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/FinanceDetails.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AAEH,MAAM,WAAW,cAAc;IAC7B,gCAAgC,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;IAChD,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACxB,YAAY,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;CACnC"}
@@ -26,10 +26,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.FinanceDetails = void 0;
27
27
  const t = __importStar(require("io-ts"));
28
28
  const Expenditure_1 = require("./Expenditure");
29
+ const Income_1 = require("./Income");
29
30
  exports.FinanceDetails = t.partial({
30
31
  bankrupcy_or_iva_in_last_5_years: t.union([
31
32
  t.literal("yes"),
32
33
  t.literal("no"),
33
34
  ]),
35
+ incomes: t.array(Income_1.Income),
34
36
  expenditures: t.array(Expenditure_1.Expenditure),
35
37
  });
@@ -0,0 +1,15 @@
1
+ import * as t from "io-ts";
2
+ import { Money } from "./Money";
3
+ export declare const Income: t.PartialC<{
4
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
5
+ monthly_amount: t.IntersectionC<[t.TypeC<{
6
+ amount: t.NumberC;
7
+ }>, t.PartialC<{
8
+ currency: t.LiteralC<"GBP">;
9
+ }>]>;
10
+ }>;
11
+ export interface Income {
12
+ income_type?: "benefits" | "other_sources_of_income" | "pensions" | "earning_after_tax";
13
+ monthly_amount?: Money;
14
+ }
15
+ //# sourceMappingURL=Income.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Income.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/Income.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAEhC,eAAO,MAAM,MAAM;;;;;;;EAQjB,CAAC;AAEH,MAAM,WAAW,MAAM;IACrB,WAAW,CAAC,EACR,UAAU,GACV,yBAAyB,GACzB,UAAU,GACV,mBAAmB,CAAC;IACxB,cAAc,CAAC,EAAE,KAAK,CAAC;CACxB"}
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.Income = void 0;
27
+ const t = __importStar(require("io-ts"));
28
+ const Money_1 = require("./Money");
29
+ exports.Income = t.partial({
30
+ income_type: t.union([
31
+ t.literal("benefits"),
32
+ t.literal("other_sources_of_income"),
33
+ t.literal("pensions"),
34
+ t.literal("earning_after_tax"),
35
+ ]),
36
+ monthly_amount: Money_1.Money,
37
+ });
@@ -23,6 +23,7 @@ export * from "./Expenditure";
23
23
  export * from "./FinanceDetails";
24
24
  export * from "./FinanceStatus";
25
25
  export * from "./Identity";
26
+ export * from "./Income";
26
27
  export * from "./InfoAuth";
27
28
  export * from "./InfoCompany";
28
29
  export * from "./InfoGhost";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,uBAAuB,CAAC;AACtC,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../frontend/generated/components/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,uBAAuB,CAAC;AACtC,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
@@ -39,6 +39,7 @@ __exportStar(require("./Expenditure"), exports);
39
39
  __exportStar(require("./FinanceDetails"), exports);
40
40
  __exportStar(require("./FinanceStatus"), exports);
41
41
  __exportStar(require("./Identity"), exports);
42
+ __exportStar(require("./Income"), exports);
42
43
  __exportStar(require("./InfoAuth"), exports);
43
44
  __exportStar(require("./InfoCompany"), exports);
44
45
  __exportStar(require("./InfoGhost"), exports);
@@ -135,8 +135,21 @@ export declare const applyCreditOperation: {
135
135
  }>, import("io-ts").PartialC<{
136
136
  currency: import("io-ts").LiteralC<"GBP">;
137
137
  }>]>;
138
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
139
+ employer_name: import("io-ts").StringC;
140
+ main_occupation: import("io-ts").StringC;
141
+ months_employed: import("io-ts").NumberC;
142
+ }>>;
138
143
  finance_details: import("io-ts").PartialC<{
139
144
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
145
+ incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
146
+ income_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"other_sources_of_income">, import("io-ts").LiteralC<"pensions">, import("io-ts").LiteralC<"earning_after_tax">]>;
147
+ monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
148
+ amount: import("io-ts").NumberC;
149
+ }>, import("io-ts").PartialC<{
150
+ currency: import("io-ts").LiteralC<"GBP">;
151
+ }>]>;
152
+ }>>;
140
153
  expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
141
154
  expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
142
155
  monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -146,7 +159,7 @@ export declare const applyCreditOperation: {
146
159
  }>]>;
147
160
  }>>;
148
161
  }>;
149
- extra_applicants: import("io-ts").ArrayC<import("io-ts").TypeC<{
162
+ extra_applicants: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
150
163
  bank_account: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
151
164
  account_name: import("io-ts").StringC;
152
165
  account_number: import("io-ts").StringC;
@@ -252,6 +265,14 @@ export declare const applyCreditOperation: {
252
265
  }>]>;
253
266
  finance_details: import("io-ts").PartialC<{
254
267
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
268
+ incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
269
+ income_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"other_sources_of_income">, import("io-ts").LiteralC<"pensions">, import("io-ts").LiteralC<"earning_after_tax">]>;
270
+ monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
271
+ amount: import("io-ts").NumberC;
272
+ }>, import("io-ts").PartialC<{
273
+ currency: import("io-ts").LiteralC<"GBP">;
274
+ }>]>;
275
+ }>>;
255
276
  expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
256
277
  expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
257
278
  monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -261,7 +282,13 @@ export declare const applyCreditOperation: {
261
282
  }>]>;
262
283
  }>>;
263
284
  }>;
264
- }>>;
285
+ }>, import("io-ts").PartialC<{
286
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
287
+ employer_name: import("io-ts").StringC;
288
+ main_occupation: import("io-ts").StringC;
289
+ months_employed: import("io-ts").NumberC;
290
+ }>>;
291
+ }>]>>;
265
292
  credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
266
293
  name: import("io-ts").StringC;
267
294
  }>, import("io-ts").PartialC<{
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBvB,CAAC;AAEX,oBAAY,0BAA0B,GAAG,eAAe,CACtD;IAAE,MAAM,EAAE,4BAA4B,CAAA;CAAE,EACxC,OAAO,CAAC,MAAM,CACf,CAAC"}
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"}
@@ -135,8 +135,21 @@ export declare const checkCreditOperation: {
135
135
  }>, import("io-ts").PartialC<{
136
136
  currency: import("io-ts").LiteralC<"GBP">;
137
137
  }>]>;
138
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
139
+ employer_name: import("io-ts").StringC;
140
+ main_occupation: import("io-ts").StringC;
141
+ months_employed: import("io-ts").NumberC;
142
+ }>>;
138
143
  finance_details: import("io-ts").PartialC<{
139
144
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
145
+ incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
146
+ income_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"other_sources_of_income">, import("io-ts").LiteralC<"pensions">, import("io-ts").LiteralC<"earning_after_tax">]>;
147
+ monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
148
+ amount: import("io-ts").NumberC;
149
+ }>, import("io-ts").PartialC<{
150
+ currency: import("io-ts").LiteralC<"GBP">;
151
+ }>]>;
152
+ }>>;
140
153
  expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
141
154
  expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
142
155
  monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -146,7 +159,7 @@ export declare const checkCreditOperation: {
146
159
  }>]>;
147
160
  }>>;
148
161
  }>;
149
- extra_applicants: import("io-ts").ArrayC<import("io-ts").TypeC<{
162
+ extra_applicants: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
150
163
  bank_account: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
151
164
  account_name: import("io-ts").StringC;
152
165
  account_number: import("io-ts").StringC;
@@ -252,6 +265,14 @@ export declare const checkCreditOperation: {
252
265
  }>]>;
253
266
  finance_details: import("io-ts").PartialC<{
254
267
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
268
+ incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
269
+ income_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"other_sources_of_income">, import("io-ts").LiteralC<"pensions">, import("io-ts").LiteralC<"earning_after_tax">]>;
270
+ monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
271
+ amount: import("io-ts").NumberC;
272
+ }>, import("io-ts").PartialC<{
273
+ currency: import("io-ts").LiteralC<"GBP">;
274
+ }>]>;
275
+ }>>;
255
276
  expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
256
277
  expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
257
278
  monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -261,7 +282,13 @@ export declare const checkCreditOperation: {
261
282
  }>]>;
262
283
  }>>;
263
284
  }>;
264
- }>>;
285
+ }>, import("io-ts").PartialC<{
286
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
287
+ employer_name: import("io-ts").StringC;
288
+ main_occupation: import("io-ts").StringC;
289
+ months_employed: import("io-ts").NumberC;
290
+ }>>;
291
+ }>]>>;
265
292
  credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
266
293
  name: import("io-ts").StringC;
267
294
  }>, import("io-ts").PartialC<{
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBvB,CAAC;AAEX,oBAAY,0BAA0B,GAAG,eAAe,CACtD;IAAE,MAAM,EAAE,4BAA4B,CAAA;CAAE,EACxC,OAAO,CAAC,MAAM,CACf,CAAC"}
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"}