/** * Zendesk Node - Version 1 * Discriminator: resource=user, operation=search */ interface Credentials { zendeskApi: CredentialReference; zendeskOAuth2Api: CredentialReference; } /** Manage users */ export type ZendeskV1UserSearchParams = { resource: 'user'; operation: 'search'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * 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 100 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Query */ query?: string | Expression | PlaceholderValue; /** External ID */ external_id?: string | Expression | PlaceholderValue; }; }; export type ZendeskV1UserSearchOutput = { active?: boolean; created_at?: string; iana_time_zone?: string; id?: number; locale?: string; locale_id?: number; moderator?: boolean; name?: string; only_private_comments?: boolean; report_csv?: boolean; restricted_agent?: boolean; role?: string; shared?: boolean; shared_agent?: boolean; suspended?: boolean; tags?: Array; time_zone?: string; two_factor_auth_enabled?: null; updated_at?: string; url?: string; verified?: boolean; }; export type ZendeskV1UserSearchNode = { type: 'n8n-nodes-base.zendesk'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };