@supernova-studio/model 1.44.4 → 1.44.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/dist/index.d.mts +194 -104
- package/dist/index.d.ts +194 -104
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -252,10 +252,11 @@ var Subscription = z12.object({
|
|
|
252
252
|
seatLimit: z12.number(),
|
|
253
253
|
monthlyCreditGrantAnchor: nullishToOptional(z12.string()),
|
|
254
254
|
monthlyCreditGrantAmount: nullishToOptional(z12.number()),
|
|
255
|
-
builderSeatLimit: z12.number()
|
|
256
|
-
fullSeatLimit: z12.number()
|
|
257
|
-
|
|
258
|
-
|
|
255
|
+
builderSeatLimit: nullishToOptional(z12.number()),
|
|
256
|
+
fullSeatLimit: nullishToOptional(z12.number()),
|
|
257
|
+
additionalCredits: nullishToOptional(z12.number()),
|
|
258
|
+
builderSeats: nullishToOptional(z12.number()),
|
|
259
|
+
fullSeats: nullishToOptional(z12.number()),
|
|
259
260
|
status: nullishToOptional(InternalStatusSchema),
|
|
260
261
|
subscriptionStatus: nullishToOptional(StripeSubscriptionStatusSchema),
|
|
261
262
|
internalStatus: nullishToOptional(InternalStatusSchema),
|
|
@@ -269,6 +270,7 @@ var Subscription = z12.object({
|
|
|
269
270
|
cancelAt: nullishToOptional(z12.string()),
|
|
270
271
|
fullSeatPriceId: nullishToOptional(z12.string()),
|
|
271
272
|
builderSeatPriceId: nullishToOptional(z12.string()),
|
|
273
|
+
additionalCreditsPriceId: nullishToOptional(z12.string()),
|
|
272
274
|
subscriptionStatusUpdatedAt: nullishToOptional(z12.string())
|
|
273
275
|
});
|
|
274
276
|
|