@supernova-studio/model 0.47.46 → 0.47.47
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 +23 -0
- package/dist/index.d.ts +23 -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 +2 -2
- package/src/dsm/properties/property-value.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -2720,7 +2720,8 @@ var ThemeUpdateImportModelInput = z101.object({
|
|
|
2720
2720
|
// src/dsm/import/tokens.ts
|
|
2721
2721
|
import { z as z102 } from "zod";
|
|
2722
2722
|
var DesignTokenImportModelPart = z102.object({
|
|
2723
|
-
collection: z102.string().optional()
|
|
2723
|
+
collection: z102.string().optional(),
|
|
2724
|
+
codeSyntax: z102.record(z102.coerce.string()).optional()
|
|
2724
2725
|
});
|
|
2725
2726
|
var DesignTokenImportModelBase = ImportModelBase.extend(DesignTokenImportModelPart.shape).extend({
|
|
2726
2727
|
origin: DesignTokenOrigin
|