@supernova-studio/client 1.79.0 → 1.79.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 +86 -1
- package/dist/index.d.ts +86 -1
- package/dist/index.js +23 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6340,7 +6340,9 @@ var FlaggedFeature = z208.enum([
|
|
|
6340
6340
|
"ForgeOnDemandIterations",
|
|
6341
6341
|
"ForgeAutoRetryOnErrors",
|
|
6342
6342
|
"CustomForgeTemplate",
|
|
6343
|
-
"ForgeRestartPlaywright"
|
|
6343
|
+
"ForgeRestartPlaywright",
|
|
6344
|
+
"ForgeCopyTemplatePreset",
|
|
6345
|
+
"ForgeSandboxTimeout"
|
|
6344
6346
|
]);
|
|
6345
6347
|
var FeatureFlagMap = z208.record(FlaggedFeature, z208.boolean());
|
|
6346
6348
|
var FeatureFlag = z208.object({
|
|
@@ -10345,6 +10347,14 @@ var DTOFeatureIterationArtifactDiff = z315.object({
|
|
|
10345
10347
|
newKey: z315.string()
|
|
10346
10348
|
})
|
|
10347
10349
|
),
|
|
10350
|
+
/**
|
|
10351
|
+
* Map of artifact key -> new key that describes artifacts that will be copied in this iteration
|
|
10352
|
+
*/
|
|
10353
|
+
copy: z315.record(
|
|
10354
|
+
z315.object({
|
|
10355
|
+
newKey: z315.string()
|
|
10356
|
+
})
|
|
10357
|
+
).optional(),
|
|
10348
10358
|
/**
|
|
10349
10359
|
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
10350
10360
|
* create or updated in this iteration
|
|
@@ -11938,18 +11948,19 @@ var DTOPortalSettingsUpdatePayload = z345.object({
|
|
|
11938
11948
|
|
|
11939
11949
|
// src/api/dto/sandboxes/template.ts
|
|
11940
11950
|
import z346 from "zod";
|
|
11951
|
+
var DTOSandboxTemplatePreset = z346.object({
|
|
11952
|
+
id: z346.string(),
|
|
11953
|
+
name: z346.string(),
|
|
11954
|
+
description: z346.string(),
|
|
11955
|
+
thumbnailUrl: z346.string().optional(),
|
|
11956
|
+
files: z346.string().array()
|
|
11957
|
+
});
|
|
11941
11958
|
var DTOSandboxTemplateVersion = z346.object({
|
|
11942
11959
|
name: z346.string(),
|
|
11943
11960
|
createdAt: z346.string(),
|
|
11944
11961
|
createdByUserId: z346.string(),
|
|
11945
11962
|
e2bTemplateId: z346.string(),
|
|
11946
|
-
templates:
|
|
11947
|
-
id: z346.string(),
|
|
11948
|
-
name: z346.string(),
|
|
11949
|
-
description: z346.string(),
|
|
11950
|
-
thumbnailUrl: z346.string().optional(),
|
|
11951
|
-
files: z346.string().array()
|
|
11952
|
-
}).array().optional()
|
|
11963
|
+
templates: DTOSandboxTemplatePreset.array().optional()
|
|
11953
11964
|
});
|
|
11954
11965
|
var DTOSandboxTemplate = z346.object({
|
|
11955
11966
|
id: z346.string(),
|
|
@@ -12005,7 +12016,8 @@ var DTOSandboxTemplateBuildCreateInput = z346.object({
|
|
|
12005
12016
|
id: z346.string(),
|
|
12006
12017
|
name: z346.string(),
|
|
12007
12018
|
description: z346.string(),
|
|
12008
|
-
thumbnailUrl: z346.string().optional()
|
|
12019
|
+
thumbnailUrl: z346.string().optional(),
|
|
12020
|
+
files: z346.string().array()
|
|
12009
12021
|
}).array().optional()
|
|
12010
12022
|
});
|
|
12011
12023
|
var DTOSandboxTemplateBuildCreateResponse = z346.object({
|
|
@@ -21293,6 +21305,7 @@ export {
|
|
|
21293
21305
|
DTOSandboxTemplateBuildResponse,
|
|
21294
21306
|
DTOSandboxTemplateFile,
|
|
21295
21307
|
DTOSandboxTemplateListResponse,
|
|
21308
|
+
DTOSandboxTemplatePreset,
|
|
21296
21309
|
DTOSandboxTemplateQuery,
|
|
21297
21310
|
DTOSandboxTemplateResponse,
|
|
21298
21311
|
DTOSandboxTemplateVersion,
|