@supernova-studio/client 1.87.6 → 1.87.8
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 +64 -153
- package/dist/index.d.ts +64 -153
- package/dist/index.js +11 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10634,6 +10634,8 @@ var DTOForgeFeatureRoomResponse = z321.object({
|
|
|
10634
10634
|
// src/api/dto/forge/figma-node.ts
|
|
10635
10635
|
import z322 from "zod";
|
|
10636
10636
|
var DTOForgeFigmaNodeState = z322.enum(["Optimizing", "Success", "Failed"]);
|
|
10637
|
+
var DTOForgeFigmaNodeConversionVersion = z322.enum(["V1", "V2"]);
|
|
10638
|
+
var ForgeFigmaNodeLatestVersion = DTOForgeFigmaNodeConversionVersion.enum.V2;
|
|
10637
10639
|
var DTOForgeFigmaNodeOrigin = z322.object({
|
|
10638
10640
|
/**
|
|
10639
10641
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
@@ -12034,16 +12036,6 @@ var DTOFigmaExportNodeConfiguration = z346.object({
|
|
|
12034
12036
|
minifyOutput: z346.boolean().optional(),
|
|
12035
12037
|
customFontUrls: z346.string().array().optional()
|
|
12036
12038
|
});
|
|
12037
|
-
var DTOFigmaExportNodePayload = z346.object({
|
|
12038
|
-
designSystemId: z346.string(),
|
|
12039
|
-
figmaUrl: z346.string(),
|
|
12040
|
-
configuration: DTOFigmaExportNodeConfiguration
|
|
12041
|
-
});
|
|
12042
|
-
var DTOFigmaExportNodeResponse = z346.object({
|
|
12043
|
-
file: DTOFile,
|
|
12044
|
-
// TODO (jovanblazek): Remove sceneNodes from response when done with development
|
|
12045
|
-
scene: z346.any().optional()
|
|
12046
|
-
});
|
|
12047
12039
|
|
|
12048
12040
|
// src/api/dto/liveblocks/auth-response.ts
|
|
12049
12041
|
import { z as z347 } from "zod";
|
|
@@ -12176,7 +12168,9 @@ var DTOSandboxTemplateBuild = z351.object({
|
|
|
12176
12168
|
createdAt: z351.string(),
|
|
12177
12169
|
finishedAt: z351.string().optional(),
|
|
12178
12170
|
createdByUserId: z351.string(),
|
|
12179
|
-
|
|
12171
|
+
/** @deprecated use `dockerImageUri` instead */
|
|
12172
|
+
dockerImagePath: z351.string().optional(),
|
|
12173
|
+
dockerImageUri: z351.string(),
|
|
12180
12174
|
error: z351.string().optional(),
|
|
12181
12175
|
state: z351.enum(["PendingUpload", "Building", "Success", "Failure", "Timeout"])
|
|
12182
12176
|
});
|
|
@@ -12210,6 +12204,8 @@ var DTOSandboxTemplateBuildCreateInput = z351.object({
|
|
|
12210
12204
|
version: z351.string(),
|
|
12211
12205
|
isExistingVersionUpdateAllowed: z351.boolean(),
|
|
12212
12206
|
hasDesignModePlugin: z351.boolean().optional(),
|
|
12207
|
+
dockerImageUri: z351.string().optional(),
|
|
12208
|
+
customAuth: z351.object({ username: z351.string(), password: z351.string() }).optional(),
|
|
12213
12209
|
templates: z351.object({
|
|
12214
12210
|
id: z351.string(),
|
|
12215
12211
|
name: z351.string(),
|
|
@@ -12219,9 +12215,10 @@ var DTOSandboxTemplateBuildCreateInput = z351.object({
|
|
|
12219
12215
|
}).array().optional()
|
|
12220
12216
|
});
|
|
12221
12217
|
var DTOSandboxTemplateBuildCreateResponse = z351.object({
|
|
12222
|
-
/** @deprecated use
|
|
12218
|
+
/** @deprecated use build.dockerImageUri */
|
|
12223
12219
|
dockerUrl: z351.string().optional(),
|
|
12224
|
-
|
|
12220
|
+
/** @deprecated use build.dockerImageUri */
|
|
12221
|
+
dockerRegistryDomain: z351.string().optional(),
|
|
12225
12222
|
/** @deprecated use docker-login endpoint */
|
|
12226
12223
|
dockerAccessToken: z351.string().optional(),
|
|
12227
12224
|
build: DTOSandboxTemplateBuild
|
|
@@ -21375,8 +21372,6 @@ export {
|
|
|
21375
21372
|
DTOFigmaComponentListResponse,
|
|
21376
21373
|
DTOFigmaExportNodeConfiguration,
|
|
21377
21374
|
DTOFigmaExportNodeFormat,
|
|
21378
|
-
DTOFigmaExportNodePayload,
|
|
21379
|
-
DTOFigmaExportNodeResponse,
|
|
21380
21375
|
DTOFigmaNode,
|
|
21381
21376
|
DTOFigmaNodeData,
|
|
21382
21377
|
DTOFigmaNodeDataV2,
|
|
@@ -21452,6 +21447,7 @@ export {
|
|
|
21452
21447
|
DTOForgeFeatureRoomResponse,
|
|
21453
21448
|
DTOForgeFigmaArtifact,
|
|
21454
21449
|
DTOForgeFigmaNode,
|
|
21450
|
+
DTOForgeFigmaNodeConversionVersion,
|
|
21455
21451
|
DTOForgeFigmaNodeCreateRequest,
|
|
21456
21452
|
DTOForgeFigmaNodeOrigin,
|
|
21457
21453
|
DTOForgeFigmaNodeResponse,
|
|
@@ -21879,6 +21875,7 @@ export {
|
|
|
21879
21875
|
ForgeFeatureIterationTagsEndpoint,
|
|
21880
21876
|
ForgeFeatureIterationsEndpoint,
|
|
21881
21877
|
ForgeFeatureMessagesEndpoint,
|
|
21878
|
+
ForgeFigmaNodeLatestVersion,
|
|
21882
21879
|
ForgeMemoryEndpoint,
|
|
21883
21880
|
ForgeProjectContentRepository,
|
|
21884
21881
|
ForgeProjectContextsEndpoint,
|