(authCode: string)
| 8 | const CONSUMED_CLI_AUTH_CODE_TOKEN_VALUE = 'consumed' |
| 9 | |
| 10 | function getCliAuthCodeHash(authCode: string): string { |
| 11 | return createHash('sha256').update(authCode.trim()).digest('hex') |
| 12 | } |
| 13 | |
| 14 | export function buildCliAuthCode( |
| 15 | fingerprintId: string, |
no outgoing calls
no test coverage detected