n8n/packages/nodes-base/credentials/Amqp.credentials.ts
Iván Ovejero ecd3bbfcd3
Fix credential formatting issues (#3134)
* 👕 Autofix creds lint issues

* 👕 Manually fix creds lint issues

* 👕 Fix indentation

* ✏️ Fix typo

* 👕 Fix indentation

* ✏️ Fix typo
2022-04-14 08:32:27 +02:00

48 lines
785 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class Amqp implements ICredentialType {
name = 'amqp';
displayName = 'AMQP';
documentationUrl = 'amqp';
properties: INodeProperties[] = [
{
displayName: 'Hostname',
name: 'hostname',
type: 'string',
default: '',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
default: 5672,
},
{
displayName: 'User',
name: 'username',
type: 'string',
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'Transport Type',
name: 'transportType',
type: 'string',
default: '',
description: 'Optional Transport Type to use',
},
];
}