/** * Slack Node - Version 1 * Discriminator: resource=channel, operation=member */ interface Credentials { slackApi: CredentialReference; slackOAuth2Api: CredentialReference; } /** List members of a conversation */ export type SlackV1ChannelMemberParams = { resource: 'channel'; operation: 'member'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ channelId?: string | 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; /** * Whether to resolve the data automatically. By default the response only contain the ID to resource. * @default false */ resolveData?: boolean | Expression; }; export type SlackV1ChannelMemberNode = { type: 'n8n-nodes-base.slack'; version: 1; credentials?: Credentials; config: NodeConfig; };