fix(editor): Remove @n8n/permissions from n8n-workflow (no-changelog) (#10399)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-08-14 12:52:19 +02:00
committed by GitHub
parent c0811b218a
commit c4fcbe40c5
7 changed files with 13 additions and 16 deletions

View File

@@ -385,9 +385,11 @@ export interface IExecutionResponse extends IExecutionBase {
executedNode?: string;
}
export type ExecutionSummaryWithScopes = ExecutionSummary & { scopes: Scope[] };
export interface IExecutionsListResponse {
count: number;
results: ExecutionSummary[];
results: ExecutionSummaryWithScopes[];
estimated: boolean;
}