Stores a token value in memory storage
Sets a single token-related value in the memory storage. This is a more granular alternative to writeTokenStorage when only one value needs to be updated.
Token key to store
Token value to store
// Store just the access tokenstoreTokenValue(ACCESS_TOKEN_KEY, "new-access-token"); Copy
// Store just the access tokenstoreTokenValue(ACCESS_TOKEN_KEY, "new-access-token");
Use setTokens from token-operations instead
export function storeTokenValue(key: string, value: TokenValue): void { memoryTokenStorage[key] = value;} Copy
export function storeTokenValue(key: string, value: TokenValue): void { memoryTokenStorage[key] = value;}
Stores a token value in memory storage
Sets a single token-related value in the memory storage. This is a more granular alternative to writeTokenStorage when only one value needs to be updated.