UNPKG

n8n-nodes-chatwoot

Version:

This is an n8n community node. It lets you use ChatWoot in your n8n workflows.

38 lines 1.23 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ChatWootToken = void 0; class ChatWootToken { constructor() { this.name = 'chatWootToken'; this.displayName = 'ChatWoot Access Token'; this.documentationUrl = 'chatwoot'; this.properties = [ { displayName: 'ChatWoot API Url', name: 'baseUrl', placeholder: "https://www.chatwoot.com", type: 'string', default: '', required: true, }, { displayName: 'Access Token', name: 'accessToken', type: 'string', placeholder: "00000000-0000-0000-0000-000000000000", default: '', required: true, }, { displayName: 'Account Id', name: 'accountId', type: 'string', placeholder: "1", default: '1', required: true, }, ]; } } exports.ChatWootToken = ChatWootToken; //# sourceMappingURL=ChatWootToken.credentials.js.map