node-pluginsmanager-plugin 4.8.4 → 4.8.5

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/lib/index.d.ts +2 -2
  2. package/package.json +7 -7
package/lib/index.d.ts CHANGED
@@ -195,8 +195,8 @@ declare module "node-pluginsmanager-plugin" {
195
195
 
196
196
  // init / release
197
197
 
198
- public load(): Promise<void>;
199
- public destroy(): Promise<void>;
198
+ public load(data?: any): Promise<void>;
199
+ public destroy(data?: any): Promise<void>;
200
200
 
201
201
  // write
202
202
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-pluginsmanager-plugin",
3
- "version": "4.8.4",
3
+ "version": "4.8.5",
4
4
  "description": "An abstract parent plugin for node-pluginsmanager",
5
5
  "main": "lib/main.js",
6
6
  "typings": "lib/index.d.ts",
@@ -35,23 +35,23 @@
35
35
  "url": "https://github.com/Psychopoulet/node-pluginsmanager-plugin/issues"
36
36
  },
37
37
  "dependencies": {
38
- "@apidevtools/swagger-parser": "10.0.3",
38
+ "@apidevtools/swagger-parser": "10.1.0",
39
39
  "express-openapi-validate": "0.6.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@types/node": "17.0.31",
42
+ "@types/node": "17.0.34",
43
43
  "@types/socket.io": "3.0.2",
44
44
  "@types/ws": "8.5.3",
45
45
  "check-version-modules": "1.3.5",
46
46
  "coveralls": "3.1.1",
47
47
  "colors": "1.4.0",
48
- "eslint": "8.14.0",
48
+ "eslint": "8.15.0",
49
49
  "express": "4.18.1",
50
- "husky": "7.0.4",
50
+ "husky": "8.0.1",
51
51
  "mocha": "10.0.0",
52
52
  "nyc": "15.1.0",
53
- "socket.io": "4.5.0",
54
- "socket.io-client": "4.5.0",
53
+ "socket.io": "4.5.1",
54
+ "socket.io-client": "4.5.1",
55
55
  "typescript": "4.6.4",
56
56
  "ws": "8.6.0"
57
57
  },