/** * Freshworks CRM Node - Version 1 * Discriminator: resource=task, operation=getAll */ interface Credentials { freshworksCrmApi: CredentialReference; } /** Retrieve many accounts */ export type FreshworksCrmV1TaskGetAllParams = { resource: 'task'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Include * @default owner */ include?: 'owner' | 'targetable' | 'users' | Expression; /** Status * @default open */ filter?: 'completed' | 'due_today' | 'due_tomorrow' | 'open' | 'overdue' | Expression; }; }; export type FreshworksCrmV1TaskGetAllNode = { type: 'n8n-nodes-base.freshworksCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };