template-saas/apps/backend/dist/modules/auth/entities/user.entity.d.ts
rckrdmrd 26f0e52ca7 feat: Initial commit - template-saas
Template base para proyectos SaaS multi-tenant.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React/Vite)
- apps/database (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:24 -06:00

20 lines
498 B
TypeScript

export declare class User {
id: string;
tenant_id: string;
email: string;
password_hash: string;
first_name: string | null;
last_name: string | null;
avatar_url: string | null;
phone: string | null;
status: string;
email_verified: boolean;
email_verified_at: Date | null;
last_login_at: Date | null;
last_login_ip: string | null;
metadata: Record<string, any> | null;
created_at: Date;
updated_at: Date;
get fullName(): string;
}