@kanda-libs/ks-schema 1.0.147 → 1.0.149

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 (36) hide show
  1. package/dist/components/schemas/ApplicantDetails.d.ts +29 -6
  2. package/dist/components/schemas/ApplicantDetails.d.ts.map +1 -1
  3. package/dist/components/schemas/ApplicantDetails.js +1 -2
  4. package/dist/components/schemas/Credit.d.ts +57 -10
  5. package/dist/components/schemas/Credit.d.ts.map +1 -1
  6. package/dist/components/schemas/Credit.js +1 -2
  7. package/dist/components/schemas/Entity.d.ts +56 -8
  8. package/dist/components/schemas/Entity.d.ts.map +1 -1
  9. package/dist/components/schemas/Event.d.ts +56 -8
  10. package/dist/components/schemas/Event.d.ts.map +1 -1
  11. package/dist/operations/applyCredit.d.ts +56 -8
  12. package/dist/operations/applyCredit.d.ts.map +1 -1
  13. package/dist/operations/checkCredit.d.ts +56 -8
  14. package/dist/operations/checkCredit.d.ts.map +1 -1
  15. package/dist/operations/deleteCredit.d.ts +56 -8
  16. package/dist/operations/deleteCredit.d.ts.map +1 -1
  17. package/dist/operations/getCredit.d.ts +56 -8
  18. package/dist/operations/getCredit.d.ts.map +1 -1
  19. package/dist/operations/getCredits.d.ts +56 -8
  20. package/dist/operations/getCredits.d.ts.map +1 -1
  21. package/dist/operations/index.d.ts +504 -72
  22. package/dist/operations/index.d.ts.map +1 -1
  23. package/dist/operations/postCredit.d.ts +56 -8
  24. package/dist/operations/postCredit.d.ts.map +1 -1
  25. package/dist/operations/putCredit.d.ts +56 -8
  26. package/dist/operations/putCredit.d.ts.map +1 -1
  27. package/dist/operations/quoteCredit.d.ts +56 -8
  28. package/dist/operations/quoteCredit.d.ts.map +1 -1
  29. package/dist/operations/signCredit.d.ts +56 -8
  30. package/dist/operations/signCredit.d.ts.map +1 -1
  31. package/dist/schema.json +1 -1
  32. package/dist/widget/index.d.ts +5516 -4907
  33. package/dist/widget/index.d.ts.map +1 -1
  34. package/dist/widget/index.js +17352 -16649
  35. package/package.json +1 -1
  36. package/schema.yaml +2 -2
@@ -140,11 +140,35 @@ export declare const deleteCreditOperation: {
140
140
  currency: import("io-ts").LiteralC<"GBP">;
141
141
  }>]>;
142
142
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
143
- employer_name: import("io-ts").StringC;
144
- main_occupation: import("io-ts").StringC;
145
- months_employed: import("io-ts").NumberC;
143
+ 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">]>;
144
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
145
+ amount: import("io-ts").NumberC;
146
+ }>, import("io-ts").PartialC<{
147
+ currency: import("io-ts").LiteralC<"GBP">;
148
+ }>]>;
146
149
  }>, import("io-ts").PartialC<{
147
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
150
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
151
+ employer_name: import("io-ts").StringC;
152
+ main_occupation: import("io-ts").StringC;
153
+ months_employed: import("io-ts").NumberC;
154
+ }>, import("io-ts").PartialC<{
155
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
156
+ }>]>;
157
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
158
+ business_name: import("io-ts").StringC;
159
+ type_of_business: import("io-ts").StringC;
160
+ months_self_employed: import("io-ts").NumberC;
161
+ }>, import("io-ts").PartialC<{
162
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
163
+ }>]>;
164
+ not_employed_details: import("io-ts").TypeC<{
165
+ 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">]>;
166
+ }>;
167
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
168
+ amount: import("io-ts").NumberC;
169
+ }>, import("io-ts").PartialC<{
170
+ currency: import("io-ts").LiteralC<"GBP">;
171
+ }>]>;
148
172
  }>]>>;
149
173
  finance_details: import("io-ts").PartialC<{
150
174
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -294,11 +318,35 @@ export declare const deleteCreditOperation: {
294
318
  }>;
295
319
  }>, import("io-ts").PartialC<{
296
320
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
297
- employer_name: import("io-ts").StringC;
298
- main_occupation: import("io-ts").StringC;
299
- months_employed: import("io-ts").NumberC;
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
+ }>]>;
300
327
  }>, import("io-ts").PartialC<{
301
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
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
+ }>]>;
302
350
  }>]>>;
303
351
  }>]>>;
304
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
@@ -140,11 +140,35 @@ export declare const getCreditOperation: {
140
140
  currency: import("io-ts").LiteralC<"GBP">;
141
141
  }>]>;
142
142
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
143
- employer_name: import("io-ts").StringC;
144
- main_occupation: import("io-ts").StringC;
145
- months_employed: import("io-ts").NumberC;
143
+ 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">]>;
144
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
145
+ amount: import("io-ts").NumberC;
146
+ }>, import("io-ts").PartialC<{
147
+ currency: import("io-ts").LiteralC<"GBP">;
148
+ }>]>;
146
149
  }>, import("io-ts").PartialC<{
147
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
150
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
151
+ employer_name: import("io-ts").StringC;
152
+ main_occupation: import("io-ts").StringC;
153
+ months_employed: import("io-ts").NumberC;
154
+ }>, import("io-ts").PartialC<{
155
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
156
+ }>]>;
157
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
158
+ business_name: import("io-ts").StringC;
159
+ type_of_business: import("io-ts").StringC;
160
+ months_self_employed: import("io-ts").NumberC;
161
+ }>, import("io-ts").PartialC<{
162
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
163
+ }>]>;
164
+ not_employed_details: import("io-ts").TypeC<{
165
+ 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">]>;
166
+ }>;
167
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
168
+ amount: import("io-ts").NumberC;
169
+ }>, import("io-ts").PartialC<{
170
+ currency: import("io-ts").LiteralC<"GBP">;
171
+ }>]>;
148
172
  }>]>>;
149
173
  finance_details: import("io-ts").PartialC<{
150
174
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -294,11 +318,35 @@ export declare const getCreditOperation: {
294
318
  }>;
295
319
  }>, import("io-ts").PartialC<{
296
320
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
297
- employer_name: import("io-ts").StringC;
298
- main_occupation: import("io-ts").StringC;
299
- months_employed: import("io-ts").NumberC;
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
+ }>]>;
300
327
  }>, import("io-ts").PartialC<{
301
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
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
+ }>]>;
302
350
  }>]>>;
303
351
  }>]>>;
304
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
@@ -138,11 +138,35 @@ export declare const getCreditsOperation: {
138
138
  currency: t.LiteralC<"GBP">;
139
139
  }>]>;
140
140
  additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
141
- employer_name: t.StringC;
142
- main_occupation: t.StringC;
143
- months_employed: t.NumberC;
141
+ employment_status: t.UnionC<[t.LiteralC<"employed">, t.LiteralC<"self_employed">, t.LiteralC<"not_employed">, t.LiteralC<"retired">]>;
142
+ gross_annual_income: t.IntersectionC<[t.TypeC<{
143
+ amount: t.NumberC;
144
+ }>, t.PartialC<{
145
+ currency: t.LiteralC<"GBP">;
146
+ }>]>;
144
147
  }>, t.PartialC<{
145
- employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
148
+ employed_details: t.IntersectionC<[t.TypeC<{
149
+ employer_name: t.StringC;
150
+ main_occupation: t.StringC;
151
+ months_employed: t.NumberC;
152
+ }>, t.PartialC<{
153
+ employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
154
+ }>]>;
155
+ self_employed_details: t.IntersectionC<[t.TypeC<{
156
+ business_name: t.StringC;
157
+ type_of_business: t.StringC;
158
+ months_self_employed: t.NumberC;
159
+ }>, t.PartialC<{
160
+ self_employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
161
+ }>]>;
162
+ not_employed_details: t.TypeC<{
163
+ 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">]>;
164
+ }>;
165
+ household_annual_income: t.IntersectionC<[t.TypeC<{
166
+ amount: t.NumberC;
167
+ }>, t.PartialC<{
168
+ currency: t.LiteralC<"GBP">;
169
+ }>]>;
146
170
  }>]>>;
147
171
  finance_details: t.PartialC<{
148
172
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
@@ -292,11 +316,35 @@ export declare const getCreditsOperation: {
292
316
  }>;
293
317
  }>, t.PartialC<{
294
318
  additional_employment_details: t.ArrayC<t.IntersectionC<[t.TypeC<{
295
- employer_name: t.StringC;
296
- main_occupation: t.StringC;
297
- months_employed: t.NumberC;
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
+ }>]>;
298
325
  }>, t.PartialC<{
299
- employed_type: t.UnionC<[t.LiteralC<"full_time">, t.LiteralC<"part_time">]>;
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
+ }>]>;
300
348
  }>]>>;
301
349
  }>]>>;
302
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}