node-pluginsmanager-plugin 5.0.7 → 5.0.8

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.
@@ -2,10 +2,18 @@ import { OpenApiValidator } from "express-openapi-validate";
2
2
  import { iServerResponse } from "./Server";
3
3
  import DescriptorUser, { iDescriptorUserOptions } from "./DescriptorUser";
4
4
  export interface iUrlParameters {
5
- "path": object;
6
- "query": object;
7
- "headers": object;
8
- "cookies": object;
5
+ "path": {
6
+ [key: string]: any;
7
+ };
8
+ "query": {
9
+ [key: string]: any;
10
+ };
11
+ "headers": {
12
+ [key: string]: any;
13
+ };
14
+ "cookies": {
15
+ [key: string]: any;
16
+ };
9
17
  }
10
18
  export interface iBodyParameters {
11
19
  [key: string]: any;
@@ -6,7 +6,7 @@ export interface iMediatorUserOptions extends iDescriptorUserOptions {
6
6
  export default class MediatorUser extends DescriptorUser {
7
7
  protected _Mediator: Mediator | null;
8
8
  constructor(options: iMediatorUserOptions);
9
- _initWorkSpace(...data: any): Promise<void>;
10
- _releaseWorkSpace(...data: any): Promise<void>;
9
+ protected _initWorkSpace(...data: any): Promise<void>;
10
+ protected _releaseWorkSpace(...data: any): Promise<void>;
11
11
  checkMediator(): Promise<void>;
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-pluginsmanager-plugin",
3
- "version": "5.0.7",
3
+ "version": "5.0.8",
4
4
  "description": "An abstract parent plugin for node-pluginsmanager",
5
5
 
6
6
  "type": "commonjs",
@@ -58,7 +58,7 @@
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/express": "4.17.13",
61
- "@types/node": "18.0.1",
61
+ "@types/node": "18.0.3",
62
62
  "@types/socket.io": "3.0.2",
63
63
  "@types/uniqid": "5.3.2",
64
64
  "@types/ws": "8.5.3",