mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(editor): Execute sub-workflow UX and copy updates (no-changelog) (#12834)
This commit is contained in:
committed by
GitHub
parent
13652c5ee2
commit
de49c23971
@@ -1030,7 +1030,7 @@ export interface ILoadOptionsFunctions extends FunctionsBase {
|
||||
export type FieldValueOption = { name: string; type: FieldType | 'any' };
|
||||
|
||||
export type IWorkflowNodeContext = ExecuteFunctions.GetNodeParameterFn &
|
||||
Pick<FunctionsBase, 'getNode'>;
|
||||
Pick<FunctionsBase, 'getNode' | 'getWorkflow'>;
|
||||
|
||||
export interface ILocalLoadOptionsFunctions {
|
||||
getWorkflowNodeContext(nodeType: string): Promise<IWorkflowNodeContext | null>;
|
||||
@@ -2660,6 +2660,13 @@ export interface IExecutionSummaryNodeExecutionResult {
|
||||
|
||||
export interface ResourceMapperFields {
|
||||
fields: ResourceMapperField[];
|
||||
emptyFieldsNotice?: string;
|
||||
}
|
||||
|
||||
export interface WorkflowInputsData {
|
||||
fields: ResourceMapperField[];
|
||||
dataMode: string;
|
||||
subworkflowInfo?: { id?: string };
|
||||
}
|
||||
|
||||
export interface ResourceMapperField {
|
||||
|
||||
Reference in New Issue
Block a user