UNPKG

@tuanltntu/n8n-nodes-bitrix24

Version:

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

396 lines 11.5 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.notifyFields = exports.notifyOperations = void 0; // Notify operations const operationField = { displayName: "Operation", name: "operation", type: "options", noDataExpression: true, displayOptions: { show: { resource: ["notify"], }, }, options: [ { name: "Send System Notification", value: "sendSystemNotification", description: "Send system notification to user (im.notify.system.add)", action: "Send system notification", }, { name: "Send Personal Notification", value: "sendPersonalNotification", description: "Send personal notification to user (im.notify.personal.add)", action: "Send personal notification", }, { name: "Send Public Notification", value: "sendPublicNotification", description: "Send public notification to chat (im.notify.public.add)", action: "Send public notification", }, { name: "Delete Notification", value: "deleteNotification", description: "Delete notification (im.notify.delete)", action: "Delete notification", }, { name: "Mark as Read", value: "markAsRead", description: "Mark notification as read (im.notify.read)", action: "Mark notification as read", }, { name: "Mark as Unread", value: "markAsUnread", description: "Mark notification as unread (im.notify.unread)", action: "Mark notification as unread", }, { name: "Get Notifications", value: "getNotifications", description: "Get list of notifications (im.notify.history.get)", action: "Get notifications", }, { name: "Get Schema", value: "getSchema", description: "Get notification schema (im.notify.schema.get)", action: "Get notification schema", }, { name: "Confirm Notification", value: "confirmNotification", description: "Confirm notification (im.notify.confirm)", action: "Confirm notification", }, { name: "Answer Notification", value: "answerNotification", description: "Answer to notification (im.notify.answer)", action: "Answer to notification", }, ], default: "sendSystemNotification", }; // User ID field - for targeted notifications const userIdField = { displayName: "User ID", name: "userId", type: "number", required: true, default: 1, displayOptions: { show: { resource: ["notify"], operation: ["sendSystemNotification", "sendPersonalNotification"], }, }, description: "ID of the user to send notification to", typeOptions: { numberStepSize: 1, numberPrecision: 0, minValue: 1, }, }; // Chat ID field - for public notifications const chatIdField = { displayName: "Chat ID", name: "chatId", type: "number", required: true, default: 1, displayOptions: { show: { resource: ["notify"], operation: ["sendPublicNotification"], }, }, description: "ID of the chat to send notification to", typeOptions: { numberStepSize: 1, numberPrecision: 0, minValue: 1, }, }; // Message field const messageField = { displayName: "Message", name: "message", type: "string", required: true, default: "", typeOptions: { rows: 4, }, displayOptions: { show: { resource: ["notify"], operation: [ "sendSystemNotification", "sendPersonalNotification", "sendPublicNotification", "answerNotification", ], }, }, description: "Notification message text", }; // Notification ID field - for operations on existing notifications const notificationIdField = { displayName: "Notification ID", name: "notificationId", type: "string", required: true, default: "", displayOptions: { show: { resource: ["notify"], operation: [ "deleteNotification", "markAsRead", "markAsUnread", "confirmNotification", "answerNotification", ], }, }, description: "ID of the notification", }; // Tag field - for notification categorization const tagField = { displayName: "Tag", name: "tag", type: "string", default: "", displayOptions: { show: { resource: ["notify"], operation: [ "sendSystemNotification", "sendPersonalNotification", "sendPublicNotification", ], }, }, description: "Tag for notification categorization", }; // Sub Tag field - for notification sub-categorization const subTagField = { displayName: "Sub Tag", name: "subTag", type: "string", default: "", displayOptions: { show: { resource: ["notify"], operation: [ "sendSystemNotification", "sendPersonalNotification", "sendPublicNotification", ], }, }, description: "Sub-tag for detailed notification categorization", }; // Notify Type field - for system notifications const notifyTypeField = { displayName: "Notification Type", name: "notifyType", type: "options", options: [ { name: "Simple", value: "simple" }, { name: "Confirm", value: "confirm" }, { name: "Buttons", value: "buttons" }, ], default: "simple", displayOptions: { show: { resource: ["notify"], operation: ["sendSystemNotification"], }, }, description: "Type of system notification", }; // Options collection for additional parameters const optionsCollection = { displayName: "Options", name: "options", type: "collection", placeholder: "Add Option", default: {}, displayOptions: { show: { resource: ["notify"], }, }, options: [ { displayName: "Attachments", name: "attachments", type: "json", default: "[]", description: "Attachments in JSON format", }, { displayName: "URL Preview", name: "urlPreview", type: "boolean", default: true, description: "Whether to show URL preview", }, { displayName: "Sound", name: "sound", type: "boolean", default: true, description: "Whether to play notification sound", }, { displayName: "Push", name: "push", type: "boolean", default: true, description: "Whether to send push notification", }, { displayName: "Email", name: "email", type: "boolean", default: false, description: "Whether to send email notification", }, { displayName: "Buttons", name: "buttons", type: "json", default: "[]", description: "Interactive buttons for notification (JSON format)", }, { displayName: "Confirm Text", name: "confirmText", type: "string", default: "", description: "Text for confirm button", }, { displayName: "Decline Text", name: "declineText", type: "string", default: "", description: "Text for decline button", }, { displayName: "Offset", name: "offset", type: "number", default: 0, description: "Offset for getting notifications", }, { displayName: "Filter", name: "filter", type: "json", default: "{}", description: "Filter criteria in JSON format", }, { displayName: "Order", name: "order", type: "json", default: "{}", description: "Sort order in JSON format", }, ], }; exports.notifyOperations = [ { name: "Send System Notification", value: "sendSystemNotification", description: "Send system notification to user (im.notify.system.add)", action: "Send system notification", }, { name: "Send Personal Notification", value: "sendPersonalNotification", description: "Send personal notification to user (im.notify.personal.add)", action: "Send personal notification", }, { name: "Send Public Notification", value: "sendPublicNotification", description: "Send public notification to chat (im.notify.public.add)", action: "Send public notification", }, { name: "Delete Notification", value: "deleteNotification", description: "Delete notification (im.notify.delete)", action: "Delete notification", }, { name: "Mark as Read", value: "markAsRead", description: "Mark notification as read (im.notify.read)", action: "Mark notification as read", }, { name: "Mark as Unread", value: "markAsUnread", description: "Mark notification as unread (im.notify.unread)", action: "Mark notification as unread", }, { name: "Get Notifications", value: "getNotifications", description: "Get list of notifications (im.notify.history.get)", action: "Get notifications", }, { name: "Get Schema", value: "getSchema", description: "Get notification schema (im.notify.schema.get)", action: "Get notification schema", }, { name: "Confirm Notification", value: "confirmNotification", description: "Confirm notification (im.notify.confirm)", action: "Confirm notification", }, { name: "Answer Notification", value: "answerNotification", description: "Answer to notification (im.notify.answer)", action: "Answer to notification", }, ]; exports.notifyFields = [ operationField, userIdField, chatIdField, messageField, notificationIdField, tagField, subTagField, notifyTypeField, { displayName: "Max pages to load", name: "maxPages", type: "number", default: 5, displayOptions: { show: { resource: ["notify"], operation: ["getList"], }, }, description: "Maximum number of pages to load. If response has 'next', continue loading up to this limit (50 items per page)", }, optionsCollection, ]; //# sourceMappingURL=NotifyDescription.js.map