@futdevpro/nts-dynamo 1.2.96 → 1.2.97
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/HOWTO.md +6 -0
- package/lib/_services/dynamobe-app.d.ts +1 -1
- package/lib/_services/dynamobe-app.js +2 -2
- package/lib/_services/dynamobe-server.js +0 -2
- package/lib/tsconfig.tsbuildinfo +3 -3
- package/package.json +1 -1
- package/src/_services/dynamobe-app.ts +2 -1
- package/src/_services/dynamobe-server.ts +1 -4
package/HOWTO.md
ADDED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DynamoBEAppParams } from '../_models/dynamobe-app-params';
|
|
2
|
-
import
|
|
2
|
+
import Mongoose = require("mongoose");
|
|
3
3
|
import { DynamoBESingletonService } from './dynamobe-singleton.service';
|
|
4
4
|
export declare abstract class DynamoBEApp extends DynamoBESingletonService {
|
|
5
5
|
protected params: DynamoBEAppParams;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DynamoBEApp = void 0;
|
|
4
|
-
|
|
5
|
-
const Mongoose =
|
|
4
|
+
/* import * as Mongoose from 'mongoose'; */
|
|
5
|
+
const Mongoose = require("mongoose");
|
|
6
6
|
const dynamobe_shared_service_1 = require("./dynamobe-shared.service");
|
|
7
7
|
const dynamobe_singleton_service_1 = require("./dynamobe-singleton.service");
|
|
8
8
|
class DynamoBEApp extends dynamobe_singleton_service_1.DynamoBESingletonService {
|
|
@@ -3,9 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.DynamoBEServer = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
/* import * as Express from 'express'; */
|
|
6
|
-
/* import { e as Express } from 'express'; */
|
|
7
6
|
const Express = require("express");
|
|
8
|
-
/* import express from 'express'; */
|
|
9
7
|
const Https = tslib_1.__importStar(require("https"));
|
|
10
8
|
const FileSystem = tslib_1.__importStar(require("fs"));
|
|
11
9
|
const BodyParser = tslib_1.__importStar(require("body-parser"));
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -707,8 +707,8 @@
|
|
|
707
707
|
"affectsGlobalScope": false
|
|
708
708
|
},
|
|
709
709
|
"../src/_services/dynamobe-app.ts": {
|
|
710
|
-
"version": "
|
|
711
|
-
"signature": "
|
|
710
|
+
"version": "c5fba2838aa3174a0874c6afff9257789935eb3f637d6b9ab92e1f859e4a0b24",
|
|
711
|
+
"signature": "6f4626a10f8f578d40e8ac3978e0dd6451d95a458a50450ebc779ad27135d260",
|
|
712
712
|
"affectsGlobalScope": false
|
|
713
713
|
},
|
|
714
714
|
"../src/_services/dynamobe-routing-module.service.ts": {
|
|
@@ -717,7 +717,7 @@
|
|
|
717
717
|
"affectsGlobalScope": false
|
|
718
718
|
},
|
|
719
719
|
"../src/_services/dynamobe-server.ts": {
|
|
720
|
-
"version": "
|
|
720
|
+
"version": "66f7da17f77f027c5c3cbb3cf04391c367763d35f3c455b9f33a1f416c28a9b3",
|
|
721
721
|
"signature": "290228c0bdc04382a15abc038c5a8b52d0de791d40006271a51f0eb5559bd239",
|
|
722
722
|
"affectsGlobalScope": false
|
|
723
723
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { DynamoBEAppParams } from '../_models/dynamobe-app-params';
|
|
3
|
-
import * as Mongoose from 'mongoose';
|
|
3
|
+
/* import * as Mongoose from 'mongoose'; */
|
|
4
|
+
import Mongoose = require("mongoose");
|
|
4
5
|
import { DBE_Shared } from './dynamobe-shared.service';
|
|
5
6
|
import { DynamoBESingletonService } from './dynamobe-singleton.service';
|
|
6
7
|
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
3
|
/* import * as Express from 'express'; */
|
|
4
|
-
|
|
5
|
-
import Express = require("express")
|
|
6
|
-
|
|
7
|
-
/* import express from 'express'; */
|
|
4
|
+
import Express = require("express");
|
|
8
5
|
import * as Https from 'https';
|
|
9
6
|
import * as FileSystem from 'fs';
|
|
10
7
|
import * as BodyParser from 'body-parser';
|