@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.js CHANGED
@@ -4192,7 +4192,8 @@ var FigmaPngRenderImportModel = FigmaRenderBase.extend({
4192
4192
  scale: _zod.z.number()
4193
4193
  });
4194
4194
  var FigmaSvgRenderImportModel = FigmaRenderBase.extend({
4195
- format: _zod.z.literal(FigmaRenderFormat.enum.Svg)
4195
+ format: _zod.z.literal(FigmaRenderFormat.enum.Svg),
4196
+ scale: _zod.z.number()
4196
4197
  });
4197
4198
  var FigmaRenderImportModel = _zod.z.discriminatedUnion("format", [
4198
4199
  FigmaPngRenderImportModel,
@@ -4879,6 +4880,7 @@ var FigmaExporterDesignNodeTypeSchema = _zod.z.union([
4879
4880
  ]);
4880
4881
  var baseDesignNodeObjectSchema = _zod.z.object({
4881
4882
  id: _zod.z.string(),
4883
+ name: _zod.z.string(),
4882
4884
  type: FigmaExporterDesignNodeTypeSchema,
4883
4885
  parentId: _zod.z.string().nullable(),
4884
4886
  styles: FigmaExporterProcessedStylesSchema.partial()