node-pluginsmanager-plugin 5.0.2 → 5.0.3

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.
@@ -49,7 +49,7 @@ export default class Orchestrator extends MediatorUser {
49
49
  destroy(): Promise<void>;
50
50
  init(...data: any): Promise<void>;
51
51
  release(...data: any): Promise<void>;
52
- install(): Promise<void>;
53
- update(): Promise<void>;
54
- uninstall(): Promise<void>;
52
+ install(...data: any): Promise<void>;
53
+ update(...data: any): Promise<void>;
54
+ uninstall(...data: any): Promise<void>;
55
55
  }
@@ -372,13 +372,13 @@ class Orchestrator extends MediatorUser_1.default {
372
372
  });
373
373
  }
374
374
  // write
375
- install() {
375
+ install(...data) {
376
376
  return Promise.resolve();
377
377
  }
378
- update() {
378
+ update(...data) {
379
379
  return Promise.resolve();
380
380
  }
381
- uninstall() {
381
+ uninstall(...data) {
382
382
  return Promise.resolve();
383
383
  }
384
384
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-pluginsmanager-plugin",
3
- "version": "5.0.2",
3
+ "version": "5.0.3",
4
4
  "description": "An abstract parent plugin for node-pluginsmanager",
5
5
 
6
6
  "type": "commonjs",