@futdevpro/nts-dynamo 1.2.98 → 1.3.2
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/_enum/index.d.ts +7 -0
- package/lib/_enum/index.js +12 -0
- package/lib/_models/index.d.ts +14 -0
- package/lib/_models/index.js +20 -0
- package/lib/_modules/index.d.ts +4 -0
- package/lib/_modules/index.js +8 -0
- package/lib/_services/index.d.ts +14 -0
- package/lib/_services/index.js +18 -0
- package/lib/index-old.js +7 -7
- package/lib/index.d.ts +0 -39
- package/lib/index.js +41 -43
- package/lib/tsconfig.tsbuildinfo +128 -10
- package/package.json +5 -2
- package/src/_enum/index.ts +10 -0
- package/src/_models/index.ts +18 -0
- package/src/_modules/index.ts +7 -0
- package/src/_services/index.ts +16 -0
- package/src/index-old.ts +52 -0
- package/src/index.ts +14 -12
- package/src/index-newo.ts +0 -71
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './data-model-types.enum';
|
|
2
|
+
export * from './dynamobe-data-service-function.enum';
|
|
3
|
+
export * from './dynamobe-route-security.enum';
|
|
4
|
+
export * from './log-style.enum';
|
|
5
|
+
export * from './predefined-data-types.enum';
|
|
6
|
+
export * from './http/http-call-type.enum';
|
|
7
|
+
export * from './http/http-response-type.enum';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
// ENUMS
|
|
5
|
+
tslib_1.__exportStar(require("./data-model-types.enum"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./dynamobe-data-service-function.enum"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./dynamobe-route-security.enum"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./log-style.enum"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./predefined-data-types.enum"), exports);
|
|
10
|
+
// HTTP ENUMS
|
|
11
|
+
tslib_1.__exportStar(require("./http/http-call-type.enum"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./http/http-response-type.enum"), exports);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from './dynamobe-api-call-params';
|
|
2
|
+
export * from './dynamobe-app-params';
|
|
3
|
+
export * from './dynamobe-data-model-params';
|
|
4
|
+
export * from './dynamobe-endpoint-control';
|
|
5
|
+
export * from './dynamobe-global-settings';
|
|
6
|
+
export * from './fullstack-models/control-models/daily-usage-data';
|
|
7
|
+
export * from './fullstack-models/control-models/dynamobe-data-property-params';
|
|
8
|
+
export * from './fullstack-models/control-models/dynamobe-error';
|
|
9
|
+
export * from './fullstack-models/control-models/geo-ip-location';
|
|
10
|
+
export * from './fullstack-models/control-models/usage-action';
|
|
11
|
+
export * from './fullstack-models/control-models/usage-data';
|
|
12
|
+
export * from './fullstack-models/data-models/custom-data';
|
|
13
|
+
export * from './fullstack-models/data-models/metadata';
|
|
14
|
+
export * from './fullstack-models/data-models/usage-session';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
// MODULES
|
|
5
|
+
tslib_1.__exportStar(require("./dynamobe-api-call-params"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./dynamobe-app-params"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./dynamobe-data-model-params"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./dynamobe-endpoint-control"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./dynamobe-global-settings"), exports);
|
|
10
|
+
// FULLSTACK - CONTROL MODELS
|
|
11
|
+
tslib_1.__exportStar(require("./fullstack-models/control-models/daily-usage-data"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./fullstack-models/control-models/dynamobe-data-property-params"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./fullstack-models/control-models/dynamobe-error"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./fullstack-models/control-models/geo-ip-location"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./fullstack-models/control-models/usage-action"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./fullstack-models/control-models/usage-data"), exports);
|
|
17
|
+
// FULLSTACK - DATA MODELS
|
|
18
|
+
tslib_1.__exportStar(require("./fullstack-models/data-models/custom-data"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./fullstack-models/data-models/metadata"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./fullstack-models/data-models/usage-session"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
// MODULES
|
|
5
|
+
tslib_1.__exportStar(require("./test-route/test-controller"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./test-route/custom-data.service"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./usage-route/usage-controller"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./usage-route/usage.service"), exports);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from './dynamobe-api.service';
|
|
2
|
+
export * from './dynamobe-app';
|
|
3
|
+
export * from './dynamobe-auth.service';
|
|
4
|
+
export * from './dynamobe-controller.service';
|
|
5
|
+
export * from './dynamobe-data.service';
|
|
6
|
+
export * from './dynamobe-db-service-collection.service';
|
|
7
|
+
export * from './dynamobe-db.service';
|
|
8
|
+
export * from './dynamobe-email-service-collection.service';
|
|
9
|
+
export * from './dynamobe-email.service';
|
|
10
|
+
export * from './dynamobe-global.service';
|
|
11
|
+
export * from './dynamobe-routing-module.service';
|
|
12
|
+
export * from './dynamobe-server';
|
|
13
|
+
export * from './dynamobe-shared.service';
|
|
14
|
+
export * from './dynamobe-singleton.service';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
// SERVICES
|
|
5
|
+
tslib_1.__exportStar(require("./dynamobe-api.service"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./dynamobe-app"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./dynamobe-auth.service"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./dynamobe-controller.service"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./dynamobe-data.service"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./dynamobe-db-service-collection.service"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./dynamobe-db.service"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./dynamobe-email-service-collection.service"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./dynamobe-email.service"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./dynamobe-global.service"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./dynamobe-routing-module.service"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./dynamobe-server"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./dynamobe-shared.service"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./dynamobe-singleton.service"), exports);
|
package/lib/index-old.js
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
|
|
4
|
+
// ENUMS
|
|
5
5
|
tslib_1.__exportStar(require("./_enum/data-model-types.enum"), exports);
|
|
6
6
|
tslib_1.__exportStar(require("./_enum/dynamobe-data-service-function.enum"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./_enum/dynamobe-route-security.enum"), exports);
|
|
8
8
|
tslib_1.__exportStar(require("./_enum/log-style.enum"), exports);
|
|
9
9
|
tslib_1.__exportStar(require("./_enum/predefined-data-types.enum"), exports);
|
|
10
|
-
|
|
10
|
+
// HTTP ENUMS
|
|
11
11
|
tslib_1.__exportStar(require("./_enum/http/http-call-type.enum"), exports);
|
|
12
12
|
tslib_1.__exportStar(require("./_enum/http/http-response-type.enum"), exports);
|
|
13
|
-
|
|
13
|
+
// MODULES
|
|
14
14
|
tslib_1.__exportStar(require("./_models/dynamobe-api-call-params"), exports);
|
|
15
15
|
tslib_1.__exportStar(require("./_models/dynamobe-app-params"), exports);
|
|
16
16
|
tslib_1.__exportStar(require("./_models/dynamobe-data-model-params"), exports);
|
|
17
17
|
tslib_1.__exportStar(require("./_models/dynamobe-endpoint-control"), exports);
|
|
18
18
|
tslib_1.__exportStar(require("./_models/dynamobe-global-settings"), exports);
|
|
19
|
-
|
|
19
|
+
// FULLSTACK - CONTROL MODELS
|
|
20
20
|
tslib_1.__exportStar(require("./_models/fullstack-models/control-models/daily-usage-data"), exports);
|
|
21
21
|
tslib_1.__exportStar(require("./_models/fullstack-models/control-models/dynamobe-data-property-params"), exports);
|
|
22
22
|
tslib_1.__exportStar(require("./_models/fullstack-models/control-models/dynamobe-error"), exports);
|
|
23
23
|
tslib_1.__exportStar(require("./_models/fullstack-models/control-models/geo-ip-location"), exports);
|
|
24
24
|
tslib_1.__exportStar(require("./_models/fullstack-models/control-models/usage-action"), exports);
|
|
25
25
|
tslib_1.__exportStar(require("./_models/fullstack-models/control-models/usage-data"), exports);
|
|
26
|
-
|
|
26
|
+
// FULLSTACK - DATA MODELS
|
|
27
27
|
tslib_1.__exportStar(require("./_models/fullstack-models/data-models/custom-data"), exports);
|
|
28
28
|
tslib_1.__exportStar(require("./_models/fullstack-models/data-models/metadata"), exports);
|
|
29
29
|
tslib_1.__exportStar(require("./_models/fullstack-models/data-models/usage-session"), exports);
|
|
30
|
-
|
|
30
|
+
// MODULES
|
|
31
31
|
tslib_1.__exportStar(require("./_modules/test-route/test-controller"), exports);
|
|
32
32
|
tslib_1.__exportStar(require("./_modules/test-route/custom-data.service"), exports);
|
|
33
33
|
tslib_1.__exportStar(require("./_modules/usage-route/usage-controller"), exports);
|
|
34
34
|
tslib_1.__exportStar(require("./_modules/usage-route/usage.service"), exports);
|
|
35
|
-
|
|
35
|
+
// SERVICES
|
|
36
36
|
tslib_1.__exportStar(require("./_services/dynamobe-api.service"), exports);
|
|
37
37
|
tslib_1.__exportStar(require("./_services/dynamobe-app"), exports);
|
|
38
38
|
tslib_1.__exportStar(require("./_services/dynamobe-auth.service"), exports);
|
package/lib/index.d.ts
CHANGED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
export * from './_enum/data-model-types.enum';
|
|
2
|
-
export * from './_enum/dynamobe-data-service-function.enum';
|
|
3
|
-
export * from './_enum/dynamobe-route-security.enum';
|
|
4
|
-
export * from './_enum/log-style.enum';
|
|
5
|
-
export * from './_enum/predefined-data-types.enum';
|
|
6
|
-
export * from './_enum/http/http-call-type.enum';
|
|
7
|
-
export * from './_enum/http/http-response-type.enum';
|
|
8
|
-
export * from './_models/dynamobe-api-call-params';
|
|
9
|
-
export * from './_models/dynamobe-app-params';
|
|
10
|
-
export * from './_models/dynamobe-data-model-params';
|
|
11
|
-
export * from './_models/dynamobe-endpoint-control';
|
|
12
|
-
export * from './_models/dynamobe-global-settings';
|
|
13
|
-
export * from './_models/fullstack-models/control-models/daily-usage-data';
|
|
14
|
-
export * from './_models/fullstack-models/control-models/dynamobe-data-property-params';
|
|
15
|
-
export * from './_models/fullstack-models/control-models/dynamobe-error';
|
|
16
|
-
export * from './_models/fullstack-models/control-models/geo-ip-location';
|
|
17
|
-
export * from './_models/fullstack-models/control-models/usage-action';
|
|
18
|
-
export * from './_models/fullstack-models/control-models/usage-data';
|
|
19
|
-
export * from './_models/fullstack-models/data-models/custom-data';
|
|
20
|
-
export * from './_models/fullstack-models/data-models/metadata';
|
|
21
|
-
export * from './_models/fullstack-models/data-models/usage-session';
|
|
22
|
-
export * from './_modules/test-route/test-controller';
|
|
23
|
-
export * from './_modules/test-route/custom-data.service';
|
|
24
|
-
export * from './_modules/usage-route/usage-controller';
|
|
25
|
-
export * from './_modules/usage-route/usage.service';
|
|
26
|
-
export * from './_services/dynamobe-api.service';
|
|
27
|
-
export * from './_services/dynamobe-app';
|
|
28
|
-
export * from './_services/dynamobe-auth.service';
|
|
29
|
-
export * from './_services/dynamobe-controller.service';
|
|
30
|
-
export * from './_services/dynamobe-data.service';
|
|
31
|
-
export * from './_services/dynamobe-db-service-collection.service';
|
|
32
|
-
export * from './_services/dynamobe-db.service';
|
|
33
|
-
export * from './_services/dynamobe-email-service-collection.service';
|
|
34
|
-
export * from './_services/dynamobe-email.service';
|
|
35
|
-
export * from './_services/dynamobe-global.service';
|
|
36
|
-
export * from './_services/dynamobe-routing-module.service';
|
|
37
|
-
export * from './_services/dynamobe-server';
|
|
38
|
-
export * from './_services/dynamobe-shared.service';
|
|
39
|
-
export * from './_services/dynamobe-singleton.service';
|
package/lib/index.js
CHANGED
|
@@ -1,49 +1,47 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
1
|
// ENUMS
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
/* export * from './_enum/index'; */
|
|
3
|
+
/* export * from './_enum/data-model-types.enum';
|
|
4
|
+
export * from './_enum/dynamobe-data-service-function.enum';
|
|
5
|
+
export * from './_enum/dynamobe-route-security.enum';
|
|
6
|
+
export * from './_enum/log-style.enum';
|
|
7
|
+
export * from './_enum/predefined-data-types.enum';
|
|
8
|
+
// HTTP ENUMS
|
|
9
|
+
export * from './_enum/http/http-call-type.enum';
|
|
10
|
+
export * from './_enum/http/http-response-type.enum'; */
|
|
13
11
|
// MODULES
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
/* export * from './_models/dynamobe-api-call-params';
|
|
13
|
+
export * from './_models/dynamobe-app-params';
|
|
14
|
+
export * from './_models/dynamobe-data-model-params';
|
|
15
|
+
export * from './_models/dynamobe-endpoint-control';
|
|
16
|
+
export * from './_models/dynamobe-global-settings'; */
|
|
19
17
|
// FULLSTACK - CONTROL MODELS
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
18
|
+
/* export * from './_models/fullstack-models/control-models/daily-usage-data';
|
|
19
|
+
export * from './_models/fullstack-models/control-models/dynamobe-data-property-params';
|
|
20
|
+
export * from './_models/fullstack-models/control-models/dynamobe-error';
|
|
21
|
+
export * from './_models/fullstack-models/control-models/geo-ip-location';
|
|
22
|
+
export * from './_models/fullstack-models/control-models/usage-action';
|
|
23
|
+
export * from './_models/fullstack-models/control-models/usage-data'; */
|
|
26
24
|
// FULLSTACK - DATA MODELS
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
/* export * from './_models/fullstack-models/data-models/custom-data';
|
|
26
|
+
export * from './_models/fullstack-models/data-models/metadata';
|
|
27
|
+
export * from './_models/fullstack-models/data-models/usage-session'; */
|
|
30
28
|
// MODULES
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
/* export * from './_modules/test-route/test-controller';
|
|
30
|
+
export * from './_modules/test-route/custom-data.service';
|
|
31
|
+
export * from './_modules/usage-route/usage-controller';
|
|
32
|
+
export * from './_modules/usage-route/usage.service'; */
|
|
35
33
|
// SERVICES
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
34
|
+
/* export * from './_services/dynamobe-api.service';
|
|
35
|
+
export * from './_services/dynamobe-app';
|
|
36
|
+
export * from './_services/dynamobe-auth.service';
|
|
37
|
+
export * from './_services/dynamobe-controller.service';
|
|
38
|
+
export * from './_services/dynamobe-data.service';
|
|
39
|
+
export * from './_services/dynamobe-db-service-collection.service';
|
|
40
|
+
export * from './_services/dynamobe-db.service';
|
|
41
|
+
export * from './_services/dynamobe-email-service-collection.service';
|
|
42
|
+
export * from './_services/dynamobe-email.service';
|
|
43
|
+
export * from './_services/dynamobe-global.service';
|
|
44
|
+
export * from './_services/dynamobe-routing-module.service';
|
|
45
|
+
export * from './_services/dynamobe-server';
|
|
46
|
+
export * from './_services/dynamobe-shared.service';
|
|
47
|
+
export * from './_services/dynamobe-singleton.service'; */
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -161,11 +161,6 @@
|
|
|
161
161
|
"signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
|
|
162
162
|
"affectsGlobalScope": true
|
|
163
163
|
},
|
|
164
|
-
"../src/index-newo.ts": {
|
|
165
|
-
"version": "d793f0b3dcfa88d3ac1699f0fd6f66aa4103b89710a08645d55cdba76b419d8c",
|
|
166
|
-
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
|
167
|
-
"affectsGlobalScope": false
|
|
168
|
-
},
|
|
169
164
|
"../node_modules/tslib/tslib.d.ts": {
|
|
170
165
|
"version": "14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e",
|
|
171
166
|
"signature": "14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e",
|
|
@@ -721,16 +716,41 @@
|
|
|
721
716
|
"signature": "290228c0bdc04382a15abc038c5a8b52d0de791d40006271a51f0eb5559bd239",
|
|
722
717
|
"affectsGlobalScope": false
|
|
723
718
|
},
|
|
724
|
-
"../src/index.ts": {
|
|
725
|
-
"version": "
|
|
719
|
+
"../src/index-old.ts": {
|
|
720
|
+
"version": "0f35542f212d4186b9accca5081cf451ee15a2f89e2d565e8314bf5339a7764c",
|
|
726
721
|
"signature": "71ee43413c11e6b10204184852df8c9bf4dd448ca9b36c2d0a0ab23fd325d54b",
|
|
727
722
|
"affectsGlobalScope": false
|
|
728
723
|
},
|
|
724
|
+
"../src/index.ts": {
|
|
725
|
+
"version": "8cb6fcf03354020262196221ca28146f914764a41b3159ce42e8850bb4112e4c",
|
|
726
|
+
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
|
727
|
+
"affectsGlobalScope": false
|
|
728
|
+
},
|
|
729
729
|
"../src/_constants/dynamobe-global.settings.ts": {
|
|
730
730
|
"version": "ea6010956d456967d35cab493a66311cb13dbe6c2bdaf378e0a5ffbfb607028e",
|
|
731
731
|
"signature": "8328adb036d2f0f26eed2bcdd9cf68609bec79b851dbc283f35ab2d6d2bedf79",
|
|
732
732
|
"affectsGlobalScope": false
|
|
733
733
|
},
|
|
734
|
+
"../src/_enum/index.ts": {
|
|
735
|
+
"version": "83b74371fa4b37214cf0eea15499b28ca705d11ea04f3c2c5da7a740532049b9",
|
|
736
|
+
"signature": "3ca581463ce1012e2f05c173853f17232609861504900a958a0e009a259b60bc",
|
|
737
|
+
"affectsGlobalScope": false
|
|
738
|
+
},
|
|
739
|
+
"../src/_models/index.ts": {
|
|
740
|
+
"version": "30fbb1a957fe2b56d7efe5bd2db8166e9bb43be071e6279659071fd6bb118c92",
|
|
741
|
+
"signature": "720e2caffa0ae409f41c14c75e2a0f05d6be05b4b632a77677d7c90a770de749",
|
|
742
|
+
"affectsGlobalScope": false
|
|
743
|
+
},
|
|
744
|
+
"../src/_modules/index.ts": {
|
|
745
|
+
"version": "c74d7e2eb3cf2970ca03e67ebd66dd18c46c120c856cad08adc2ad7b79c3b3e3",
|
|
746
|
+
"signature": "65da78fcaf7af3a9156f97526a6dc3f2690f28be8c6807dc618069e13e9e784c",
|
|
747
|
+
"affectsGlobalScope": false
|
|
748
|
+
},
|
|
749
|
+
"../src/_services/index.ts": {
|
|
750
|
+
"version": "d3011d93a6be3dad855482b3dd50847d9aeb6e317eee64cdeb733eeb9fbfe9d6",
|
|
751
|
+
"signature": "89b0b7d5a7677378e2e619b643cbab9af3d24739cfd10fbfcda2f2a2de8f00fd",
|
|
752
|
+
"affectsGlobalScope": false
|
|
753
|
+
},
|
|
734
754
|
"../node_modules/@types/jsonwebtoken/index.d.ts": {
|
|
735
755
|
"version": "e5dd317ef2c7a2882b152337b03d592fafa8351b40351849a16a908b198bd3b5",
|
|
736
756
|
"signature": "e5dd317ef2c7a2882b152337b03d592fafa8351b40351849a16a908b198bd3b5",
|
|
@@ -1167,6 +1187,15 @@
|
|
|
1167
1187
|
"../src/_enum/dynamobe-route-security.enum.ts",
|
|
1168
1188
|
"../src/_models/dynamobe-global-settings.ts"
|
|
1169
1189
|
],
|
|
1190
|
+
"../src/_enum/index.ts": [
|
|
1191
|
+
"../src/_enum/data-model-types.enum.ts",
|
|
1192
|
+
"../src/_enum/dynamobe-data-service-function.enum.ts",
|
|
1193
|
+
"../src/_enum/dynamobe-route-security.enum.ts",
|
|
1194
|
+
"../src/_enum/http/http-call-type.enum.ts",
|
|
1195
|
+
"../src/_enum/http/http-response-type.enum.ts",
|
|
1196
|
+
"../src/_enum/log-style.enum.ts",
|
|
1197
|
+
"../src/_enum/predefined-data-types.enum.ts"
|
|
1198
|
+
],
|
|
1170
1199
|
"../src/_models/dynamobe-api-call-params.ts": [
|
|
1171
1200
|
"../src/_enum/http/http-call-type.enum.ts",
|
|
1172
1201
|
"../src/_enum/http/http-response-type.enum.ts"
|
|
@@ -1204,6 +1233,28 @@
|
|
|
1204
1233
|
"../src/_models/fullstack-models/control-models/usage-data.ts",
|
|
1205
1234
|
"../src/_models/fullstack-models/data-models/metadata.ts"
|
|
1206
1235
|
],
|
|
1236
|
+
"../src/_models/index.ts": [
|
|
1237
|
+
"../src/_models/dynamobe-api-call-params.ts",
|
|
1238
|
+
"../src/_models/dynamobe-app-params.ts",
|
|
1239
|
+
"../src/_models/dynamobe-data-model-params.ts",
|
|
1240
|
+
"../src/_models/dynamobe-endpoint-control.ts",
|
|
1241
|
+
"../src/_models/dynamobe-global-settings.ts",
|
|
1242
|
+
"../src/_models/fullstack-models/control-models/daily-usage-data.ts",
|
|
1243
|
+
"../src/_models/fullstack-models/control-models/dynamobe-data-property-params.ts",
|
|
1244
|
+
"../src/_models/fullstack-models/control-models/dynamobe-error.ts",
|
|
1245
|
+
"../src/_models/fullstack-models/control-models/geo-ip-location.ts",
|
|
1246
|
+
"../src/_models/fullstack-models/control-models/usage-action.ts",
|
|
1247
|
+
"../src/_models/fullstack-models/control-models/usage-data.ts",
|
|
1248
|
+
"../src/_models/fullstack-models/data-models/custom-data.ts",
|
|
1249
|
+
"../src/_models/fullstack-models/data-models/metadata.ts",
|
|
1250
|
+
"../src/_models/fullstack-models/data-models/usage-session.ts"
|
|
1251
|
+
],
|
|
1252
|
+
"../src/_modules/index.ts": [
|
|
1253
|
+
"../src/_modules/test-route/custom-data.service.ts",
|
|
1254
|
+
"../src/_modules/test-route/test-controller.ts",
|
|
1255
|
+
"../src/_modules/usage-route/usage-controller.ts",
|
|
1256
|
+
"../src/_modules/usage-route/usage.service.ts"
|
|
1257
|
+
],
|
|
1207
1258
|
"../src/_modules/test-route/custom-data.service.ts": [
|
|
1208
1259
|
"../src/_models/fullstack-models/data-models/custom-data.ts",
|
|
1209
1260
|
"../src/_services/dynamobe-data.service.ts",
|
|
@@ -1324,7 +1375,23 @@
|
|
|
1324
1375
|
"../src/_models/fullstack-models/control-models/dynamobe-error.ts",
|
|
1325
1376
|
"../src/_models/fullstack-models/control-models/geo-ip-location.ts"
|
|
1326
1377
|
],
|
|
1327
|
-
"../src/index.ts": [
|
|
1378
|
+
"../src/_services/index.ts": [
|
|
1379
|
+
"../src/_services/dynamobe-api.service.ts",
|
|
1380
|
+
"../src/_services/dynamobe-app.ts",
|
|
1381
|
+
"../src/_services/dynamobe-auth.service.ts",
|
|
1382
|
+
"../src/_services/dynamobe-controller.service.ts",
|
|
1383
|
+
"../src/_services/dynamobe-data.service.ts",
|
|
1384
|
+
"../src/_services/dynamobe-db-service-collection.service.ts",
|
|
1385
|
+
"../src/_services/dynamobe-db.service.ts",
|
|
1386
|
+
"../src/_services/dynamobe-email-service-collection.service.ts",
|
|
1387
|
+
"../src/_services/dynamobe-email.service.ts",
|
|
1388
|
+
"../src/_services/dynamobe-global.service.ts",
|
|
1389
|
+
"../src/_services/dynamobe-routing-module.service.ts",
|
|
1390
|
+
"../src/_services/dynamobe-server.ts",
|
|
1391
|
+
"../src/_services/dynamobe-shared.service.ts",
|
|
1392
|
+
"../src/_services/dynamobe-singleton.service.ts"
|
|
1393
|
+
],
|
|
1394
|
+
"../src/index-old.ts": [
|
|
1328
1395
|
"../src/_enum/data-model-types.enum.ts",
|
|
1329
1396
|
"../src/_enum/dynamobe-data-service-function.enum.ts",
|
|
1330
1397
|
"../src/_enum/dynamobe-route-security.enum.ts",
|
|
@@ -1772,6 +1839,15 @@
|
|
|
1772
1839
|
"../src/_constants/dynamobe-global.settings.ts": [
|
|
1773
1840
|
"../src/_models/dynamobe-global-settings.ts"
|
|
1774
1841
|
],
|
|
1842
|
+
"../src/_enum/index.ts": [
|
|
1843
|
+
"../src/_enum/data-model-types.enum.ts",
|
|
1844
|
+
"../src/_enum/dynamobe-data-service-function.enum.ts",
|
|
1845
|
+
"../src/_enum/dynamobe-route-security.enum.ts",
|
|
1846
|
+
"../src/_enum/http/http-call-type.enum.ts",
|
|
1847
|
+
"../src/_enum/http/http-response-type.enum.ts",
|
|
1848
|
+
"../src/_enum/log-style.enum.ts",
|
|
1849
|
+
"../src/_enum/predefined-data-types.enum.ts"
|
|
1850
|
+
],
|
|
1775
1851
|
"../src/_models/dynamobe-api-call-params.ts": [
|
|
1776
1852
|
"../src/_enum/http/http-call-type.enum.ts",
|
|
1777
1853
|
"../src/_enum/http/http-response-type.enum.ts"
|
|
@@ -1804,6 +1880,28 @@
|
|
|
1804
1880
|
"../src/_models/fullstack-models/control-models/usage-data.ts",
|
|
1805
1881
|
"../src/_models/fullstack-models/data-models/metadata.ts"
|
|
1806
1882
|
],
|
|
1883
|
+
"../src/_models/index.ts": [
|
|
1884
|
+
"../src/_models/dynamobe-api-call-params.ts",
|
|
1885
|
+
"../src/_models/dynamobe-app-params.ts",
|
|
1886
|
+
"../src/_models/dynamobe-data-model-params.ts",
|
|
1887
|
+
"../src/_models/dynamobe-endpoint-control.ts",
|
|
1888
|
+
"../src/_models/dynamobe-global-settings.ts",
|
|
1889
|
+
"../src/_models/fullstack-models/control-models/daily-usage-data.ts",
|
|
1890
|
+
"../src/_models/fullstack-models/control-models/dynamobe-data-property-params.ts",
|
|
1891
|
+
"../src/_models/fullstack-models/control-models/dynamobe-error.ts",
|
|
1892
|
+
"../src/_models/fullstack-models/control-models/geo-ip-location.ts",
|
|
1893
|
+
"../src/_models/fullstack-models/control-models/usage-action.ts",
|
|
1894
|
+
"../src/_models/fullstack-models/control-models/usage-data.ts",
|
|
1895
|
+
"../src/_models/fullstack-models/data-models/custom-data.ts",
|
|
1896
|
+
"../src/_models/fullstack-models/data-models/metadata.ts",
|
|
1897
|
+
"../src/_models/fullstack-models/data-models/usage-session.ts"
|
|
1898
|
+
],
|
|
1899
|
+
"../src/_modules/index.ts": [
|
|
1900
|
+
"../src/_modules/test-route/custom-data.service.ts",
|
|
1901
|
+
"../src/_modules/test-route/test-controller.ts",
|
|
1902
|
+
"../src/_modules/usage-route/usage-controller.ts",
|
|
1903
|
+
"../src/_modules/usage-route/usage.service.ts"
|
|
1904
|
+
],
|
|
1807
1905
|
"../src/_modules/test-route/custom-data.service.ts": [
|
|
1808
1906
|
"../src/_models/fullstack-models/data-models/custom-data.ts",
|
|
1809
1907
|
"../src/_services/dynamobe-data.service.ts"
|
|
@@ -1882,7 +1980,23 @@
|
|
|
1882
1980
|
"../src/_enum/log-style.enum.ts",
|
|
1883
1981
|
"../src/_models/fullstack-models/control-models/geo-ip-location.ts"
|
|
1884
1982
|
],
|
|
1885
|
-
"../src/index.ts": [
|
|
1983
|
+
"../src/_services/index.ts": [
|
|
1984
|
+
"../src/_services/dynamobe-api.service.ts",
|
|
1985
|
+
"../src/_services/dynamobe-app.ts",
|
|
1986
|
+
"../src/_services/dynamobe-auth.service.ts",
|
|
1987
|
+
"../src/_services/dynamobe-controller.service.ts",
|
|
1988
|
+
"../src/_services/dynamobe-data.service.ts",
|
|
1989
|
+
"../src/_services/dynamobe-db-service-collection.service.ts",
|
|
1990
|
+
"../src/_services/dynamobe-db.service.ts",
|
|
1991
|
+
"../src/_services/dynamobe-email-service-collection.service.ts",
|
|
1992
|
+
"../src/_services/dynamobe-email.service.ts",
|
|
1993
|
+
"../src/_services/dynamobe-global.service.ts",
|
|
1994
|
+
"../src/_services/dynamobe-routing-module.service.ts",
|
|
1995
|
+
"../src/_services/dynamobe-server.ts",
|
|
1996
|
+
"../src/_services/dynamobe-shared.service.ts",
|
|
1997
|
+
"../src/_services/dynamobe-singleton.service.ts"
|
|
1998
|
+
],
|
|
1999
|
+
"../src/index-old.ts": [
|
|
1886
2000
|
"../src/_enum/data-model-types.enum.ts",
|
|
1887
2001
|
"../src/_enum/dynamobe-data-service-function.enum.ts",
|
|
1888
2002
|
"../src/_enum/dynamobe-route-security.enum.ts",
|
|
@@ -2038,6 +2152,7 @@
|
|
|
2038
2152
|
"../src/_enum/dynamobe-route-security.enum.ts",
|
|
2039
2153
|
"../src/_enum/http/http-call-type.enum.ts",
|
|
2040
2154
|
"../src/_enum/http/http-response-type.enum.ts",
|
|
2155
|
+
"../src/_enum/index.ts",
|
|
2041
2156
|
"../src/_enum/log-style.enum.ts",
|
|
2042
2157
|
"../src/_enum/predefined-data-types.enum.ts",
|
|
2043
2158
|
"../src/_models/dynamobe-api-call-params.ts",
|
|
@@ -2054,6 +2169,8 @@
|
|
|
2054
2169
|
"../src/_models/fullstack-models/data-models/custom-data.ts",
|
|
2055
2170
|
"../src/_models/fullstack-models/data-models/metadata.ts",
|
|
2056
2171
|
"../src/_models/fullstack-models/data-models/usage-session.ts",
|
|
2172
|
+
"../src/_models/index.ts",
|
|
2173
|
+
"../src/_modules/index.ts",
|
|
2057
2174
|
"../src/_modules/test-route/custom-data.service.ts",
|
|
2058
2175
|
"../src/_modules/test-route/test-controller.ts",
|
|
2059
2176
|
"../src/_modules/usage-route/usage-controller.ts",
|
|
@@ -2072,7 +2189,8 @@
|
|
|
2072
2189
|
"../src/_services/dynamobe-server.ts",
|
|
2073
2190
|
"../src/_services/dynamobe-shared.service.ts",
|
|
2074
2191
|
"../src/_services/dynamobe-singleton.service.ts",
|
|
2075
|
-
"../src/index
|
|
2192
|
+
"../src/_services/index.ts",
|
|
2193
|
+
"../src/index-old.ts",
|
|
2076
2194
|
"../src/index.ts"
|
|
2077
2195
|
]
|
|
2078
2196
|
},
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@futdevpro/nts-dynamo",
|
|
3
|
-
"version": "01.02
|
|
3
|
+
"version": "01.03.02",
|
|
4
4
|
"description": "Dynamic NodeTS (NodeJS-Typescript), MongoDB Backend System Framework by Future Development Ltd.",
|
|
5
|
-
|
|
5
|
+
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./lib/**/index.js"
|
|
8
|
+
},
|
|
6
9
|
"repository": {
|
|
7
10
|
"type": "git",
|
|
8
11
|
"url": "git+https://gitlab.com/futdevpro/dynamo-be.git"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
|
|
2
|
+
// ENUMS
|
|
3
|
+
export * from './data-model-types.enum';
|
|
4
|
+
export * from './dynamobe-data-service-function.enum';
|
|
5
|
+
export * from './dynamobe-route-security.enum';
|
|
6
|
+
export * from './log-style.enum';
|
|
7
|
+
export * from './predefined-data-types.enum';
|
|
8
|
+
// HTTP ENUMS
|
|
9
|
+
export * from './http/http-call-type.enum';
|
|
10
|
+
export * from './http/http-response-type.enum';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
// MODULES
|
|
3
|
+
export * from './dynamobe-api-call-params';
|
|
4
|
+
export * from './dynamobe-app-params';
|
|
5
|
+
export * from './dynamobe-data-model-params';
|
|
6
|
+
export * from './dynamobe-endpoint-control';
|
|
7
|
+
export * from './dynamobe-global-settings';
|
|
8
|
+
// FULLSTACK - CONTROL MODELS
|
|
9
|
+
export * from './fullstack-models/control-models/daily-usage-data';
|
|
10
|
+
export * from './fullstack-models/control-models/dynamobe-data-property-params';
|
|
11
|
+
export * from './fullstack-models/control-models/dynamobe-error';
|
|
12
|
+
export * from './fullstack-models/control-models/geo-ip-location';
|
|
13
|
+
export * from './fullstack-models/control-models/usage-action';
|
|
14
|
+
export * from './fullstack-models/control-models/usage-data';
|
|
15
|
+
// FULLSTACK - DATA MODELS
|
|
16
|
+
export * from './fullstack-models/data-models/custom-data';
|
|
17
|
+
export * from './fullstack-models/data-models/metadata';
|
|
18
|
+
export * from './fullstack-models/data-models/usage-session';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
// SERVICES
|
|
3
|
+
export * from './dynamobe-api.service';
|
|
4
|
+
export * from './dynamobe-app';
|
|
5
|
+
export * from './dynamobe-auth.service';
|
|
6
|
+
export * from './dynamobe-controller.service';
|
|
7
|
+
export * from './dynamobe-data.service';
|
|
8
|
+
export * from './dynamobe-db-service-collection.service';
|
|
9
|
+
export * from './dynamobe-db.service';
|
|
10
|
+
export * from './dynamobe-email-service-collection.service';
|
|
11
|
+
export * from './dynamobe-email.service';
|
|
12
|
+
export * from './dynamobe-global.service';
|
|
13
|
+
export * from './dynamobe-routing-module.service';
|
|
14
|
+
export * from './dynamobe-server';
|
|
15
|
+
export * from './dynamobe-shared.service';
|
|
16
|
+
export * from './dynamobe-singleton.service';
|
package/src/index-old.ts
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
// ENUMS
|
|
5
|
+
export * from './_enum/data-model-types.enum';
|
|
6
|
+
export * from './_enum/dynamobe-data-service-function.enum';
|
|
7
|
+
export * from './_enum/dynamobe-route-security.enum';
|
|
8
|
+
export * from './_enum/log-style.enum';
|
|
9
|
+
export * from './_enum/predefined-data-types.enum';
|
|
10
|
+
// HTTP ENUMS
|
|
11
|
+
export * from './_enum/http/http-call-type.enum';
|
|
12
|
+
export * from './_enum/http/http-response-type.enum';
|
|
13
|
+
|
|
14
|
+
// MODULES
|
|
15
|
+
export * from './_models/dynamobe-api-call-params';
|
|
16
|
+
export * from './_models/dynamobe-app-params';
|
|
17
|
+
export * from './_models/dynamobe-data-model-params';
|
|
18
|
+
export * from './_models/dynamobe-endpoint-control';
|
|
19
|
+
export * from './_models/dynamobe-global-settings';
|
|
20
|
+
// FULLSTACK - CONTROL MODELS
|
|
21
|
+
export * from './_models/fullstack-models/control-models/daily-usage-data';
|
|
22
|
+
export * from './_models/fullstack-models/control-models/dynamobe-data-property-params';
|
|
23
|
+
export * from './_models/fullstack-models/control-models/dynamobe-error';
|
|
24
|
+
export * from './_models/fullstack-models/control-models/geo-ip-location';
|
|
25
|
+
export * from './_models/fullstack-models/control-models/usage-action';
|
|
26
|
+
export * from './_models/fullstack-models/control-models/usage-data';
|
|
27
|
+
// FULLSTACK - DATA MODELS
|
|
28
|
+
export * from './_models/fullstack-models/data-models/custom-data';
|
|
29
|
+
export * from './_models/fullstack-models/data-models/metadata';
|
|
30
|
+
export * from './_models/fullstack-models/data-models/usage-session';
|
|
31
|
+
|
|
32
|
+
// MODULES
|
|
33
|
+
export * from './_modules/test-route/test-controller';
|
|
34
|
+
export * from './_modules/test-route/custom-data.service';
|
|
35
|
+
export * from './_modules/usage-route/usage-controller';
|
|
36
|
+
export * from './_modules/usage-route/usage.service';
|
|
37
|
+
|
|
38
|
+
// SERVICES
|
|
39
|
+
export * from './_services/dynamobe-api.service';
|
|
40
|
+
export * from './_services/dynamobe-app';
|
|
41
|
+
export * from './_services/dynamobe-auth.service';
|
|
42
|
+
export * from './_services/dynamobe-controller.service';
|
|
43
|
+
export * from './_services/dynamobe-data.service';
|
|
44
|
+
export * from './_services/dynamobe-db-service-collection.service';
|
|
45
|
+
export * from './_services/dynamobe-db.service';
|
|
46
|
+
export * from './_services/dynamobe-email-service-collection.service';
|
|
47
|
+
export * from './_services/dynamobe-email.service';
|
|
48
|
+
export * from './_services/dynamobe-global.service';
|
|
49
|
+
export * from './_services/dynamobe-routing-module.service';
|
|
50
|
+
export * from './_services/dynamobe-server';
|
|
51
|
+
export * from './_services/dynamobe-shared.service';
|
|
52
|
+
export * from './_services/dynamobe-singleton.service';
|
package/src/index.ts
CHANGED
|
@@ -1,40 +1,42 @@
|
|
|
1
1
|
|
|
2
2
|
// ENUMS
|
|
3
|
-
export * from './_enum/
|
|
3
|
+
/* export * from './_enum/index'; */
|
|
4
|
+
|
|
5
|
+
/* export * from './_enum/data-model-types.enum';
|
|
4
6
|
export * from './_enum/dynamobe-data-service-function.enum';
|
|
5
7
|
export * from './_enum/dynamobe-route-security.enum';
|
|
6
8
|
export * from './_enum/log-style.enum';
|
|
7
9
|
export * from './_enum/predefined-data-types.enum';
|
|
8
10
|
// HTTP ENUMS
|
|
9
11
|
export * from './_enum/http/http-call-type.enum';
|
|
10
|
-
export * from './_enum/http/http-response-type.enum';
|
|
12
|
+
export * from './_enum/http/http-response-type.enum'; */
|
|
11
13
|
|
|
12
14
|
// MODULES
|
|
13
|
-
export * from './_models/dynamobe-api-call-params';
|
|
15
|
+
/* export * from './_models/dynamobe-api-call-params';
|
|
14
16
|
export * from './_models/dynamobe-app-params';
|
|
15
17
|
export * from './_models/dynamobe-data-model-params';
|
|
16
18
|
export * from './_models/dynamobe-endpoint-control';
|
|
17
|
-
export * from './_models/dynamobe-global-settings';
|
|
19
|
+
export * from './_models/dynamobe-global-settings'; */
|
|
18
20
|
// FULLSTACK - CONTROL MODELS
|
|
19
|
-
export * from './_models/fullstack-models/control-models/daily-usage-data';
|
|
21
|
+
/* export * from './_models/fullstack-models/control-models/daily-usage-data';
|
|
20
22
|
export * from './_models/fullstack-models/control-models/dynamobe-data-property-params';
|
|
21
23
|
export * from './_models/fullstack-models/control-models/dynamobe-error';
|
|
22
24
|
export * from './_models/fullstack-models/control-models/geo-ip-location';
|
|
23
25
|
export * from './_models/fullstack-models/control-models/usage-action';
|
|
24
|
-
export * from './_models/fullstack-models/control-models/usage-data';
|
|
26
|
+
export * from './_models/fullstack-models/control-models/usage-data'; */
|
|
25
27
|
// FULLSTACK - DATA MODELS
|
|
26
|
-
export * from './_models/fullstack-models/data-models/custom-data';
|
|
28
|
+
/* export * from './_models/fullstack-models/data-models/custom-data';
|
|
27
29
|
export * from './_models/fullstack-models/data-models/metadata';
|
|
28
|
-
export * from './_models/fullstack-models/data-models/usage-session';
|
|
30
|
+
export * from './_models/fullstack-models/data-models/usage-session'; */
|
|
29
31
|
|
|
30
32
|
// MODULES
|
|
31
|
-
export * from './_modules/test-route/test-controller';
|
|
33
|
+
/* export * from './_modules/test-route/test-controller';
|
|
32
34
|
export * from './_modules/test-route/custom-data.service';
|
|
33
35
|
export * from './_modules/usage-route/usage-controller';
|
|
34
|
-
export * from './_modules/usage-route/usage.service';
|
|
36
|
+
export * from './_modules/usage-route/usage.service'; */
|
|
35
37
|
|
|
36
38
|
// SERVICES
|
|
37
|
-
export * from './_services/dynamobe-api.service';
|
|
39
|
+
/* export * from './_services/dynamobe-api.service';
|
|
38
40
|
export * from './_services/dynamobe-app';
|
|
39
41
|
export * from './_services/dynamobe-auth.service';
|
|
40
42
|
export * from './_services/dynamobe-controller.service';
|
|
@@ -47,4 +49,4 @@ export * from './_services/dynamobe-global.service';
|
|
|
47
49
|
export * from './_services/dynamobe-routing-module.service';
|
|
48
50
|
export * from './_services/dynamobe-server';
|
|
49
51
|
export * from './_services/dynamobe-shared.service';
|
|
50
|
-
export * from './_services/dynamobe-singleton.service';
|
|
52
|
+
export * from './_services/dynamobe-singleton.service'; */
|
package/src/index-newo.ts
DELETED
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
// ENUMS
|
|
3
|
-
import { DataModelType } from './_enum/data-model-types.enum';
|
|
4
|
-
import { DynamoBEDSF } from './_enum/dynamobe-data-service-function.enum';
|
|
5
|
-
import { DynamoBERouteSecurity } from './_enum/dynamobe-route-security.enum';
|
|
6
|
-
import { LogStyle } from './_enum/log-style.enum';
|
|
7
|
-
import { PredefinedDataTypes } from './_enum/predefined-data-types.enum';
|
|
8
|
-
// HTTP ENUMS
|
|
9
|
-
import { HttpCallType } from './_enum/http/http-call-type.enum';
|
|
10
|
-
import { HttpResponseType } from './_enum/http/http-response-type.enum';
|
|
11
|
-
|
|
12
|
-
// MODELS
|
|
13
|
-
import { DynamoBEApiCallParams } from './_models/dynamobe-api-call-params';
|
|
14
|
-
import { DynamoBEAppParams } from './_models/dynamobe-app-params';
|
|
15
|
-
import { DynamoBEDataModelParams } from './_models/dynamobe-data-model-params';
|
|
16
|
-
import { DynamoBEEndpointParams } from './_models/dynamobe-endpoint-control';
|
|
17
|
-
import { DynamoBEGlobalSettings } from './_models/dynamobe-global-settings';
|
|
18
|
-
// FULLSTACK - CONTROL MODELS
|
|
19
|
-
import { DailyUsageData } from './_models/fullstack-models/control-models/daily-usage-data';
|
|
20
|
-
import { DynamoBEDataPropertyParams } from './_models/fullstack-models/control-models/dynamobe-data-property-params';
|
|
21
|
-
import { DynamoBEError } from './_models/fullstack-models/control-models/dynamobe-error';
|
|
22
|
-
import { GeoIpLocation } from './_models/fullstack-models/control-models/geo-ip-location';
|
|
23
|
-
import { DynamoUsageAction } from './_models/fullstack-models/control-models/usage-action';
|
|
24
|
-
import { DynamoUsageData } from './_models/fullstack-models/control-models/usage-data';
|
|
25
|
-
// FULLSTACK - DATA MODELS
|
|
26
|
-
import { Metadata } from './_models/fullstack-models/data-models/metadata';
|
|
27
|
-
import { CustomData, customDataModelParams } from './_models/fullstack-models/data-models/custom-data';
|
|
28
|
-
import { DynamoUsageSession, usageSessionModelParams } from './_models/fullstack-models/data-models/usage-session';
|
|
29
|
-
|
|
30
|
-
// MODULES
|
|
31
|
-
import { TestController } from './_modules/test-route/test-controller';
|
|
32
|
-
import { CustomDataService } from './_modules/test-route/custom-data.service';
|
|
33
|
-
import { UsageController } from './_modules/usage-route/usage-controller';
|
|
34
|
-
import { UsageService } from './_modules/usage-route/usage.service';
|
|
35
|
-
|
|
36
|
-
// SERVICES
|
|
37
|
-
import { DynamoBEApiService } from './_services/dynamobe-api.service';
|
|
38
|
-
import { DynamoBEApp } from './_services/dynamobe-app';
|
|
39
|
-
import { DynamoBEAuthService } from './_services/dynamobe-auth.service';
|
|
40
|
-
import { DynamoBEController } from './_services/dynamobe-controller.service';
|
|
41
|
-
import { DynamoBEDataService } from './_services/dynamobe-data.service';
|
|
42
|
-
import { DynamoBEDBServiceCollection } from './_services/dynamobe-db-service-collection.service';
|
|
43
|
-
import { DynamoBEDBService } from './_services/dynamobe-db.service';
|
|
44
|
-
import { DynamoBEEmailServiceCollection } from './_services/dynamobe-email-service-collection.service';
|
|
45
|
-
import { DynamoBEEmailService } from './_services/dynamobe-email.service';
|
|
46
|
-
import { DBE_Global_S } from './_services/dynamobe-global.service';
|
|
47
|
-
import { DynamoBERountingModule } from './_services/dynamobe-routing-module.service';
|
|
48
|
-
import { DynamoBEServer } from './_services/dynamobe-server';
|
|
49
|
-
import { DBE_Shared } from './_services/dynamobe-shared.service';
|
|
50
|
-
import { DynamoBESingletonService } from './_services/dynamobe-singleton.service';
|
|
51
|
-
|
|
52
|
-
module.exports = {
|
|
53
|
-
// ENUMS
|
|
54
|
-
DataModelType, DynamoBEDSF, DynamoBERouteSecurity, LogStyle, PredefinedDataTypes,
|
|
55
|
-
HttpCallType, HttpResponseType,
|
|
56
|
-
|
|
57
|
-
// MODELS
|
|
58
|
-
DynamoBEApiCallParams, DynamoBEAppParams, DynamoBEDataModelParams, DynamoBEEndpointParams, DynamoBEGlobalSettings,
|
|
59
|
-
DailyUsageData, DynamoBEDataPropertyParams, DynamoBEError, GeoIpLocation, DynamoUsageAction, DynamoUsageData,
|
|
60
|
-
Metadata, CustomData, customDataModelParams, DynamoUsageSession, usageSessionModelParams,
|
|
61
|
-
|
|
62
|
-
// MODULES
|
|
63
|
-
TestController, CustomDataService, UsageController, UsageService,
|
|
64
|
-
|
|
65
|
-
// SERVICES
|
|
66
|
-
DynamoBEApiService, DynamoBEApp, DynamoBEAuthService, DynamoBEController, DynamoBEDataService, DynamoBEDBServiceCollection,
|
|
67
|
-
DynamoBEDBService, DynamoBEEmailServiceCollection, DynamoBEEmailService, DBE_Global_S, DynamoBERountingModule, DynamoBEServer,
|
|
68
|
-
DBE_Shared, DynamoBESingletonService
|
|
69
|
-
};
|
|
70
|
-
|
|
71
|
-
*/
|