@supernova-studio/client 1.86.0 → 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.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8070,7 +8070,7 @@ var DTOLoginScreenSettings = _zod2.default.object({
|
|
|
8070
8070
|
});
|
|
8071
8071
|
var DTOLoginScreenSettingsUpdate = DTOLoginScreenSettings.extend({
|
|
8072
8072
|
logoFileId: _zod2.default.string().nullish(),
|
|
8073
|
-
title: _zod2.default.string().nullish(),
|
|
8073
|
+
title: _zod2.default.string().max(160, "Custom Login page title is too long. Maximum length is 160 characters.").nullish(),
|
|
8074
8074
|
color: _zod2.default.string().refine(
|
|
8075
8075
|
(val) => val === null || /^#([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6}|[0-9A-Fa-f]{8})$/.test(val),
|
|
8076
8076
|
"Must be a valid hex color (e.g. #FF0000 or #FF000080) or null"
|