@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/dist/index.d.mts +261 -1
- package/dist/index.d.ts +261 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/components/figma-component.ts +5 -0
package/dist/index.mjs
CHANGED
|
@@ -5637,6 +5637,9 @@ var DTOFigmaComponent = z201.object({
|
|
|
5637
5637
|
parentComponentPersistentId: z201.string().optional(),
|
|
5638
5638
|
componentPropertyDefinitions: DTOFigmaComponentPropertyMap.optional()
|
|
5639
5639
|
});
|
|
5640
|
+
var DTOFigmaComponentListResponse = z201.object({
|
|
5641
|
+
components: DTOFigmaComponent.array()
|
|
5642
|
+
});
|
|
5640
5643
|
|
|
5641
5644
|
// src/api/dto/elements/documentation/group-action.ts
|
|
5642
5645
|
import { z as z203 } from "zod";
|
|
@@ -11406,6 +11409,7 @@ export {
|
|
|
11406
11409
|
DTOExporterType,
|
|
11407
11410
|
DTOExporterUpdateInput,
|
|
11408
11411
|
DTOFigmaComponent,
|
|
11412
|
+
DTOFigmaComponentListResponse,
|
|
11409
11413
|
DTOFigmaNode,
|
|
11410
11414
|
DTOFigmaNodeData,
|
|
11411
11415
|
DTOFigmaNodeOrigin,
|