@kanda-libs/ks-component-ts 0.3.96 → 0.3.98

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanda-libs/ks-component-ts",
3
- "version": "0.3.96",
3
+ "version": "0.3.98",
4
4
  "description": "Kanda form component library",
5
5
  "main": "dist/index.esm.js",
6
6
  "module": "dist/index.esm.js",
@@ -79,6 +79,7 @@ export const Company = t.intersection([
79
79
  business_config: BusinessConfig,
80
80
  tier_config: TierConfig,
81
81
  training_status: CompanyTraining,
82
+ hide_openbanking: t.boolean,
82
83
  metadata: Metadata,
83
84
  }),
84
85
  ]);
@@ -134,5 +135,6 @@ export interface Company {
134
135
  business_config?: BusinessConfig;
135
136
  tier_config?: TierConfig;
136
137
  training_status?: CompanyTraining;
138
+ hide_openbanking?: boolean;
137
139
  metadata?: Metadata;
138
140
  }
@@ -13,6 +13,7 @@ export const JobCompanyInfo = t.intersection([
13
13
  vat_number: t.string,
14
14
  bank_account: BankAccount,
15
15
  contact_info: ContactInfo,
16
+ hide_openbanking: t.boolean,
16
17
  }),
17
18
  ]);
18
19
 
@@ -23,4 +24,5 @@ export interface JobCompanyInfo {
23
24
  vat_number?: string;
24
25
  bank_account?: BankAccount;
25
26
  contact_info?: ContactInfo;
27
+ hide_openbanking?: boolean;
26
28
  }