@sisques-labs/nestjs-kit 0.6.0 → 0.7.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 +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/shared/domain/events/base-event.interface.d.ts +3 -0
- package/dist/shared/domain/events/base-event.interface.js +3 -0
- package/dist/shared/domain/events/base-event.interface.js.map +1 -1
- package/dist/shared/domain/interfaces/event-metadata.interface.d.ts +3 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry-options.interface.d.ts +8 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry-options.interface.js +3 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry-options.interface.js.map +1 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.constants.d.ts +1 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.constants.js +5 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.constants.js.map +1 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.module.d.ts +6 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.module.js +47 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.module.js.map +1 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.service.d.ts +30 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.service.js +89 -0
- package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.service.js.map +1 -0
- package/dist/shared/transport/graphql/dtos/requests/base-find-by-criteria/base-find-by-criteria.input.js +6 -2
- package/dist/shared/transport/graphql/dtos/requests/base-find-by-criteria/base-find-by-criteria.input.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +12 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sisques-labs/nestjs-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "NestJS Kit with DDD/CQRS base classes, value objects, repository abstractions, and GraphQL utilities",
|
|
5
5
|
"author": "JSisques",
|
|
6
6
|
"private": false,
|
|
@@ -32,19 +32,14 @@
|
|
|
32
32
|
"@nestjs/common": ">=10.0.0",
|
|
33
33
|
"@nestjs/config": ">=3.0.0",
|
|
34
34
|
"@nestjs/core": ">=10.0.0",
|
|
35
|
-
"@nestjs/cqrs": ">=10.0.0",
|
|
36
35
|
"@nestjs/graphql": ">=12.0.0",
|
|
37
36
|
"@nestjs/typeorm": ">=10.0.0",
|
|
38
|
-
"class-transformer": ">=0.5.0",
|
|
39
|
-
"class-validator": ">=0.14.0",
|
|
40
37
|
"graphql": ">=16.0.0",
|
|
41
38
|
"graphql-query-complexity": ">=0.12.0",
|
|
42
39
|
"mongodb": ">=6.0.0",
|
|
43
40
|
"reflect-metadata": ">=0.2.0",
|
|
44
41
|
"rxjs": ">=7.0.0",
|
|
45
|
-
"typeorm": ">=0.3.0"
|
|
46
|
-
"winston": ">=3.0.0",
|
|
47
|
-
"winston-daily-rotate-file": ">=5.0.0"
|
|
42
|
+
"typeorm": ">=0.3.0"
|
|
48
43
|
},
|
|
49
44
|
"peerDependenciesMeta": {
|
|
50
45
|
"@apollo/server": {
|
|
@@ -56,9 +51,6 @@
|
|
|
56
51
|
"@nestjs/config": {
|
|
57
52
|
"optional": true
|
|
58
53
|
},
|
|
59
|
-
"@nestjs/cqrs": {
|
|
60
|
-
"optional": true
|
|
61
|
-
},
|
|
62
54
|
"@nestjs/graphql": {
|
|
63
55
|
"optional": true
|
|
64
56
|
},
|
|
@@ -68,12 +60,6 @@
|
|
|
68
60
|
"graphql": {
|
|
69
61
|
"optional": true
|
|
70
62
|
},
|
|
71
|
-
"class-transformer": {
|
|
72
|
-
"optional": true
|
|
73
|
-
},
|
|
74
|
-
"class-validator": {
|
|
75
|
-
"optional": true
|
|
76
|
-
},
|
|
77
63
|
"graphql-query-complexity": {
|
|
78
64
|
"optional": true
|
|
79
65
|
},
|
|
@@ -82,19 +68,22 @@
|
|
|
82
68
|
},
|
|
83
69
|
"typeorm": {
|
|
84
70
|
"optional": true
|
|
85
|
-
},
|
|
86
|
-
"winston": {
|
|
87
|
-
"optional": true
|
|
88
|
-
},
|
|
89
|
-
"winston-daily-rotate-file": {
|
|
90
|
-
"optional": true
|
|
91
71
|
}
|
|
92
72
|
},
|
|
93
73
|
"dependencies": {
|
|
94
|
-
"dotenv": "^16.0.0"
|
|
74
|
+
"dotenv": "^16.0.0",
|
|
75
|
+
"@kafkajs/confluent-schema-registry": "^3.9.0",
|
|
76
|
+
"@nestjs/axios": "^3.1.3",
|
|
77
|
+
"@nestjs/cqrs": "^10.0.0",
|
|
78
|
+
"class-transformer": "^0.5.1",
|
|
79
|
+
"class-validator": "^0.15.1",
|
|
80
|
+
"winston": "^3.19.0",
|
|
81
|
+
"winston-daily-rotate-file": "^5.0.0"
|
|
95
82
|
},
|
|
96
83
|
"devDependencies": {
|
|
97
84
|
"@apollo/server": "^4.0.0",
|
|
85
|
+
"@kafkajs/confluent-schema-registry": "^3.9.0",
|
|
86
|
+
"@nestjs/axios": "^3.1.3",
|
|
98
87
|
"@nestjs/apollo": "^12.0.0",
|
|
99
88
|
"@nestjs/cli": "^10.0.0",
|
|
100
89
|
"@nestjs/common": "^10.0.0",
|