@supernova-studio/client 1.85.1 → 1.87.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.mjs CHANGED
@@ -8070,10 +8070,10 @@ var DTOLoginScreenSettings = z249.object({
8070
8070
  });
8071
8071
  var DTOLoginScreenSettingsUpdate = DTOLoginScreenSettings.extend({
8072
8072
  logoFileId: z249.string().nullish(),
8073
- title: z249.string().nullish(),
8073
+ title: z249.string().max(160, "Custom Login page title is too long. Maximum length is 160 characters.").nullish(),
8074
8074
  color: z249.string().refine(
8075
- (val) => val === null || /^#([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6})$/.test(val),
8076
- "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"
8077
8077
  ).nullish()
8078
8078
  }).omit({ logoUrl: true }).partial();
8079
8079
  var DTOLoginScreenSettingsResponse = z249.object({
@@ -9210,6 +9210,7 @@ var DTOExportJobsListFilter = z287.object({
9210
9210
  designSystemId: z287.string().optional(),
9211
9211
  themeId: z287.string().optional(),
9212
9212
  brandId: z287.string().optional(),
9213
+ docsEnvironment: PublishedDocEnvironment.optional(),
9213
9214
  destinations: z287.string().transform((s) => s.split(",").map((p) => ExportJobDestinationType.parse(p))).optional()
9214
9215
  });
9215
9216