@supernova-studio/model 0.51.1 → 0.52.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 +645 -0
- package/dist/index.d.ts +645 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/billing/features.ts +1 -0
- package/src/dsm/elements/tokens.ts +2 -0
package/dist/index.mjs
CHANGED
|
@@ -136,7 +136,8 @@ var FeaturesSummary = z6.object({
|
|
|
136
136
|
workspaceViewers: featureLimitedSchema,
|
|
137
137
|
customDocumentationExporter: featureToggleSchema,
|
|
138
138
|
protectedPages: featureToggleSchema,
|
|
139
|
-
approvals: featureToggleSchema
|
|
139
|
+
approvals: featureToggleSchema,
|
|
140
|
+
selectivePublishing: featureToggleSchema
|
|
140
141
|
});
|
|
141
142
|
|
|
142
143
|
// src/billing/invoice.ts
|
|
@@ -2808,6 +2809,8 @@ import { z as z81 } from "zod";
|
|
|
2808
2809
|
var DesignTokenOriginPart = z81.object({
|
|
2809
2810
|
referenceOriginId: z81.string().optional(),
|
|
2810
2811
|
referenceOriginKey: z81.string().optional(),
|
|
2812
|
+
referenceOriginName: z81.string().optional(),
|
|
2813
|
+
referenceOriginRemote: z81.boolean().optional(),
|
|
2811
2814
|
referencePersistentId: z81.string().optional(),
|
|
2812
2815
|
referenceResolutionFailed: z81.boolean().optional(),
|
|
2813
2816
|
key: z81.string().optional()
|