UNPKG

n8n-nodes-octavehq

Version:

Octave is the AI-powered messaging brain for B2B go-to-market teams, helping articulate product value, synthesize customer interaction data, and deploy consistent, effective messaging across all channels.

15 lines (14 loc) 591 B
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { getAgents, getPersonas, getPlaybooks, getProducts } from './methods/loadOptions'; export declare class Octave implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getAgents: typeof getAgents; getPlaybooks: typeof getPlaybooks; getPersonas: typeof getPersonas; getProducts: typeof getProducts; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }