mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(editor): Logs overview panel (#14045)
This commit is contained in:
@@ -445,9 +445,9 @@ export interface IExecutionBase {
|
||||
status: ExecutionStatus;
|
||||
retryOf?: string;
|
||||
retrySuccessId?: string;
|
||||
startedAt: Date;
|
||||
createdAt: Date;
|
||||
stoppedAt?: Date;
|
||||
startedAt: Date | string;
|
||||
createdAt: Date | string;
|
||||
stoppedAt?: Date | string;
|
||||
workflowId?: string; // To be able to filter executions easily //
|
||||
}
|
||||
|
||||
@@ -1583,3 +1583,10 @@ export type MainPanelDimensions = Record<
|
||||
relativeWidth: number;
|
||||
}
|
||||
>;
|
||||
|
||||
export interface LlmTokenUsageData {
|
||||
completionTokens: number;
|
||||
promptTokens: number;
|
||||
totalTokens: number;
|
||||
isEstimate: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user