UNPKG

n8n-nodes-chatwork

Version:

Provides n8n nodes to retrieve data from Chatwork API.

25 lines (24 loc) 709 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ToIdsProperty = void 0; const Resource_1 = require("./Resource"); const Room_1 = require("./Room"); exports.ToIdsProperty = { displayName: 'To', name: 'toIds', type: 'string', required: true, default: '', displayOptions: { show: { resource: [ Resource_1.ResourceOptionsValue.ROOMS, ], operation: [ Room_1.RoomOptionsValue.CREATE_TASK, ], }, }, placeholder: 'To', description: 'Account ID of the person/people responsible to complete the task. If multiple, IDs must be separated by comma', };