@futdevpro/nts-dynamo 1.3.42 → 1.3.46

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.
@@ -18,8 +18,9 @@ tslib_1.__exportStar(require("./fullstack-models/control-models/usage-data"), ex
18
18
  tslib_1.__exportStar(require("./fullstack-models/data-models/custom-data"), exports);
19
19
  tslib_1.__exportStar(require("./fullstack-models/data-models/metadata"), exports);
20
20
  tslib_1.__exportStar(require("./fullstack-models/data-models/usage-session"), exports);
21
- const dynamobe_data_model_params_1 = require("./dynamobe-data-model-params");
22
- const metadata_1 = require("./fullstack-models/data-models/metadata");
21
+ /* import { DynamoBEDataModelParams } from './dynamobe-data-model-params';
22
+ import { Metadata } from './fullstack-models/data-models/metadata';
23
+
23
24
  module.exports = {
24
- Metadata: metadata_1.Metadata, DynamoBEDataModelParams: dynamobe_data_model_params_1.DynamoBEDataModelParams
25
- };
25
+ Metadata, DynamoBEDataModelParams
26
+ } */
@@ -642,7 +642,7 @@
642
642
  "affectsGlobalScope": false
643
643
  },
644
644
  "../src/_models/index.ts": {
645
- "version": "0771141bcfa41b0e312230a8b83ee77b8d69fdfb3070b2e429010b0017b32877",
645
+ "version": "6c48aefe07fb6d3c69ea0ee18a134f163b338320f8fabdcc35599b9b07276fef",
646
646
  "signature": "f0591ac1ddfa85ba37227303c720e36ca760b0d6503ec114dc3e75328c7ff9ac",
647
647
  "affectsGlobalScope": false
648
648
  },
package/package.json CHANGED
@@ -1,15 +1,8 @@
1
1
  {
2
2
  "name": "@futdevpro/nts-dynamo",
3
- "version": "01.03.42",
3
+ "version": "01.03.46",
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",
7
- "modules": {
8
- "enums": "lib/_enums/index.d.ts",
9
- "models": "lib/_models/index.d.ts",
10
- "modules": "lib/_modules/index.d.ts",
11
- "services": "lib/_services/index.d.ts"
12
- },
13
6
  "types": "./lib/index.d.ts",
14
7
  "typings": "./lib/index.d.ts",
15
8
  "exports": {
@@ -36,20 +29,24 @@
36
29
  },
37
30
  "typesVersions": {
38
31
  "*": {
39
- "enums": [ "lib/_enums/index.d.ts" ],
40
- "models": [ "lib/_models/index.d.ts" ],
41
- "modules": [ "lib/_modules/index.d.ts" ],
42
- "services": [ "lib/_services/index.d.ts" ]
32
+ "enums": [
33
+ "lib/_enums/index.d.ts"
34
+ ],
35
+ "models": [
36
+ "lib/_models/index.d.ts"
37
+ ],
38
+ "modules": [
39
+ "lib/_modules/index.d.ts"
40
+ ],
41
+ "services": [
42
+ "lib/_services/index.d.ts"
43
+ ]
43
44
  }
44
45
  },
45
46
  "repository": {
46
47
  "type": "git",
47
48
  "url": "git+https://gitlab.com/futdevpro/dynamo-be.git"
48
49
  },
49
- "scripts": {
50
- "test": "echo \"Error: no test specified\" && exit 1",
51
- "build": "npx tsc"
52
- },
53
50
  "keywords": [
54
51
  "nodejs",
55
52
  "typescript",
@@ -21,9 +21,9 @@ export * from './fullstack-models/data-models/usage-session';
21
21
 
22
22
 
23
23
 
24
- import { DynamoBEDataModelParams } from './dynamobe-data-model-params';
24
+ /* import { DynamoBEDataModelParams } from './dynamobe-data-model-params';
25
25
  import { Metadata } from './fullstack-models/data-models/metadata';
26
26
 
27
27
  module.exports = {
28
28
  Metadata, DynamoBEDataModelParams
29
- }
29
+ } */
package/tsconfig.json CHANGED
@@ -2,7 +2,8 @@
2
2
  "compilerOptions": {
3
3
  /* Basic Options */
4
4
  "incremental": true, /* Enable incremental compilation */
5
- "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
5
+ "target": "es2015",
6
+ //"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
6
7
  "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
7
8
  "lib": ["es6"], /* Specify library files to be included in the compilation. */
8
9
  "allowJs": true, /* Allow javascript files to be compiled. */