@sqb/nestjs 4.0.15 → 4.1.0
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/dist/sqb-core.module.js +3 -3
- package/dist/sqb.utils.d.ts +1 -1
- package/dist/sqb.utils.js +1 -1
- package/package.json +6 -6
package/dist/sqb-core.module.js
CHANGED
|
@@ -4,13 +4,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4
4
|
exports.SqbCoreModule = void 0;
|
|
5
5
|
const tslib_1 = require("tslib");
|
|
6
6
|
const crypto = tslib_1.__importStar(require("crypto"));
|
|
7
|
-
const common_1 = require("@nestjs/common");
|
|
8
|
-
const core_1 = require("@nestjs/core");
|
|
9
7
|
const rxjs_1 = require("rxjs");
|
|
10
8
|
const rxjs = tslib_1.__importStar(require("rxjs"));
|
|
9
|
+
const common_1 = require("@nestjs/common");
|
|
10
|
+
const core_1 = require("@nestjs/core");
|
|
11
11
|
const connect_1 = require("@sqb/connect");
|
|
12
|
-
const sqb_utils_1 = require("./sqb.utils");
|
|
13
12
|
const sqb_constants_1 = require("./sqb.constants");
|
|
13
|
+
const sqb_utils_1 = require("./sqb.utils");
|
|
14
14
|
let SqbCoreModule = SqbCoreModule_1 = class SqbCoreModule {
|
|
15
15
|
constructor(options, moduleRef) {
|
|
16
16
|
this.options = options;
|
package/dist/sqb.utils.d.ts
CHANGED
package/dist/sqb.utils.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.handleRetry = exports.getSQBToken = void 0;
|
|
4
|
-
const common_1 = require("@nestjs/common");
|
|
5
4
|
const operators_1 = require("rxjs/operators");
|
|
5
|
+
const common_1 = require("@nestjs/common");
|
|
6
6
|
const connect_1 = require("@sqb/connect");
|
|
7
7
|
const logger = new common_1.Logger('SqbModule');
|
|
8
8
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sqb/nestjs",
|
|
3
3
|
"description": "Nestjs module for data connection using SQB",
|
|
4
|
-
"version": "4.0
|
|
4
|
+
"version": "4.1.0",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Eray Hanoglu <e.hanoglu@panates.com>"
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"supertest": "^6.2.2"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@sqb/connect": "^4.
|
|
37
|
-
"@sqb/builder": "^4.
|
|
36
|
+
"@sqb/connect": "^4.x.x",
|
|
37
|
+
"@sqb/builder": "^4.x.x",
|
|
38
38
|
"@nestjs/common": ">=7.4.0",
|
|
39
39
|
"@nestjs/core": ">=7.4.0",
|
|
40
40
|
"rxjs": ">=6.6.0"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"main": "dist/index.js",
|
|
43
43
|
"types": "dist/index.d.ts",
|
|
44
44
|
"engines": {
|
|
45
|
-
"node": ">=
|
|
45
|
+
"node": ">= 16.0"
|
|
46
46
|
},
|
|
47
47
|
"directories": {
|
|
48
48
|
"lib": "dist",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"dist/"
|
|
55
55
|
],
|
|
56
56
|
"scripts": {
|
|
57
|
-
"build": "tsc -b tsconfig
|
|
57
|
+
"build": "tsc -b tsconfig-build.json",
|
|
58
58
|
"prebuild": "npm run lint && npm run clean:dist",
|
|
59
59
|
"postbuild": "copyfiles package.json README.md LICENSE ../../build/nestjs",
|
|
60
60
|
"clean": "ts-cleanup -s src --all & ts-cleanup -s test",
|
|
@@ -63,4 +63,4 @@
|
|
|
63
63
|
"lint": "eslint src/** --no-error-on-unmatched-pattern",
|
|
64
64
|
"test": "TS_NODE_PROJECT='./test/tsconfig.json' mocha -r ts-node/register -r tsconfig-paths/register --reporter spec test/**/*.spec.ts"
|
|
65
65
|
}
|
|
66
|
-
}
|
|
66
|
+
}
|