/** * Zendesk Node - Version 1 * Discriminator: resource=organization, operation=count */ interface Credentials { zendeskApi: CredentialReference; zendeskOAuth2Api: CredentialReference; } /** Manage organizations */ export type ZendeskV1OrganizationCountParams = { resource: 'organization'; operation: 'count'; authentication?: 'apiToken' | 'oAuth2' | Expression; }; export type ZendeskV1OrganizationCountNode = { type: 'n8n-nodes-base.zendesk'; version: 1; credentials?: Credentials; config: NodeConfig; };