@kanda-libs/ks-component-ts 0.2.224 → 0.2.226
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/index.d.ts +7735 -7735
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +3 -3
- package/package.json +1 -1
- package/src/generated/components/schemas/Approval.ts +9 -1
- package/src/generated/components/schemas/JobCompanyInfo.ts +2 -0
- package/src/generated/widget/index.tsx +40864 -40543
package/package.json
CHANGED
|
@@ -15,6 +15,10 @@ export const Approval = t.intersection([
|
|
|
15
15
|
t.literal("investigation_required"),
|
|
16
16
|
t.literal("manual_review_required"),
|
|
17
17
|
t.literal("not_approved"),
|
|
18
|
+
t.literal("not_approved_ccj_against_business_or_director"),
|
|
19
|
+
t.literal("not_approved_ccj_against_previous_association"),
|
|
20
|
+
t.literal("not_approved_listed_trade_type_not_covered"),
|
|
21
|
+
t.literal("not_approved_several_negatives_against_company"),
|
|
18
22
|
]),
|
|
19
23
|
}),
|
|
20
24
|
t.partial({
|
|
@@ -31,6 +35,10 @@ export interface Approval {
|
|
|
31
35
|
| "mismatched_details"
|
|
32
36
|
| "investigation_required"
|
|
33
37
|
| "manual_review_required"
|
|
34
|
-
| "not_approved"
|
|
38
|
+
| "not_approved"
|
|
39
|
+
| "not_approved_ccj_against_business_or_director"
|
|
40
|
+
| "not_approved_ccj_against_previous_association"
|
|
41
|
+
| "not_approved_listed_trade_type_not_covered"
|
|
42
|
+
| "not_approved_several_negatives_against_company";
|
|
35
43
|
reason_note?: string;
|
|
36
44
|
}
|
|
@@ -8,6 +8,7 @@ export const JobCompanyInfo = t.intersection([
|
|
|
8
8
|
company_name: t.string,
|
|
9
9
|
}),
|
|
10
10
|
t.partial({
|
|
11
|
+
id: t.string,
|
|
11
12
|
company_logo: Document,
|
|
12
13
|
vat_number: t.string,
|
|
13
14
|
bank_account: BankAccount,
|
|
@@ -16,6 +17,7 @@ export const JobCompanyInfo = t.intersection([
|
|
|
16
17
|
]);
|
|
17
18
|
|
|
18
19
|
export interface JobCompanyInfo {
|
|
20
|
+
id?: string;
|
|
19
21
|
company_name: string;
|
|
20
22
|
company_logo?: Document;
|
|
21
23
|
vat_number?: string;
|