@nest-boot/mikro-orm 7.0.0-beta.9 → 7.0.1
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/index.d.ts +4 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/interfaces/id-entity.interface.d.ts +3 -0
- package/dist/interfaces/id-entity.interface.js +3 -0
- package/dist/interfaces/id-entity.interface.js.map +1 -0
- package/dist/interfaces/index.d.ts +1 -0
- package/dist/interfaces/index.js +1 -0
- package/dist/interfaces/index.js.map +1 -1
- package/dist/mikro-orm.module-definition.d.ts +2 -1
- package/dist/mikro-orm.module-definition.js +3 -2
- package/dist/mikro-orm.module-definition.js.map +1 -1
- package/dist/mikro-orm.module.d.ts +4 -8
- package/dist/mikro-orm.module.js +14 -19
- package/dist/mikro-orm.module.js.map +1 -1
- package/dist/property-types/index.d.ts +1 -0
- package/dist/property-types/index.js +18 -0
- package/dist/property-types/index.js.map +1 -0
- package/dist/property-types/vector.type.d.ts +7 -0
- package/dist/property-types/vector.type.js +15 -0
- package/dist/property-types/vector.type.js.map +1 -0
- package/dist/services/entity.service.d.ts +3 -5
- package/dist/services/entity.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/chunk-by-id-options.type.d.ts +2 -0
- package/dist/types/chunk-by-id-options.type.js +3 -0
- package/dist/types/chunk-by-id-options.type.js.map +1 -0
- package/dist/types/id-or-entity.type.d.ts +2 -0
- package/dist/types/id-or-entity.type.js +3 -0
- package/dist/types/id-or-entity.type.js.map +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.js +19 -0
- package/dist/types/index.js.map +1 -0
- package/package.json +8 -7
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { FindOptions, PopulatePath } from "@mikro-orm/core";
|
|
2
|
+
export type ChunkByIdOptions<Entity, Hint extends string = never, Fields extends string = PopulatePath.ALL, Excludes extends string = never> = Omit<FindOptions<Entity, Hint, Fields, Excludes>, "offset" | "orderBy">;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chunk-by-id-options.type.js","sourceRoot":"","sources":["../../src/types/chunk-by-id-options.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"id-or-entity.type.js","sourceRoot":"","sources":["../../src/types/id-or-entity.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./chunk-by-id-options.type"), exports);
|
|
18
|
+
__exportStar(require("./id-or-entity.type"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,sDAAoC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nest-boot/mikro-orm",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "d4rkcr0w <me@d4rkcr0w.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"lodash": "^4.17.21",
|
|
18
|
+
"pgvector": "^0.2.1",
|
|
18
19
|
"prettier": "^3.6.2",
|
|
19
20
|
"sql-formatter": "^15.6.9"
|
|
20
21
|
},
|
|
@@ -24,9 +25,10 @@
|
|
|
24
25
|
"@mikro-orm/nestjs": "^6.1.1",
|
|
25
26
|
"@mikro-orm/postgresql": "^6.5.8",
|
|
26
27
|
"@mikro-orm/reflection": "^6.5.8",
|
|
27
|
-
"@nest-boot/eslint-config": "^7.0.0
|
|
28
|
-
"@nest-boot/eslint-plugin": "^7.0.0
|
|
29
|
-
"@nest-boot/request-context": "^7.0.0
|
|
28
|
+
"@nest-boot/eslint-config": "^7.0.0",
|
|
29
|
+
"@nest-boot/eslint-plugin": "^7.0.0",
|
|
30
|
+
"@nest-boot/request-context": "^7.0.0",
|
|
31
|
+
"@nest-boot/tsconfig": "^7.0.0",
|
|
30
32
|
"@nestjs/common": "^11.1.6",
|
|
31
33
|
"@nestjs/core": "^11.1.6",
|
|
32
34
|
"@nestjs/testing": "^11.1.6",
|
|
@@ -40,8 +42,7 @@
|
|
|
40
42
|
"reflect-metadata": "^0.2.2",
|
|
41
43
|
"rxjs": "^7.8.2",
|
|
42
44
|
"ts-jest": "^29.4.4",
|
|
43
|
-
"typescript": "^5.9.
|
|
44
|
-
"@nest-boot/tsconfig": "7.0.0-beta.0"
|
|
45
|
+
"typescript": "^5.9.3"
|
|
45
46
|
},
|
|
46
47
|
"peerDependencies": {
|
|
47
48
|
"@mikro-orm/core": "^6.0.0",
|
|
@@ -51,7 +52,7 @@
|
|
|
51
52
|
"@nestjs/core": "^11.0.0",
|
|
52
53
|
"reflect-metadata": "^0.2.2",
|
|
53
54
|
"rxjs": "^7.0.0",
|
|
54
|
-
"@nest-boot/request-context": "^7.0.
|
|
55
|
+
"@nest-boot/request-context": "^7.0.07.0.0"
|
|
55
56
|
},
|
|
56
57
|
"publishConfig": {
|
|
57
58
|
"access": "public"
|