()
| 88 | } |
| 89 | |
| 90 | export function getCachedZooCodeUserInfo(): { name?: string; email?: string; image?: string } { |
| 91 | return { |
| 92 | name: _cachedUserName, |
| 93 | email: _cachedUserEmail, |
| 94 | image: _cachedUserImage, |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | export async function getZooCodeToken(): Promise<string | undefined> { |
| 99 | if (!secretStorage) return undefined |
no outgoing calls
no test coverage detected