not-node 6.3.82 → 6.3.84

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "not-node",
3
- "version": "6.3.82",
3
+ "version": "6.3.84",
4
4
  "description": "node complimentary part for client side notFramework.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/const.js CHANGED
@@ -4,7 +4,7 @@ const DEFAULT_PATH_MODULES = "./modules";
4
4
  const DEFAULT_PATH_WS = "./ws";
5
5
  const DEFAULT_PATH_DB_DUMPS = "../../db.dumps";
6
6
 
7
- const ACTION_DATA_TYPES = require("./manifest/const").ACTION_DATA_TYPES;
7
+ const MANIFEST_CONSTS = require("./manifest/const");
8
8
 
9
9
  module.exports = {
10
10
  DEFAULT_PATH_WS,
@@ -12,5 +12,5 @@ module.exports = {
12
12
  DEFAULT_PATH_STATIC,
13
13
  DEFAULT_PATH_TMP,
14
14
  DEFAULT_PATH_DB_DUMPS,
15
- ACTION_DATA_TYPES,
15
+ ...MANIFEST_CONSTS,
16
16
  };
@@ -15,3 +15,4 @@ const ACTION_DATA_TYPES = Object.freeze({
15
15
  });
16
16
 
17
17
  module.exports.ACTION_DATA_TYPES = ACTION_DATA_TYPES;
18
+ module.exports.ACTION_DATA_TYPES_VALUES = Object.values(ACTION_DATA_TYPES);