n8n-nodes-gohighlevel
Version:
n8n node for GoHighLevel API v2
19 lines (16 loc) • 396 B
text/typescript
import { IDataObject } from 'n8n-workflow';
export interface ICustomField extends IDataObject {
id?: string;
name: string;
dataType: 'TEXT' | 'NUMBER' | 'DATE' | 'BOOLEAN' | 'SELECT';
model: 'contact' | 'opportunity';
options?: string[];
placeholder?: string;
defaultValue?: any;
}
export type CustomFieldOperation =
| 'create'
| 'update'
| 'delete'
| 'get'
| 'getAll';