( filePath = DEFAULT_API_KEY_PATH, )
| 111 | * @returns {string} The (hex) API key. |
| 112 | */ |
| 113 | export function getOrCreatePersistedApiKeyFile( |
| 114 | filePath = DEFAULT_API_KEY_PATH, |
| 115 | ) { |
| 116 | return getOrCreatePersistedApiKey(filePath, "session"); |
| 117 | } |
| 118 | |
| 119 | /** @deprecated Use getOrCreatePersistedApiKeyFile */ |
| 120 | export function getOrCreatePersistedSessionApiKey( |
no test coverage detected