From f45973babc63dcd33281370b2db969c4cb1b38ca Mon Sep 17 00:00:00 2001 From: Gabe Date: Wed, 23 Oct 2024 13:19:03 -0600 Subject: [PATCH] fix(authorize): remove token response type (#273) --- src/commands/authorize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/authorize.ts b/src/commands/authorize.ts index c721aea..61c1eee 100644 --- a/src/commands/authorize.ts +++ b/src/commands/authorize.ts @@ -6,7 +6,7 @@ import {commandFactory} from '../utils/commandFactory'; export interface AuthorizeInput { client_id: string; scope: OAuthScopes[]; - response_type?: 'code' | 'token'; + response_type?: 'code'; code_challenge?: string; state?: string; prompt?: 'none';