@supernova-studio/model 0.54.11 → 0.54.12
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 +22 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/import/tokens.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -3698,7 +3698,8 @@ var ThemeUpdateImportModelInput = z96.object({
|
|
|
3698
3698
|
import { z as z97 } from "zod";
|
|
3699
3699
|
var DesignTokenImportModelPart = z97.object({
|
|
3700
3700
|
collection: z97.string().optional(),
|
|
3701
|
-
codeSyntax: z97.record(z97.coerce.string()).optional()
|
|
3701
|
+
codeSyntax: z97.record(z97.coerce.string()).optional(),
|
|
3702
|
+
scopes: z97.array(z97.string()).optional()
|
|
3702
3703
|
});
|
|
3703
3704
|
var DesignTokenImportModelBase = ImportModelBase.extend(DesignTokenImportModelPart.shape).extend({
|
|
3704
3705
|
origin: DesignTokenOrigin
|