n8n/packages/cli/src/interfaces.ts
Ricardo Espinoza c5ee9bad89
feat(core): Add versions support to n8n:export command (#25414)
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
Co-authored-by: Daria <daria.staferova@n8n.io>
2026-02-11 15:13:54 +00:00

227 lines
5.0 KiB
TypeScript

import type {
ICredentialsBase,
IExecutionBase,
IExecutionDb,
ITagBase,
IWorkflowDb,
} from '@n8n/db';
import type { AssignableGlobalRole } from '@n8n/permissions';
import type { Application, Response } from 'express';
import type {
ExecutionError,
ICredentialDataDecryptedObject,
ICredentialsDecrypted,
IDeferredPromise,
IExecuteResponsePromiseData,
IRun,
ITelemetryTrackProperties,
IWorkflowBase,
CredentialLoadingDetails,
WorkflowExecuteMode,
ExecutionStatus,
ExecutionSummary,
IWorkflowExecutionDataProcess,
IExecutionContext,
} from 'n8n-workflow';
import type PCancelable from 'p-cancelable';
import type { ActiveWorkflowManager } from '@/active-workflow-manager';
import type { ExternalHooks } from '@/external-hooks';
export interface ICredentialsTypeData {
[key: string]: CredentialLoadingDetails;
}
export interface ICredentialsOverwrite {
[key: string]: ICredentialDataDecryptedObject;
}
// ----------------------------------
// tags
// ----------------------------------
export interface ITagToImport extends ITagBase {
createdAt?: string;
updatedAt?: string;
}
// ----------------------------------
// workflows
// ----------------------------------
export interface IWorkflowResponse extends IWorkflowBase {
id: string;
}
export interface IWorkflowVersionMetadata {
versionMetadata?: {
name: string | null;
description: string | null;
} | null;
}
export interface IWorkflowToImport
extends Omit<
IWorkflowBase,
'staticData' | 'pinData' | 'createdAt' | 'updatedAt' | 'activeVersion'
>,
IWorkflowVersionMetadata {
owner?:
| {
type: 'personal';
personalEmail: string;
}
| {
type: 'team';
teamId: string;
teamName: string;
};
parentFolderId: string | null;
}
export type IWorkflowWithVersionMetadata = IWorkflowDb & IWorkflowVersionMetadata;
// ----------------------------------
// credentials
// ----------------------------------
export type ICredentialsDecryptedDb = ICredentialsBase & ICredentialsDecrypted;
export type ICredentialsDecryptedResponse = ICredentialsDecryptedDb;
export type SaveExecutionDataType = 'all' | 'none';
/** Payload for updating an execution. */
export type UpdateExecutionPayload = Omit<IExecutionDb, 'id' | 'createdAt' | 'storedAt'>;
// Flatted data to save memory when saving in database or transferring
// via REST API
export interface IExecutionFlatted extends IExecutionBase {
data: string;
workflowData: IWorkflowBase;
}
export interface IExecutionFlattedResponse extends IExecutionFlatted {
id: string;
retryOf?: string;
}
export interface IExecutionsListResponse {
count: number;
results: ExecutionSummary[];
estimated: boolean;
}
export interface ExecutionStopResult {
finished?: boolean;
mode: WorkflowExecuteMode;
startedAt: Date;
stoppedAt?: Date;
status: ExecutionStatus;
}
export interface IExecutionsCurrentSummary {
id: string;
retryOf?: string;
startedAt: Date;
mode: WorkflowExecuteMode;
workflowId: string;
status: ExecutionStatus;
}
export interface IExecutingWorkflowData {
executionData: IWorkflowExecutionDataProcess;
startedAt: Date;
/** This promise rejects when the execution is stopped. When the execution finishes (successfully or not), the promise resolves. */
postExecutePromise: IDeferredPromise<IRun | undefined>;
/** HTTPResponse needed for streaming responses */
httpResponse?: Response;
responsePromise?: IDeferredPromise<IExecuteResponsePromiseData>;
workflowExecution?: PCancelable<IRun>;
status: ExecutionStatus;
}
export interface IActiveDirectorySettings {
enabled: boolean;
}
export interface IPackageVersions {
cli: string;
}
export interface IWorkflowErrorData {
[key: string]: any;
execution?: {
id?: string;
url?: string;
retryOf?: string;
error: ExecutionError;
lastNodeExecuted: string;
mode: WorkflowExecuteMode;
executionContext?: IExecutionContext;
};
trigger?: {
error: ExecutionError;
mode: WorkflowExecuteMode;
};
workflow: {
id?: string;
name: string;
};
}
export interface IWorkflowStatisticsDataLoaded {
dataLoaded: boolean;
}
// ----------------------------------
// telemetry
// ----------------------------------
export interface IExecutionTrackProperties extends ITelemetryTrackProperties {
workflow_id: string;
success: boolean;
error_node_type?: string;
is_manual: boolean;
crashed?: boolean;
used_dynamic_credentials?: boolean;
}
// ----------------------------------
// license
// ----------------------------------
export interface ILicenseReadResponse {
usage: {
activeWorkflowTriggers: {
limit: number;
value: number;
warningThreshold: number;
};
workflowsHavingEvaluations: {
limit: number;
value: number;
};
};
license: {
planId: string;
planName: string;
};
}
export interface ILicensePostResponse extends ILicenseReadResponse {
managementToken: string;
}
export interface Invitation {
email: string;
role: AssignableGlobalRole;
}
export interface N8nApp {
app: Application;
restEndpoint: string;
externalHooks: ExternalHooks;
activeWorkflowManager: ActiveWorkflowManager;
}