n8n-nodes-chatwork
Version:
Provides n8n nodes to retrieve data from Chatwork API.
25 lines (24 loc) • 709 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DescriptionProperty = void 0;
const Resource_1 = require("./Resource");
const Room_1 = require("./Room");
exports.DescriptionProperty = {
displayName: 'Chat description',
name: 'description',
type: 'string',
default: '',
displayOptions: {
show: {
resource: [
Resource_1.ResourceOptionsValue.ROOMS,
],
operation: [
Room_1.RoomOptionsValue.CREATE,
Room_1.RoomOptionsValue.UPDATE_INFO,
],
},
},
placeholder: 'group chat description',
description: 'Description of the group chat',
};