@shad-claiborne/basic-oidc 1.1.6 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -22,7 +22,7 @@ const authResponseParams =
22
22
  const authResponse =
23
23
  Object.fromEntries(authResponseParams) as AuthorizationResponse;
24
24
  const tokenSet:TokenSet =
25
- await client.requestAccess(authResponse, codeChallenge);
25
+ await client.requestAccess(authResponse, { codeVerifier: codeChallenge });
26
26
  const id:Identity = await provider.getIdentity(client, tokenSet);
27
27
  // await client.revokeAccess(tokenSet);
28
28
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shad-claiborne/basic-oidc",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "Basic OpenID Connect library",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",