@couleetech/n8n-nodes-enlightenedmsp
Version:
n8n node for EnlightenedMSP ticketing and workflow automation
48 lines (47 loc) • 1.57 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EnlightenedMspNats = void 0;
class EnlightenedMspNats {
constructor() {
this.name = 'enlightenedMspNats';
this.displayName = 'EnlightenedMSP NATS';
this.documentationUrl = 'https://docs.nats.io/';
this.properties = [
{
displayName: 'NATS Server URL',
name: 'natsServer',
type: 'string',
default: 'nats://localhost:4222',
description: 'URL of the NATS server',
},
{
displayName: 'Username',
name: 'username',
type: 'string',
default: '',
description: 'Username for NATS authentication',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
description: 'Password for NATS authentication',
},
{
displayName: 'Token',
name: 'token',
type: 'string',
typeOptions: {
password: true,
},
default: '',
description: 'Token for NATS authentication (if using token-based auth instead of username/password)',
},
];
}
}
exports.EnlightenedMspNats = EnlightenedMspNats;