Switch to zod/mini

This commit is contained in:
Michael Telatynski
2025-09-23 17:06:57 +01:00
parent d8da6652b8
commit 8cba4eaf8b
5 changed files with 42 additions and 39 deletions
@@ -5,7 +5,9 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
import { z, ZodSchema, ZodTypeDef } from "zod";
import { z, ZodMiniType, input } from "zod/mini";
z.config(z.locales.en());
export const ModuleConfig = z.object({
/**
@@ -13,33 +15,30 @@ export const ModuleConfig = z.object({
* must have the `synapse-restricted-guests-module` installed.
* @example `https://synapse.local`
*/
guest_user_homeserver_url: z.string().url(),
guest_user_homeserver_url: z.url(),
/**
* The username prefix that identifies guest users.
* @defaultValue `@guest-`
*/
guest_user_prefix: z
.string()
.regex(/@[a-zA-Z-_1-9]+/)
.default("@guest-"),
guest_user_prefix: z._default(z.string().check(z.regex(/@[a-zA-Z-_1-9]+/)), "@guest-"),
/**
* If true, the user will be forwarded to the login page instead of to the SSO
* login. This is only required if the home server has no SSO support.
* @defaultValue `false`
*/
skip_single_sign_on: z.boolean().default(false),
skip_single_sign_on: z._default(z.boolean(), false),
});
export type ModuleConfig = z.infer<typeof ModuleConfig>;
type ConfigSchema = ZodSchema<z.output<typeof ModuleConfig>, ZodTypeDef, z.input<typeof ModuleConfig>>;
type ConfigSchema = ZodMiniType<z.output<typeof ModuleConfig>, z.input<typeof ModuleConfig>>;
export const CONFIG_KEY = "io.element.element-web-modules.restricted-guests";
declare module "@element-hq/element-web-module-api" {
export interface Config {
[CONFIG_KEY]: ConfigSchema["_input"];
[CONFIG_KEY]: input<ConfigSchema>;
}
}