We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d921bb commit bb2901cCopy full SHA for bb2901c
packages/workflow-executor/src/types/step-execution-data.ts
@@ -47,6 +47,7 @@ export interface UpdateRecordStepExecutionData extends BaseStepExecutionData {
47
executionParams?: { fieldDisplayName: string; value: string };
48
/** User confirmed → values returned by updateRecord. User rejected → skipped. */
49
executionResult?: { updatedValues: Record<string, unknown> } | { skipped: true };
50
+ /** AI-selected field and value awaiting user confirmation. Used in the confirmation flow only. */
51
pendingUpdate?: {
52
fieldDisplayName: string;
53
value: string;
0 commit comments