xcally-nest-library 0.0.30 → 0.0.31
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,16 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "xcally-nest-library",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.31",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|
7
7
|
"author": "",
|
8
8
|
"license": "UNLICENSED",
|
9
9
|
"dependencies": {
|
10
|
-
"@nestjs/common": "^11.0.7",
|
11
10
|
"@nestjs/config": "^4.0.0",
|
12
|
-
"@nestjs/core": "^11.0.7",
|
13
|
-
"@nestjs/microservices": "^11.0.9",
|
14
11
|
"class-transformer": "^0.5.1",
|
15
12
|
"nestjs-grpc-exceptions": "^0.2.2",
|
16
13
|
"nestjs-paginate": "^11.0.0",
|
@@ -21,6 +18,9 @@
|
|
21
18
|
},
|
22
19
|
"devDependencies": {
|
23
20
|
"@nestjs/cli": "^11.0.2",
|
21
|
+
"@nestjs/common": "^11.0.9",
|
22
|
+
"@nestjs/core": "^11.0.9",
|
23
|
+
"@nestjs/microservices": "^11.0.9",
|
24
24
|
"@nestjs/schematics": "^11.0.0",
|
25
25
|
"@typescript-eslint/eslint-plugin": "^8.23.0",
|
26
26
|
"@typescript-eslint/parser": "^8.23.0",
|
@@ -33,6 +33,11 @@
|
|
33
33
|
"tsc-watch": "^6.2.1",
|
34
34
|
"typescript": "^5.7.3"
|
35
35
|
},
|
36
|
+
"peerDependencies": {
|
37
|
+
"@nestjs/common": "^11.0.7",
|
38
|
+
"@nestjs/core": "^11.0.7",
|
39
|
+
"@nestjs/microservices": "^11.0.9"
|
40
|
+
},
|
36
41
|
"scripts": {
|
37
42
|
"bump:patch": "npm version patch -m \"Bump version to %s\"",
|
38
43
|
"build": "tsc",
|
@@ -1,5 +1,12 @@
|
|
1
|
-
import {
|
2
|
-
|
1
|
+
import {
|
2
|
+
CreateDateColumn,
|
3
|
+
EntitySubscriberInterface,
|
4
|
+
EventSubscriber,
|
5
|
+
InsertEvent,
|
6
|
+
PrimaryGeneratedColumn,
|
7
|
+
UpdateDateColumn,
|
8
|
+
UpdateEvent,
|
9
|
+
} from 'typeorm';
|
3
10
|
import { IBaseEntity } from './base.entity.interface';
|
4
11
|
|
5
12
|
export class BaseEntity implements IBaseEntity {
|