@goplasmatic/dataflow-ui 2.0.18 → 2.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/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -567,7 +567,7 @@ export declare interface Task {
|
|
|
567
567
|
name: string;
|
|
568
568
|
/** Optional description */
|
|
569
569
|
description?: string;
|
|
570
|
-
/** JSONLogic condition (evaluated against metadata
|
|
570
|
+
/** JSONLogic condition (evaluated against full context: data, metadata, temp_data) */
|
|
571
571
|
condition?: JsonLogicValue;
|
|
572
572
|
/** Function to execute */
|
|
573
573
|
function: FunctionConfig;
|
|
@@ -745,7 +745,7 @@ export declare interface Workflow {
|
|
|
745
745
|
description?: string;
|
|
746
746
|
/** Optional folder path for grouping (e.g., "orders/processing") */
|
|
747
747
|
path?: string;
|
|
748
|
-
/** JSONLogic condition (evaluated against metadata
|
|
748
|
+
/** JSONLogic condition (evaluated against full context: data, metadata, temp_data) */
|
|
749
749
|
condition?: JsonLogicValue;
|
|
750
750
|
/** Tasks in this workflow */
|
|
751
751
|
tasks: Task[];
|
package/package.json
CHANGED