@supernova-studio/model 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.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),
@@ -4999,7 +5003,8 @@ var Workspace = z133.object({
4999
5003
  npmRegistrySettings: nullishToOptional(NpmRegistryConfig),
5000
5004
  aiFeaturesEnabled: z133.boolean().default(false),
5001
5005
  aiAskFeaturesEnabled: z133.boolean().default(false),
5002
- aiCustomInstruction: z133.string().optional()
5006
+ aiCustomInstruction: z133.string().optional(),
5007
+ hasOpenMeterSubject: z133.boolean()
5003
5008
  });
5004
5009
  var WorkspaceWithDesignSystems = z133.object({
5005
5010
  workspace: Workspace,