NestJS backend with: - Authentication (JWT) - WebSocket real-time support - ML integration services - Payments module - User management Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
405 B
TypeScript
18 lines
405 B
TypeScript
/**
|
|
* Auth DTOs - Export all validation DTOs
|
|
*/
|
|
|
|
export { RegisterDto } from './register.dto';
|
|
export { LoginDto } from './login.dto';
|
|
export { RefreshTokenDto } from './refresh-token.dto';
|
|
export {
|
|
ChangePasswordDto,
|
|
ResetPasswordDto,
|
|
ForgotPasswordDto,
|
|
} from './change-password.dto';
|
|
export {
|
|
OAuthInitiateDto,
|
|
OAuthCallbackDto,
|
|
type OAuthProvider,
|
|
} from './oauth.dto';
|