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 = [
|
|
|
|
{
|
|
|
|
displayName: 'Protocol',
|
|
|
|
name: 'protocol',
|
2020-10-01 05:01:39 -07:00
|
|
|
type: 'options' as NodePropertyTypes,
|
|
|
|
options: [
|
2020-09-01 08:40:18 -07:00
|
|
|
{
|
|
|
|
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: '',
|
|
|
|
},
|
2021-04-30 18:23:25 -07:00
|
|
|
{
|
|
|
|
displayName: 'Clean Session',
|
|
|
|
name: 'clean',
|
|
|
|
type: 'boolean' as NodePropertyTypes,
|
|
|
|
default: true,
|
|
|
|
description: `Set to false to receive QoS 1 and 2 messages while offline.`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Client ID',
|
|
|
|
name: 'clientId',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
description: 'Client ID. If left empty, one is autogenrated for you',
|
|
|
|
},
|
2020-09-01 08:40:18 -07:00
|
|
|
];
|
|
|
|
}
|