@supernova-studio/model 1.72.2 → 1.73.1
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 +68 -0
- package/dist/index.d.ts +68 -0
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4296,7 +4296,8 @@ var ThemeImportModel = z106.object({
|
|
|
4296
4296
|
originSource: ThemeOriginSource,
|
|
4297
4297
|
overrides: z106.array(ThemeOverrideImportModel),
|
|
4298
4298
|
sortOrder: z106.number(),
|
|
4299
|
-
collectionIds: z106.array(z106.string()).optional()
|
|
4299
|
+
collectionIds: z106.array(z106.string()).optional(),
|
|
4300
|
+
collectionLegacyIds: z106.array(z106.string()).optional()
|
|
4300
4301
|
});
|
|
4301
4302
|
var ThemeImportModelInput = z106.object({
|
|
4302
4303
|
id: z106.string(),
|
|
@@ -4304,7 +4305,8 @@ var ThemeImportModelInput = z106.object({
|
|
|
4304
4305
|
meta: ObjectMeta,
|
|
4305
4306
|
originObjects: z106.array(ThemeOriginObject),
|
|
4306
4307
|
overrides: z106.array(ThemeOverrideImportModelInput),
|
|
4307
|
-
collectionIds: z106.array(z106.string()).optional()
|
|
4308
|
+
collectionIds: z106.array(z106.string()).optional(),
|
|
4309
|
+
collectionLegacyIds: z106.array(z106.string()).optional()
|
|
4308
4310
|
});
|
|
4309
4311
|
var ThemeUpdateImportModel = z106.object({
|
|
4310
4312
|
themePersistentId: z106.string(),
|
|
@@ -4319,6 +4321,7 @@ var ThemeUpdateImportModelInput = z106.object({
|
|
|
4319
4321
|
import { z as z107 } from "zod";
|
|
4320
4322
|
var DesignTokenImportModelPart = z107.object({
|
|
4321
4323
|
collectionId: z107.string().optional(),
|
|
4324
|
+
collectionLegacyId: z107.string().optional(),
|
|
4322
4325
|
codeSyntax: z107.record(z107.coerce.string()).optional(),
|
|
4323
4326
|
scopes: z107.array(z107.string()).optional()
|
|
4324
4327
|
});
|
|
@@ -4703,6 +4706,13 @@ var FigmaExporterProcessedStylesSchema = z125.object({
|
|
|
4703
4706
|
z125.literal("center"),
|
|
4704
4707
|
z125.literal("baseline")
|
|
4705
4708
|
]).optional(),
|
|
4709
|
+
justifySelf: z125.union([
|
|
4710
|
+
z125.literal("auto"),
|
|
4711
|
+
z125.literal("stretch"),
|
|
4712
|
+
z125.literal("flex-start"),
|
|
4713
|
+
z125.literal("flex-end"),
|
|
4714
|
+
z125.literal("center")
|
|
4715
|
+
]).optional(),
|
|
4706
4716
|
flexGrow: z125.number().optional(),
|
|
4707
4717
|
flexShrink: z125.number().optional(),
|
|
4708
4718
|
flexBasis: z125.string().optional(),
|