2020-09-01 08:40:18 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
|
|
|
|
export class Mqtt implements ICredentialType {
|
|
|
|
name = 'mqtt';
|
|
|
|
displayName = 'MQTT';
|
2020-09-14 04:06:28 -07:00
|
|
|
documentationUrl = 'mqtt';
|
2020-09-01 08:40:18 -07:00
|
|
|
properties = [
|
|
|
|
// The credentials to get from user and save encrypted.
|
|
|
|
// Properties can be defined exactly in the same way
|
|
|
|
// as node properties.
|
|
|
|
{
|
|
|
|
displayName: 'Protocol',
|
|
|
|
name: 'protocol',
|
|
|
|
type: 'options' as NodePropertyTypes,
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'mqtt',
|
|
|
|
value: 'mqtt',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'ws',
|
|
|
|
value: 'ws',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'mqtt',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Host',
|
|
|
|
name: 'host',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Port',
|
|
|
|
name: 'port',
|
|
|
|
type: 'number' as NodePropertyTypes,
|
|
|
|
default: 1883,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Username',
|
|
|
|
name: 'username',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Password',
|
|
|
|
name: 'password',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
typeOptions: {
|
|
|
|
password: true,
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|