@sisques-labs/nestjs-kit 0.6.0 → 0.7.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.
Files changed (21) hide show
  1. package/dist/index.d.ts +3 -0
  2. package/dist/index.js +3 -0
  3. package/dist/index.js.map +1 -1
  4. package/dist/shared/domain/events/base-event.interface.d.ts +3 -0
  5. package/dist/shared/domain/events/base-event.interface.js +3 -0
  6. package/dist/shared/domain/events/base-event.interface.js.map +1 -1
  7. package/dist/shared/domain/interfaces/event-metadata.interface.d.ts +3 -0
  8. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry-options.interface.d.ts +8 -0
  9. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry-options.interface.js +3 -0
  10. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry-options.interface.js.map +1 -0
  11. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.constants.d.ts +1 -0
  12. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.constants.js +5 -0
  13. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.constants.js.map +1 -0
  14. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.module.d.ts +6 -0
  15. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.module.js +47 -0
  16. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.module.js.map +1 -0
  17. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.service.d.ts +30 -0
  18. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.service.js +89 -0
  19. package/dist/shared/infrastructure/kafka/schema-registry/schema-registry.service.js.map +1 -0
  20. package/dist/tsconfig.build.tsbuildinfo +1 -1
  21. package/package.json +11 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisques-labs/nestjs-kit",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
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,
@@ -28,6 +28,8 @@
28
28
  ],
29
29
  "peerDependencies": {
30
30
  "@apollo/server": ">=4.0.0",
31
+ "@kafkajs/confluent-schema-registry": ">=3.0.0",
32
+ "@nestjs/axios": ">=3.0.0",
31
33
  "@nestjs/apollo": ">=12.0.0",
32
34
  "@nestjs/common": ">=10.0.0",
33
35
  "@nestjs/config": ">=3.0.0",
@@ -50,6 +52,12 @@
50
52
  "@apollo/server": {
51
53
  "optional": true
52
54
  },
55
+ "@kafkajs/confluent-schema-registry": {
56
+ "optional": true
57
+ },
58
+ "@nestjs/axios": {
59
+ "optional": true
60
+ },
53
61
  "@nestjs/apollo": {
54
62
  "optional": true
55
63
  },
@@ -95,6 +103,8 @@
95
103
  },
96
104
  "devDependencies": {
97
105
  "@apollo/server": "^4.0.0",
106
+ "@kafkajs/confluent-schema-registry": "^3.9.0",
107
+ "@nestjs/axios": "^3.1.3",
98
108
  "@nestjs/apollo": "^12.0.0",
99
109
  "@nestjs/cli": "^10.0.0",
100
110
  "@nestjs/common": "^10.0.0",