UNPKG

@tuanltntu/n8n-nodes-bitrix24

Version:

Comprehensive n8n community node for Bitrix24 API integration with CRM, Tasks, Chat, Telephony, and more

82 lines 2.44 kB
// Tìm phần commentOptions và chỉnh sửa nó // Comment options { displayName: "Additional Options", name; "commentOptions", placeholder; "Add Option", type; "collection", ; { } displayOptions: { show: { resource: ["timeline"], operation; ["getComments"], ; } } options: [ { displayName: "Filter", name: "filter", type: "string", default: "", placeholder: '{ "AUTHOR_ID": 1 }', description: "Additional filter criteria in JSON format. Will be merged with entity filters.", }, { displayName: "Order", name: "order", type: "options", options: [ { name: "Ascending", value: "ASC", }, { name: "Descending", value: "DESC", }, ], default: "DESC", description: "Sort order for comment results", }, { displayName: "Select Fields", name: "select", type: "multiOptions", default: [], options: [ { name: "ID", value: "ID" }, { name: "ENTITY_ID", value: "ENTITY_ID" }, { name: "ENTITY_TYPE", value: "ENTITY_TYPE" }, { name: "COMMENT", value: "COMMENT" }, { name: "AUTHOR_ID", value: "AUTHOR_ID" }, { name: "FILES", value: "FILES" }, { name: "CREATED", value: "CREATED" }, { name: "SETTINGS", value: "SETTINGS" }, ], description: "Fields to return in the response", }, { displayName: "Debug Mode", name: "debug", type: "boolean", default: false, description: "Enable detailed logging for troubleshooting", }, { displayName: "Raw Parameters", name: "rawParameters", type: "string", default: "", placeholder: '{ "start": 0, "limit": 50 }', description: "Additional API parameters in JSON format to pass directly to the API call", } ], ; } //# sourceMappingURL=TimelineDescription.js.map