trading-platform-backend-v2/src/modules/auth/dto/index.ts
rckrdmrd e45591a0ef feat: Initial commit - Trading Platform Backend
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>
2026-01-18 04:28:47 -06:00

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';