mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(core): Fix credentials lazy-loading (no-changelog) (#6615)
This commit is contained in:
committed by
GitHub
parent
d8909ab8b0
commit
07744986ea
@@ -1568,6 +1568,7 @@ export type LoadingDetails = {
|
||||
|
||||
export type CredentialLoadingDetails = LoadingDetails & {
|
||||
nodesToTestWith?: string[];
|
||||
extends?: string[];
|
||||
};
|
||||
|
||||
export type NodeLoadingDetails = LoadingDetails;
|
||||
@@ -1983,11 +1984,11 @@ export interface IExecutionsSummary {
|
||||
lastNodeExecuted?: string;
|
||||
executionError?: ExecutionError;
|
||||
nodeExecutionStatus?: {
|
||||
[key: string]: IExceutionSummaryNodeExecutionResult;
|
||||
[key: string]: IExecutionSummaryNodeExecutionResult;
|
||||
};
|
||||
}
|
||||
|
||||
export interface IExceutionSummaryNodeExecutionResult {
|
||||
export interface IExecutionSummaryNodeExecutionResult {
|
||||
executionStatus: ExecutionStatus;
|
||||
errors?: Array<{
|
||||
name?: string;
|
||||
|
||||
Reference in New Issue
Block a user