@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.d.mts +1004 -630
- package/dist/index.d.ts +1004 -630
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -104,7 +104,7 @@ var BillingDetails = _zod.z.object({
|
|
|
104
104
|
// src/billing/features.ts
|
|
105
105
|
|
|
106
106
|
var featureLimitedSchema = _zod.z.object({
|
|
107
|
-
max: _zod.z.number(),
|
|
107
|
+
max: _zod.z.number().optional(),
|
|
108
108
|
errorMessage: _zod.z.string(),
|
|
109
109
|
errorReason: _zod.z.string()
|
|
110
110
|
});
|
|
@@ -140,7 +140,8 @@ var FeaturesSummary = _zod.z.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 @@ function zeroNumberByDefault2() {
|
|
|
3755
3756
|
var FigmaFile = _zod.z.object({
|
|
3756
3757
|
id: _zod.z.string(),
|
|
3757
3758
|
name: _zod.z.string(),
|
|
3758
|
-
lastModifiedAt: _zod.z.date(),
|
|
3759
|
+
lastModifiedAt: _zod.z.coerce.date(),
|
|
3759
3760
|
thumbnailUrl: _zod.z.string().optional()
|
|
3760
3761
|
});
|
|
3761
3762
|
|