@midwayjs/passport 3.2.2 → 3.3.2

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
@@ -1,4 +1,4 @@
1
1
  export { PassportConfiguration as Configuration } from './configuration';
2
2
  export * from './decorator/strategy';
3
- export * from './service/passport';
3
+ export * from './service/passport.service';
4
4
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -18,5 +18,5 @@ exports.Configuration = void 0;
18
18
  var configuration_1 = require("./configuration");
19
19
  Object.defineProperty(exports, "Configuration", { enumerable: true, get: function () { return configuration_1.PassportConfiguration; } });
20
20
  __exportStar(require("./decorator/strategy"), exports);
21
- __exportStar(require("./service/passport"), exports);
21
+ __exportStar(require("./service/passport.service"), exports);
22
22
  //# sourceMappingURL=index.js.map
@@ -3,4 +3,4 @@ import { AbstractPassportMiddleware, AbstractStrategy } from '../interface';
3
3
  export declare function PassportStrategy(Strategy: new (...args: any[]) => passport.Strategy, name?: string): new (...args: any[]) => AbstractStrategy;
4
4
  export declare type StrategyClass = new (...args: any[]) => AbstractStrategy;
5
5
  export declare function PassportMiddleware(strategy: StrategyClass | StrategyClass[]): new (...args: any[]) => AbstractPassportMiddleware;
6
- //# sourceMappingURL=passport.d.ts.map
6
+ //# sourceMappingURL=passport.service.d.ts.map
@@ -223,4 +223,4 @@ function PassportMiddleware(strategy) {
223
223
  return InnerPassportMiddleware;
224
224
  }
225
225
  exports.PassportMiddleware = PassportMiddleware;
226
- //# sourceMappingURL=passport.js.map
226
+ //# sourceMappingURL=passport.service.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@midwayjs/passport",
3
3
  "description": "midway passport component",
4
- "version": "3.2.2",
4
+ "version": "3.3.2",
5
5
  "main": "dist/index.js",
6
6
  "typings": "index.d.ts",
7
7
  "files": [
@@ -22,13 +22,13 @@
22
22
  "author": "Nawbc",
23
23
  "license": "MIT",
24
24
  "devDependencies": {
25
- "@midwayjs/core": "^3.2.2",
25
+ "@midwayjs/core": "^3.3.2",
26
26
  "@midwayjs/decorator": "^3.1.6",
27
- "@midwayjs/express": "^3.2.2",
28
- "@midwayjs/jwt": "^3.2.2",
29
- "@midwayjs/koa": "^3.2.2",
30
- "@midwayjs/mock": "^3.2.2",
31
- "@midwayjs/web": "^3.2.2",
27
+ "@midwayjs/express": "^3.3.2",
28
+ "@midwayjs/jwt": "^3.3.2",
29
+ "@midwayjs/koa": "^3.3.2",
30
+ "@midwayjs/mock": "^3.3.2",
31
+ "@midwayjs/web": "^3.3.2",
32
32
  "@types/passport": "1.0.7",
33
33
  "@types/passport-local": "1.0.34",
34
34
  "express-session": "1.17.2",
@@ -39,5 +39,5 @@
39
39
  "peerDependencies": {
40
40
  "passport": "^0.5.0"
41
41
  },
42
- "gitHead": "6bc097035302d01ae901d76a10e080db8554a864"
42
+ "gitHead": "2c7c235421ba904f8943efe31a71f452089d5d53"
43
43
  }