@activepieces/shared
Advanced tools
Comparing version 0.10.149 to 0.10.150
{ | ||
"name": "@activepieces/shared", | ||
"version": "0.10.149", | ||
"version": "0.10.150", | ||
"type": "commonjs", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
@@ -37,4 +37,9 @@ import { ActionType } from '../../flows/actions/action'; | ||
export type StepOutput = GenericStepOutput<ActionType.LOOP_ON_ITEMS, LoopStepResult> | GenericStepOutput<ActionType.ROUTER, unknown> | GenericStepOutput<Exclude<ActionType, ActionType.LOOP_ON_ITEMS | ActionType.ROUTER> | TriggerType, unknown>; | ||
type BranchResult = { | ||
branchName: string; | ||
branchIndex: number; | ||
evaluation: boolean; | ||
}; | ||
type RouterStepResult = { | ||
branches: boolean[]; | ||
branches: BranchResult[]; | ||
}; | ||
@@ -41,0 +46,0 @@ export declare class RouterStepOutput extends GenericStepOutput<ActionType.ROUTER, RouterStepResult> { |
Sorry, the diff of this file is not supported yet
778322
11157