@supernova-studio/client 1.88.0 → 1.88.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 +10 -2
- package/dist/index.d.ts +10 -2
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12270,6 +12270,9 @@ var DTOSandboxTemplateBuildCreateInput = z353.object({
|
|
|
12270
12270
|
files: z353.string().array()
|
|
12271
12271
|
}).array().optional()
|
|
12272
12272
|
});
|
|
12273
|
+
var DTOSandboxTemplateBuildTriggerInput = z353.object({
|
|
12274
|
+
imageFileId: z353.string().optional()
|
|
12275
|
+
});
|
|
12273
12276
|
var DTOSandboxTemplateBuildCreateResponse = z353.object({
|
|
12274
12277
|
/** @deprecated use build.dockerImageUri */
|
|
12275
12278
|
dockerUrl: z353.string().optional(),
|
|
@@ -14076,9 +14079,10 @@ var SandboxTemplateBuildsEndpoint = class {
|
|
|
14076
14079
|
get(buildId) {
|
|
14077
14080
|
return this.requestExecutor.json(`/sandboxes/builds/${buildId}`, DTOSandboxTemplateBuildResponse);
|
|
14078
14081
|
}
|
|
14079
|
-
finalize(buildId) {
|
|
14082
|
+
finalize(buildId, body) {
|
|
14080
14083
|
return this.requestExecutor.json(`/sandboxes/builds/${buildId}`, DTOSandboxTemplateBuildFinalizeResponse, {
|
|
14081
|
-
method: "PUT"
|
|
14084
|
+
method: "PUT",
|
|
14085
|
+
body
|
|
14082
14086
|
});
|
|
14083
14087
|
}
|
|
14084
14088
|
};
|
|
@@ -21716,6 +21720,7 @@ export {
|
|
|
21716
21720
|
DTOSandboxTemplateBuildFinalizeResponse,
|
|
21717
21721
|
DTOSandboxTemplateBuildFinished,
|
|
21718
21722
|
DTOSandboxTemplateBuildResponse,
|
|
21723
|
+
DTOSandboxTemplateBuildTriggerInput,
|
|
21719
21724
|
DTOSandboxTemplateFile,
|
|
21720
21725
|
DTOSandboxTemplateListResponse,
|
|
21721
21726
|
DTOSandboxTemplatePreset,
|