@forklaunch/implementation-worker-kafka 0.1.3 → 0.1.4
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/__test__/schemaEquality.test.d.ts +2 -0
- package/lib/__test__/schemaEquality.test.d.ts.map +1 -0
- package/lib/__test__/schemaEquality.test.js +16 -0
- package/lib/consumers/index.d.ts +2 -0
- package/lib/consumers/index.d.ts.map +1 -0
- package/lib/consumers/index.js +1 -0
- package/lib/consumers/kafkaWorker.consumer.d.ts +19 -0
- package/lib/consumers/kafkaWorker.consumer.d.ts.map +1 -0
- package/lib/consumers/kafkaWorker.consumer.js +149 -0
- package/lib/eject/consumers/index.ts +1 -0
- package/lib/eject/consumers/kafkaWorker.consumer.ts +182 -0
- package/lib/eject/domain/schemas/index.ts +1 -0
- package/lib/eject/domain/schemas/kafkaWorker.schema.ts +10 -0
- package/lib/eject/producers/index.ts +1 -0
- package/lib/eject/producers/kafkaWorker.producer.ts +35 -0
- package/lib/eject/types/index.ts +1 -0
- package/lib/eject/types/kafkaWorker.types.ts +8 -0
- package/lib/jest.config.d.ts +4 -0
- package/lib/jest.config.d.ts.map +1 -0
- package/lib/jest.config.js +19 -0
- package/lib/producers/index.d.ts +2 -0
- package/lib/producers/index.d.ts.map +1 -0
- package/lib/producers/index.js +1 -0
- package/lib/producers/kafkaWorker.producer.d.ts +11 -0
- package/lib/producers/kafkaWorker.producer.d.ts.map +1 -0
- package/lib/producers/kafkaWorker.producer.js +28 -0
- package/lib/schemas/index.d.ts +2 -0
- package/lib/schemas/index.d.ts.map +1 -0
- package/lib/schemas/index.js +1 -0
- package/lib/schemas/kafka.schema.d.ts +18 -0
- package/lib/schemas/kafka.schema.d.ts.map +1 -0
- package/lib/schemas/kafka.schema.js +4 -0
- package/lib/schemas/typebox/kafkaWorker.schema.d.ts +9 -0
- package/lib/schemas/typebox/kafkaWorker.schema.d.ts.map +1 -0
- package/lib/schemas/typebox/kafkaWorker.schema.js +9 -0
- package/lib/schemas/zod/kafkaWorker.schema.d.ts +9 -0
- package/lib/schemas/zod/kafkaWorker.schema.d.ts.map +1 -0
- package/lib/schemas/zod/kafkaWorker.schema.js +9 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/types/index.d.ts +2 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/index.js +1 -0
- package/lib/types/kafkaWorker.types.d.ts +9 -0
- package/lib/types/kafkaWorker.types.d.ts.map +1 -0
- package/lib/types/kafkaWorker.types.js +1 -0
- package/lib/vitest.config.d.ts +3 -0
- package/lib/vitest.config.d.ts.map +1 -0
- package/lib/vitest.config.js +7 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"kafkaWorker.types.d.ts","sourceRoot":"","sources":["../../types/kafkaWorker.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vitest.config.d.ts","sourceRoot":"","sources":["../vitest.config.ts"],"names":[],"mappings":";AAEA,wBAKG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forklaunch/implementation-worker-kafka",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Kafka implementation for forklaunch workers",
|
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@sinclair/typebox": "^0.34.33",
|
|
43
43
|
"kafkajs": "^2.2.4",
|
|
44
44
|
"zod": "^3.24.3",
|
|
45
|
-
"@forklaunch/interfaces-worker": "0.1.
|
|
45
|
+
"@forklaunch/interfaces-worker": "0.1.4"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"depcheck": "^1.4.7",
|