@futdevpro/nts-dynamo 1.3.7 → 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 +4 -0
- package/lib/index.js +8 -13
- package/lib/tsconfig.tsbuildinfo +14 -2
- package/package.json +4 -2
- package/src/index.ts +5 -10
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
// ENUMS
|
|
5
|
+
tslib_1.__exportStar(require("./_enum/index"), exports);
|
|
4
6
|
// MODULES
|
|
5
|
-
|
|
6
|
-
|
|
7
|
+
tslib_1.__exportStar(require("./_models/index"), exports);
|
|
7
8
|
// MODULES
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
tslib_1.__exportStar(require("./_modules/index"), exports);
|
|
10
10
|
// SERVICES
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
module.exports = {
|
|
14
|
-
DBE_Enums, DBE_Models, DBE_Modules, DBE_Services
|
|
15
|
-
}
|
|
16
|
-
*/
|
|
11
|
+
tslib_1.__exportStar(require("./_services/index"), exports);
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -742,8 +742,8 @@
|
|
|
742
742
|
"affectsGlobalScope": false
|
|
743
743
|
},
|
|
744
744
|
"../src/index.ts": {
|
|
745
|
-
"version": "
|
|
746
|
-
"signature": "
|
|
745
|
+
"version": "b7f4dd29abe633d22488fe0dc1d5a919848924227a7b7c07bb7c60392ef94158",
|
|
746
|
+
"signature": "b0a64ab9a29d4140994c95fe443e012eb6b7de086265bf4196cef6718d093e01",
|
|
747
747
|
"affectsGlobalScope": false
|
|
748
748
|
},
|
|
749
749
|
"../src/_constants/dynamobe-global.settings.ts": {
|
|
@@ -1396,6 +1396,12 @@
|
|
|
1396
1396
|
"../src/_models/index.ts",
|
|
1397
1397
|
"../src/_modules/index.ts",
|
|
1398
1398
|
"../src/_services/index.ts"
|
|
1399
|
+
],
|
|
1400
|
+
"../src/index.ts": [
|
|
1401
|
+
"../src/_enum/index.ts",
|
|
1402
|
+
"../src/_models/index.ts",
|
|
1403
|
+
"../src/_modules/index.ts",
|
|
1404
|
+
"../src/_services/index.ts"
|
|
1399
1405
|
]
|
|
1400
1406
|
},
|
|
1401
1407
|
"exportedModulesMap": {
|
|
@@ -1966,6 +1972,12 @@
|
|
|
1966
1972
|
"../src/_models/index.ts",
|
|
1967
1973
|
"../src/_modules/index.ts",
|
|
1968
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"
|
|
1969
1981
|
]
|
|
1970
1982
|
},
|
|
1971
1983
|
"semanticDiagnosticsPerFile": [
|
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@futdevpro/nts-dynamo",
|
|
3
|
-
"version": "01.03.
|
|
3
|
+
"version": "01.03.08",
|
|
4
4
|
"description": "Dynamic NodeTS (NodeJS-Typescript), MongoDB Backend System Framework by Future Development Ltd.",
|
|
5
|
-
"main": "./lib
|
|
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,17 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
// ENUMS
|
|
3
|
+
export * from './_enum/index';
|
|
4
4
|
|
|
5
5
|
// MODULES
|
|
6
|
-
|
|
6
|
+
export * from './_models/index';
|
|
7
7
|
|
|
8
8
|
// MODULES
|
|
9
|
-
|
|
9
|
+
export * from './_modules/index';
|
|
10
10
|
|
|
11
11
|
// SERVICES
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
module.exports = {
|
|
15
|
-
DBE_Enums, DBE_Models, DBE_Modules, DBE_Services
|
|
16
|
-
}
|
|
17
|
-
*/
|
|
12
|
+
export * from './_services/index';
|