node-pluginsmanager-plugin 5.0.5 → 5.0.6

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.
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2021, Sébastien Vidal
1
+ Copyright (c) 2022, Sébastien Vidal
2
2
 
3
3
  Permission to use, copy, modify, and/or distribute this software for any
4
4
  purpose with or without fee is hereby granted, provided that the above
@@ -20,11 +20,11 @@ import { checkIntegerBetween, checkIntegerBetweenSync } from "./checkers/RangeEr
20
20
  import { checkArrayLength, checkArrayLengthSync } from "./checkers/RangeError/checkArrayLength";
21
21
  import { checkArrayLengthBetween, checkArrayLengthBetweenSync } from "./checkers/RangeError/checkArrayLengthBetween";
22
22
  export { checkExists, checkExistsSync, checkBoolean, checkBooleanSync, checkFunction, checkFunctionSync, checkNumber, checkNumberSync, checkObject, checkObjectSync, checkString, checkStringSync, checkArray, checkArraySync, checkInteger, checkIntegerSync, checkNonEmptyArray, checkNonEmptyArraySync, checkNonEmptyInteger, checkNonEmptyIntegerSync, checkNonEmptyNumber, checkNonEmptyNumberSync, checkNonEmptyObject, checkNonEmptyObjectSync, checkNonEmptyString, checkNonEmptyStringSync, checkNumberBetween, checkNumberBetweenSync, checkObjectLength, checkObjectLengthSync, checkObjectLengthBetween, checkObjectLengthBetweenSync, checkStringLength, checkStringLengthSync, checkStringLengthBetween, checkStringLengthBetweenSync, checkIntegerBetween, checkIntegerBetweenSync, checkArrayLength, checkArrayLengthSync, checkArrayLengthBetween, checkArrayLengthBetweenSync };
23
- import DescriptorUser, { tLogType, tLogger } from "./components/DescriptorUser";
23
+ import DescriptorUser, { iDescriptorUserOptions, tLogType, tLogger } from "./components/DescriptorUser";
24
24
  import Mediator, { iUrlParameters, iBodyParameters } from "./components/Mediator";
25
- import MediatorUser from "./components/MediatorUser";
25
+ import MediatorUser, { iMediatorUserOptions } from "./components/MediatorUser";
26
26
  import NotFoundError from "./components/NotFoundError";
27
- import Orchestrator from "./components/Orchestrator";
27
+ import Orchestrator, { iOrchestratorOptions } from "./components/Orchestrator";
28
28
  import Server, { iClient, iIncomingMessage, iServerResponse } from "./components/Server";
29
29
  export { tLogType, tLogger, iUrlParameters, iBodyParameters, iClient, iIncomingMessage, iServerResponse };
30
- export { DescriptorUser, Mediator, MediatorUser, NotFoundError, Orchestrator, Server };
30
+ export { DescriptorUser, iDescriptorUserOptions, Mediator, MediatorUser, iMediatorUserOptions, NotFoundError, Orchestrator, iOrchestratorOptions, Server };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-pluginsmanager-plugin",
3
- "version": "5.0.5",
3
+ "version": "5.0.6",
4
4
  "description": "An abstract parent plugin for node-pluginsmanager",
5
5
 
6
6
  "type": "commonjs",