@supernova-studio/client 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 +240 -0
- package/dist/index.d.ts +240 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -422,6 +422,10 @@ var Subscription = _zod.z.object({
|
|
|
422
422
|
card: nullishToOptional(CardSchema),
|
|
423
423
|
seats: _zod.z.number(),
|
|
424
424
|
seatLimit: _zod.z.number(),
|
|
425
|
+
builderSeatLimit: _zod.z.number().optional(),
|
|
426
|
+
fullSeatLimit: _zod.z.number().optional(),
|
|
427
|
+
builderSeats: _zod.z.number().optional(),
|
|
428
|
+
fullSeats: _zod.z.number().optional(),
|
|
425
429
|
status: nullishToOptional(InternalStatusSchema),
|
|
426
430
|
subscriptionStatus: nullishToOptional(StripeSubscriptionStatusSchema),
|
|
427
431
|
internalStatus: nullishToOptional(InternalStatusSchema),
|
|
@@ -9237,6 +9241,10 @@ var DTOFeatureIteration = _zod2.default.object({
|
|
|
9237
9241
|
* Indicates whether the iteration is bookmarked by user
|
|
9238
9242
|
*/
|
|
9239
9243
|
isBookmarked: _zod2.default.boolean().optional(),
|
|
9244
|
+
/**
|
|
9245
|
+
* URL of a static thumbnail of the feature iteration
|
|
9246
|
+
*/
|
|
9247
|
+
thumbnailUrl: _zod2.default.string().optional(),
|
|
9240
9248
|
createdAt: _zod2.default.string(),
|
|
9241
9249
|
updatedAt: _zod2.default.string().optional(),
|
|
9242
9250
|
artifactsDiff: DTOFeatureIterationArtifactsDiff.optional().nullable()
|