@bash-app/bash-common 29.19.14 → 29.19.16
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 +3 -3
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -330,11 +330,11 @@ export type StripeBusinessDataPublic = {
|
|
|
330
330
|
export type StripeBusinessDataOwned = {
|
|
331
331
|
stripeAccountDBId: string;
|
|
332
332
|
|
|
333
|
-
bankAccount
|
|
333
|
+
bankAccount?: string;
|
|
334
334
|
linkingStatus: StripeLinkingStatus;
|
|
335
335
|
|
|
336
|
-
createdDate:
|
|
337
|
-
updatedDate:
|
|
336
|
+
createdDate: string;
|
|
337
|
+
updatedDate: string;
|
|
338
338
|
} & StripeBusinessDataPublic;
|
|
339
339
|
|
|
340
340
|
export interface StripeConfirmPayment {
|