mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix: Remove node AI Transform node (no-changelog) (#10400)
This commit is contained in:
@@ -1229,25 +1229,12 @@ export interface ILoadOptions {
|
||||
};
|
||||
}
|
||||
|
||||
export type NodePropertyAction = {
|
||||
type: 'askAiCodeGeneration';
|
||||
handler?: string;
|
||||
target?: string;
|
||||
};
|
||||
|
||||
export interface INodePropertyTypeOptions {
|
||||
// Supported by: button
|
||||
buttonConfig?: {
|
||||
action?: string | NodePropertyAction;
|
||||
label?: string; // otherwise "displayName" is used
|
||||
hasInputField?: boolean;
|
||||
inputFieldMaxLength?: number; // Supported if hasInputField is true
|
||||
};
|
||||
action?: string; // Supported by: button
|
||||
containerClass?: string; // Supported by: notice
|
||||
alwaysOpenEditWindow?: boolean; // Supported by: json
|
||||
codeAutocomplete?: CodeAutocompleteTypes; // Supported by: string
|
||||
editor?: EditorType; // Supported by: string
|
||||
editorIsReadOnly?: boolean; // Supported by: string
|
||||
sqlDialect?: SQLDialect; // Supported by: sqlEditor
|
||||
loadOptionsDependsOn?: string[]; // Supported by: options
|
||||
loadOptionsMethod?: string; // Supported by: options
|
||||
@@ -1539,12 +1526,6 @@ export interface INodeType {
|
||||
resourceMapping?: {
|
||||
[functionName: string]: (this: ILoadOptionsFunctions) => Promise<ResourceMapperFields>;
|
||||
};
|
||||
actionHandler?: {
|
||||
[functionName: string]: (
|
||||
this: ILoadOptionsFunctions,
|
||||
payload: IDataObject | string | undefined,
|
||||
) => Promise<NodeParameterValueType>;
|
||||
};
|
||||
};
|
||||
webhookMethods?: {
|
||||
[name in IWebhookDescription['name']]?: {
|
||||
|
||||
Reference in New Issue
Block a user