You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Optional flag for add_workflow_group and update_workflow_group. On add: when true, existing rows whose dependencies are already filled run immediately; default false stages the group silently — call run_column when ready to fire rows in bulk, or run_row to fire all groups on a specific row. On update: toggle a group's auto-fire behavior on an existing group — false stages it (no auto-runs on dep satisfaction; only manual run_cell / run_row / run_column fires rows), true re-enables auto-fire (rows whose deps fill will be scheduled). Set true on add only if the user explicitly asked to start runs immediately.",
2798
+
"Optional flag for add_workflow_group and update_workflow_group. On add: when true, existing rows whose dependencies are already filled run immediately; default false stages the group silently — call run_column when ready to fire rows. On update: toggle a group's auto-fire behavior on an existing group — false stages it (no auto-runs on dep satisfaction; only manual run_column fires rows), true re-enables auto-fire (rows whose deps fill will be scheduled). Set true on add only if the user explicitly asked to start runs immediately.",
'Dependencies the workflow group requires before running a row. { columns?: string[] } lists input column names that must be filled; { workflowGroups?: string[] } lists other workflow group IDs whose outputs must complete first. Used by add_workflow_group and update_workflow_group.',
2825
+
"Dependencies the workflow group requires before running a row. { columns?: string[] } lists input column names that must be filled. Workflow output columns count too — depend on the column produced by an upstream group, not the group itself. The dep graph is column-induced. A group can't depend on its own output columns. Used by add_workflow_group and update_workflow_group.",
2826
2826
properties: {
2827
2827
columns: {
2828
2828
type: 'array',
2829
-
description: 'Input column names that must be filled before the group runs.',
2830
-
items: {type: 'string'},
2831
-
},
2832
-
workflowGroups: {
2833
-
type: 'array',
2834
-
description: 'Other workflow group IDs whose outputs must complete first.',
2829
+
description:
2830
+
'Input column names that must be filled before the group runs. Plain columns and upstream-group output columns are both valid here.',
"Row ID. Required for get_row, update_row, delete_row, run_cell, and for cancel_table_runs when scope:'row'.",
2963
+
"Row ID. Required for get_row, update_row, delete_row, and for cancel_table_runs when scope:'row'.",
2968
2964
},
2969
2965
rowIds: {
2970
2966
type: 'array',
2971
2967
description:
2972
-
'Array of row IDs. Used by batch_delete_rows (rows to delete), run_row (required — rows to fan out across every runnable workflow group), and run_column (optional row scope — when omitted, runs across the whole table; when provided, only these rows are candidates and the server eligibility predicate still applies).',
2968
+
'Array of row IDs. Used by batch_delete_rows (rows to delete) and run_column (optional row scope — when omitted, runs across the whole table; when provided, only these rows are candidates and the server eligibility predicate still applies).',
"Optional flag for add_workflow_group and update_workflow_group. On add: when true, existing rows whose dependencies are already filled run immediately; default false stages the group silently — call run_column when ready to fire rows in bulk, or run_row to fire all groups on a specific row. On update: toggle a group's auto-fire behavior on an existing group — false stages it (no auto-runs on dep satisfaction; only manual run_cell / run_row / run_column fires rows), true re-enables auto-fire (rows whose deps fill will be scheduled). Set true on add only if the user explicitly asked to start runs immediately.",
2600
+
"Optional flag for add_workflow_group and update_workflow_group. On add: when true, existing rows whose dependencies are already filled run immediately; default false stages the group silently — call run_column when ready to fire rows. On update: toggle a group's auto-fire behavior on an existing group — false stages it (no auto-runs on dep satisfaction; only manual run_column fires rows), true re-enables auto-fire (rows whose deps fill will be scheduled). Set true on add only if the user explicitly asked to start runs immediately.",
'Dependencies the workflow group requires before running a row. { columns?: string[] } lists input column names that must be filled; { workflowGroups?: string[] } lists other workflow group IDs whose outputs must complete first. Used by add_workflow_group and update_workflow_group.',
2628
+
"Dependencies the workflow group requires before running a row. { columns?: string[] } lists input column names that must be filled. Workflow output columns count too — depend on the column produced by an upstream group, not the group itself. The dep graph is column-induced. A group can't depend on its own output columns. Used by add_workflow_group and update_workflow_group.",
2629
2629
properties: {
2630
2630
columns: {
2631
2631
type: 'array',
2632
-
description: 'Input column names that must be filled before the group runs.',
2633
-
items: {
2634
-
type: 'string',
2635
-
},
2636
-
},
2637
-
workflowGroups: {
2638
-
type: 'array',
2639
-
description: 'Other workflow group IDs whose outputs must complete first.',
2632
+
description:
2633
+
'Input column names that must be filled before the group runs. Plain columns and upstream-group output columns are both valid here.',
"Row ID. Required for get_row, update_row, delete_row, run_cell, and for cancel_table_runs when scope:'row'.",
2793
+
"Row ID. Required for get_row, update_row, delete_row, and for cancel_table_runs when scope:'row'.",
2800
2794
},
2801
2795
rowIds: {
2802
2796
type: 'array',
2803
2797
description:
2804
-
'Array of row IDs. Used by batch_delete_rows (rows to delete), run_row (required — rows to fan out across every runnable workflow group), and run_column (optional row scope — when omitted, runs across the whole table; when provided, only these rows are candidates and the server eligibility predicate still applies).',
2798
+
'Array of row IDs. Used by batch_delete_rows (rows to delete) and run_column (optional row scope — when omitted, runs across the whole table; when provided, only these rows are candidates and the server eligibility predicate still applies).',
0 commit comments