@supernova-studio/client 1.4.23 → 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.js CHANGED
@@ -276,7 +276,7 @@ var BillingDetails = _zod.z.object({
276
276
  poNumber: nullishToOptional(_zod.z.string())
277
277
  });
278
278
  var featureLimitedSchema = _zod.z.object({
279
- max: _zod.z.number(),
279
+ max: _zod.z.number().optional(),
280
280
  errorMessage: _zod.z.string(),
281
281
  errorReason: _zod.z.string()
282
282
  });
@@ -312,7 +312,8 @@ var FeaturesSummary = _zod.z.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 = _zod.z.object({
318
319
  id: _zod.z.string(),