openid-client 5.2.0 → 5.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openid-client",
3
- "version": "5.2.0",
3
+ "version": "5.2.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
@@ -136,6 +136,8 @@ export interface EndSessionParameters {
136
136
  id_token_hint?: TokenSet | string;
137
137
  post_logout_redirect_uri?: string;
138
138
  state?: string;
139
+ client_id?: string;
140
+ logout_hint?: string;
139
141
 
140
142
  [key: string]: unknown;
141
143
  }