@supernova-studio/model 1.4.22 → 1.5.0

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
@@ -104,7 +104,7 @@ var BillingDetails = z5.object({
104
104
  // src/billing/features.ts
105
105
  import { z as z6 } from "zod";
106
106
  var featureLimitedSchema = z6.object({
107
- max: z6.number(),
107
+ max: z6.number().optional(),
108
108
  errorMessage: z6.string(),
109
109
  errorReason: z6.string()
110
110
  });
@@ -140,7 +140,8 @@ var FeaturesSummary = z6.object({
140
140
  selectivePublishing: featureToggleSchema,
141
141
  designSystemAccessModes: featureToggleSchema,
142
142
  designSystemRoles: featureToggleSchema,
143
- documentationPageRedirects: featureToggleSchema
143
+ documentationPageRedirects: featureToggleSchema,
144
+ analytics: featureLimitedSchema
144
145
  });
145
146
 
146
147
  // src/billing/invoice.ts
@@ -3755,7 +3756,7 @@ import { z as z92 } from "zod";
3755
3756
  var FigmaFile = z92.object({
3756
3757
  id: z92.string(),
3757
3758
  name: z92.string(),
3758
- lastModifiedAt: z92.date(),
3759
+ lastModifiedAt: z92.coerce.date(),
3759
3760
  thumbnailUrl: z92.string().optional()
3760
3761
  });
3761
3762