@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 +1 -1
- package/src/definitions.ts +6 -4
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -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
|
-
|
|
307
|
-
|
|
308
|
-
|
|
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;
|