| 11 | * Extends base repository with account-specific operations |
| 12 | */ |
| 13 | export interface IAccountRepository extends IRepository<Account> { |
| 14 | /** |
| 15 | * Get the currently active account ID |
| 16 | */ |
| 17 | getCurrentAccountId(): Promise<string | null> |
| 18 | |
| 19 | /** |
| 20 | * Set the currently active account ID |
| 21 | */ |
| 22 | setCurrentAccountId(id: string | null): Promise<void> |
| 23 | } |