n8n-nodes-smartsuite
Version:
n8n community node for SmartSuite
12 lines (11 loc) • 473 B
TypeScript
/**
* A lookup table of valid comparison operators for each SmartSuite field type,
* sourced directly from your "Field Type–Operators Across" spreadsheet.
*/
export declare const filterOptionsByFieldType: Record<string, string[]>;
/**
* Returns the list of valid filter comparison operators
* for a given SmartSuite field type.
* If the type is unknown, returns an empty array.
*/
export declare function getFilterOptionsForFieldType(fieldType: string): string[];