UNPKG

n8n-nodes-mongo-change-stream-trigger

Version:

n8n-nodes-mongo-change-stream-trigger is a community package for n8n that brings real-time MongoDB integration to your workflows. It uses MongoDB’s native change streams to monitor a specified collection without relying on polling and offers advanced, cas

153 lines 4.77 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MongoDb = void 0; class MongoDb { constructor() { this.name = 'mongoDbTriggerApi'; this.displayName = 'MongoDB Trigger'; this.properties = [ { displayName: 'Configuration Type', name: 'configurationType', type: 'options', options: [ { name: 'Connection String', value: 'connectionString', description: 'Provide connection data via string', }, { name: 'Values', value: 'values', description: 'Provide connection data via values', }, ], default: 'values', }, { displayName: 'Connection String', name: 'connectionString', type: 'string', displayOptions: { show: { configurationType: ['connectionString'], }, }, default: '', placeholder: 'mongodb://<USERNAME>:<PASSWORD>@localhost:27017/?authSource=admin&readPreference=primary&appname=n8n&ssl=false', description: 'If provided, the value here will be used as a MongoDB connection string, and the MongoDB credentials will be ignored', }, { displayName: 'Host', name: 'host', type: 'string', displayOptions: { show: { configurationType: ['values'], }, }, default: 'localhost', }, { displayName: 'User', name: 'user', type: 'string', displayOptions: { show: { configurationType: ['values'], }, }, default: '', }, { displayName: 'Password', name: 'password', type: 'string', typeOptions: { password: true, }, displayOptions: { show: { configurationType: ['values'], }, }, default: '', }, { displayName: 'Port', name: 'port', type: 'number', displayOptions: { show: { configurationType: ['values'], }, }, default: 27017, }, { displayName: 'Use TLS', name: 'tls', type: 'boolean', default: false, }, { displayName: 'CA Certificate', name: 'ca', type: 'string', typeOptions: { password: true, }, displayOptions: { show: { tls: [true], }, }, default: '', }, { displayName: 'Public Client Certificate', name: 'cert', type: 'string', typeOptions: { password: true, }, displayOptions: { show: { tls: [true], }, }, default: '', }, { displayName: 'Private Client Key', name: 'key', type: 'string', typeOptions: { password: true, }, displayOptions: { show: { tls: [true], }, }, default: '', }, { displayName: 'Passphrase', name: 'passphrase', type: 'string', typeOptions: { password: true, }, displayOptions: { show: { tls: [true], }, }, default: '', }, ]; } } exports.MongoDb = MongoDb; //# sourceMappingURL=MongoDb.credentials.js.map