mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor(editor): Fix remaining FE type check errors (no-changelog) (#9607)
Co-authored-by: Alex Grozav <alex@grozav.com>
This commit is contained in:
@@ -134,16 +134,6 @@ export type EndpointStyle = {
|
||||
hoverMessage?: string;
|
||||
};
|
||||
|
||||
export type EndpointMeta = {
|
||||
__meta?: {
|
||||
nodeName: string;
|
||||
nodeId: string;
|
||||
index: number;
|
||||
totalEndpoints: number;
|
||||
endpointLabelLength: number;
|
||||
};
|
||||
};
|
||||
|
||||
export interface IUpdateInformation<T extends NodeParameterValueType = NodeParameterValueType> {
|
||||
name: string;
|
||||
key?: string;
|
||||
@@ -410,19 +400,6 @@ export interface IExecutionResponse extends IExecutionBase {
|
||||
executedNode?: string;
|
||||
}
|
||||
|
||||
export interface IExecutionShortResponse {
|
||||
id: string;
|
||||
workflowData: {
|
||||
id: string;
|
||||
name: string;
|
||||
};
|
||||
mode: WorkflowExecuteMode;
|
||||
finished: boolean;
|
||||
startedAt: Date;
|
||||
stoppedAt: Date;
|
||||
executionTime?: number;
|
||||
}
|
||||
|
||||
export interface IExecutionsListResponse {
|
||||
count: number;
|
||||
results: ExecutionSummary[];
|
||||
@@ -432,6 +409,7 @@ export interface IExecutionsListResponse {
|
||||
export interface IExecutionsCurrentSummaryExtended {
|
||||
id: string;
|
||||
finished?: boolean;
|
||||
status: ExecutionStatus;
|
||||
mode: WorkflowExecuteMode;
|
||||
retryOf?: string | null;
|
||||
retrySuccessId?: string | null;
|
||||
|
||||
Reference in New Issue
Block a user