(hash: string)
| 786 | }, |
| 787 | |
| 788 | getApiKeyByHash(hash: string): ApiKey | undefined { |
| 789 | const row = tenantStmts.getApiKeyByHash.get(hash) as Record<string, unknown> | undefined; |
| 790 | return row ? rowToApiKey(row) : undefined; |
| 791 | }, |
| 792 | |
| 793 | listApiKeys(userId: string): ApiKey[] { |
| 794 | const rows = tenantStmts.listApiKeys.all(userId) as Record<string, unknown>[]; |
nothing calls this directly
no test coverage detected
searching dependent graphs…