@supernova-studio/client 1.40.4 → 1.40.5

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/dist/index.mjs CHANGED
@@ -444,6 +444,8 @@ var Subscription = z13.object({
444
444
  currentPeriodStart: nullishToOptional(z13.string()),
445
445
  currentPeriodEnd: nullishToOptional(z13.string()),
446
446
  cancelAt: nullishToOptional(z13.string()),
447
+ fullSeatPriceId: nullishToOptional(z13.string()),
448
+ builderSeatPriceId: nullishToOptional(z13.string()),
447
449
  subscriptionStatusUpdatedAt: nullishToOptional(z13.string())
448
450
  });
449
451
  var ForgeChatMessageSenderType = z14.enum([
@@ -7364,6 +7366,9 @@ var DTOSubscription = z247.object({
7364
7366
  stripeProductFeatures: z247.array(z247.string()).optional(),
7365
7367
  stripeProductAdditionalFeatures: z247.array(z247.string()).optional(),
7366
7368
  stripeSubscriptionMainItemId: z247.string().optional(),
7369
+ /**
7370
+ * @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
7371
+ */
7367
7372
  planPriceId: z247.string(),
7368
7373
  planInterval: BillingIntervalSchema,
7369
7374
  isPricePerCreator: z247.boolean().optional(),
@@ -7383,7 +7388,9 @@ var DTOSubscription = z247.object({
7383
7388
  amount: z247.number(),
7384
7389
  isTrial: z247.boolean(),
7385
7390
  billingType: BillingTypeSchema.optional(),
7386
- daysUntilDue: z247.number().optional()
7391
+ daysUntilDue: z247.number().optional(),
7392
+ fullSeatPriceId: z247.string(),
7393
+ builderSeatPriceId: z247.string().optional()
7387
7394
  });
7388
7395
  var DTOSubscriptionResponse = z247.object({
7389
7396
  subscription: DTOSubscription,