@supernova-studio/client 0.59.4 → 0.59.5
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 +74 -76
- package/dist/index.d.ts +74 -76
- package/dist/index.js +14 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/figma-nodes/figma-node.ts +17 -2
- package/src/api/dto/elements/figma-nodes/node-actions-v2.ts +2 -2
- package/src/api/endpoints/design-system/versions/elements-action.ts +2 -1
package/dist/index.mjs
CHANGED
|
@@ -7006,9 +7006,17 @@ var DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderInputBase.extend({
|
|
|
7006
7006
|
*/
|
|
7007
7007
|
brandPersistentId: z243.string()
|
|
7008
7008
|
});
|
|
7009
|
+
var DTOFigmaNodeRerenderInput = z243.object({
|
|
7010
|
+
inputType: z243.literal("Rerender"),
|
|
7011
|
+
/**
|
|
7012
|
+
* Persistent ID of an existing Figma node
|
|
7013
|
+
*/
|
|
7014
|
+
figmaNodePersistentId: z243.string()
|
|
7015
|
+
});
|
|
7009
7016
|
var DTOFigmaNodeRenderInput = z243.discriminatedUnion("inputType", [
|
|
7010
7017
|
DTOFigmaNodeRenderIdInput,
|
|
7011
|
-
DTOFigmaNodeRenderUrlInput
|
|
7018
|
+
DTOFigmaNodeRenderUrlInput,
|
|
7019
|
+
DTOFigmaNodeRerenderInput
|
|
7012
7020
|
]);
|
|
7013
7021
|
|
|
7014
7022
|
// src/api/dto/elements/figma-nodes/figma-node-v1.ts
|
|
@@ -7065,7 +7073,7 @@ var DTOFigmaNodeRenderAsyncActionOutput = z246.object({
|
|
|
7065
7073
|
});
|
|
7066
7074
|
var DTOFigmaNodeRenderActionInput = z246.object({
|
|
7067
7075
|
type: z246.literal("FigmaNodeRender"),
|
|
7068
|
-
input:
|
|
7076
|
+
input: DTOFigmaNodeRenderIdInput.array()
|
|
7069
7077
|
});
|
|
7070
7078
|
var DTOFigmaNodeRenderAsyncActionInput = z246.object({
|
|
7071
7079
|
type: z246.literal("FigmaNodeRenderAsync"),
|
|
@@ -13371,7 +13379,10 @@ export {
|
|
|
13371
13379
|
DTOFigmaNodeRenderAsyncActionInput,
|
|
13372
13380
|
DTOFigmaNodeRenderAsyncActionOutput,
|
|
13373
13381
|
DTOFigmaNodeRenderFormat,
|
|
13382
|
+
DTOFigmaNodeRenderIdInput,
|
|
13374
13383
|
DTOFigmaNodeRenderInput,
|
|
13384
|
+
DTOFigmaNodeRenderUrlInput,
|
|
13385
|
+
DTOFigmaNodeRerenderInput,
|
|
13375
13386
|
DTOFigmaNodeV2,
|
|
13376
13387
|
DTOFrameNodeStructure,
|
|
13377
13388
|
DTOFrameNodeStructureListResponse,
|