@bash-app/bash-common 29.19.10 → 29.19.12
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 +7 -6
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -309,6 +309,13 @@ export type StripeAddress = {
|
|
|
309
309
|
country: string;
|
|
310
310
|
};
|
|
311
311
|
|
|
312
|
+
export type StripeLinkingStatus = {
|
|
313
|
+
isOnboarded: boolean;
|
|
314
|
+
hasOutsidingRequirements: 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
|
-
hasOutsidingRequirements: boolean;
|
|
325
|
-
paymentsEnabled: boolean;
|
|
326
|
-
taxMonitoringEnabled: boolean;
|
|
327
|
-
};
|
|
328
|
-
|
|
329
330
|
export type StripeBusinessDataOwned = {
|
|
330
331
|
stripeAccountDBId: string;
|
|
331
332
|
|