feat: make password optional for session restoration

This commit is contained in:
2025-10-15 15:34:16 -05:00
parent 7d8a85f01e
commit ed9002f436
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ export interface TrytonClientConfig {
hostname: string;
database: string;
username: string;
password: string;
password?: string; // Optional - no necesario para restaurar sesión
port?: number;
language?: string;
options?: TrytonClientOptions;