n8n
Version:
n8n Workflow Automation Tool
14 lines (13 loc) • 923 B
TypeScript
import type { SharedWorkflow, User } from '@n8n/db';
import { WorkflowEntity } from '@n8n/db';
import { type Scope } from '@n8n/permissions';
export declare function getSharedWorkflowIds(user: User, scopes: Scope[], projectId?: string): Promise<string[]>;
export declare function getSharedWorkflow(user: User, workflowId?: string): Promise<SharedWorkflow | null>;
export declare function getWorkflowById(id: string): Promise<WorkflowEntity | null>;
export declare function createWorkflow(user: User, body: WorkflowEntity & {
projectId?: string;
}): Promise<WorkflowEntity>;
export declare function deleteWorkflow(workflow: WorkflowEntity): Promise<WorkflowEntity>;
export declare function parseTagNames(tags: string): string[];
export declare function getWorkflowTags(workflowId: string): Promise<import("@n8n/db").TagEntity[]>;
export declare function updateTags(workflowId: string, newTags: string[]): Promise<void>;