@kanda-libs/ks-schema 1.0.145 → 1.0.146

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 (43) hide show
  1. package/dist/components/schemas/ApplicantDetails.d.ts +17 -11
  2. package/dist/components/schemas/ApplicantDetails.d.ts.map +1 -1
  3. package/dist/components/schemas/Credit.d.ts +34 -22
  4. package/dist/components/schemas/Credit.d.ts.map +1 -1
  5. package/dist/components/schemas/EmployedDetails.d.ts +5 -2
  6. package/dist/components/schemas/EmployedDetails.d.ts.map +1 -1
  7. package/dist/components/schemas/EmployedDetails.js +10 -5
  8. package/dist/components/schemas/EmploymentDetails.d.ts +14 -10
  9. package/dist/components/schemas/EmploymentDetails.d.ts.map +1 -1
  10. package/dist/components/schemas/EmploymentDetails.js +1 -1
  11. package/dist/components/schemas/Entity.d.ts +34 -22
  12. package/dist/components/schemas/Entity.d.ts.map +1 -1
  13. package/dist/components/schemas/Event.d.ts +34 -22
  14. package/dist/components/schemas/Event.d.ts.map +1 -1
  15. package/dist/components/schemas/SelfEmployedDetails.d.ts +5 -2
  16. package/dist/components/schemas/SelfEmployedDetails.d.ts.map +1 -1
  17. package/dist/components/schemas/SelfEmployedDetails.js +13 -5
  18. package/dist/operations/applyCredit.d.ts +34 -22
  19. package/dist/operations/applyCredit.d.ts.map +1 -1
  20. package/dist/operations/checkCredit.d.ts +34 -22
  21. package/dist/operations/checkCredit.d.ts.map +1 -1
  22. package/dist/operations/deleteCredit.d.ts +34 -22
  23. package/dist/operations/deleteCredit.d.ts.map +1 -1
  24. package/dist/operations/getCredit.d.ts +34 -22
  25. package/dist/operations/getCredit.d.ts.map +1 -1
  26. package/dist/operations/getCredits.d.ts +34 -22
  27. package/dist/operations/getCredits.d.ts.map +1 -1
  28. package/dist/operations/index.d.ts +306 -198
  29. package/dist/operations/index.d.ts.map +1 -1
  30. package/dist/operations/postCredit.d.ts +34 -22
  31. package/dist/operations/postCredit.d.ts.map +1 -1
  32. package/dist/operations/putCredit.d.ts +34 -22
  33. package/dist/operations/putCredit.d.ts.map +1 -1
  34. package/dist/operations/quoteCredit.d.ts +34 -22
  35. package/dist/operations/quoteCredit.d.ts.map +1 -1
  36. package/dist/operations/signCredit.d.ts +34 -22
  37. package/dist/operations/signCredit.d.ts.map +1 -1
  38. package/dist/schema.json +1 -1
  39. package/dist/widget/index.d.ts +6959 -6909
  40. package/dist/widget/index.d.ts.map +1 -1
  41. package/dist/widget/index.js +15885 -15672
  42. package/package.json +1 -1
  43. package/schema.yaml +12 -1
@@ -94,25 +94,29 @@ export declare const applyCreditOperation: {
94
94
  }>, import("io-ts").PartialC<{
95
95
  currency: import("io-ts").LiteralC<"GBP">;
96
96
  }>]>;
97
- household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
98
- amount: import("io-ts").NumberC;
99
- }>, import("io-ts").PartialC<{
100
- currency: import("io-ts").LiteralC<"GBP">;
101
- }>]>;
102
97
  }>, import("io-ts").PartialC<{
103
- employed_details: import("io-ts").TypeC<{
98
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
104
99
  employer_name: import("io-ts").StringC;
105
100
  main_occupation: import("io-ts").StringC;
106
101
  months_employed: import("io-ts").NumberC;
107
- }>;
108
- self_employed_details: import("io-ts").TypeC<{
102
+ }>, import("io-ts").PartialC<{
103
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
104
+ }>]>;
105
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
109
106
  business_name: import("io-ts").StringC;
110
107
  type_of_business: import("io-ts").StringC;
111
108
  months_self_employed: import("io-ts").NumberC;
112
- }>;
109
+ }>, import("io-ts").PartialC<{
110
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
111
+ }>]>;
113
112
  not_employed_details: import("io-ts").TypeC<{
114
113
  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">]>;
115
114
  }>;
115
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
116
+ amount: import("io-ts").NumberC;
117
+ }>, import("io-ts").PartialC<{
118
+ currency: import("io-ts").LiteralC<"GBP">;
119
+ }>]>;
116
120
  }>]>;
117
121
  }>, import("io-ts").PartialC<{
118
122
  id: import("io-ts").StringC;
@@ -135,11 +139,13 @@ export declare const applyCreditOperation: {
135
139
  }>, import("io-ts").PartialC<{
136
140
  currency: import("io-ts").LiteralC<"GBP">;
137
141
  }>]>;
138
- additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
142
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
139
143
  employer_name: import("io-ts").StringC;
140
144
  main_occupation: import("io-ts").StringC;
141
145
  months_employed: import("io-ts").NumberC;
142
- }>>;
146
+ }>, import("io-ts").PartialC<{
147
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
148
+ }>]>>;
143
149
  finance_details: import("io-ts").PartialC<{
144
150
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
145
151
  incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
@@ -243,25 +249,29 @@ export declare const applyCreditOperation: {
243
249
  }>, import("io-ts").PartialC<{
244
250
  currency: import("io-ts").LiteralC<"GBP">;
245
251
  }>]>;
246
- household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
247
- amount: import("io-ts").NumberC;
248
- }>, import("io-ts").PartialC<{
249
- currency: import("io-ts").LiteralC<"GBP">;
250
- }>]>;
251
252
  }>, import("io-ts").PartialC<{
252
- employed_details: import("io-ts").TypeC<{
253
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
253
254
  employer_name: import("io-ts").StringC;
254
255
  main_occupation: import("io-ts").StringC;
255
256
  months_employed: import("io-ts").NumberC;
256
- }>;
257
- self_employed_details: import("io-ts").TypeC<{
257
+ }>, import("io-ts").PartialC<{
258
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
259
+ }>]>;
260
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
258
261
  business_name: import("io-ts").StringC;
259
262
  type_of_business: import("io-ts").StringC;
260
263
  months_self_employed: import("io-ts").NumberC;
261
- }>;
264
+ }>, import("io-ts").PartialC<{
265
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
266
+ }>]>;
262
267
  not_employed_details: import("io-ts").TypeC<{
263
268
  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">]>;
264
269
  }>;
270
+ household_annual_income: 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
+ }>]>;
265
275
  }>]>;
266
276
  finance_details: import("io-ts").PartialC<{
267
277
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -283,11 +293,13 @@ export declare const applyCreditOperation: {
283
293
  }>>;
284
294
  }>;
285
295
  }>, import("io-ts").PartialC<{
286
- additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
296
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
287
297
  employer_name: import("io-ts").StringC;
288
298
  main_occupation: import("io-ts").StringC;
289
299
  months_employed: import("io-ts").NumberC;
290
- }>>;
300
+ }>, import("io-ts").PartialC<{
301
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
302
+ }>]>>;
291
303
  }>]>>;
292
304
  credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
293
305
  name: import("io-ts").StringC;
@@ -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"}
@@ -94,25 +94,29 @@ export declare const checkCreditOperation: {
94
94
  }>, import("io-ts").PartialC<{
95
95
  currency: import("io-ts").LiteralC<"GBP">;
96
96
  }>]>;
97
- household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
98
- amount: import("io-ts").NumberC;
99
- }>, import("io-ts").PartialC<{
100
- currency: import("io-ts").LiteralC<"GBP">;
101
- }>]>;
102
97
  }>, import("io-ts").PartialC<{
103
- employed_details: import("io-ts").TypeC<{
98
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
104
99
  employer_name: import("io-ts").StringC;
105
100
  main_occupation: import("io-ts").StringC;
106
101
  months_employed: import("io-ts").NumberC;
107
- }>;
108
- self_employed_details: import("io-ts").TypeC<{
102
+ }>, import("io-ts").PartialC<{
103
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
104
+ }>]>;
105
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
109
106
  business_name: import("io-ts").StringC;
110
107
  type_of_business: import("io-ts").StringC;
111
108
  months_self_employed: import("io-ts").NumberC;
112
- }>;
109
+ }>, import("io-ts").PartialC<{
110
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
111
+ }>]>;
113
112
  not_employed_details: import("io-ts").TypeC<{
114
113
  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">]>;
115
114
  }>;
115
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
116
+ amount: import("io-ts").NumberC;
117
+ }>, import("io-ts").PartialC<{
118
+ currency: import("io-ts").LiteralC<"GBP">;
119
+ }>]>;
116
120
  }>]>;
117
121
  }>, import("io-ts").PartialC<{
118
122
  id: import("io-ts").StringC;
@@ -135,11 +139,13 @@ export declare const checkCreditOperation: {
135
139
  }>, import("io-ts").PartialC<{
136
140
  currency: import("io-ts").LiteralC<"GBP">;
137
141
  }>]>;
138
- additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
142
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
139
143
  employer_name: import("io-ts").StringC;
140
144
  main_occupation: import("io-ts").StringC;
141
145
  months_employed: import("io-ts").NumberC;
142
- }>>;
146
+ }>, import("io-ts").PartialC<{
147
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
148
+ }>]>>;
143
149
  finance_details: import("io-ts").PartialC<{
144
150
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
145
151
  incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
@@ -243,25 +249,29 @@ export declare const checkCreditOperation: {
243
249
  }>, import("io-ts").PartialC<{
244
250
  currency: import("io-ts").LiteralC<"GBP">;
245
251
  }>]>;
246
- household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
247
- amount: import("io-ts").NumberC;
248
- }>, import("io-ts").PartialC<{
249
- currency: import("io-ts").LiteralC<"GBP">;
250
- }>]>;
251
252
  }>, import("io-ts").PartialC<{
252
- employed_details: import("io-ts").TypeC<{
253
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
253
254
  employer_name: import("io-ts").StringC;
254
255
  main_occupation: import("io-ts").StringC;
255
256
  months_employed: import("io-ts").NumberC;
256
- }>;
257
- self_employed_details: import("io-ts").TypeC<{
257
+ }>, import("io-ts").PartialC<{
258
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
259
+ }>]>;
260
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
258
261
  business_name: import("io-ts").StringC;
259
262
  type_of_business: import("io-ts").StringC;
260
263
  months_self_employed: import("io-ts").NumberC;
261
- }>;
264
+ }>, import("io-ts").PartialC<{
265
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
266
+ }>]>;
262
267
  not_employed_details: import("io-ts").TypeC<{
263
268
  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">]>;
264
269
  }>;
270
+ household_annual_income: 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
+ }>]>;
265
275
  }>]>;
266
276
  finance_details: import("io-ts").PartialC<{
267
277
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -283,11 +293,13 @@ export declare const checkCreditOperation: {
283
293
  }>>;
284
294
  }>;
285
295
  }>, import("io-ts").PartialC<{
286
- additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
296
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
287
297
  employer_name: import("io-ts").StringC;
288
298
  main_occupation: import("io-ts").StringC;
289
299
  months_employed: import("io-ts").NumberC;
290
- }>>;
300
+ }>, import("io-ts").PartialC<{
301
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
302
+ }>]>>;
291
303
  }>]>>;
292
304
  credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
293
305
  name: import("io-ts").StringC;
@@ -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"}
@@ -94,25 +94,29 @@ export declare const deleteCreditOperation: {
94
94
  }>, import("io-ts").PartialC<{
95
95
  currency: import("io-ts").LiteralC<"GBP">;
96
96
  }>]>;
97
- household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
98
- amount: import("io-ts").NumberC;
99
- }>, import("io-ts").PartialC<{
100
- currency: import("io-ts").LiteralC<"GBP">;
101
- }>]>;
102
97
  }>, import("io-ts").PartialC<{
103
- employed_details: import("io-ts").TypeC<{
98
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
104
99
  employer_name: import("io-ts").StringC;
105
100
  main_occupation: import("io-ts").StringC;
106
101
  months_employed: import("io-ts").NumberC;
107
- }>;
108
- self_employed_details: import("io-ts").TypeC<{
102
+ }>, import("io-ts").PartialC<{
103
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
104
+ }>]>;
105
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
109
106
  business_name: import("io-ts").StringC;
110
107
  type_of_business: import("io-ts").StringC;
111
108
  months_self_employed: import("io-ts").NumberC;
112
- }>;
109
+ }>, import("io-ts").PartialC<{
110
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
111
+ }>]>;
113
112
  not_employed_details: import("io-ts").TypeC<{
114
113
  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">]>;
115
114
  }>;
115
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
116
+ amount: import("io-ts").NumberC;
117
+ }>, import("io-ts").PartialC<{
118
+ currency: import("io-ts").LiteralC<"GBP">;
119
+ }>]>;
116
120
  }>]>;
117
121
  }>, import("io-ts").PartialC<{
118
122
  id: import("io-ts").StringC;
@@ -135,11 +139,13 @@ export declare const deleteCreditOperation: {
135
139
  }>, import("io-ts").PartialC<{
136
140
  currency: import("io-ts").LiteralC<"GBP">;
137
141
  }>]>;
138
- additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
142
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
139
143
  employer_name: import("io-ts").StringC;
140
144
  main_occupation: import("io-ts").StringC;
141
145
  months_employed: import("io-ts").NumberC;
142
- }>>;
146
+ }>, import("io-ts").PartialC<{
147
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
148
+ }>]>>;
143
149
  finance_details: import("io-ts").PartialC<{
144
150
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
145
151
  incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
@@ -243,25 +249,29 @@ export declare const deleteCreditOperation: {
243
249
  }>, import("io-ts").PartialC<{
244
250
  currency: import("io-ts").LiteralC<"GBP">;
245
251
  }>]>;
246
- household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
247
- amount: import("io-ts").NumberC;
248
- }>, import("io-ts").PartialC<{
249
- currency: import("io-ts").LiteralC<"GBP">;
250
- }>]>;
251
252
  }>, import("io-ts").PartialC<{
252
- employed_details: import("io-ts").TypeC<{
253
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
253
254
  employer_name: import("io-ts").StringC;
254
255
  main_occupation: import("io-ts").StringC;
255
256
  months_employed: import("io-ts").NumberC;
256
- }>;
257
- self_employed_details: import("io-ts").TypeC<{
257
+ }>, import("io-ts").PartialC<{
258
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
259
+ }>]>;
260
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
258
261
  business_name: import("io-ts").StringC;
259
262
  type_of_business: import("io-ts").StringC;
260
263
  months_self_employed: import("io-ts").NumberC;
261
- }>;
264
+ }>, import("io-ts").PartialC<{
265
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
266
+ }>]>;
262
267
  not_employed_details: import("io-ts").TypeC<{
263
268
  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">]>;
264
269
  }>;
270
+ household_annual_income: 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
+ }>]>;
265
275
  }>]>;
266
276
  finance_details: import("io-ts").PartialC<{
267
277
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -283,11 +293,13 @@ export declare const deleteCreditOperation: {
283
293
  }>>;
284
294
  }>;
285
295
  }>, import("io-ts").PartialC<{
286
- additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
296
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
287
297
  employer_name: import("io-ts").StringC;
288
298
  main_occupation: import("io-ts").StringC;
289
299
  months_employed: import("io-ts").NumberC;
290
- }>>;
300
+ }>, import("io-ts").PartialC<{
301
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
302
+ }>]>>;
291
303
  }>]>>;
292
304
  credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
293
305
  name: import("io-ts").StringC;
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBxB,CAAC;AAEX,oBAAY,2BAA2B,GAAG,eAAe,CACvD;IAAE,MAAM,EAAE,6BAA6B,CAAA;CAAE,EACzC,OAAO,CAAC,MAAM,CACf,CAAC"}
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"}
@@ -94,25 +94,29 @@ export declare const getCreditOperation: {
94
94
  }>, import("io-ts").PartialC<{
95
95
  currency: import("io-ts").LiteralC<"GBP">;
96
96
  }>]>;
97
- household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
98
- amount: import("io-ts").NumberC;
99
- }>, import("io-ts").PartialC<{
100
- currency: import("io-ts").LiteralC<"GBP">;
101
- }>]>;
102
97
  }>, import("io-ts").PartialC<{
103
- employed_details: import("io-ts").TypeC<{
98
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
104
99
  employer_name: import("io-ts").StringC;
105
100
  main_occupation: import("io-ts").StringC;
106
101
  months_employed: import("io-ts").NumberC;
107
- }>;
108
- self_employed_details: import("io-ts").TypeC<{
102
+ }>, import("io-ts").PartialC<{
103
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
104
+ }>]>;
105
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
109
106
  business_name: import("io-ts").StringC;
110
107
  type_of_business: import("io-ts").StringC;
111
108
  months_self_employed: import("io-ts").NumberC;
112
- }>;
109
+ }>, import("io-ts").PartialC<{
110
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
111
+ }>]>;
113
112
  not_employed_details: import("io-ts").TypeC<{
114
113
  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">]>;
115
114
  }>;
115
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
116
+ amount: import("io-ts").NumberC;
117
+ }>, import("io-ts").PartialC<{
118
+ currency: import("io-ts").LiteralC<"GBP">;
119
+ }>]>;
116
120
  }>]>;
117
121
  }>, import("io-ts").PartialC<{
118
122
  id: import("io-ts").StringC;
@@ -135,11 +139,13 @@ export declare const getCreditOperation: {
135
139
  }>, import("io-ts").PartialC<{
136
140
  currency: import("io-ts").LiteralC<"GBP">;
137
141
  }>]>;
138
- additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
142
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
139
143
  employer_name: import("io-ts").StringC;
140
144
  main_occupation: import("io-ts").StringC;
141
145
  months_employed: import("io-ts").NumberC;
142
- }>>;
146
+ }>, import("io-ts").PartialC<{
147
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
148
+ }>]>>;
143
149
  finance_details: import("io-ts").PartialC<{
144
150
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
145
151
  incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
@@ -243,25 +249,29 @@ export declare const getCreditOperation: {
243
249
  }>, import("io-ts").PartialC<{
244
250
  currency: import("io-ts").LiteralC<"GBP">;
245
251
  }>]>;
246
- household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
247
- amount: import("io-ts").NumberC;
248
- }>, import("io-ts").PartialC<{
249
- currency: import("io-ts").LiteralC<"GBP">;
250
- }>]>;
251
252
  }>, import("io-ts").PartialC<{
252
- employed_details: import("io-ts").TypeC<{
253
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
253
254
  employer_name: import("io-ts").StringC;
254
255
  main_occupation: import("io-ts").StringC;
255
256
  months_employed: import("io-ts").NumberC;
256
- }>;
257
- self_employed_details: import("io-ts").TypeC<{
257
+ }>, import("io-ts").PartialC<{
258
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
259
+ }>]>;
260
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
258
261
  business_name: import("io-ts").StringC;
259
262
  type_of_business: import("io-ts").StringC;
260
263
  months_self_employed: import("io-ts").NumberC;
261
- }>;
264
+ }>, import("io-ts").PartialC<{
265
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
266
+ }>]>;
262
267
  not_employed_details: import("io-ts").TypeC<{
263
268
  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">]>;
264
269
  }>;
270
+ household_annual_income: 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
+ }>]>;
265
275
  }>]>;
266
276
  finance_details: import("io-ts").PartialC<{
267
277
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -283,11 +293,13 @@ export declare const getCreditOperation: {
283
293
  }>>;
284
294
  }>;
285
295
  }>, import("io-ts").PartialC<{
286
- additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
296
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
287
297
  employer_name: import("io-ts").StringC;
288
298
  main_occupation: import("io-ts").StringC;
289
299
  months_employed: import("io-ts").NumberC;
290
- }>>;
300
+ }>, import("io-ts").PartialC<{
301
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
302
+ }>]>>;
291
303
  }>]>>;
292
304
  credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
293
305
  name: import("io-ts").StringC;
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,eAAe,CACpD;IAAE,MAAM,EAAE,0BAA0B,CAAA;CAAE,EACtC,OAAO,CAAC,MAAM,CACf,CAAC"}
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"}
@@ -92,25 +92,29 @@ export declare const getCreditsOperation: {
92
92
  }>, t.PartialC<{
93
93
  currency: t.LiteralC<"GBP">;
94
94
  }>]>;
95
- household_annual_income: t.IntersectionC<[t.TypeC<{
96
- amount: t.NumberC;
97
- }>, t.PartialC<{
98
- currency: t.LiteralC<"GBP">;
99
- }>]>;
100
95
  }>, t.PartialC<{
101
- employed_details: t.TypeC<{
96
+ employed_details: t.IntersectionC<[t.TypeC<{
102
97
  employer_name: t.StringC;
103
98
  main_occupation: t.StringC;
104
99
  months_employed: t.NumberC;
105
- }>;
106
- self_employed_details: t.TypeC<{
100
+ }>, t.PartialC<{
101
+ employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
102
+ }>]>;
103
+ self_employed_details: t.IntersectionC<[t.TypeC<{
107
104
  business_name: t.StringC;
108
105
  type_of_business: t.StringC;
109
106
  months_self_employed: t.NumberC;
110
- }>;
107
+ }>, t.PartialC<{
108
+ self_employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
109
+ }>]>;
111
110
  not_employed_details: t.TypeC<{
112
111
  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">]>;
113
112
  }>;
113
+ household_annual_income: t.IntersectionC<[t.TypeC<{
114
+ amount: t.NumberC;
115
+ }>, t.PartialC<{
116
+ currency: t.LiteralC<"GBP">;
117
+ }>]>;
114
118
  }>]>;
115
119
  }>, t.PartialC<{
116
120
  id: t.StringC;
@@ -133,11 +137,13 @@ export declare const getCreditsOperation: {
133
137
  }>, t.PartialC<{
134
138
  currency: t.LiteralC<"GBP">;
135
139
  }>]>;
136
- additional_employment_details: t.ArrayC<t.TypeC<{
140
+ additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
137
141
  employer_name: t.StringC;
138
142
  main_occupation: t.StringC;
139
143
  months_employed: t.NumberC;
140
- }>>;
144
+ }>, t.PartialC<{
145
+ employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
146
+ }>]>>;
141
147
  finance_details: t.PartialC<{
142
148
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
143
149
  incomes: t.ArrayC<t.PartialC<{
@@ -241,25 +247,29 @@ export declare const getCreditsOperation: {
241
247
  }>, t.PartialC<{
242
248
  currency: t.LiteralC<"GBP">;
243
249
  }>]>;
244
- household_annual_income: t.IntersectionC<[t.TypeC<{
245
- amount: t.NumberC;
246
- }>, t.PartialC<{
247
- currency: t.LiteralC<"GBP">;
248
- }>]>;
249
250
  }>, t.PartialC<{
250
- employed_details: t.TypeC<{
251
+ employed_details: t.IntersectionC<[t.TypeC<{
251
252
  employer_name: t.StringC;
252
253
  main_occupation: t.StringC;
253
254
  months_employed: t.NumberC;
254
- }>;
255
- self_employed_details: t.TypeC<{
255
+ }>, t.PartialC<{
256
+ employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
257
+ }>]>;
258
+ self_employed_details: t.IntersectionC<[t.TypeC<{
256
259
  business_name: t.StringC;
257
260
  type_of_business: t.StringC;
258
261
  months_self_employed: t.NumberC;
259
- }>;
262
+ }>, t.PartialC<{
263
+ self_employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
264
+ }>]>;
260
265
  not_employed_details: t.TypeC<{
261
266
  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">]>;
262
267
  }>;
268
+ household_annual_income: t.IntersectionC<[t.TypeC<{
269
+ amount: t.NumberC;
270
+ }>, t.PartialC<{
271
+ currency: t.LiteralC<"GBP">;
272
+ }>]>;
263
273
  }>]>;
264
274
  finance_details: t.PartialC<{
265
275
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
@@ -281,11 +291,13 @@ export declare const getCreditsOperation: {
281
291
  }>>;
282
292
  }>;
283
293
  }>, t.PartialC<{
284
- additional_employment_details: t.ArrayC<t.TypeC<{
294
+ additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
285
295
  employer_name: t.StringC;
286
296
  main_occupation: t.StringC;
287
297
  months_employed: t.NumberC;
288
- }>>;
298
+ }>, t.PartialC<{
299
+ employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
300
+ }>]>>;
289
301
  }>]>>;
290
302
  credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
291
303
  name: t.StringC;
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAStB,CAAC;AAEX,oBAAY,yBAAyB,GAAG,eAAe,CACrD,SAAS,EACT,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CACtB,CAAC"}
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"}