/** * Slack Node - Version 1 * Discriminator: resource=message, operation=getPermalink */ interface Credentials { slackApi: CredentialReference; slackOAuth2Api: CredentialReference; } /** Get Permanent Link of a message */ export type SlackV1MessageGetPermalinkParams = { resource: 'message'; operation: 'getPermalink'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Channel containing the message. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ channelId?: string | Expression; /** * Timestamp of the message to get permanent link */ timestamp?: string | Expression | PlaceholderValue; }; export type SlackV1MessageGetPermalinkNode = { type: 'n8n-nodes-base.slack'; version: 1; credentials?: Credentials; config: NodeConfig; };