@kanda-libs/ks-schema 1.0.146 → 1.0.148

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 (33) hide show
  1. package/dist/components/schemas/Credit.d.ts +29 -6
  2. package/dist/components/schemas/Credit.d.ts.map +1 -1
  3. package/dist/components/schemas/Credit.js +1 -2
  4. package/dist/components/schemas/Entity.d.ts +28 -4
  5. package/dist/components/schemas/Entity.d.ts.map +1 -1
  6. package/dist/components/schemas/Event.d.ts +28 -4
  7. package/dist/components/schemas/Event.d.ts.map +1 -1
  8. package/dist/operations/applyCredit.d.ts +28 -4
  9. package/dist/operations/applyCredit.d.ts.map +1 -1
  10. package/dist/operations/checkCredit.d.ts +28 -4
  11. package/dist/operations/checkCredit.d.ts.map +1 -1
  12. package/dist/operations/deleteCredit.d.ts +28 -4
  13. package/dist/operations/deleteCredit.d.ts.map +1 -1
  14. package/dist/operations/getCredit.d.ts +28 -4
  15. package/dist/operations/getCredit.d.ts.map +1 -1
  16. package/dist/operations/getCredits.d.ts +28 -4
  17. package/dist/operations/getCredits.d.ts.map +1 -1
  18. package/dist/operations/index.d.ts +252 -36
  19. package/dist/operations/index.d.ts.map +1 -1
  20. package/dist/operations/postCredit.d.ts +28 -4
  21. package/dist/operations/postCredit.d.ts.map +1 -1
  22. package/dist/operations/putCredit.d.ts +28 -4
  23. package/dist/operations/putCredit.d.ts.map +1 -1
  24. package/dist/operations/quoteCredit.d.ts +28 -4
  25. package/dist/operations/quoteCredit.d.ts.map +1 -1
  26. package/dist/operations/signCredit.d.ts +28 -4
  27. package/dist/operations/signCredit.d.ts.map +1 -1
  28. package/dist/schema.json +1 -1
  29. package/dist/widget/index.d.ts +6296 -6035
  30. package/dist/widget/index.d.ts.map +1 -1
  31. package/dist/widget/index.js +11580 -11279
  32. package/package.json +1 -1
  33. package/schema.yaml +1 -1
@@ -6005,11 +6005,35 @@ export declare const operations: {
6005
6005
  currency: import("io-ts").LiteralC<"GBP">;
6006
6006
  }>]>;
6007
6007
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6008
- employer_name: import("io-ts").StringC;
6009
- main_occupation: import("io-ts").StringC;
6010
- months_employed: import("io-ts").NumberC;
6008
+ 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">]>;
6009
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6010
+ amount: import("io-ts").NumberC;
6011
+ }>, import("io-ts").PartialC<{
6012
+ currency: import("io-ts").LiteralC<"GBP">;
6013
+ }>]>;
6011
6014
  }>, import("io-ts").PartialC<{
6012
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6015
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6016
+ employer_name: import("io-ts").StringC;
6017
+ main_occupation: import("io-ts").StringC;
6018
+ months_employed: import("io-ts").NumberC;
6019
+ }>, import("io-ts").PartialC<{
6020
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6021
+ }>]>;
6022
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6023
+ business_name: import("io-ts").StringC;
6024
+ type_of_business: import("io-ts").StringC;
6025
+ months_self_employed: import("io-ts").NumberC;
6026
+ }>, import("io-ts").PartialC<{
6027
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6028
+ }>]>;
6029
+ not_employed_details: import("io-ts").TypeC<{
6030
+ 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">]>;
6031
+ }>;
6032
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6033
+ amount: import("io-ts").NumberC;
6034
+ }>, import("io-ts").PartialC<{
6035
+ currency: import("io-ts").LiteralC<"GBP">;
6036
+ }>]>;
6013
6037
  }>]>>;
6014
6038
  finance_details: import("io-ts").PartialC<{
6015
6039
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -6343,11 +6367,35 @@ export declare const operations: {
6343
6367
  currency: import("io-ts").LiteralC<"GBP">;
6344
6368
  }>]>;
6345
6369
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6346
- employer_name: import("io-ts").StringC;
6347
- main_occupation: import("io-ts").StringC;
6348
- months_employed: import("io-ts").NumberC;
6370
+ 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">]>;
6371
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6372
+ amount: import("io-ts").NumberC;
6373
+ }>, import("io-ts").PartialC<{
6374
+ currency: import("io-ts").LiteralC<"GBP">;
6375
+ }>]>;
6349
6376
  }>, import("io-ts").PartialC<{
6350
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6377
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6378
+ employer_name: import("io-ts").StringC;
6379
+ main_occupation: import("io-ts").StringC;
6380
+ months_employed: import("io-ts").NumberC;
6381
+ }>, import("io-ts").PartialC<{
6382
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6383
+ }>]>;
6384
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6385
+ business_name: import("io-ts").StringC;
6386
+ type_of_business: import("io-ts").StringC;
6387
+ months_self_employed: import("io-ts").NumberC;
6388
+ }>, import("io-ts").PartialC<{
6389
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6390
+ }>]>;
6391
+ not_employed_details: import("io-ts").TypeC<{
6392
+ 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">]>;
6393
+ }>;
6394
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6395
+ amount: import("io-ts").NumberC;
6396
+ }>, import("io-ts").PartialC<{
6397
+ currency: import("io-ts").LiteralC<"GBP">;
6398
+ }>]>;
6351
6399
  }>]>>;
6352
6400
  finance_details: import("io-ts").PartialC<{
6353
6401
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -6685,11 +6733,35 @@ export declare const operations: {
6685
6733
  currency: import("io-ts").LiteralC<"GBP">;
6686
6734
  }>]>;
6687
6735
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6688
- employer_name: import("io-ts").StringC;
6689
- main_occupation: import("io-ts").StringC;
6690
- months_employed: import("io-ts").NumberC;
6736
+ 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">]>;
6737
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6738
+ amount: import("io-ts").NumberC;
6739
+ }>, import("io-ts").PartialC<{
6740
+ currency: import("io-ts").LiteralC<"GBP">;
6741
+ }>]>;
6691
6742
  }>, import("io-ts").PartialC<{
6692
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6743
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6744
+ employer_name: import("io-ts").StringC;
6745
+ main_occupation: import("io-ts").StringC;
6746
+ months_employed: import("io-ts").NumberC;
6747
+ }>, import("io-ts").PartialC<{
6748
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6749
+ }>]>;
6750
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6751
+ business_name: import("io-ts").StringC;
6752
+ type_of_business: import("io-ts").StringC;
6753
+ months_self_employed: import("io-ts").NumberC;
6754
+ }>, import("io-ts").PartialC<{
6755
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
6756
+ }>]>;
6757
+ not_employed_details: import("io-ts").TypeC<{
6758
+ 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">]>;
6759
+ }>;
6760
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
6761
+ amount: import("io-ts").NumberC;
6762
+ }>, import("io-ts").PartialC<{
6763
+ currency: import("io-ts").LiteralC<"GBP">;
6764
+ }>]>;
6693
6765
  }>]>>;
6694
6766
  finance_details: import("io-ts").PartialC<{
6695
6767
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -7028,11 +7100,35 @@ export declare const operations: {
7028
7100
  currency: import("io-ts").LiteralC<"GBP">;
7029
7101
  }>]>;
7030
7102
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7031
- employer_name: import("io-ts").StringC;
7032
- main_occupation: import("io-ts").StringC;
7033
- months_employed: import("io-ts").NumberC;
7103
+ 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">]>;
7104
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7105
+ amount: import("io-ts").NumberC;
7106
+ }>, import("io-ts").PartialC<{
7107
+ currency: import("io-ts").LiteralC<"GBP">;
7108
+ }>]>;
7034
7109
  }>, import("io-ts").PartialC<{
7035
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7110
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7111
+ employer_name: import("io-ts").StringC;
7112
+ main_occupation: import("io-ts").StringC;
7113
+ months_employed: import("io-ts").NumberC;
7114
+ }>, import("io-ts").PartialC<{
7115
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7116
+ }>]>;
7117
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7118
+ business_name: import("io-ts").StringC;
7119
+ type_of_business: import("io-ts").StringC;
7120
+ months_self_employed: import("io-ts").NumberC;
7121
+ }>, import("io-ts").PartialC<{
7122
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7123
+ }>]>;
7124
+ not_employed_details: import("io-ts").TypeC<{
7125
+ 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">]>;
7126
+ }>;
7127
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7128
+ amount: import("io-ts").NumberC;
7129
+ }>, import("io-ts").PartialC<{
7130
+ currency: import("io-ts").LiteralC<"GBP">;
7131
+ }>]>;
7036
7132
  }>]>>;
7037
7133
  finance_details: import("io-ts").PartialC<{
7038
7134
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -7375,11 +7471,35 @@ export declare const operations: {
7375
7471
  currency: import("io-ts").LiteralC<"GBP">;
7376
7472
  }>]>;
7377
7473
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7378
- employer_name: import("io-ts").StringC;
7379
- main_occupation: import("io-ts").StringC;
7380
- months_employed: import("io-ts").NumberC;
7474
+ 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">]>;
7475
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7476
+ amount: import("io-ts").NumberC;
7477
+ }>, import("io-ts").PartialC<{
7478
+ currency: import("io-ts").LiteralC<"GBP">;
7479
+ }>]>;
7381
7480
  }>, import("io-ts").PartialC<{
7382
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7481
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7482
+ employer_name: import("io-ts").StringC;
7483
+ main_occupation: import("io-ts").StringC;
7484
+ months_employed: import("io-ts").NumberC;
7485
+ }>, import("io-ts").PartialC<{
7486
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7487
+ }>]>;
7488
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7489
+ business_name: import("io-ts").StringC;
7490
+ type_of_business: import("io-ts").StringC;
7491
+ months_self_employed: import("io-ts").NumberC;
7492
+ }>, import("io-ts").PartialC<{
7493
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7494
+ }>]>;
7495
+ not_employed_details: import("io-ts").TypeC<{
7496
+ 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">]>;
7497
+ }>;
7498
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7499
+ amount: import("io-ts").NumberC;
7500
+ }>, import("io-ts").PartialC<{
7501
+ currency: import("io-ts").LiteralC<"GBP">;
7502
+ }>]>;
7383
7503
  }>]>>;
7384
7504
  finance_details: import("io-ts").PartialC<{
7385
7505
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -7718,11 +7838,35 @@ export declare const operations: {
7718
7838
  currency: import("io-ts").LiteralC<"GBP">;
7719
7839
  }>]>;
7720
7840
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7721
- employer_name: import("io-ts").StringC;
7722
- main_occupation: import("io-ts").StringC;
7723
- months_employed: import("io-ts").NumberC;
7841
+ 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">]>;
7842
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7843
+ amount: import("io-ts").NumberC;
7844
+ }>, import("io-ts").PartialC<{
7845
+ currency: import("io-ts").LiteralC<"GBP">;
7846
+ }>]>;
7724
7847
  }>, import("io-ts").PartialC<{
7725
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7848
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7849
+ employer_name: import("io-ts").StringC;
7850
+ main_occupation: import("io-ts").StringC;
7851
+ months_employed: import("io-ts").NumberC;
7852
+ }>, import("io-ts").PartialC<{
7853
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7854
+ }>]>;
7855
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7856
+ business_name: import("io-ts").StringC;
7857
+ type_of_business: import("io-ts").StringC;
7858
+ months_self_employed: import("io-ts").NumberC;
7859
+ }>, import("io-ts").PartialC<{
7860
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
7861
+ }>]>;
7862
+ not_employed_details: import("io-ts").TypeC<{
7863
+ 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">]>;
7864
+ }>;
7865
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
7866
+ amount: import("io-ts").NumberC;
7867
+ }>, import("io-ts").PartialC<{
7868
+ currency: import("io-ts").LiteralC<"GBP">;
7869
+ }>]>;
7726
7870
  }>]>>;
7727
7871
  finance_details: import("io-ts").PartialC<{
7728
7872
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -8061,11 +8205,35 @@ export declare const operations: {
8061
8205
  currency: import("io-ts").LiteralC<"GBP">;
8062
8206
  }>]>;
8063
8207
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8064
- employer_name: import("io-ts").StringC;
8065
- main_occupation: import("io-ts").StringC;
8066
- months_employed: import("io-ts").NumberC;
8208
+ 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">]>;
8209
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8210
+ amount: import("io-ts").NumberC;
8211
+ }>, import("io-ts").PartialC<{
8212
+ currency: import("io-ts").LiteralC<"GBP">;
8213
+ }>]>;
8067
8214
  }>, import("io-ts").PartialC<{
8068
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8215
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8216
+ employer_name: import("io-ts").StringC;
8217
+ main_occupation: import("io-ts").StringC;
8218
+ months_employed: import("io-ts").NumberC;
8219
+ }>, import("io-ts").PartialC<{
8220
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8221
+ }>]>;
8222
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8223
+ business_name: import("io-ts").StringC;
8224
+ type_of_business: import("io-ts").StringC;
8225
+ months_self_employed: import("io-ts").NumberC;
8226
+ }>, import("io-ts").PartialC<{
8227
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8228
+ }>]>;
8229
+ not_employed_details: import("io-ts").TypeC<{
8230
+ 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">]>;
8231
+ }>;
8232
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8233
+ amount: import("io-ts").NumberC;
8234
+ }>, import("io-ts").PartialC<{
8235
+ currency: import("io-ts").LiteralC<"GBP">;
8236
+ }>]>;
8069
8237
  }>]>>;
8070
8238
  finance_details: import("io-ts").PartialC<{
8071
8239
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -8404,11 +8572,35 @@ export declare const operations: {
8404
8572
  currency: import("io-ts").LiteralC<"GBP">;
8405
8573
  }>]>;
8406
8574
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8407
- employer_name: import("io-ts").StringC;
8408
- main_occupation: import("io-ts").StringC;
8409
- months_employed: import("io-ts").NumberC;
8575
+ 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">]>;
8576
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8577
+ amount: import("io-ts").NumberC;
8578
+ }>, import("io-ts").PartialC<{
8579
+ currency: import("io-ts").LiteralC<"GBP">;
8580
+ }>]>;
8410
8581
  }>, import("io-ts").PartialC<{
8411
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8582
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8583
+ employer_name: import("io-ts").StringC;
8584
+ main_occupation: import("io-ts").StringC;
8585
+ months_employed: import("io-ts").NumberC;
8586
+ }>, import("io-ts").PartialC<{
8587
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8588
+ }>]>;
8589
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8590
+ business_name: import("io-ts").StringC;
8591
+ type_of_business: import("io-ts").StringC;
8592
+ months_self_employed: import("io-ts").NumberC;
8593
+ }>, import("io-ts").PartialC<{
8594
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8595
+ }>]>;
8596
+ not_employed_details: import("io-ts").TypeC<{
8597
+ 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">]>;
8598
+ }>;
8599
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8600
+ amount: import("io-ts").NumberC;
8601
+ }>, import("io-ts").PartialC<{
8602
+ currency: import("io-ts").LiteralC<"GBP">;
8603
+ }>]>;
8412
8604
  }>]>>;
8413
8605
  finance_details: import("io-ts").PartialC<{
8414
8606
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -8747,11 +8939,35 @@ export declare const operations: {
8747
8939
  currency: import("io-ts").LiteralC<"GBP">;
8748
8940
  }>]>;
8749
8941
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8750
- employer_name: import("io-ts").StringC;
8751
- main_occupation: import("io-ts").StringC;
8752
- months_employed: import("io-ts").NumberC;
8942
+ 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">]>;
8943
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8944
+ amount: import("io-ts").NumberC;
8945
+ }>, import("io-ts").PartialC<{
8946
+ currency: import("io-ts").LiteralC<"GBP">;
8947
+ }>]>;
8753
8948
  }>, import("io-ts").PartialC<{
8754
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8949
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8950
+ employer_name: import("io-ts").StringC;
8951
+ main_occupation: import("io-ts").StringC;
8952
+ months_employed: import("io-ts").NumberC;
8953
+ }>, import("io-ts").PartialC<{
8954
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8955
+ }>]>;
8956
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8957
+ business_name: import("io-ts").StringC;
8958
+ type_of_business: import("io-ts").StringC;
8959
+ months_self_employed: import("io-ts").NumberC;
8960
+ }>, import("io-ts").PartialC<{
8961
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
8962
+ }>]>;
8963
+ not_employed_details: import("io-ts").TypeC<{
8964
+ 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">]>;
8965
+ }>;
8966
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
8967
+ amount: import("io-ts").NumberC;
8968
+ }>, import("io-ts").PartialC<{
8969
+ currency: import("io-ts").LiteralC<"GBP">;
8970
+ }>]>;
8755
8971
  }>]>>;
8756
8972
  finance_details: import("io-ts").PartialC<{
8757
8973
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
@@ -137,11 +137,35 @@ export declare const postCreditOperation: {
137
137
  currency: import("io-ts").LiteralC<"GBP">;
138
138
  }>]>;
139
139
  additional_employment_details: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
140
- employer_name: import("io-ts").StringC;
141
- main_occupation: import("io-ts").StringC;
142
- months_employed: import("io-ts").NumberC;
140
+ 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">]>;
141
+ gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
142
+ amount: import("io-ts").NumberC;
143
+ }>, import("io-ts").PartialC<{
144
+ currency: import("io-ts").LiteralC<"GBP">;
145
+ }>]>;
143
146
  }>, import("io-ts").PartialC<{
144
- employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
147
+ employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
148
+ employer_name: import("io-ts").StringC;
149
+ main_occupation: import("io-ts").StringC;
150
+ months_employed: import("io-ts").NumberC;
151
+ }>, import("io-ts").PartialC<{
152
+ employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
153
+ }>]>;
154
+ self_employed_details: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
155
+ business_name: import("io-ts").StringC;
156
+ type_of_business: import("io-ts").StringC;
157
+ months_self_employed: import("io-ts").NumberC;
158
+ }>, import("io-ts").PartialC<{
159
+ self_employed_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"full_time">, import("io-ts").LiteralC<"part_time">]>;
160
+ }>]>;
161
+ not_employed_details: import("io-ts").TypeC<{
162
+ 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">]>;
163
+ }>;
164
+ household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
165
+ amount: import("io-ts").NumberC;
166
+ }>, import("io-ts").PartialC<{
167
+ currency: import("io-ts").LiteralC<"GBP">;
168
+ }>]>;
145
169
  }>]>>;
146
170
  finance_details: import("io-ts").PartialC<{
147
171
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
@@ -1 +1 @@
1
- {"version":3,"file":"postCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/postCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAetB,CAAC;AAEX,oBAAY,yBAAyB,GAAG,eAAe,CACrD;IAAE,IAAI,EAAE,OAAO,CAAC,MAAM,CAAA;CAAE,EACxB,OAAO,CAAC,MAAM,CACf,CAAC"}
1
+ {"version":3,"file":"postCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/postCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAetB,CAAC;AAEX,oBAAY,yBAAyB,GAAG,eAAe,CACrD;IAAE,IAAI,EAAE,OAAO,CAAC,MAAM,CAAA;CAAE,EACxB,OAAO,CAAC,MAAM,CACf,CAAC"}
@@ -140,11 +140,35 @@ export declare const putCreditOperation: {
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">]>;
@@ -1 +1 @@
1
- {"version":3,"file":"putCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/putCredit.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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,eAAe,CACpD;IAAE,MAAM,EAAE,0BAA0B,CAAC;IAAC,IAAI,EAAE,OAAO,CAAC,MAAM,CAAA;CAAE,EAC5D,OAAO,CAAC,MAAM,CACf,CAAC"}
1
+ {"version":3,"file":"putCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/putCredit.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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,eAAe,CACpD;IAAE,MAAM,EAAE,0BAA0B,CAAC;IAAC,IAAI,EAAE,OAAO,CAAC,MAAM,CAAA;CAAE,EAC5D,OAAO,CAAC,MAAM,CACf,CAAC"}
@@ -140,11 +140,35 @@ export declare const quoteCreditOperation: {
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">]>;
@@ -1 +1 @@
1
- {"version":3,"file":"quoteCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/quoteCredit.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":"quoteCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/quoteCredit.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"}