@shrub/express-identity 0.5.90 → 0.5.91
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/module.d.ts +1 -1
- package/package.json +5 -5
package/dist/module.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare class ExpressIdentityModule implements IModule {
|
|
|
18
18
|
private options;
|
|
19
19
|
private tokenOptions?;
|
|
20
20
|
readonly name = "express-identity";
|
|
21
|
-
readonly dependencies: (typeof
|
|
21
|
+
readonly dependencies: (typeof ExpressSessionModule | typeof ExpressModule)[];
|
|
22
22
|
initialize({ config }: IModuleInitializer): void;
|
|
23
23
|
configure({ config }: IModuleConfigurator): void;
|
|
24
24
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shrub/express-identity",
|
|
3
3
|
"description": "Express module that provides middleware for managing authenticated users.",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.91",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"test": "jest"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@shrub/core": "0.5.
|
|
30
|
-
"@shrub/express": "0.5.
|
|
31
|
-
"@shrub/express-session": "0.5.
|
|
29
|
+
"@shrub/core": "0.5.91",
|
|
30
|
+
"@shrub/express": "0.5.91",
|
|
31
|
+
"@shrub/express-session": "0.5.91",
|
|
32
32
|
"express": "4.18.2",
|
|
33
33
|
"http-errors": "2.0.0"
|
|
34
34
|
},
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"@types/express": "4.17.9",
|
|
37
37
|
"@types/http-errors": "2.0.1"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "1b52bcbdaa323544b18db0f2fb4e4742f41248d9"
|
|
40
40
|
}
|