UNPKG

n8n-nodes-chatwork

Version:

Provides an n8n community node for integrating Chatwork messaging and task APIs into automated workflows.

46 lines 1.43 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.myProperties = void 0; const enums_1 = require("../../shared/enums"); exports.myProperties = [ { displayName: 'Operation', name: 'operation', type: 'options', required: true, noDataExpression: true, displayOptions: { show: { resource: [enums_1.Resource.MY], }, }, options: [ { name: 'Get Status', value: 'status', description: 'Get unread messages, unread To messages, and unfinished tasks count', routing: { request: { method: 'GET', url: '/my/status', }, }, action: 'Get unread messages unread to messages and unfinished tasks count', }, { name: 'Get Tasks', value: 'tasks', description: 'Get the list of all unfinished tasks', routing: { request: { method: 'GET', url: '/my/tasks', }, }, action: 'Get the list of all unfinished tasks', }, ], default: 'status', }, ]; //# sourceMappingURL=index.js.map