UNPKG

n8n-nodes-cleverflow

Version:

n8n node to integrate with CleverFlow API for creating workflow runs and processing Tally Forms

24 lines (23 loc) 457 B
export interface IFieldValue { field: string; value: string | string[] | boolean; } export interface ITallyField { key: string; label: string; type: string; value: any; options?: ITallyOption[]; rows?: Array<{ id: string; text: string; }>; columns?: Array<{ id: string; text: string; }>; } export interface ITallyOption { id: string; text: string; }