One-Time Password (OTP) package added with comprehensive token management, including OTP verification for team account deletion and ownership transfer.
7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const DeleteTeamAccountSchema = z.object({
|
|
accountId: z.string().uuid(),
|
|
otp: z.string().min(1),
|
|
});
|