@futdevpro/nts-dynamo 1.3.54 → 1.3.56
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/_models/index.js +5 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/src/_models/index.ts +5 -2
- package/tsconfig.json +1 -1
package/lib/_models/index.js
CHANGED
|
@@ -21,7 +21,11 @@ tslib_1.__exportStar(require("./fullstack-models/data-models/usage-session"), ex
|
|
|
21
21
|
/*
|
|
22
22
|
import { DynamoBEDataModelParams } from './dynamobe-data-model-params';
|
|
23
23
|
import { Metadata } from './fullstack-models/data-models/metadata';
|
|
24
|
-
|
|
24
|
+
*/
|
|
25
|
+
/*
|
|
25
26
|
module.exports = {
|
|
26
27
|
Metadata, DynamoBEDataModelParams
|
|
27
28
|
} */
|
|
29
|
+
/* declare module Models {
|
|
30
|
+
Metadata, DynamoBEDataModelParams
|
|
31
|
+
} */
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -642,7 +642,7 @@
|
|
|
642
642
|
"affectsGlobalScope": false
|
|
643
643
|
},
|
|
644
644
|
"../src/_models/index.ts": {
|
|
645
|
-
"version": "
|
|
645
|
+
"version": "8cad5293ead73bf8b8764fbfc38da20ae278e43814f8f6595a269a04faa18ecf",
|
|
646
646
|
"signature": "f0591ac1ddfa85ba37227303c720e36ca760b0d6503ec114dc3e75328c7ff9ac",
|
|
647
647
|
"affectsGlobalScope": false
|
|
648
648
|
},
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@futdevpro/nts-dynamo",
|
|
3
|
-
"version": "01.03.
|
|
3
|
+
"version": "01.03.56",
|
|
4
4
|
"description": "Dynamic NodeTS (NodeJS-Typescript), MongoDB Backend System Framework by Future Development Ltd.",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
|
+
"module": "./lib/index.js",
|
|
6
7
|
"types": "./lib/index.d.ts",
|
|
7
8
|
"typings": "./lib/index.d.ts",
|
|
8
9
|
"exports": {
|
package/src/_models/index.ts
CHANGED
|
@@ -19,11 +19,14 @@ export * from './fullstack-models/data-models/metadata';
|
|
|
19
19
|
export * from './fullstack-models/data-models/usage-session';
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
/*
|
|
24
23
|
import { DynamoBEDataModelParams } from './dynamobe-data-model-params';
|
|
25
24
|
import { Metadata } from './fullstack-models/data-models/metadata';
|
|
26
|
-
|
|
25
|
+
*/
|
|
26
|
+
/*
|
|
27
27
|
module.exports = {
|
|
28
28
|
Metadata, DynamoBEDataModelParams
|
|
29
29
|
} */
|
|
30
|
+
/* declare module Models {
|
|
31
|
+
Metadata, DynamoBEDataModelParams
|
|
32
|
+
} */
|
package/tsconfig.json
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
40
40
|
|
|
41
41
|
/* Module Resolution Options */
|
|
42
|
-
|
|
42
|
+
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
|
|
43
43
|
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
|
|
44
44
|
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
|
45
45
|
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|