@supernova-studio/client 0.55.26 → 0.55.27

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.mjs CHANGED
@@ -653,13 +653,19 @@ var FigmaComponentPropertyBase = z32.object({
653
653
  id: z32.string(),
654
654
  name: z32.string()
655
655
  });
656
+ var FigmaComponentInstancePreview = z32.object({
657
+ componentName: z32.string(),
658
+ componentSetName: z32.string().optional(),
659
+ isRemote: z32.boolean()
660
+ });
656
661
  var FigmaComponentBooleanProperty = FigmaComponentPropertyBase.extend({
657
662
  type: z32.literal(FigmaComponentPropertyType.enum.Boolean),
658
663
  defaultValue: z32.boolean()
659
664
  });
660
665
  var FigmaComponentInstanceSwapProperty = FigmaComponentPropertyBase.extend({
661
666
  type: z32.literal(FigmaComponentPropertyType.enum.InstanceSwap),
662
- defaultValue: z32.string()
667
+ defaultValue: z32.string(),
668
+ defaultValuePreview: FigmaComponentInstancePreview.optional()
663
669
  });
664
670
  var FigmaComponentVariantProperty = FigmaComponentPropertyBase.extend({
665
671
  type: z32.literal(FigmaComponentPropertyType.enum.Variant),