n8n-nodes-walichat
Version:
n8n plugin for WaliChat
21 lines (20 loc) • 558 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApiKey = void 0;
class ApiKey {
constructor() {
this.name = 'walichatApiKey';
this.displayName = 'WaliChat API Key';
this.documentationUrl = 'https://app.wali.chat/docs';
this.properties = [
{
displayName: 'API Key',
name: 'walichatApiKey',
type: 'string',
default: '',
required: true,
},
];
}
}
exports.ApiKey = ApiKey;