@supernova-studio/client 1.84.1 → 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 +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6215,7 +6215,8 @@ var ExporterFunctionPayload = z203.object({
|
|
|
6215
6215
|
exportContextId: z203.string(),
|
|
6216
6216
|
designSystemId: z203.string(),
|
|
6217
6217
|
workspaceId: z203.string(),
|
|
6218
|
-
exporterId: z203.string()
|
|
6218
|
+
exporterId: z203.string(),
|
|
6219
|
+
runnerType: z203.enum(["High", "Low"])
|
|
6219
6220
|
});
|
|
6220
6221
|
|
|
6221
6222
|
// ../model/src/export/export-jobs.ts
|
|
@@ -6348,7 +6349,8 @@ var FlaggedFeature = z208.enum([
|
|
|
6348
6349
|
"CustomForgeTemplate",
|
|
6349
6350
|
"ForgeRestartPlaywright",
|
|
6350
6351
|
"ForgeCopyTemplatePreset",
|
|
6351
|
-
"ForgeSandboxTimeout"
|
|
6352
|
+
"ForgeSandboxTimeout",
|
|
6353
|
+
"ForgeFileUploadBatchSize"
|
|
6352
6354
|
]);
|
|
6353
6355
|
var FeatureFlagMap = z208.record(FlaggedFeature, z208.boolean());
|
|
6354
6356
|
var FeatureFlag = z208.object({
|
|
@@ -12076,7 +12078,8 @@ var DTOSandboxTemplateVersion = z349.object({
|
|
|
12076
12078
|
createdAt: z349.string(),
|
|
12077
12079
|
createdByUserId: z349.string(),
|
|
12078
12080
|
e2bTemplateId: z349.string(),
|
|
12079
|
-
templates: DTOSandboxTemplatePreset.array().optional()
|
|
12081
|
+
templates: DTOSandboxTemplatePreset.array().optional(),
|
|
12082
|
+
hasDesignModePlugin: z349.boolean().optional()
|
|
12080
12083
|
});
|
|
12081
12084
|
var DTOSandboxTemplate = z349.object({
|
|
12082
12085
|
id: z349.string(),
|
|
@@ -12128,6 +12131,7 @@ var DTOSandboxTemplateBuildCreateInput = z349.object({
|
|
|
12128
12131
|
name: z349.string(),
|
|
12129
12132
|
version: z349.string(),
|
|
12130
12133
|
isExistingVersionUpdateAllowed: z349.boolean(),
|
|
12134
|
+
hasDesignModePlugin: z349.boolean().optional(),
|
|
12131
12135
|
templates: z349.object({
|
|
12132
12136
|
id: z349.string(),
|
|
12133
12137
|
name: z349.string(),
|