n8n-nodes-chatwork
Version:
Provides n8n nodes to retrieve data from Chatwork API.
25 lines (24 loc) • 682 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LimitProperty = void 0;
const Resource_1 = require("./Resource");
const Room_1 = require("./Room");
exports.LimitProperty = {
displayName: 'Deadline',
name: 'limit',
type: 'dateTime',
required: false,
default: new Date().toISOString(),
displayOptions: {
show: {
resource: [
Resource_1.ResourceOptionsValue.ROOMS,
],
operation: [
Room_1.RoomOptionsValue.CREATE_TASK,
],
},
},
placeholder: 'Deadline',
description: 'When the task is due (Use Unix time as input)',
};