@goplasmatic/dataflow-ui 2.0.13 → 2.0.15

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/dist/index.d.ts CHANGED
@@ -348,6 +348,8 @@ export declare interface ExecutionStep {
348
348
  result: StepResult;
349
349
  /** Message snapshot after this step (only for executed steps) */
350
350
  message?: Message;
351
+ /** Context snapshots before each mapping (map tasks only, trace mode) */
352
+ mapping_contexts?: Record<string, unknown>[];
351
353
  }
352
354
 
353
355
  /**
@@ -618,6 +620,13 @@ export declare interface TreeNodeDebugState {
618
620
 
619
621
  export declare type TreeSelectionType = {
620
622
  type: 'none';
623
+ } | {
624
+ type: 'folder';
625
+ workflows: Workflow[];
626
+ name: string;
627
+ } | {
628
+ type: 'workflow';
629
+ workflow: Workflow;
621
630
  } | {
622
631
  type: 'workflow-condition';
623
632
  workflow: Workflow;