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>
20 lines
498 B
TypeScript
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;
|
|
}
|