@shrub/express-session 0.5.45 → 0.5.49

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.
Files changed (2) hide show
  1. package/dist/module.d.ts +1 -1
  2. package/package.json +5 -5
package/dist/module.d.ts CHANGED
@@ -13,7 +13,7 @@ export interface IExpressSessionConfiguration {
13
13
  export declare class ExpressSessionModule implements IModule {
14
14
  private options?;
15
15
  readonly name = "express-session";
16
- readonly dependencies: (typeof ExpressModule | typeof ExpressCookiesModule)[];
16
+ readonly dependencies: (typeof ExpressCookiesModule | typeof ExpressModule)[];
17
17
  initialize({ config, settings }: IModuleInitializer): void;
18
18
  configure({ config, next, services }: IModuleConfigurator): void;
19
19
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shrub/express-session",
3
3
  "description": "Express module that provides simple session middleware.",
4
- "version": "0.5.45",
4
+ "version": "0.5.49",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -28,10 +28,10 @@
28
28
  "@types/express": "4.17.9"
29
29
  },
30
30
  "dependencies": {
31
- "@shrub/core": "0.5.45",
32
- "@shrub/express": "0.5.45",
33
- "@shrub/express-cookies": "0.5.45",
31
+ "@shrub/core": "0.5.49",
32
+ "@shrub/express": "0.5.49",
33
+ "@shrub/express-cookies": "0.5.49",
34
34
  "express": "^4.17.1"
35
35
  },
36
- "gitHead": "346d97348b67c1bc0c92da7604414da35fe3e96c"
36
+ "gitHead": "1027e5200204b06f246c36a437de10c092976ad0"
37
37
  }