feat(auth): remove center api key from frontend login flow

This commit is contained in:
nav
2026-05-14 14:17:12 +00:00
parent cfaa1cb657
commit 4f28f102e0
5 changed files with 20 additions and 25 deletions

View File

@@ -1,9 +1,9 @@
export type AuthSession = {
centerApiBase: string
centerApiKey: string
accessToken: string
refreshToken: string
tokenType: string
expiresIn?: number
user: {
id: string
email: string
@@ -18,6 +18,7 @@ export type AuthSession = {
guildNodeId: string
token: string
tokenType: string
expiresIn?: number
}>
}