We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab3b5bb commit c58715bCopy full SHA for c58715b
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@modelcontextprotocol/sdk",
3
- "version": "1.6.1",
+ "version": "1.6.1-0",
4
"description": "Model Context Protocol implementation for TypeScript",
5
"license": "MIT",
6
"author": "Anthropic, PBC (https://anthropic.com)",
src/client/auth.ts
@@ -233,7 +233,7 @@ export async function startAuthorization(
233
}
234
235
// Generate PKCE challenge
236
- const challenge = await pkceChallenge();
+ const challenge = await (pkceChallenge as any)();
237
const codeVerifier = challenge.code_verifier;
238
const codeChallenge = challenge.code_challenge;
239
0 commit comments