Skip to content

Commit

Permalink
fix(authorize): remove token response type (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabemeola authored Oct 23, 2024
1 parent 0b735df commit f45973b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/authorize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit f45973b

Please sign in to comment.