UNPKG

n8n-nodes-chatwork

Version:

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

34 lines 946 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.meProperties = void 0; const enums_1 = require("../../shared/enums"); exports.meProperties = [ { displayName: 'Operation', name: 'operation', type: 'options', required: true, noDataExpression: true, displayOptions: { show: { resource: [enums_1.Resource.ME], }, }, options: [ { name: 'Get Account Information', value: 'get', description: 'Get your account information', routing: { request: { method: 'GET', url: '/me', }, }, action: 'Get your account information', }, ], default: 'get', }, ]; //# sourceMappingURL=index.js.map