@onlineapps/conn-orch-orchestrator 1.0.60 → 1.0.62

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.60",
3
+ "version": "1.0.62",
4
4
  "description": "Workflow orchestration connector for OA Drive - handles message routing and workflow execution",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -23,7 +23,7 @@
23
23
  "@onlineapps/conn-base-monitoring": "^1.0.0",
24
24
  "@onlineapps/conn-infra-mq": "^1.1.0",
25
25
  "@onlineapps/conn-orch-registry": "^1.1.4",
26
- "@onlineapps/conn-orch-cookbook": "2.0.4",
26
+ "@onlineapps/conn-orch-cookbook": "2.0.11",
27
27
  "@onlineapps/conn-orch-api-mapper": "^1.0.0"
28
28
  },
29
29
  "devDependencies": {
@@ -479,7 +479,7 @@ class WorkflowOrchestrator {
479
479
  // Resolve variable references in step.input (e.g. ${steps[0].output.message})
480
480
  console.log(`[WorkflowOrchestrator] [RESOLVE] Step ${stepId} input BEFORE:`, JSON.stringify(step.input));
481
481
  console.log(`[WorkflowOrchestrator] [RESOLVE] Context keys:`, Object.keys(context || {}));
482
- console.log(`[WorkflowOrchestrator] [RESOLVE] Context.input_file:`, context?.input_file);
482
+ console.log(`[WorkflowOrchestrator] [RESOLVE] Context.api_input:`, JSON.stringify(context?.api_input));
483
483
  console.log(`[WorkflowOrchestrator] [RESOLVE] Context.steps:`, JSON.stringify(context.steps?.map(s => ({ id: this._getStepId(s), output: s.output }))));
484
484
 
485
485
  const resolvedInput = this._resolveInputReferences(step.input, context);