@onlineapps/conn-orch-orchestrator 1.0.75 → 1.0.76

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlineapps/conn-orch-orchestrator",
3
- "version": "1.0.75",
3
+ "version": "1.0.76",
4
4
  "description": "Workflow orchestration connector for OA Drive - handles message routing and workflow execution",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -25,7 +25,7 @@
25
25
  "@onlineapps/conn-infra-mq": "1.1.57",
26
26
  "@onlineapps/conn-orch-registry": "1.1.33",
27
27
  "@onlineapps/conn-orch-cookbook": "2.0.16",
28
- "@onlineapps/conn-orch-api-mapper": "1.0.22"
28
+ "@onlineapps/conn-orch-api-mapper": "1.0.23"
29
29
  },
30
30
  "devDependencies": {
31
31
  "jest": "^29.5.0",
@@ -427,6 +427,15 @@ class WorkflowOrchestrator {
427
427
  cookbook: finalCookbook, // UNIFIED cookbook with full state
428
428
  failed_at: new Date().toISOString()
429
429
  });
430
+
431
+ // Compatibility: also publish to workflow.dlq for DLQ dashboards/tools that only look for "*.dlq" queues.
432
+ // workflow.dlq is an infrastructure queue created by Gateway.
433
+ await this.mqClient.publish('workflow.dlq', {
434
+ workflow_id,
435
+ current_step,
436
+ cookbook: finalCookbook,
437
+ failed_at: new Date().toISOString()
438
+ });
430
439
 
431
440
  // ALSO publish to monitoring.workflow so dashboard shows the DLQ entry
432
441
  try {