@midwayjs/passport 3.2.1 → 3.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/dist/index.d.ts
CHANGED
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
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/passport",
|
|
3
3
|
"description": "midway passport component",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.3.1",
|
|
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.
|
|
25
|
+
"@midwayjs/core": "^3.3.1",
|
|
26
26
|
"@midwayjs/decorator": "^3.1.6",
|
|
27
|
-
"@midwayjs/express": "^3.
|
|
28
|
-
"@midwayjs/jwt": "^3.
|
|
29
|
-
"@midwayjs/koa": "^3.
|
|
30
|
-
"@midwayjs/mock": "^3.
|
|
31
|
-
"@midwayjs/web": "^3.
|
|
27
|
+
"@midwayjs/express": "^3.3.1",
|
|
28
|
+
"@midwayjs/jwt": "^3.3.1",
|
|
29
|
+
"@midwayjs/koa": "^3.3.1",
|
|
30
|
+
"@midwayjs/mock": "^3.3.1",
|
|
31
|
+
"@midwayjs/web": "^3.3.1",
|
|
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": "
|
|
42
|
+
"gitHead": "f603b622b205ec126de628eeab59f90045a75dd2"
|
|
43
43
|
}
|