UNPKG

n8n-nodes-gohighlevel

Version:
21 lines (18 loc) 373 B
import { IDataObject } from 'n8n-workflow'; export interface ICompany extends IDataObject { id?: string; name: string; website?: string; industry?: string; description?: string; customFields?: Record<string, any>; tags?: string[]; } export type CompanyOperation = | 'create' | 'update' | 'delete' | 'get' | 'getAll' | 'addTag' | 'removeTag';