import type { IDataObject, IExecuteFunctions } from 'n8n-workflow'; /** Einheitlicher Funktions-Typ für alle Execute-Handler. */ export type ExecuteHandler = (ctx: IExecuteFunctions, itemIndex: number) => Promise; /** Registry-Typ: resource -> operation -> handler */ export type HandlersRegistry = Record>;