n8n-nodes-chatwork
Version:
Provides n8n nodes to retrieve data from Chatwork API.
27 lines (26 loc) • 771 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessageIdProperty = void 0;
const Resource_1 = require("./Resource");
const Room_1 = require("./Room");
exports.MessageIdProperty = {
displayName: 'Message ID',
name: 'messageId',
type: 'number',
default: 0,
required: true,
displayOptions: {
show: {
resource: [
Resource_1.ResourceOptionsValue.ROOMS,
],
operation: [
Room_1.RoomOptionsValue.GET_MESSAGE_DETAIL,
Room_1.RoomOptionsValue.UPDATE_MESSAGE,
Room_1.RoomOptionsValue.DELETE_MESSAGE,
],
},
},
placeholder: 'Message id',
description: 'Id of the special message',
};