@bash-app/bash-common 29.40.5 → 29.41.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "29.40.5",
3
+ "version": "29.41.1",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -1225,7 +1225,13 @@ enum VenuePricingPlan {
1225
1225
  enum ServiceSubscriptionStatus {
1226
1226
  None
1227
1227
  Active
1228
+ Trialing
1229
+ Paused
1228
1230
  Canceled
1231
+ Incomplete
1232
+ IncompleteExpired
1233
+ Unpaid
1234
+ PastDue
1229
1235
  Suspended
1230
1236
  Expired
1231
1237
  }
@@ -292,6 +292,10 @@ export interface StripeCreateServiceSubscriptionCheckoutSessionArgs {
292
292
  cancelUrl: string;
293
293
  }
294
294
 
295
+ export interface StripeCreateAccountPortalSessionArgs {
296
+ stripeAccountId: string;
297
+ returnUrl: string;
298
+ }
295
299
 
296
300
  export type StripeSessionRedirect = {
297
301
  stripeAccountIdDB: string;