@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/dataflow-ui.css +2882 -98
- package/dist/datalogic_wasm-CrfXtaOs-Bn3jizlo.cjs +375 -0
- package/dist/datalogic_wasm-CrfXtaOs-CXAvQXKl.js +374 -0
- package/dist/index.cjs +28119 -11359
- package/dist/index.d.ts +9 -0
- package/dist/index.js +27625 -10865
- package/package.json +3 -3
- package/dist/datalogic_wasm-4utZNR2J-B5BvlAcC.cjs +0 -364
- package/dist/datalogic_wasm-4utZNR2J-DW6r1ZIK.js +0 -363
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;
|