mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(core): Execution curation (#10342)
Co-authored-by: oleg <me@olegivaniv.com>
This commit is contained in:
@@ -2435,6 +2435,8 @@ export interface NodeExecutionWithMetadata extends INodeExecutionData {
|
||||
pairedItem: IPairedItemData | IPairedItemData[];
|
||||
}
|
||||
|
||||
export type AnnotationVote = 'up' | 'down';
|
||||
|
||||
export interface ExecutionSummary {
|
||||
id: string;
|
||||
finished?: boolean;
|
||||
@@ -2452,6 +2454,13 @@ export interface ExecutionSummary {
|
||||
nodeExecutionStatus?: {
|
||||
[key: string]: IExecutionSummaryNodeExecutionResult;
|
||||
};
|
||||
annotation?: {
|
||||
vote: AnnotationVote;
|
||||
tags: Array<{
|
||||
id: string;
|
||||
name: string;
|
||||
}>;
|
||||
};
|
||||
}
|
||||
|
||||
export interface IExecutionSummaryNodeExecutionResult {
|
||||
|
||||
Reference in New Issue
Block a user