* chore: new auth strategy for third party access tokens * chore: throw error earlier if Bearer token is invalid * fix: check apikey and access token before third party token
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
export enum AuthMethods {
|
|
"API_KEY" = "api-key",
|
|
"ACCESS_TOKEN" = "access-token",
|
|
"OAUTH_CLIENT" = "oauth-client",
|
|
"NEXT_AUTH" = "next-auth",
|
|
"THIRD_PARTY_ACCESS_TOKEN" = "third_party_access_token",
|
|
}
|