@bash-app/bash-common 29.19.8 → 29.19.10
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 -3
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -320,13 +320,17 @@ export type StripeBusinessDataPublic = {
|
|
|
320
320
|
accountType: string;
|
|
321
321
|
};
|
|
322
322
|
|
|
323
|
+
export type StripeLinkingStatus = {
|
|
324
|
+
hasOutsidingRequirements: 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:
|
|
328
|
-
paymentsEnabled: boolean;
|
|
329
|
-
taxMonitoringEnabled: boolean;
|
|
333
|
+
linkingStatus: StripeLinkingStatus;
|
|
330
334
|
|
|
331
335
|
createdDate: Date;
|
|
332
336
|
updatedDate: Date;
|