@kanda-libs/ks-schema 1.0.142 → 1.0.144

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/components/schemas/ApplicantDetails.d.ts +18 -2
  2. package/dist/components/schemas/ApplicantDetails.d.ts.map +1 -1
  3. package/dist/components/schemas/ApplicantDetails.js +12 -6
  4. package/dist/components/schemas/Credit.d.ts +31 -2
  5. package/dist/components/schemas/Credit.d.ts.map +1 -1
  6. package/dist/components/schemas/Credit.js +2 -0
  7. package/dist/components/schemas/Entity.d.ts +29 -2
  8. package/dist/components/schemas/Entity.d.ts.map +1 -1
  9. package/dist/components/schemas/Event.d.ts +29 -2
  10. package/dist/components/schemas/Event.d.ts.map +1 -1
  11. package/dist/components/schemas/FinanceDetails.d.ts +10 -0
  12. package/dist/components/schemas/FinanceDetails.d.ts.map +1 -1
  13. package/dist/components/schemas/FinanceDetails.js +2 -0
  14. package/dist/components/schemas/Income.d.ts +15 -0
  15. package/dist/components/schemas/Income.d.ts.map +1 -0
  16. package/dist/components/schemas/Income.js +37 -0
  17. package/dist/components/schemas/index.d.ts +1 -0
  18. package/dist/components/schemas/index.d.ts.map +1 -1
  19. package/dist/components/schemas/index.js +1 -0
  20. package/dist/operations/applyCredit.d.ts +29 -2
  21. package/dist/operations/applyCredit.d.ts.map +1 -1
  22. package/dist/operations/checkCredit.d.ts +29 -2
  23. package/dist/operations/checkCredit.d.ts.map +1 -1
  24. package/dist/operations/deleteCredit.d.ts +29 -2
  25. package/dist/operations/deleteCredit.d.ts.map +1 -1
  26. package/dist/operations/getCredit.d.ts +29 -2
  27. package/dist/operations/getCredit.d.ts.map +1 -1
  28. package/dist/operations/getCredits.d.ts +29 -2
  29. package/dist/operations/getCredits.d.ts.map +1 -1
  30. package/dist/operations/index.d.ts +261 -18
  31. package/dist/operations/index.d.ts.map +1 -1
  32. package/dist/operations/postCredit.d.ts +29 -2
  33. package/dist/operations/postCredit.d.ts.map +1 -1
  34. package/dist/operations/putCredit.d.ts +29 -2
  35. package/dist/operations/putCredit.d.ts.map +1 -1
  36. package/dist/operations/quoteCredit.d.ts +29 -2
  37. package/dist/operations/quoteCredit.d.ts.map +1 -1
  38. package/dist/operations/signCredit.d.ts +29 -2
  39. package/dist/operations/signCredit.d.ts.map +1 -1
  40. package/dist/schema.json +1 -1
  41. package/dist/widget/index.d.ts +6685 -6224
  42. package/dist/widget/index.d.ts.map +1 -1
  43. package/dist/widget/index.js +11647 -11082
  44. package/package.json +1 -1
  45. package/schema.yaml +31 -0
@@ -135,8 +135,21 @@ export declare const deleteCreditOperation: {
135
135
  }>, import("io-ts").PartialC<{
136
136
  currency: import("io-ts").LiteralC<"GBP">;
137
137
  }>]>;
138
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
139
+ employer_name: import("io-ts").StringC;
140
+ main_occupation: import("io-ts").StringC;
141
+ months_employed: import("io-ts").NumberC;
142
+ }>>;
138
143
  finance_details: import("io-ts").PartialC<{
139
144
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
145
+ incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
146
+ income_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"other_sources_of_income">, import("io-ts").LiteralC<"pensions">, import("io-ts").LiteralC<"earning_after_tax">]>;
147
+ monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
148
+ amount: import("io-ts").NumberC;
149
+ }>, import("io-ts").PartialC<{
150
+ currency: import("io-ts").LiteralC<"GBP">;
151
+ }>]>;
152
+ }>>;
140
153
  expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
141
154
  expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
142
155
  monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -146,7 +159,7 @@ export declare const deleteCreditOperation: {
146
159
  }>]>;
147
160
  }>>;
148
161
  }>;
149
- extra_applicants: import("io-ts").ArrayC<import("io-ts").TypeC<{
162
+ extra_applicants: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
150
163
  bank_account: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
151
164
  account_name: import("io-ts").StringC;
152
165
  account_number: import("io-ts").StringC;
@@ -252,6 +265,14 @@ export declare const deleteCreditOperation: {
252
265
  }>]>;
253
266
  finance_details: import("io-ts").PartialC<{
254
267
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
268
+ incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
269
+ income_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"other_sources_of_income">, import("io-ts").LiteralC<"pensions">, import("io-ts").LiteralC<"earning_after_tax">]>;
270
+ monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
271
+ amount: import("io-ts").NumberC;
272
+ }>, import("io-ts").PartialC<{
273
+ currency: import("io-ts").LiteralC<"GBP">;
274
+ }>]>;
275
+ }>>;
255
276
  expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
256
277
  expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
257
278
  monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -261,7 +282,13 @@ export declare const deleteCreditOperation: {
261
282
  }>]>;
262
283
  }>>;
263
284
  }>;
264
- }>>;
285
+ }>, import("io-ts").PartialC<{
286
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
287
+ employer_name: import("io-ts").StringC;
288
+ main_occupation: import("io-ts").StringC;
289
+ months_employed: import("io-ts").NumberC;
290
+ }>>;
291
+ }>]>>;
265
292
  credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
266
293
  name: import("io-ts").StringC;
267
294
  }>, import("io-ts").PartialC<{
@@ -1 +1 @@
1
- {"version":3,"file":"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"}
@@ -135,8 +135,21 @@ export declare const getCreditOperation: {
135
135
  }>, import("io-ts").PartialC<{
136
136
  currency: import("io-ts").LiteralC<"GBP">;
137
137
  }>]>;
138
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
139
+ employer_name: import("io-ts").StringC;
140
+ main_occupation: import("io-ts").StringC;
141
+ months_employed: import("io-ts").NumberC;
142
+ }>>;
138
143
  finance_details: import("io-ts").PartialC<{
139
144
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
145
+ incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
146
+ income_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"other_sources_of_income">, import("io-ts").LiteralC<"pensions">, import("io-ts").LiteralC<"earning_after_tax">]>;
147
+ monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
148
+ amount: import("io-ts").NumberC;
149
+ }>, import("io-ts").PartialC<{
150
+ currency: import("io-ts").LiteralC<"GBP">;
151
+ }>]>;
152
+ }>>;
140
153
  expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
141
154
  expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
142
155
  monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -146,7 +159,7 @@ export declare const getCreditOperation: {
146
159
  }>]>;
147
160
  }>>;
148
161
  }>;
149
- extra_applicants: import("io-ts").ArrayC<import("io-ts").TypeC<{
162
+ extra_applicants: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
150
163
  bank_account: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
151
164
  account_name: import("io-ts").StringC;
152
165
  account_number: import("io-ts").StringC;
@@ -252,6 +265,14 @@ export declare const getCreditOperation: {
252
265
  }>]>;
253
266
  finance_details: import("io-ts").PartialC<{
254
267
  bankrupcy_or_iva_in_last_5_years: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
268
+ incomes: import("io-ts").ArrayC<import("io-ts").PartialC<{
269
+ income_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"benefits">, import("io-ts").LiteralC<"other_sources_of_income">, import("io-ts").LiteralC<"pensions">, import("io-ts").LiteralC<"earning_after_tax">]>;
270
+ monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
271
+ amount: import("io-ts").NumberC;
272
+ }>, import("io-ts").PartialC<{
273
+ currency: import("io-ts").LiteralC<"GBP">;
274
+ }>]>;
275
+ }>>;
255
276
  expenditures: import("io-ts").ArrayC<import("io-ts").PartialC<{
256
277
  expenditure_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"credit_card">, import("io-ts").LiteralC<"clothes">, import("io-ts").LiteralC<"council_tax_and_bills">, import("io-ts").LiteralC<"child_support_agency">, import("io-ts").LiteralC<"healthcare">, import("io-ts").LiteralC<"holidays">]>;
257
278
  monthly_amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -261,7 +282,13 @@ export declare const getCreditOperation: {
261
282
  }>]>;
262
283
  }>>;
263
284
  }>;
264
- }>>;
285
+ }>, import("io-ts").PartialC<{
286
+ additional_employment_details: import("io-ts").ArrayC<import("io-ts").TypeC<{
287
+ employer_name: import("io-ts").StringC;
288
+ main_occupation: import("io-ts").StringC;
289
+ months_employed: import("io-ts").NumberC;
290
+ }>>;
291
+ }>]>>;
265
292
  credit_documents: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
266
293
  name: import("io-ts").StringC;
267
294
  }>, import("io-ts").PartialC<{
@@ -1 +1 @@
1
- {"version":3,"file":"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"}
@@ -133,8 +133,21 @@ export declare const getCreditsOperation: {
133
133
  }>, t.PartialC<{
134
134
  currency: t.LiteralC<"GBP">;
135
135
  }>]>;
136
+ additional_employment_details: t.ArrayC<t.TypeC<{
137
+ employer_name: t.StringC;
138
+ main_occupation: t.StringC;
139
+ months_employed: t.NumberC;
140
+ }>>;
136
141
  finance_details: t.PartialC<{
137
142
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
143
+ incomes: t.ArrayC<t.PartialC<{
144
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
145
+ monthly_amount: t.IntersectionC<[t.TypeC<{
146
+ amount: t.NumberC;
147
+ }>, t.PartialC<{
148
+ currency: t.LiteralC<"GBP">;
149
+ }>]>;
150
+ }>>;
138
151
  expenditures: t.ArrayC<t.PartialC<{
139
152
  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
153
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -144,7 +157,7 @@ export declare const getCreditsOperation: {
144
157
  }>]>;
145
158
  }>>;
146
159
  }>;
147
- extra_applicants: t.ArrayC<t.TypeC<{
160
+ extra_applicants: t.ArrayC<t.IntersectionC<[t.TypeC<{
148
161
  bank_account: t.IntersectionC<[t.TypeC<{
149
162
  account_name: t.StringC;
150
163
  account_number: t.StringC;
@@ -250,6 +263,14 @@ export declare const getCreditsOperation: {
250
263
  }>]>;
251
264
  finance_details: t.PartialC<{
252
265
  bankrupcy_or_iva_in_last_5_years: t.UnionC<[t.LiteralC<"yes">, t.LiteralC<"no">]>;
266
+ incomes: t.ArrayC<t.PartialC<{
267
+ income_type: t.UnionC<[t.LiteralC<"benefits">, t.LiteralC<"other_sources_of_income">, t.LiteralC<"pensions">, t.LiteralC<"earning_after_tax">]>;
268
+ monthly_amount: t.IntersectionC<[t.TypeC<{
269
+ amount: t.NumberC;
270
+ }>, t.PartialC<{
271
+ currency: t.LiteralC<"GBP">;
272
+ }>]>;
273
+ }>>;
253
274
  expenditures: t.ArrayC<t.PartialC<{
254
275
  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
276
  monthly_amount: t.IntersectionC<[t.TypeC<{
@@ -259,7 +280,13 @@ export declare const getCreditsOperation: {
259
280
  }>]>;
260
281
  }>>;
261
282
  }>;
262
- }>>;
283
+ }>, t.PartialC<{
284
+ additional_employment_details: t.ArrayC<t.TypeC<{
285
+ employer_name: t.StringC;
286
+ main_occupation: t.StringC;
287
+ months_employed: t.NumberC;
288
+ }>>;
289
+ }>]>>;
263
290
  credit_documents: t.ArrayC<t.IntersectionC<[t.TypeC<{
264
291
  name: t.StringC;
265
292
  }>, t.PartialC<{
@@ -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"}