@bash-app/bash-common 29.19.2 → 29.19.4

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.2",
3
+ "version": "29.19.4",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -300,17 +300,19 @@ export type BashEventStripeSessionRedirect = {
300
300
  // export type StripeLinkingStatus = "Complete" | "Incomplete";
301
301
 
302
302
  export type StripeBusinessDataPublic = {
303
- logo?: string;
303
+ logo?: string; //not possible to fetch logo directly from stripe
304
304
  businessName?: string;
305
305
  businessNameDBA?: string;
306
- email: string;
307
- phone: string;
308
- website: string;
306
+ supportEmail: string;
307
+ supportPhone: string;
308
+ supportURL: string;
309
309
  address: string;
310
310
  accountType: string;
311
311
  };
312
312
 
313
313
  export type StripeBusinessDataOwned = {
314
+ stripeAccountDBId: string;
315
+
314
316
  bankAccount: string;
315
317
  linkingStatus: boolean;
316
318
  paymentsEnabled: boolean;