@supernova-studio/model 1.80.0 → 1.80.2
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 +98 -0
- package/dist/index.d.ts +98 -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
|
@@ -4192,7 +4192,8 @@ var FigmaPngRenderImportModel = FigmaRenderBase.extend({
|
|
|
4192
4192
|
scale: z102.number()
|
|
4193
4193
|
});
|
|
4194
4194
|
var FigmaSvgRenderImportModel = FigmaRenderBase.extend({
|
|
4195
|
-
format: z102.literal(FigmaRenderFormat.enum.Svg)
|
|
4195
|
+
format: z102.literal(FigmaRenderFormat.enum.Svg),
|
|
4196
|
+
scale: z102.number()
|
|
4196
4197
|
});
|
|
4197
4198
|
var FigmaRenderImportModel = z102.discriminatedUnion("format", [
|
|
4198
4199
|
FigmaPngRenderImportModel,
|
|
@@ -4879,6 +4880,7 @@ var FigmaExporterDesignNodeTypeSchema = z125.union([
|
|
|
4879
4880
|
]);
|
|
4880
4881
|
var baseDesignNodeObjectSchema = z125.object({
|
|
4881
4882
|
id: z125.string(),
|
|
4883
|
+
name: z125.string(),
|
|
4882
4884
|
type: FigmaExporterDesignNodeTypeSchema,
|
|
4883
4885
|
parentId: z125.string().nullable(),
|
|
4884
4886
|
styles: FigmaExporterProcessedStylesSchema.partial()
|