n8n-nodes-japi
Version:
Node comunitário para integrar a J-API (WhatsApp) ao n8n
27 lines (26 loc) • 726 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JApiApi = void 0;
var JApiApi = /** @class */ (function () {
function JApiApi() {
this.name = 'japiApi';
this.displayName = 'J-API';
this.icon = 'file:japi.png';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
{
displayName: 'Base URL',
name: 'baseUrl',
type: 'hidden',
default: 'https://da1click.uazapi.com',
},
];
}
return JApiApi;
}());
exports.JApiApi = JApiApi;