@bash-app/bash-common 29.19.8 → 29.19.9

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": "@bash-app/bash-common",
3
- "version": "29.19.8",
3
+ "version": "29.19.9",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -320,13 +320,17 @@ export type StripeBusinessDataPublic = {
320
320
  accountType: string;
321
321
  };
322
322
 
323
+ export type StripeLinkingStatus = {
324
+ linkingStatus: boolean;
325
+ paymentsEnabled: boolean;
326
+ taxMonitoringEnabled: boolean;
327
+ };
328
+
323
329
  export type StripeBusinessDataOwned = {
324
330
  stripeAccountDBId: string;
325
331
 
326
332
  bankAccount: string;
327
- linkingStatus: boolean;
328
- paymentsEnabled: boolean;
329
- taxMonitoringEnabled: boolean;
333
+ linkingStatus: StripeLinkingStatus;
330
334
 
331
335
  createdDate: Date;
332
336
  updatedDate: Date;