node-pluginsmanager-plugin 4.8.6 → 4.8.7

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 +5 -5
  2. package/package.json +2 -2
package/lib/index.d.ts CHANGED
@@ -80,19 +80,19 @@ declare module "node-pluginsmanager-plugin" {
80
80
 
81
81
  // components
82
82
 
83
- type tLogType = "log" | "info" | "warning" | "error" | "debug";
83
+ export type tLogType = "log" | "info" | "warning" | "error" | "debug";
84
84
 
85
- interface iDescriptorUserOptions {
85
+ export interface iDescriptorUserOptions {
86
86
  "descriptor": { [key:string]: any };
87
87
  "externalRessourcesDirectory": string;
88
88
  "logger"?: (type: tLogType, message: string, bold?: boolean) => void;
89
89
  }
90
90
 
91
- interface iMediatorUserOptions extends iDescriptorUserOptions {
91
+ export interface iMediatorUserOptions extends iDescriptorUserOptions {
92
92
  "mediator": Mediator | null;
93
93
  }
94
94
 
95
- interface iUrlParameters {
95
+ export interface iUrlParameters {
96
96
  "url": {
97
97
  "path": object;
98
98
  "query": object;
@@ -101,7 +101,7 @@ declare module "node-pluginsmanager-plugin" {
101
101
  };
102
102
  }
103
103
 
104
- interface iOrchestratorOptions {
104
+ export interface iOrchestratorOptions {
105
105
  "externalRessourcesDirectory": string;
106
106
  "packageFile": string;
107
107
  "descriptorFile": string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-pluginsmanager-plugin",
3
- "version": "4.8.6",
3
+ "version": "4.8.7",
4
4
  "description": "An abstract parent plugin for node-pluginsmanager",
5
5
  "main": "lib/main.js",
6
6
  "typings": "lib/index.d.ts",
@@ -45,7 +45,7 @@
45
45
  "check-version-modules": "1.3.5",
46
46
  "coveralls": "3.1.1",
47
47
  "colors": "1.4.0",
48
- "eslint": "8.15.0",
48
+ "eslint": "8.16.0",
49
49
  "express": "4.18.1",
50
50
  "husky": "8.0.1",
51
51
  "mocha": "10.0.0",