mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(core): Mark finished as deprecated (#11682)
This commit is contained in:
@@ -2080,6 +2080,9 @@ export type INodeTypeData = LoadedData<INodeType | IVersionedNodeType>;
|
||||
|
||||
export interface IRun {
|
||||
data: IRunExecutionData;
|
||||
/**
|
||||
* @deprecated Use status instead
|
||||
*/
|
||||
finished?: boolean;
|
||||
mode: WorkflowExecuteMode;
|
||||
waitTill?: Date | null;
|
||||
@@ -2552,6 +2555,9 @@ export type AnnotationVote = 'up' | 'down';
|
||||
|
||||
export interface ExecutionSummary {
|
||||
id: string;
|
||||
/**
|
||||
* @deprecated Use status instead
|
||||
*/
|
||||
finished?: boolean;
|
||||
mode: WorkflowExecuteMode;
|
||||
retryOf?: string | null;
|
||||
@@ -2701,6 +2707,9 @@ export interface ExecutionOptions {
|
||||
}
|
||||
|
||||
export interface ExecutionFilters {
|
||||
/**
|
||||
* @deprecated Use status instead
|
||||
*/
|
||||
finished?: boolean;
|
||||
mode?: WorkflowExecuteMode[];
|
||||
retryOf?: string;
|
||||
|
||||
Reference in New Issue
Block a user