@kanda-libs/ks-schema 1.0.142 → 1.0.143
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/schemas/ApplicantDetails.d.ts +27 -0
- package/dist/components/schemas/ApplicantDetails.d.ts.map +1 -1
- package/dist/components/schemas/Credit.d.ts +54 -0
- package/dist/components/schemas/Credit.d.ts.map +1 -1
- package/dist/components/schemas/Entity.d.ts +54 -0
- package/dist/components/schemas/Entity.d.ts.map +1 -1
- package/dist/components/schemas/Event.d.ts +54 -0
- package/dist/components/schemas/Event.d.ts.map +1 -1
- package/dist/components/schemas/FinanceDetails.d.ts +29 -0
- package/dist/components/schemas/FinanceDetails.d.ts.map +1 -1
- package/dist/components/schemas/FinanceDetails.js +2 -0
- package/dist/operations/applyCredit.d.ts +54 -0
- package/dist/operations/applyCredit.d.ts.map +1 -1
- package/dist/operations/checkCredit.d.ts +54 -0
- package/dist/operations/checkCredit.d.ts.map +1 -1
- package/dist/operations/deleteCredit.d.ts +54 -0
- package/dist/operations/deleteCredit.d.ts.map +1 -1
- package/dist/operations/getCredit.d.ts +54 -0
- package/dist/operations/getCredit.d.ts.map +1 -1
- package/dist/operations/getCredits.d.ts +54 -0
- package/dist/operations/getCredits.d.ts.map +1 -1
- package/dist/operations/index.d.ts +486 -0
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/postCredit.d.ts +54 -0
- package/dist/operations/postCredit.d.ts.map +1 -1
- package/dist/operations/putCredit.d.ts +54 -0
- package/dist/operations/putCredit.d.ts.map +1 -1
- package/dist/operations/quoteCredit.d.ts +54 -0
- package/dist/operations/quoteCredit.d.ts.map +1 -1
- package/dist/operations/signCredit.d.ts +54 -0
- package/dist/operations/signCredit.d.ts.map +1 -1
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +6791 -5799
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +12041 -10989
- package/package.json +1 -1
- package/schema.yaml +5 -0
|
@@ -137,6 +137,33 @@ export declare const getCreditOperation: {
|
|
|
137
137
|
}>]>;
|
|
138
138
|
finance_details: import("io-ts").PartialC<{
|
|
139
139
|
bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
140
|
+
additional_incomes: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
141
|
+
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">]>;
|
|
142
|
+
gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
143
|
+
amount: import("io-ts").NumberC;
|
|
144
|
+
}>, import("io-ts").PartialC<{
|
|
145
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
146
|
+
}>]>;
|
|
147
|
+
household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
148
|
+
amount: import("io-ts").NumberC;
|
|
149
|
+
}>, import("io-ts").PartialC<{
|
|
150
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
151
|
+
}>]>;
|
|
152
|
+
}>, import("io-ts").PartialC<{
|
|
153
|
+
employed_details: import("io-ts").TypeC<{
|
|
154
|
+
employer_name: import("io-ts").StringC;
|
|
155
|
+
main_occupation: import("io-ts").StringC;
|
|
156
|
+
months_employed: import("io-ts").NumberC;
|
|
157
|
+
}>;
|
|
158
|
+
self_employed_details: import("io-ts").TypeC<{
|
|
159
|
+
business_name: import("io-ts").StringC;
|
|
160
|
+
type_of_business: import("io-ts").StringC;
|
|
161
|
+
months_self_employed: import("io-ts").NumberC;
|
|
162
|
+
}>;
|
|
163
|
+
not_employed_details: import("io-ts").TypeC<{
|
|
164
|
+
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">]>;
|
|
165
|
+
}>;
|
|
166
|
+
}>]>>;
|
|
140
167
|
expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
|
|
141
168
|
expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
|
|
142
169
|
monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
@@ -252,6 +279,33 @@ export declare const getCreditOperation: {
|
|
|
252
279
|
}>]>;
|
|
253
280
|
finance_details: import("io-ts").PartialC<{
|
|
254
281
|
bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
|
|
282
|
+
additional_incomes: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
283
|
+
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">]>;
|
|
284
|
+
gross_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
285
|
+
amount: import("io-ts").NumberC;
|
|
286
|
+
}>, import("io-ts").PartialC<{
|
|
287
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
288
|
+
}>]>;
|
|
289
|
+
household_annual_income: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
290
|
+
amount: import("io-ts").NumberC;
|
|
291
|
+
}>, import("io-ts").PartialC<{
|
|
292
|
+
currency: import("io-ts").LiteralC<"GBP">;
|
|
293
|
+
}>]>;
|
|
294
|
+
}>, import("io-ts").PartialC<{
|
|
295
|
+
employed_details: import("io-ts").TypeC<{
|
|
296
|
+
employer_name: import("io-ts").StringC;
|
|
297
|
+
main_occupation: import("io-ts").StringC;
|
|
298
|
+
months_employed: import("io-ts").NumberC;
|
|
299
|
+
}>;
|
|
300
|
+
self_employed_details: import("io-ts").TypeC<{
|
|
301
|
+
business_name: import("io-ts").StringC;
|
|
302
|
+
type_of_business: import("io-ts").StringC;
|
|
303
|
+
months_self_employed: import("io-ts").NumberC;
|
|
304
|
+
}>;
|
|
305
|
+
not_employed_details: import("io-ts").TypeC<{
|
|
306
|
+
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">]>;
|
|
307
|
+
}>;
|
|
308
|
+
}>]>>;
|
|
255
309
|
expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
|
|
256
310
|
expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
|
|
257
311
|
monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,0BAA0B,GAAG;IACvC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"getCredit.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCredit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,0BAA0B,GAAG;IACvC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,eAAe,CACpD;IAAE,MAAM,EAAE,0BAA0B,CAAA;CAAE,EACtC,OAAO,CAAC,MAAM,CACf,CAAC"}
|
|
@@ -135,6 +135,33 @@ export declare const getCreditsOperation: {
|
|
|
135
135
|
}>]>;
|
|
136
136
|
finance_details: t.PartialC<{
|
|
137
137
|
bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
|
|
138
|
+
additional_incomes: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
139
|
+
employment_status: t.UnionC<[t.LiteralC<"employed">, t.LiteralC<"self_employed">, t.LiteralC<"not_employed">, t.LiteralC<"retired">]>;
|
|
140
|
+
gross_annual_income: t.IntersectionC<[t.TypeC<{
|
|
141
|
+
amount: t.NumberC;
|
|
142
|
+
}>, t.PartialC<{
|
|
143
|
+
currency: t.LiteralC<"GBP">;
|
|
144
|
+
}>]>;
|
|
145
|
+
household_annual_income: t.IntersectionC<[t.TypeC<{
|
|
146
|
+
amount: t.NumberC;
|
|
147
|
+
}>, t.PartialC<{
|
|
148
|
+
currency: t.LiteralC<"GBP">;
|
|
149
|
+
}>]>;
|
|
150
|
+
}>, t.PartialC<{
|
|
151
|
+
employed_details: t.TypeC<{
|
|
152
|
+
employer_name: t.StringC;
|
|
153
|
+
main_occupation: t.StringC;
|
|
154
|
+
months_employed: t.NumberC;
|
|
155
|
+
}>;
|
|
156
|
+
self_employed_details: t.TypeC<{
|
|
157
|
+
business_name: t.StringC;
|
|
158
|
+
type_of_business: t.StringC;
|
|
159
|
+
months_self_employed: t.NumberC;
|
|
160
|
+
}>;
|
|
161
|
+
not_employed_details: t.TypeC<{
|
|
162
|
+
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">]>;
|
|
163
|
+
}>;
|
|
164
|
+
}>]>>;
|
|
138
165
|
expenditures: t.ArrayC<t.PartialC<{
|
|
139
166
|
expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
|
|
140
167
|
monthly_amount: t.IntersectionC<[t.TypeC<{
|
|
@@ -250,6 +277,33 @@ export declare const getCreditsOperation: {
|
|
|
250
277
|
}>]>;
|
|
251
278
|
finance_details: t.PartialC<{
|
|
252
279
|
bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
|
|
280
|
+
additional_incomes: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
281
|
+
employment_status: t.UnionC<[t.LiteralC<"employed">, t.LiteralC<"self_employed">, t.LiteralC<"not_employed">, t.LiteralC<"retired">]>;
|
|
282
|
+
gross_annual_income: t.IntersectionC<[t.TypeC<{
|
|
283
|
+
amount: t.NumberC;
|
|
284
|
+
}>, t.PartialC<{
|
|
285
|
+
currency: t.LiteralC<"GBP">;
|
|
286
|
+
}>]>;
|
|
287
|
+
household_annual_income: t.IntersectionC<[t.TypeC<{
|
|
288
|
+
amount: t.NumberC;
|
|
289
|
+
}>, t.PartialC<{
|
|
290
|
+
currency: t.LiteralC<"GBP">;
|
|
291
|
+
}>]>;
|
|
292
|
+
}>, t.PartialC<{
|
|
293
|
+
employed_details: t.TypeC<{
|
|
294
|
+
employer_name: t.StringC;
|
|
295
|
+
main_occupation: t.StringC;
|
|
296
|
+
months_employed: t.NumberC;
|
|
297
|
+
}>;
|
|
298
|
+
self_employed_details: t.TypeC<{
|
|
299
|
+
business_name: t.StringC;
|
|
300
|
+
type_of_business: t.StringC;
|
|
301
|
+
months_self_employed: t.NumberC;
|
|
302
|
+
}>;
|
|
303
|
+
not_employed_details: t.TypeC<{
|
|
304
|
+
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">]>;
|
|
305
|
+
}>;
|
|
306
|
+
}>]>>;
|
|
253
307
|
expenditures: t.ArrayC<t.PartialC<{
|
|
254
308
|
expenditure_type: t.UnionC<[t.LiteralC<"credit_card">, t.LiteralC<"clothes">, t.LiteralC<"council_tax_and_bills">, t.LiteralC<"child_support_agency">, t.LiteralC<"healthcare">, t.LiteralC<"holidays">]>;
|
|
255
309
|
monthly_amount: t.IntersectionC<[t.TypeC<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCredits.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCredits.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"getCredits.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/getCredits.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAStB,CAAC;AAEX,oBAAY,yBAAyB,GAAG,eAAe,CACrD,SAAS,EACT,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CACtB,CAAC"}
|