n8n-nodes-chatwork
Version:
Provides n8n nodes to retrieve data from Chatwork API.
20 lines (19 loc) • 553 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Chatwork = void 0;
const Constants_1 = require("../shared/Constants");
class Chatwork {
constructor() {
this.displayName = 'Chatwork API';
this.name = Constants_1.CREDENTIAL.TYPE;
this.properties = [
{
displayName: 'Api token',
name: Constants_1.CREDENTIAL.PROPERTY_NAME,
type: 'string',
default: '',
},
];
}
}
exports.Chatwork = Chatwork;