@bash-app/bash-common 25.1.4 → 25.1.6
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 -1
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -231,10 +231,15 @@ export interface StripeConfirmPayment {
|
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
export interface StripeAccountLinkArgs {
|
|
234
|
-
userId
|
|
234
|
+
userId?: string;
|
|
235
235
|
returnUrl: string;
|
|
236
236
|
refreshUrl: string;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export interface StripeBusinessLinkArgs {
|
|
237
240
|
businessId: string;
|
|
241
|
+
returnUrl: string;
|
|
242
|
+
refreshUrl: string;
|
|
238
243
|
}
|
|
239
244
|
|
|
240
245
|
export interface StripeConfirmPaymentResult {
|