Unified Account and Workspace drop-downs; Layout updates, now header lives within the PageBody component; Sidebars now use floating variant
12 lines
270 B
TypeScript
12 lines
270 B
TypeScript
import * as z from 'zod';
|
|
|
|
export const EmailTesterFormSchema = z.object({
|
|
username: z.string().min(1),
|
|
password: z.string().min(1),
|
|
sender: z.string().min(1),
|
|
to: z.string().email(),
|
|
host: z.string().min(1),
|
|
port: z.number().min(1),
|
|
tls: z.boolean(),
|
|
});
|