@supernova-studio/client 1.71.1 → 1.71.2
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4359,7 +4359,6 @@ var svgNodeObjectSchema = baseDesignNodeObjectSchema.extend({
|
|
|
4359
4359
|
});
|
|
4360
4360
|
var componentInstanceObjectSchema = baseDesignNodeObjectSchema.extend({
|
|
4361
4361
|
type: z125.literal("COMPONENT_INSTANCE"),
|
|
4362
|
-
supernovaId: z125.string(),
|
|
4363
4362
|
componentSetName: z125.string(),
|
|
4364
4363
|
componentSetDescription: z125.string(),
|
|
4365
4364
|
componentName: z125.string(),
|
|
@@ -11216,12 +11215,13 @@ var DTOFigmaExportNodeConfiguration = z339.object({
|
|
|
11216
11215
|
});
|
|
11217
11216
|
var DTOFigmaExportNodePayload = z339.object({
|
|
11218
11217
|
designSystemId: z339.string(),
|
|
11219
|
-
versionId: z339.string().optional(),
|
|
11220
11218
|
figmaUrl: z339.string(),
|
|
11221
11219
|
configuration: DTOFigmaExportNodeConfiguration
|
|
11222
11220
|
});
|
|
11223
11221
|
var DTOFigmaExportNodeResponse = z339.object({
|
|
11224
|
-
file: DTOFile
|
|
11222
|
+
file: DTOFile,
|
|
11223
|
+
// TODO (jovanblazek): Remove sceneNodes from response when done with development
|
|
11224
|
+
sceneNodes: z339.array(z339.any()).optional()
|
|
11225
11225
|
});
|
|
11226
11226
|
|
|
11227
11227
|
// src/api/dto/liveblocks/auth-response.ts
|