Files
medreport_mrb2b/packages/features/team-accounts/src/schema/delete-team-account.schema.ts
2025-06-08 16:18:30 +03:00

7 lines
138 B
TypeScript

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