@supernova-studio/client 1.37.0 → 1.37.2
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 +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -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),
|
|
@@ -4438,7 +4442,8 @@ var Workspace = z133.object({
|
|
|
4438
4442
|
npmRegistrySettings: nullishToOptional(NpmRegistryConfig),
|
|
4439
4443
|
aiFeaturesEnabled: z133.boolean().default(false),
|
|
4440
4444
|
aiAskFeaturesEnabled: z133.boolean().default(false),
|
|
4441
|
-
aiCustomInstruction: z133.string().optional()
|
|
4445
|
+
aiCustomInstruction: z133.string().optional(),
|
|
4446
|
+
hasOpenMeterSubject: z133.boolean()
|
|
4442
4447
|
});
|
|
4443
4448
|
var WorkspaceWithDesignSystems = z133.object({
|
|
4444
4449
|
workspace: Workspace,
|