(encryptedPassword?: string | null)
| 16 | } |
| 17 | |
| 18 | function passwordSlot(encryptedPassword?: string | null): string { |
| 19 | if (!encryptedPassword) return '' |
| 20 | return sha256Hex(encryptedPassword).slice(0, 8) |
| 21 | } |
| 22 | |
| 23 | function generateAuthToken( |
| 24 | deploymentId: string, |
no test coverage detected