n8n
Version:
n8n Workflow Automation Tool
13 lines (12 loc) • 330 B
TypeScript
import type { StatusResourceOwner } from './resource-owner';
export interface SourceControlWorkflowVersionId {
id: string;
versionId: string;
filename: string;
name?: string;
localId?: string;
remoteId?: string;
parentFolderId: string | null;
updatedAt?: string;
owner?: StatusResourceOwner;
}