Files
myeasycms-v2/packages/features/team-accounts/src/schema/delete-team-account.schema.ts
2026-03-11 14:47:47 +08:00

7 lines
138 B
TypeScript

import { z } from 'zod';
export const DeleteTeamAccountSchema = z.object({
accountId: z.string().uuid(),
otp: z.string().min(1),
});