UNPKG

@360build/n8n-nodes-slack-socket-mode

Version:

Slack Socket Mode Node for n8n that allows you to use +100 Slack events in your n8n instance with proxy mode

42 lines 1.59 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SlackSocketCredentialsApi = void 0; class SlackSocketCredentialsApi { constructor() { this.name = 'slackSocketCredentialsApi'; this.displayName = 'Slack Socket Mode Credentials API'; this.documentationUrl = 'https://api.slack.com/authentication/basics'; this.icon = 'file:./assets/slack-socket-mode.svg'; this.properties = [ { displayName: 'Bot User OAuth Token', name: 'botToken', type: 'string', typeOptions: { password: true }, default: '', required: true, description: 'Slack Bot User OAuth Token (starts with xoxb-)', }, { displayName: 'App-Level Token', name: 'appToken', type: 'string', typeOptions: { password: true }, default: '', required: true, description: 'Slack App-Level Token for Socket Mode (starts with xapp-)', }, { displayName: 'Signing Secret', name: 'signingSecret', type: 'string', typeOptions: { password: true }, default: '', required: true, description: 'Slack App Signing Secret', }, ]; } } exports.SlackSocketCredentialsApi = SlackSocketCredentialsApi; //# sourceMappingURL=SlackSocketCredentialsApi.credentials.js.map