@supernova-studio/client 0.52.17 → 0.52.18
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 +8 -114
- package/dist/index.d.ts +8 -114
- package/dist/index.js +3 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/components/figma-component.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -649,11 +649,7 @@ var FigmaComponentBooleanProperty = z32.object({
|
|
|
649
649
|
});
|
|
650
650
|
var FigmaComponentInstanceSwapProperty = z32.object({
|
|
651
651
|
type: z32.literal(FigmaComponentPropertyType.enum.InstanceSwap),
|
|
652
|
-
defaultValue: z32.string()
|
|
653
|
-
preferredValues: z32.object({
|
|
654
|
-
type: z32.enum(["Component", "ComponentSet"]),
|
|
655
|
-
key: z32.string()
|
|
656
|
-
}).array()
|
|
652
|
+
defaultValue: z32.string()
|
|
657
653
|
});
|
|
658
654
|
var FigmaComponentVariantProperty = z32.object({
|
|
659
655
|
type: z32.literal(FigmaComponentPropertyType.enum.Variant),
|
|
@@ -5635,7 +5631,8 @@ var DTOFigmaComponent = z201.object({
|
|
|
5635
5631
|
meta: ObjectMeta,
|
|
5636
5632
|
originComponent: FigmaComponentOrigin.optional(),
|
|
5637
5633
|
parentComponentPersistentId: z201.string().optional(),
|
|
5638
|
-
componentPropertyDefinitions: DTOFigmaComponentPropertyMap.optional()
|
|
5634
|
+
componentPropertyDefinitions: DTOFigmaComponentPropertyMap.optional(),
|
|
5635
|
+
childrenPersistentIds: z201.string().array().optional()
|
|
5639
5636
|
});
|
|
5640
5637
|
var DTOFigmaComponentListResponse = z201.object({
|
|
5641
5638
|
components: DTOFigmaComponent.array()
|