@supernova-studio/client 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
@@ -3928,7 +3928,8 @@ var FigmaPngRenderImportModel = FigmaRenderBase.extend({
3928
3928
  scale: _zod.z.number()
3929
3929
  });
3930
3930
  var FigmaSvgRenderImportModel = FigmaRenderBase.extend({
3931
- format: _zod.z.literal(FigmaRenderFormat.enum.Svg)
3931
+ format: _zod.z.literal(FigmaRenderFormat.enum.Svg),
3932
+ scale: _zod.z.number()
3932
3933
  });
3933
3934
  var FigmaRenderImportModel = _zod.z.discriminatedUnion("format", [
3934
3935
  FigmaPngRenderImportModel,
@@ -4579,6 +4580,7 @@ var FigmaExporterDesignNodeTypeSchema = _zod.z.union([
4579
4580
  ]);
4580
4581
  var baseDesignNodeObjectSchema = _zod.z.object({
4581
4582
  id: _zod.z.string(),
4583
+ name: _zod.z.string(),
4582
4584
  type: FigmaExporterDesignNodeTypeSchema,
4583
4585
  parentId: _zod.z.string().nullable(),
4584
4586
  styles: FigmaExporterProcessedStylesSchema.partial()