/** * A request containing multiple rule/flow executions to be run in parallel. */ export type ParallelSolveRequest = Record; export declare namespace ParallelSolveRequest { interface Value { /** Slug of the rule to execute */ $rule?: string | undefined; /** Slug of the flow to execute */ $flow?: string | undefined; /** Accepts any additional properties */ [key: string]: any; } }