/** * Slack Node - Version 1 * Discriminator: resource=channel, operation=join */ interface Credentials { slackApi: CredentialReference; slackOAuth2Api: CredentialReference; } /** Joins an existing conversation */ export type SlackV1ChannelJoinParams = { resource: 'channel'; operation: 'join'; 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; }; export type SlackV1ChannelJoinNode = { type: 'n8n-nodes-base.slack'; version: 1; credentials?: Credentials; config: NodeConfig; };