( filePath = DEFAULT_API_KEY_PATH, )
| 116 | * @returns {string} The (hex) API key. |
| 117 | */ |
| 118 | export function getOrCreatePersistedApiKeyFile( |
| 119 | filePath = DEFAULT_API_KEY_PATH, |
| 120 | ) { |
| 121 | return getOrCreatePersistedApiKey(filePath, "session"); |
| 122 | } |
| 123 | |
| 124 | /** @deprecated Use getOrCreatePersistedApiKeyFile */ |
| 125 | export function getOrCreatePersistedSessionApiKey( |
no test coverage detected