@supernova-studio/client 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
@@ -276,7 +276,7 @@ var BillingDetails = z5.object({
276
276
  poNumber: nullishToOptional(z5.string())
277
277
  });
278
278
  var featureLimitedSchema = z6.object({
279
- max: z6.number(),
279
+ max: z6.number().optional(),
280
280
  errorMessage: z6.string(),
281
281
  errorReason: z6.string()
282
282
  });
@@ -312,7 +312,8 @@ var FeaturesSummary = z6.object({
312
312
  selectivePublishing: featureToggleSchema,
313
313
  designSystemAccessModes: featureToggleSchema,
314
314
  designSystemRoles: featureToggleSchema,
315
- documentationPageRedirects: featureToggleSchema
315
+ documentationPageRedirects: featureToggleSchema,
316
+ analytics: featureLimitedSchema
316
317
  });
317
318
  var InvoiceSchema = z7.object({
318
319
  id: z7.string(),
@@ -3357,7 +3358,7 @@ function zeroNumberByDefault2() {
3357
3358
  var FigmaFile = z92.object({
3358
3359
  id: z92.string(),
3359
3360
  name: z92.string(),
3360
- lastModifiedAt: z92.date(),
3361
+ lastModifiedAt: z92.coerce.date(),
3361
3362
  thumbnailUrl: z92.string().optional()
3362
3363
  });
3363
3364
  var ImportJobState = z93.enum(["PendingInput", "Queued", "InProgress", "Failed", "Success"]);