@kanda-libs/ks-component-ts 0.2.382 → 0.2.384

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.2.382",
3
+ "version": "0.2.384",
4
4
  "description": "Kanda form component library",
5
5
  "main": "dist/index.esm.js",
6
6
  "module": "dist/index.esm.js",
@@ -72,6 +72,7 @@ export const Company = t.intersection([
72
72
  fca_number: t.string,
73
73
  welcome_pack: WelcomeSkipBanner,
74
74
  lender_configs: t.array(LenderConfig),
75
+ business_type: t.string,
75
76
  metadata: Metadata,
76
77
  }),
77
78
  ]);
@@ -122,5 +123,6 @@ export interface Company {
122
123
  fca_number?: string;
123
124
  welcome_pack?: WelcomeSkipBanner;
124
125
  lender_configs?: Array<LenderConfig>;
126
+ business_type?: string;
125
127
  metadata?: Metadata;
126
128
  }
@@ -15,6 +15,7 @@ export type RunnerRequestParameters = {
15
15
  | "dbv3_user_send_referrals"
16
16
  | "housekeeping_check_referral_expiry"
17
17
  | "housekeeping_check_lender_rate"
18
+ | "housekeeping_check_lender_update"
18
19
  | "housekeeping_check_trade_summary";
19
20
  };
20
21