()
| 244 | } |
| 245 | |
| 246 | const logout = async (): Promise<void> => { |
| 247 | const credentialsFileData = readCredentialsFile() |
| 248 | delete credentialsFileData[profileEnvKey] |
| 249 | writeCredentialsFile(credentialsFileData) |
| 250 | } |
| 251 | |
| 252 | const refreshToken = async (): Promise<void> => { |
| 253 | logger.debug('refreshing token') |
nothing calls this directly
no test coverage detected