oak-db 2.2.5 → 2.2.6
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/MySQL/store.js +1 -4
- package/package.json +3 -3
package/lib/MySQL/store.js
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MysqlStore = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
|
-
var selection_1 = require("oak-domain/lib/store/selection");
|
|
6
5
|
var CascadeStore_1 = require("oak-domain/lib/store/CascadeStore");
|
|
7
6
|
var connector_1 = require("./connector");
|
|
8
7
|
var translator_1 = require("./translator");
|
|
@@ -295,9 +294,7 @@ var MysqlStore = /** @class */ (function (_super) {
|
|
|
295
294
|
var result;
|
|
296
295
|
return tslib_1.__generator(this, function (_a) {
|
|
297
296
|
switch (_a.label) {
|
|
298
|
-
case 0:
|
|
299
|
-
(0, selection_1.reinforceSelection)(this.storageSchema, entity, selection);
|
|
300
|
-
return [4 /*yield*/, this.cascadeSelectAsync(entity, selection, context, option)];
|
|
297
|
+
case 0: return [4 /*yield*/, this.cascadeSelectAsync(entity, selection, context, option)];
|
|
301
298
|
case 1:
|
|
302
299
|
result = _a.sent();
|
|
303
300
|
return [2 /*return*/, result];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oak-db",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.6",
|
|
4
4
|
"description": "oak-db",
|
|
5
5
|
"main": "lib/index",
|
|
6
6
|
"author": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"lodash": "^4.17.21",
|
|
19
19
|
"mysql": "^2.18.1",
|
|
20
20
|
"mysql2": "^2.3.3",
|
|
21
|
-
"oak-domain": "^2.
|
|
21
|
+
"oak-domain": "^2.6.1",
|
|
22
22
|
"uuid": "^8.3.2"
|
|
23
23
|
},
|
|
24
24
|
"license": "ISC",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@types/node": "^17.0.42",
|
|
30
30
|
"@types/uuid": "^8.3.4",
|
|
31
31
|
"mocha": "^10.0.0",
|
|
32
|
-
"oak-general-business": "^2.
|
|
32
|
+
"oak-general-business": "^2.4.1",
|
|
33
33
|
"ts-node": "~10.9.1",
|
|
34
34
|
"tslib": "^2.4.0",
|
|
35
35
|
"typescript": "~4.7.4"
|