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