@supernova-studio/client 0.58.24 → 0.58.26
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 +22 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/figma-nodes/figma-node.ts +5 -0
- package/src/utils/figma.ts +1 -1
package/package.json
CHANGED
|
@@ -94,6 +94,11 @@ const DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderInputBase.extend({
|
|
|
94
94
|
* Id of a design system's data source representing a linked Figma file
|
|
95
95
|
*/
|
|
96
96
|
figmaNodeUrl: z.string(),
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Brand persistent id to use in case a source has to be created for this render
|
|
100
|
+
*/
|
|
101
|
+
brandPersistentId: z.string(),
|
|
97
102
|
});
|
|
98
103
|
|
|
99
104
|
export const DTOFigmaNodeRenderInput = z.discriminatedUnion("inputType", [
|
package/src/utils/figma.ts
CHANGED