@supernova-studio/client 1.37.0 → 1.37.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/dist/index.d.mts +212 -0
- package/dist/index.d.ts +212 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -422,6 +422,10 @@ var Subscription = z12.object({
|
|
|
422
422
|
card: nullishToOptional(CardSchema),
|
|
423
423
|
seats: z12.number(),
|
|
424
424
|
seatLimit: z12.number(),
|
|
425
|
+
builderSeatLimit: z12.number().optional(),
|
|
426
|
+
fullSeatLimit: z12.number().optional(),
|
|
427
|
+
builderSeats: z12.number().optional(),
|
|
428
|
+
fullSeats: z12.number().optional(),
|
|
425
429
|
status: nullishToOptional(InternalStatusSchema),
|
|
426
430
|
subscriptionStatus: nullishToOptional(StripeSubscriptionStatusSchema),
|
|
427
431
|
internalStatus: nullishToOptional(InternalStatusSchema),
|