@supernova-studio/client 0.50.0 → 0.51.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 +165 -0
- package/dist/index.d.ts +165 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -293,7 +293,8 @@ var FeaturesSummary = z6.object({
|
|
|
293
293
|
workspacePaidSeats: featureLimitedSchema,
|
|
294
294
|
workspaceViewers: featureLimitedSchema,
|
|
295
295
|
customDocumentationExporter: featureToggleSchema,
|
|
296
|
-
protectedPages: featureToggleSchema
|
|
296
|
+
protectedPages: featureToggleSchema,
|
|
297
|
+
approvals: featureToggleSchema
|
|
297
298
|
});
|
|
298
299
|
var InvoiceSchema = z7.object({
|
|
299
300
|
id: z7.string(),
|
|
@@ -3635,6 +3636,7 @@ var DesignSystem = z118.object({
|
|
|
3635
3636
|
basePrefixes: z118.array(z118.string()),
|
|
3636
3637
|
designSystemSwitcher: nullishToOptional(DesignSystemSwitcher),
|
|
3637
3638
|
isApprovalFeatureEnabled: z118.boolean(),
|
|
3639
|
+
approvalRequiredForPublishing: z118.boolean(),
|
|
3638
3640
|
createdAt: z118.coerce.date(),
|
|
3639
3641
|
updatedAt: z118.coerce.date()
|
|
3640
3642
|
});
|