mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
refactor(core): Remove unused execution status warning
(no-changelog) (#9759)
This commit is contained in:
parent
f7352b6a8f
commit
d615711728
|
@ -21,7 +21,7 @@ export interface IExecutionResult {
|
||||||
workflowName: string;
|
workflowName: string;
|
||||||
executionTime: number; // Given in seconds with decimals for milliseconds
|
executionTime: number; // Given in seconds with decimals for milliseconds
|
||||||
finished: boolean;
|
finished: boolean;
|
||||||
executionStatus: ExecutionStatus;
|
executionStatus: ExecutionStatus | 'warning';
|
||||||
error?: string;
|
error?: string;
|
||||||
changes?: object;
|
changes?: object;
|
||||||
coveredNodes: {
|
coveredNodes: {
|
||||||
|
@ -36,7 +36,7 @@ interface IExecutionError {
|
||||||
|
|
||||||
export interface IWorkflowExecutionProgress {
|
export interface IWorkflowExecutionProgress {
|
||||||
workflowId: string;
|
workflowId: string;
|
||||||
status: ExecutionStatus;
|
status: ExecutionStatus | 'warning';
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface INodeSpecialCases {
|
export interface INodeSpecialCases {
|
||||||
|
|
|
@ -7,7 +7,6 @@ export const ExecutionStatusList = [
|
||||||
'success',
|
'success',
|
||||||
'unknown',
|
'unknown',
|
||||||
'waiting',
|
'waiting',
|
||||||
'warning',
|
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
export type ExecutionStatus = (typeof ExecutionStatusList)[number];
|
export type ExecutionStatus = (typeof ExecutionStatusList)[number];
|
||||||
|
|
Loading…
Reference in a new issue