@quanticjs/workflow-quanticflow 6.1.0 → 6.1.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/README.md +1 -1
- package/dist/ServiceTaskEventConsumer.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -107,7 +107,7 @@ QuanticFlowWorkflowModule.forRoot({
|
|
|
107
107
|
callbackSecret: 'hmac-secret', // HMAC-SHA256 signature verification
|
|
108
108
|
|
|
109
109
|
// Event mode options (requires ioredis + @quanticjs/redis)
|
|
110
|
-
streamKey: '
|
|
110
|
+
streamKey: 'quantic:events:services', // Redis stream (default)
|
|
111
111
|
consumerGroup: 'my-app-tasks', // Consumer group name
|
|
112
112
|
consumerName: 'worker-1', // Consumer name (default: consumer-{pid})
|
|
113
113
|
},
|
|
@@ -19,7 +19,7 @@ const core_1 = require("@quanticjs/core");
|
|
|
19
19
|
const events_redis_1 = require("@quanticjs/events-redis");
|
|
20
20
|
const QuanticFlowClient_1 = require("./QuanticFlowClient");
|
|
21
21
|
const ServiceTaskHandlerRegistry_1 = require("./ServiceTaskHandlerRegistry");
|
|
22
|
-
const DEFAULT_STREAM_KEY = '
|
|
22
|
+
const DEFAULT_STREAM_KEY = 'quantic:events:services';
|
|
23
23
|
const DEFAULT_CONSUMER_GROUP = 'quanticflow-service-tasks';
|
|
24
24
|
let ServiceTaskEventConsumer = ServiceTaskEventConsumer_1 = class ServiceTaskEventConsumer extends events_redis_1.RedisStreamConsumer {
|
|
25
25
|
registry;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quanticjs/workflow-quanticflow",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "QuanticFlow workflow engine adapter for @quanticjs/workflow — supports callback and event-driven service task execution",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
30
30
|
"@nestjs/core": "^10.0.0 || ^11.0.0",
|
|
31
31
|
"@nestjs/cqrs": "^10.0.0 || ^11.0.0",
|
|
32
|
-
"@quanticjs/core": "^6.1.
|
|
33
|
-
"@quanticjs/events-redis": "^6.1.
|
|
32
|
+
"@quanticjs/core": "^6.1.1",
|
|
33
|
+
"@quanticjs/events-redis": "^6.1.1",
|
|
34
34
|
"ioredis": "^5.0.0",
|
|
35
35
|
"reflect-metadata": "^0.1.13 || ^0.2.0"
|
|
36
36
|
},
|