@supernova-studio/client 0.52.15 → 0.52.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supernova-studio/client",
3
- "version": "0.52.15",
3
+ "version": "0.52.16",
4
4
  "description": "Supernova Data Models",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -38,6 +38,10 @@ export const DTOFigmaComponent = z.object({
38
38
  componentPropertyDefinitions: DTOFigmaComponentPropertyMap.optional(),
39
39
  });
40
40
 
41
+ export const DTOFigmaComponentListResponse = z.object({
42
+ components: DTOFigmaComponent.array(),
43
+ });
44
+
41
45
  export type DTOFigmaComponentBooleanProperty = z.infer<typeof DTOFigmaComponentBooleanProperty>;
42
46
  export type DTOFigmaComponentInstanceSwapProperty = z.infer<typeof DTOFigmaComponentInstanceSwapProperty>;
43
47
  export type DTOFigmaComponentTextProperty = z.infer<typeof DTOFigmaComponentTextProperty>;
@@ -46,3 +50,4 @@ export type DTOFigmaComponentProperty = z.infer<typeof DTOFigmaComponentProperty
46
50
  export type DTOFigmaComponentPropertyMap = z.infer<typeof DTOFigmaComponentPropertyMap>;
47
51
 
48
52
  export type DTOFigmaComponent = z.infer<typeof DTOFigmaComponent>;
53
+ export type DTOFigmaComponentListResponse = z.infer<typeof DTOFigmaComponentListResponse>;