@supernova-studio/client 1.87.7 → 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 +60 -20
- package/dist/index.d.ts +60 -20
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12168,7 +12168,9 @@ var DTOSandboxTemplateBuild = z351.object({
|
|
|
12168
12168
|
createdAt: z351.string(),
|
|
12169
12169
|
finishedAt: z351.string().optional(),
|
|
12170
12170
|
createdByUserId: z351.string(),
|
|
12171
|
-
|
|
12171
|
+
/** @deprecated use `dockerImageUri` instead */
|
|
12172
|
+
dockerImagePath: z351.string().optional(),
|
|
12173
|
+
dockerImageUri: z351.string(),
|
|
12172
12174
|
error: z351.string().optional(),
|
|
12173
12175
|
state: z351.enum(["PendingUpload", "Building", "Success", "Failure", "Timeout"])
|
|
12174
12176
|
});
|
|
@@ -12202,6 +12204,8 @@ var DTOSandboxTemplateBuildCreateInput = z351.object({
|
|
|
12202
12204
|
version: z351.string(),
|
|
12203
12205
|
isExistingVersionUpdateAllowed: z351.boolean(),
|
|
12204
12206
|
hasDesignModePlugin: z351.boolean().optional(),
|
|
12207
|
+
dockerImageUri: z351.string().optional(),
|
|
12208
|
+
customAuth: z351.object({ username: z351.string(), password: z351.string() }).optional(),
|
|
12205
12209
|
templates: z351.object({
|
|
12206
12210
|
id: z351.string(),
|
|
12207
12211
|
name: z351.string(),
|
|
@@ -12211,9 +12215,10 @@ var DTOSandboxTemplateBuildCreateInput = z351.object({
|
|
|
12211
12215
|
}).array().optional()
|
|
12212
12216
|
});
|
|
12213
12217
|
var DTOSandboxTemplateBuildCreateResponse = z351.object({
|
|
12214
|
-
/** @deprecated use
|
|
12218
|
+
/** @deprecated use build.dockerImageUri */
|
|
12215
12219
|
dockerUrl: z351.string().optional(),
|
|
12216
|
-
|
|
12220
|
+
/** @deprecated use build.dockerImageUri */
|
|
12221
|
+
dockerRegistryDomain: z351.string().optional(),
|
|
12217
12222
|
/** @deprecated use docker-login endpoint */
|
|
12218
12223
|
dockerAccessToken: z351.string().optional(),
|
|
12219
12224
|
build: DTOSandboxTemplateBuild
|