@supernova-studio/client 1.85.0 → 1.86.0
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 +35 -0
- package/dist/index.d.ts +35 -0
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -4
- 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({
|
|
@@ -8071,8 +8072,8 @@ var DTOLoginScreenSettingsUpdate = DTOLoginScreenSettings.extend({
|
|
|
8071
8072
|
logoFileId: z249.string().nullish(),
|
|
8072
8073
|
title: z249.string().nullish(),
|
|
8073
8074
|
color: z249.string().refine(
|
|
8074
|
-
(val) => val === null || /^#([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6})$/.test(val),
|
|
8075
|
-
"Must be a valid hex color (e.g. #FF0000) or null"
|
|
8075
|
+
(val) => val === null || /^#([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6}|[0-9A-Fa-f]{8})$/.test(val),
|
|
8076
|
+
"Must be a valid hex color (e.g. #FF0000 or #FF000080) or null"
|
|
8076
8077
|
).nullish()
|
|
8077
8078
|
}).omit({ logoUrl: true }).partial();
|
|
8078
8079
|
var DTOLoginScreenSettingsResponse = z249.object({
|
|
@@ -9209,6 +9210,7 @@ var DTOExportJobsListFilter = z287.object({
|
|
|
9209
9210
|
designSystemId: z287.string().optional(),
|
|
9210
9211
|
themeId: z287.string().optional(),
|
|
9211
9212
|
brandId: z287.string().optional(),
|
|
9213
|
+
docsEnvironment: PublishedDocEnvironment.optional(),
|
|
9212
9214
|
destinations: z287.string().transform((s) => s.split(",").map((p) => ExportJobDestinationType.parse(p))).optional()
|
|
9213
9215
|
});
|
|
9214
9216
|
|
|
@@ -12077,7 +12079,8 @@ var DTOSandboxTemplateVersion = z349.object({
|
|
|
12077
12079
|
createdAt: z349.string(),
|
|
12078
12080
|
createdByUserId: z349.string(),
|
|
12079
12081
|
e2bTemplateId: z349.string(),
|
|
12080
|
-
templates: DTOSandboxTemplatePreset.array().optional()
|
|
12082
|
+
templates: DTOSandboxTemplatePreset.array().optional(),
|
|
12083
|
+
hasDesignModePlugin: z349.boolean().optional()
|
|
12081
12084
|
});
|
|
12082
12085
|
var DTOSandboxTemplate = z349.object({
|
|
12083
12086
|
id: z349.string(),
|
|
@@ -12129,6 +12132,7 @@ var DTOSandboxTemplateBuildCreateInput = z349.object({
|
|
|
12129
12132
|
name: z349.string(),
|
|
12130
12133
|
version: z349.string(),
|
|
12131
12134
|
isExistingVersionUpdateAllowed: z349.boolean(),
|
|
12135
|
+
hasDesignModePlugin: z349.boolean().optional(),
|
|
12132
12136
|
templates: z349.object({
|
|
12133
12137
|
id: z349.string(),
|
|
12134
12138
|
name: z349.string(),
|