@alanszp/express 7.0.0 → 7.0.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.
@@ -5,7 +5,7 @@ export declare enum AuthMethods {
5
5
  JWT = "JWT",
6
6
  API_KEY = "API_KEY"
7
7
  }
8
- export interface JWTVerifyOptions extends VerifyOptions {
8
+ export interface JWTVerifyOptions extends Partial<VerifyOptions> {
9
9
  publicKey: string;
10
10
  }
11
11
  export interface JWTOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alanszp/express",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Alan's express utils and middlewares.",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -45,5 +45,5 @@
45
45
  "cuid": "^2.1.8",
46
46
  "lodash": "^4.17.21"
47
47
  },
48
- "gitHead": "5fe04a249eeca2675e0565e08e99bffea6a2eaa0"
48
+ "gitHead": "67e6ad3d56d02ee10f45ca59f7e68bc77d574f41"
49
49
  }
@@ -23,7 +23,7 @@ export enum AuthMethods {
23
23
  API_KEY = "API_KEY",
24
24
  }
25
25
 
26
- export interface JWTVerifyOptions extends VerifyOptions {
26
+ export interface JWTVerifyOptions extends Partial<VerifyOptions> {
27
27
  publicKey: string;
28
28
  }
29
29