UNPKG

@hz-9/a5-authn

Version:

Authentication module for the @hz-9/a5-* series of repositories.

13 lines 688 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.A5AuthnEmailVerifyReqDto = exports.A5AuthnEmailVerifyReqDtoSchema = void 0; /* eslint-disable @rushstack/typedef-var */ const a5_crud_zod_1 = require("@hz-9/a5-crud-zod"); exports.A5AuthnEmailVerifyReqDtoSchema = a5_crud_zod_1.z.object({ email: a5_crud_zod_1.z.string().email().describe('Email Address'), code: a5_crud_zod_1.z.string().describe('Verification Code'), }); class A5AuthnEmailVerifyReqDto extends (0, a5_crud_zod_1.createZodDto)(exports.A5AuthnEmailVerifyReqDtoSchema) { } exports.A5AuthnEmailVerifyReqDto = A5AuthnEmailVerifyReqDto; //# sourceMappingURL=email.verify.req.dto.js.map