n8n-nodes-chatwork
Version:
Provides an n8n community node for integrating Chatwork messaging and task APIs into automated workflows.
34 lines • 940 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.contactProperties = void 0;
const enums_1 = require("../../shared/enums");
exports.contactProperties = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
required: true,
noDataExpression: true,
displayOptions: {
show: {
resource: [enums_1.Resource.CONTACT],
},
},
options: [
{
name: 'Get Contacts',
value: 'get',
description: 'Get the contact list',
routing: {
request: {
method: 'GET',
url: '/contacts',
},
},
action: 'Get the contact list',
},
],
default: 'get',
},
];
//# sourceMappingURL=index.js.map