@supernova-studio/client 1.85.0 → 1.85.1
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 +32 -0
- package/dist/index.d.ts +32 -0
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6349,7 +6349,8 @@ var FlaggedFeature = z208.enum([
|
|
|
6349
6349
|
"CustomForgeTemplate",
|
|
6350
6350
|
"ForgeRestartPlaywright",
|
|
6351
6351
|
"ForgeCopyTemplatePreset",
|
|
6352
|
-
"ForgeSandboxTimeout"
|
|
6352
|
+
"ForgeSandboxTimeout",
|
|
6353
|
+
"ForgeFileUploadBatchSize"
|
|
6353
6354
|
]);
|
|
6354
6355
|
var FeatureFlagMap = z208.record(FlaggedFeature, z208.boolean());
|
|
6355
6356
|
var FeatureFlag = z208.object({
|
|
@@ -12077,7 +12078,8 @@ var DTOSandboxTemplateVersion = z349.object({
|
|
|
12077
12078
|
createdAt: z349.string(),
|
|
12078
12079
|
createdByUserId: z349.string(),
|
|
12079
12080
|
e2bTemplateId: z349.string(),
|
|
12080
|
-
templates: DTOSandboxTemplatePreset.array().optional()
|
|
12081
|
+
templates: DTOSandboxTemplatePreset.array().optional(),
|
|
12082
|
+
hasDesignModePlugin: z349.boolean().optional()
|
|
12081
12083
|
});
|
|
12082
12084
|
var DTOSandboxTemplate = z349.object({
|
|
12083
12085
|
id: z349.string(),
|
|
@@ -12129,6 +12131,7 @@ var DTOSandboxTemplateBuildCreateInput = z349.object({
|
|
|
12129
12131
|
name: z349.string(),
|
|
12130
12132
|
version: z349.string(),
|
|
12131
12133
|
isExistingVersionUpdateAllowed: z349.boolean(),
|
|
12134
|
+
hasDesignModePlugin: z349.boolean().optional(),
|
|
12132
12135
|
templates: z349.object({
|
|
12133
12136
|
id: z349.string(),
|
|
12134
12137
|
name: z349.string(),
|