mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(editor): Fix TypeScript issues in views (no-changelog) (#9573)
This commit is contained in:
@@ -250,7 +250,7 @@ export interface IWorkflowData {
|
||||
export interface IWorkflowDataUpdate {
|
||||
id?: string;
|
||||
name?: string;
|
||||
nodes?: INode[];
|
||||
nodes?: Array<INode | IWorkflowTemplateNode>;
|
||||
connections?: IConnections;
|
||||
settings?: IWorkflowSettings;
|
||||
active?: boolean;
|
||||
@@ -363,6 +363,7 @@ export interface ICredentialsResponse extends ICredentialsEncrypted {
|
||||
homeProject?: ProjectSharingData;
|
||||
currentUserHasAccess?: boolean;
|
||||
scopes?: Scope[];
|
||||
ownedBy?: Pick<IUserResponse, 'id' | 'firstName' | 'lastName' | 'email'>;
|
||||
}
|
||||
|
||||
export interface ICredentialsBase {
|
||||
|
||||
Reference in New Issue
Block a user