@supernova-studio/model 1.36.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 +180 -0
- package/dist/index.d.ts +180 -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
|
@@ -248,6 +248,10 @@ var Subscription = z12.object({
|
|
|
248
248
|
card: nullishToOptional(CardSchema),
|
|
249
249
|
seats: z12.number(),
|
|
250
250
|
seatLimit: z12.number(),
|
|
251
|
+
builderSeatLimit: z12.number().optional(),
|
|
252
|
+
fullSeatLimit: z12.number().optional(),
|
|
253
|
+
builderSeats: z12.number().optional(),
|
|
254
|
+
fullSeats: z12.number().optional(),
|
|
251
255
|
status: nullishToOptional(InternalStatusSchema),
|
|
252
256
|
subscriptionStatus: nullishToOptional(StripeSubscriptionStatusSchema),
|
|
253
257
|
internalStatus: nullishToOptional(InternalStatusSchema),
|