openid-client 5.3.0 → 5.3.1

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.
package/README.md CHANGED
@@ -48,7 +48,7 @@ openid-client.
48
48
  - [OAuth 2.0 Demonstration of Proof-of-Possession at the Application Layer (DPoP) - draft 04][feature-dpop]
49
49
  - [OAuth 2.0 Authorization Server Issuer Identification][feature-iss]
50
50
 
51
- Updates to draft specifications (DPoP, JARM, etc) are released as MINOR library versions,
51
+ Updates to draft specifications are released as MINOR library versions,
52
52
  if you utilize these specification implementations consider using the tilde `~` operator in your
53
53
  package.json since breaking changes may be introduced as part of these version updates.
54
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openid-client",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
4
4
  "description": "OpenID Connect Relying Party (RP, Client) implementation for Node.js runtime, supports passportjs",
5
5
  "keywords": [
6
6
  "auth",
package/types/index.d.ts CHANGED
@@ -351,7 +351,7 @@ declare class BaseClient {
351
351
  tokenType?: string;
352
352
  DPoP?: DPoPInput;
353
353
  },
354
- ): { body?: Buffer } & http.IncomingMessage;
354
+ ): Promise<{ body?: Buffer } & http.IncomingMessage>;
355
355
  grant(body: GrantBody, extras?: GrantExtras): Promise<TokenSet>;
356
356
  introspect(
357
357
  token: string,