@shad-claiborne/basic-oidc 1.1.3 → 1.1.5

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/dist/index.d.ts CHANGED
@@ -268,9 +268,9 @@ export declare class Client {
268
268
  /**
269
269
  * refreshAccess
270
270
  * @param tokenSet TokenSet
271
- * @returns Promise<TokenSet>
271
+ * @returns Promise<TokenResponse>
272
272
  */
273
- refreshAccess(tokenSet: TokenSet): Promise<TokenSet>;
273
+ refreshAccess(tokenSet: TokenSet): Promise<TokenResponse>;
274
274
  /**
275
275
  * revokeAccess
276
276
  * @param tokenSet TokenSet
package/dist/index.js CHANGED
@@ -448,7 +448,7 @@ class Client {
448
448
  /**
449
449
  * refreshAccess
450
450
  * @param tokenSet TokenSet
451
- * @returns Promise<TokenSet>
451
+ * @returns Promise<TokenResponse>
452
452
  */
453
453
  async refreshAccess(tokenSet) {
454
454
  if (tokenSet.refresh_token === undefined)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shad-claiborne/basic-oidc",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "Basic OpenID Connect library",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",