UNPKG

n8n-nodes-crisp-api

Version:

n8n community node for Crisp API integration

33 lines (32 loc) 1.03 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CrispApi = void 0; class CrispApi { constructor() { this.name = 'crispApi'; this.displayName = 'Crisp API'; this.documentationUrl = 'https://docs.crisp.chat/api/v1/'; this.properties = [ { displayName: 'Username (API Identifier)', name: 'username', type: 'string', default: '', required: true, description: 'The API identifier (username) for your Crisp account', }, { displayName: 'Password (API Key)', name: 'password', type: 'string', typeOptions: { password: true, }, default: '', required: true, description: 'The API key (password) for your Crisp account', }, ]; } } exports.CrispApi = CrispApi;