@bash-app/bash-common 29.19.11 → 29.19.13

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.11",
3
+ "version": "29.19.13",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -309,6 +309,13 @@ export type StripeAddress = {
309
309
  country: string;
310
310
  };
311
311
 
312
+ export type StripeLinkingStatus = {
313
+ isOnboarded: boolean;
314
+ hasOutstandingRequirements: boolean;
315
+ paymentsEnabled: boolean;
316
+ taxMonitoringEnabled: boolean;
317
+ };
318
+
312
319
  export type StripeBusinessDataPublic = {
313
320
  logo?: string; //not possible to fetch logo directly from stripe
314
321
  businessName?: string;
@@ -320,12 +327,6 @@ export type StripeBusinessDataPublic = {
320
327
  accountType: string;
321
328
  };
322
329
 
323
- export type StripeLinkingStatus = {
324
- hasOutstandingRequirements: boolean;
325
- paymentsEnabled: boolean;
326
- taxMonitoringEnabled: boolean;
327
- };
328
-
329
330
  export type StripeBusinessDataOwned = {
330
331
  stripeAccountDBId: string;
331
332