@futdevpro/nts-dynamo 1.3.6 → 1.3.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.
package/lib/index.d.ts CHANGED
@@ -1 +1,4 @@
1
- export {};
1
+ export * from './_enum/index';
2
+ export * from './_models/index';
3
+ export * from './_modules/index';
4
+ export * from './_services/index';
package/lib/index.js CHANGED
@@ -2,13 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  // ENUMS
5
- const DBE_Enums = tslib_1.__importStar(require("./_enum/index"));
5
+ tslib_1.__exportStar(require("./_enum/index"), exports);
6
6
  // MODULES
7
- const DBE_Models = tslib_1.__importStar(require("./_models/index"));
7
+ tslib_1.__exportStar(require("./_models/index"), exports);
8
8
  // MODULES
9
- const DBE_Modules = tslib_1.__importStar(require("./_modules/index"));
9
+ tslib_1.__exportStar(require("./_modules/index"), exports);
10
10
  // SERVICES
11
- const DBE_Services = tslib_1.__importStar(require("./_services/index"));
12
- module.exports = {
13
- DBE_Enums, DBE_Models, DBE_Modules, DBE_Services
14
- };
11
+ tslib_1.__exportStar(require("./_services/index"), exports);
@@ -742,8 +742,8 @@
742
742
  "affectsGlobalScope": false
743
743
  },
744
744
  "../src/index.ts": {
745
- "version": "39d03cb4b5922e05519079b5885704a3e20e3a30188b88e6f5c3bac451b058c5",
746
- "signature": "f761c91419d0a89422a0004ef1a92929dd4d2d5e5c16758654d8b0467d1998c6",
745
+ "version": "b7f4dd29abe633d22488fe0dc1d5a919848924227a7b7c07bb7c60392ef94158",
746
+ "signature": "b0a64ab9a29d4140994c95fe443e012eb6b7de086265bf4196cef6718d093e01",
747
747
  "affectsGlobalScope": false
748
748
  },
749
749
  "../src/_constants/dynamobe-global.settings.ts": {
@@ -1972,6 +1972,12 @@
1972
1972
  "../src/_models/index.ts",
1973
1973
  "../src/_modules/index.ts",
1974
1974
  "../src/_services/index.ts"
1975
+ ],
1976
+ "../src/index.ts": [
1977
+ "../src/_enum/index.ts",
1978
+ "../src/_models/index.ts",
1979
+ "../src/_modules/index.ts",
1980
+ "../src/_services/index.ts"
1975
1981
  ]
1976
1982
  },
1977
1983
  "semanticDiagnosticsPerFile": [
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@futdevpro/nts-dynamo",
3
- "version": "01.03.06",
3
+ "version": "01.03.08",
4
4
  "description": "Dynamic NodeTS (NodeJS-Typescript), MongoDB Backend System Framework by Future Development Ltd.",
5
- "main": "./lib/index.js",
5
+ "main": "./lib",
6
+ "typings": "./lib/index.d.ts",
6
7
  "exports": {
8
+ ".": "./lib/index.js",
7
9
  "./enums": "./lib/_enums/index.js",
8
10
  "./models": "./lib/_models/index.js",
9
11
  "./modules": "./lib/_modules/index.js",
package/src/index.ts CHANGED
@@ -1,16 +1,12 @@
1
1
 
2
2
  // ENUMS
3
- import * as DBE_Enums from './_enum/index';
3
+ export * from './_enum/index';
4
4
 
5
5
  // MODULES
6
- import * as DBE_Models from './_models/index';
6
+ export * from './_models/index';
7
7
 
8
8
  // MODULES
9
- import * as DBE_Modules from './_modules/index';
9
+ export * from './_modules/index';
10
10
 
11
11
  // SERVICES
12
- import * as DBE_Services from './_services/index';
13
-
14
- module.exports = {
15
- DBE_Enums, DBE_Models, DBE_Modules, DBE_Services
16
- }
12
+ export * from './_services/index';