mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor(core): Break up more code in the execution engine, and add tests (no-changelog) (#12320)
This commit is contained in:
committed by
GitHub
parent
2f21404987
commit
a8dd35b0f0
@@ -1992,7 +1992,28 @@ export interface IWorkflowDataProxyData {
|
||||
constructor: any;
|
||||
}
|
||||
|
||||
export type IWorkflowDataProxyAdditionalKeys = IDataObject;
|
||||
export type IWorkflowDataProxyAdditionalKeys = IDataObject & {
|
||||
$execution?: {
|
||||
id: string;
|
||||
mode: 'test' | 'production';
|
||||
resumeUrl: string;
|
||||
resumeFormUrl: string;
|
||||
customData?: {
|
||||
set(key: string, value: string): void;
|
||||
setAll(obj: Record<string, string>): void;
|
||||
get(key: string): string;
|
||||
getAll(): Record<string, string>;
|
||||
};
|
||||
};
|
||||
$vars?: IDataObject;
|
||||
$secrets?: IDataObject;
|
||||
$pageCount?: number;
|
||||
|
||||
/** @deprecated */
|
||||
$executionId?: string;
|
||||
/** @deprecated */
|
||||
$resumeWebhookUrl?: string;
|
||||
};
|
||||
|
||||
export interface IWorkflowMetadata {
|
||||
id?: string;
|
||||
|
||||
Reference in New Issue
Block a user