UNPKG

n8n-nodes-ovh

Version:

Comprehensive n8n nodes for OVH API integration - Developed by Ascenzia, experts in AI agent creation

15 lines (14 loc) 805 B
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow'; export declare class OvhDomain implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getDomains(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getZones(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getRecordIds(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getNameservers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContacts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }