@supernova-studio/client 1.77.0 → 1.77.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 +28 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5721,7 +5721,8 @@ var ExporterFunctionPayload = z203.object({
|
|
|
5721
5721
|
exportContextId: z203.string(),
|
|
5722
5722
|
designSystemId: z203.string(),
|
|
5723
5723
|
workspaceId: z203.string(),
|
|
5724
|
-
exporterId: z203.string()
|
|
5724
|
+
exporterId: z203.string(),
|
|
5725
|
+
runnerType: z203.enum(["High", "Low"])
|
|
5725
5726
|
});
|
|
5726
5727
|
var ExportJobDestinationType = z204.enum([
|
|
5727
5728
|
"s3",
|
|
@@ -11456,7 +11457,13 @@ var DTOSandboxTemplateBuildCreateInput = z346.object({
|
|
|
11456
11457
|
designSystemId: z346.string(),
|
|
11457
11458
|
name: z346.string(),
|
|
11458
11459
|
version: z346.string(),
|
|
11459
|
-
isExistingVersionUpdateAllowed: z346.boolean()
|
|
11460
|
+
isExistingVersionUpdateAllowed: z346.boolean(),
|
|
11461
|
+
templates: z346.object({
|
|
11462
|
+
id: z346.string(),
|
|
11463
|
+
name: z346.string(),
|
|
11464
|
+
description: z346.string(),
|
|
11465
|
+
thumbnailUrl: z346.string().optional()
|
|
11466
|
+
}).array().optional()
|
|
11460
11467
|
});
|
|
11461
11468
|
var DTOSandboxTemplateBuildCreateResponse = z346.object({
|
|
11462
11469
|
/** @deprecated use domain + build.dockerImagePath */
|