()
| 25 | const TRUSTED_DEVICE_GATE = 'ncode_sessions_elevated_auth_enforcement' |
| 26 | |
| 27 | function credentialsPath(): string { |
| 28 | return join(configDir, '.credentials.json') |
| 29 | } |
| 30 | |
| 31 | async function writeCredentials(data: Record<string, unknown>): Promise<void> { |
| 32 | await writeFile(credentialsPath(), JSON.stringify(data), 'utf8') |
no outgoing calls
no test coverage detected