/** * Slack Node - Version 1 * Discriminator: resource=channel, operation=unarchive */ interface Credentials { slackApi: CredentialReference; slackOAuth2Api: CredentialReference; } /** Unarchives a conversation */ export type SlackV1ChannelUnarchiveParams = { resource: 'channel'; operation: 'unarchive'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * The ID of the channel to unarchive. 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 SlackV1ChannelUnarchiveNode = { type: 'n8n-nodes-base.slack'; version: 1; credentials?: Credentials; config: NodeConfig; };