mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
⚡ Fix credential formatting issues (#3134)
* 👕 Autofix creds lint issues * 👕 Manually fix creds lint issues * 👕 Fix indentation * ✏️ Fix typo * 👕 Fix indentation * ✏️ Fix typo
This commit is contained in:
@@ -15,15 +15,15 @@ export class Mqtt implements ICredentialType {
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'mqtt',
|
||||
name: 'Mqtt',
|
||||
value: 'mqtt',
|
||||
},
|
||||
{
|
||||
name: 'mqtts',
|
||||
name: 'Mqtts',
|
||||
value: 'mqtts',
|
||||
},
|
||||
{
|
||||
name: 'ws',
|
||||
name: 'Ws',
|
||||
value: 'ws',
|
||||
},
|
||||
],
|
||||
@@ -61,14 +61,14 @@ export class Mqtt implements ICredentialType {
|
||||
name: 'clean',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
description: `Set to false to receive QoS 1 and 2 messages while offline.`,
|
||||
description: 'Whether to use clean session - set to false to receive QoS 1 and 2 messages while offline',
|
||||
},
|
||||
{
|
||||
displayName: 'Client ID',
|
||||
name: 'clientId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Client ID. If left empty, one is autogenrated for you',
|
||||
description: 'Client ID. If left empty, one is autogenerated for you.',
|
||||
},
|
||||
{
|
||||
displayName: 'SSL',
|
||||
@@ -88,7 +88,7 @@ export class Mqtt implements ICredentialType {
|
||||
},
|
||||
},
|
||||
default: true,
|
||||
description: 'Passwordless connection with certificates (SASL mechanism EXTERNAL)',
|
||||
description: 'Whether to use passwordless connection with certificates (SASL mechanism EXTERNAL)',
|
||||
},
|
||||
{
|
||||
displayName: 'CA Certificates',
|
||||
@@ -105,12 +105,12 @@ export class Mqtt implements ICredentialType {
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'SSL CA Certificates to use.',
|
||||
description: 'SSL CA Certificates to use',
|
||||
},
|
||||
{
|
||||
displayName: 'Reject Unauthorized Certificate',
|
||||
name: 'rejectUnauthorized',
|
||||
type: 'boolean',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
show: {
|
||||
ssl: [
|
||||
@@ -121,8 +121,8 @@ export class Mqtt implements ICredentialType {
|
||||
],
|
||||
},
|
||||
} as IDisplayOptions,
|
||||
default: '',
|
||||
description: 'Validate Certificate.',
|
||||
default: false,
|
||||
description: 'Whether to validate Certificate',
|
||||
},
|
||||
{
|
||||
displayName: 'Client Certificate',
|
||||
@@ -142,7 +142,7 @@ export class Mqtt implements ICredentialType {
|
||||
},
|
||||
} as IDisplayOptions,
|
||||
default: '',
|
||||
description: 'SSL Client Certificate to use.',
|
||||
description: 'SSL Client Certificate to use',
|
||||
},
|
||||
{
|
||||
displayName: 'Client Key',
|
||||
@@ -162,7 +162,7 @@ export class Mqtt implements ICredentialType {
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'SSL Client Key to use.',
|
||||
description: 'SSL Client Key to use',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user