mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-23 11:44:06 -08: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:
parent
50868c2a95
commit
ecd3bbfcd3
|
@ -26,7 +26,7 @@ export class AgileCrmApi implements ICredentialType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
placeholder: 'example',
|
||||
description: 'If the domain is https://example.agilecrm.com "example" would have to be entered.',
|
||||
description: 'If the domain is https://example.agilecrm.com "example" would have to be entered',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ export class Amqp implements ICredentialType {
|
|||
name: 'transportType',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Optional Transport Type to use.',
|
||||
description: 'Optional Transport Type to use',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -42,7 +42,6 @@ export class AsanaOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ export class BitlyOAuth2Api implements ICredentialType {
|
|||
name: 'authQueryParameters',
|
||||
type: 'hidden',
|
||||
default: '',
|
||||
description: 'For some services additional query parameters have to be set which can be defined here.',
|
||||
description: 'For some services additional query parameters have to be set which can be defined here',
|
||||
placeholder: '',
|
||||
},
|
||||
{
|
||||
|
@ -62,7 +62,6 @@ export class BitlyOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -29,17 +29,17 @@ export class BitwardenApi implements ICredentialType {
|
|||
default: 'cloudHosted',
|
||||
options: [
|
||||
{
|
||||
name: 'Cloud-hosted',
|
||||
name: 'Cloud-Hosted',
|
||||
value: 'cloudHosted',
|
||||
},
|
||||
{
|
||||
name: 'Self-hosted',
|
||||
name: 'Self-Hosted',
|
||||
value: 'selfHosted',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Self-hosted domain',
|
||||
displayName: 'Self-Hosted Domain',
|
||||
name: 'domain',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -43,11 +43,11 @@ export class BubbleApi implements ICredentialType {
|
|||
default: 'bubbleHosted',
|
||||
options: [
|
||||
{
|
||||
name: 'Bubble-hosted',
|
||||
name: 'Bubble-Hosted',
|
||||
value: 'bubbleHosted',
|
||||
},
|
||||
{
|
||||
name: 'Self-hosted',
|
||||
name: 'Self-Hosted',
|
||||
value: 'selfHosted',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -42,7 +42,6 @@ export class ClickUpOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -15,17 +15,17 @@ export class ContentfulApi implements ICredentialType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The id for the Contentful space.',
|
||||
description: 'The ID for the Contentful space',
|
||||
},
|
||||
{
|
||||
displayName: 'Content Delivery API Access token',
|
||||
displayName: 'Content Delivery API Access Token',
|
||||
name: 'ContentDeliveryaccessToken',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Access token that has access to the space. Can be left empty if only Delivery API should be used.',
|
||||
},
|
||||
{
|
||||
displayName: 'Content Preview API Access token',
|
||||
displayName: 'Content Preview API Access Token',
|
||||
name: 'ContentPreviewaccessToken',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -38,23 +38,23 @@ export class CrateDb implements ICredentialType {
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'disable',
|
||||
value: 'disable',
|
||||
},
|
||||
{
|
||||
name: 'allow',
|
||||
name: 'Allow',
|
||||
value: 'allow',
|
||||
},
|
||||
{
|
||||
name: 'require',
|
||||
name: 'Disable',
|
||||
value: 'disable',
|
||||
},
|
||||
{
|
||||
name: 'Require',
|
||||
value: 'require',
|
||||
},
|
||||
{
|
||||
name: 'verify (not implemented)',
|
||||
name: 'Verify (Not Implemented)',
|
||||
value: 'verify',
|
||||
},
|
||||
{
|
||||
name: 'verify-full (not implemented)',
|
||||
name: 'Verify-Full (Not Implemented)',
|
||||
value: 'verify-full',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -14,7 +14,7 @@ export class CustomerIoApi implements ICredentialType {
|
|||
name: 'trackingApiKey',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Required for tracking API.',
|
||||
description: 'Required for tracking API',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
|
@ -22,14 +22,14 @@ export class CustomerIoApi implements ICredentialType {
|
|||
name: 'trackingSiteId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Required for tracking API.',
|
||||
description: 'Required for tracking API',
|
||||
},
|
||||
{
|
||||
displayName: 'App API Key',
|
||||
name: 'appApiKey',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Required for App API.',
|
||||
description: 'Required for App API',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -27,11 +27,11 @@ export class ERPNextApi implements ICredentialType {
|
|||
default: 'cloudHosted',
|
||||
options: [
|
||||
{
|
||||
name: 'Cloud-hosted',
|
||||
name: 'Cloud-Hosted',
|
||||
value: 'cloudHosted',
|
||||
},
|
||||
{
|
||||
name: 'Self-hosted',
|
||||
name: 'Self-Hosted',
|
||||
value: 'selfHosted',
|
||||
},
|
||||
],
|
||||
|
@ -57,7 +57,7 @@ export class ERPNextApi implements ICredentialType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
placeholder: 'https://www.mydomain.com',
|
||||
description: 'Fully qualified domain name of self-hosted ERPNext instance.',
|
||||
description: 'Fully qualified domain name of self-hosted ERPNext instance',
|
||||
displayOptions: {
|
||||
show: {
|
||||
environment: [
|
||||
|
|
|
@ -16,7 +16,7 @@ export class FacebookGraphAppApi implements ICredentialType {
|
|||
name: 'appSecret',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: '(Optional) When the app secret is set the node will verify this signature to validate the integrity and origin of the payload.',
|
||||
description: '(Optional) When the app secret is set the node will verify this signature to validate the integrity and origin of the payload',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -15,17 +15,17 @@ export class FormIoApi implements ICredentialType {
|
|||
default: 'cloudHosted',
|
||||
options: [
|
||||
{
|
||||
name: 'Cloud-hosted',
|
||||
name: 'Cloud-Hosted',
|
||||
value: 'cloudHosted',
|
||||
},
|
||||
{
|
||||
name: 'Self-hosted',
|
||||
name: 'Self-Hosted',
|
||||
value: 'selfHosted',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Self-hosted domain',
|
||||
displayName: 'Self-Hosted Domain',
|
||||
name: 'domain',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -41,7 +41,6 @@ export class GetResponseOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'header',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ export class GitPassword implements ICredentialType {
|
|||
name: 'username',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The username to authenticate with.',
|
||||
description: 'The username to authenticate with',
|
||||
},
|
||||
{
|
||||
displayName: 'Password',
|
||||
|
|
|
@ -15,7 +15,7 @@ export class GoogleApi implements ICredentialType {
|
|||
name: 'email',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The Google Service account similar to user-808@project.iam.gserviceaccount.com.',
|
||||
description: 'The Google Service account similar to user-808@project.iam.gserviceaccount.com',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
|
@ -45,7 +45,7 @@ export class GoogleApi implements ICredentialType {
|
|||
],
|
||||
},
|
||||
},
|
||||
description: 'The email address of the user for which the application is requesting delegated access.',
|
||||
description: 'The email address of the user for which the application is requesting delegated access',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -13,21 +13,21 @@ export class GotifyApi implements ICredentialType {
|
|||
name: 'appApiToken',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: '(Optional) Needed for message creation.',
|
||||
description: '(Optional) Needed for message creation',
|
||||
},
|
||||
{
|
||||
displayName: 'Client API Token',
|
||||
name: 'clientApiToken',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: '(Optional) Needed for everything (delete, getAll) but message creation.',
|
||||
description: '(Optional) Needed for everything (delete, getAll) but message creation',
|
||||
},
|
||||
{
|
||||
displayName: 'URL',
|
||||
name: 'url',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The URL of the Gotify host.',
|
||||
description: 'The URL of the Gotify host',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ export class GristApi implements ICredentialType {
|
|||
value: 'paid',
|
||||
},
|
||||
{
|
||||
name: 'Self-hosted',
|
||||
name: 'Self-Hosted',
|
||||
value: 'selfHosted',
|
||||
},
|
||||
],
|
||||
|
@ -51,7 +51,7 @@ export class GristApi implements ICredentialType {
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Self-hosted URL',
|
||||
displayName: 'Self-Hosted URL',
|
||||
name: 'selfHostedUrl',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -22,8 +22,7 @@ export class HaloPSAApi implements ICredentialType {
|
|||
value: 'hostedHalo',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
description: 'Hosting Type',
|
||||
default: 'onPremise',
|
||||
},
|
||||
{
|
||||
displayName: 'HaloPSA Authorisation Server URL',
|
||||
|
@ -38,7 +37,7 @@ export class HaloPSAApi implements ICredentialType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
description: `The Resource server is available at your "Halo Web Application url/api"`,
|
||||
description: 'The Resource server is available at your "Halo Web Application url/api"',
|
||||
},
|
||||
{
|
||||
displayName: 'Client ID',
|
||||
|
@ -46,7 +45,7 @@ export class HaloPSAApi implements ICredentialType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Must be your application client id',
|
||||
description: 'Must be your application client ID',
|
||||
},
|
||||
{
|
||||
displayName: 'Client Secret',
|
||||
|
|
|
@ -42,7 +42,6 @@ export class HarvestOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -45,7 +45,6 @@ export class HubspotDeveloperApi implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
{
|
||||
displayName: 'Developer API Key',
|
||||
|
|
|
@ -57,7 +57,6 @@ export class HubspotOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ export class Kafka implements ICredentialType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'Optional username if authenticated is required.',
|
||||
description: 'Optional username if authenticated is required',
|
||||
},
|
||||
{
|
||||
displayName: 'Password',
|
||||
|
@ -63,10 +63,10 @@ export class Kafka implements ICredentialType {
|
|||
password: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'Optional password if authenticated is required.',
|
||||
description: 'Optional password if authenticated is required',
|
||||
},
|
||||
{
|
||||
displayName: 'SASL mechanism',
|
||||
displayName: 'SASL Mechanism',
|
||||
name: 'saslMechanism',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
|
@ -78,7 +78,7 @@ export class Kafka implements ICredentialType {
|
|||
},
|
||||
options: [
|
||||
{
|
||||
name: 'plain',
|
||||
name: 'Plain',
|
||||
value: 'plain',
|
||||
},
|
||||
{
|
||||
|
@ -91,7 +91,7 @@ export class Kafka implements ICredentialType {
|
|||
},
|
||||
],
|
||||
default: 'plain',
|
||||
description: 'The SASL mechanism.',
|
||||
description: 'The SASL mechanism',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ export class KoBoToolboxApi implements ICredentialType {
|
|||
documentationUrl = 'koBoToolbox';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'API root URL',
|
||||
displayName: 'API Root URL',
|
||||
name: 'URL',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: 'https://kf.kobotoolbox.org/',
|
||||
|
|
|
@ -17,7 +17,7 @@ export class LinkedInOAuth2Api implements ICredentialType {
|
|||
name: 'organizationSupport',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
description: 'Request permissions to post as an orgaization.',
|
||||
description: 'Whether to request permissions to post as an organization',
|
||||
},
|
||||
{
|
||||
displayName: 'Authorization URL',
|
||||
|
|
|
@ -24,14 +24,13 @@ export class MailgunApi implements ICredentialType {
|
|||
},
|
||||
],
|
||||
default: 'api.mailgun.net',
|
||||
description: 'The configured mailgun API domain.',
|
||||
description: 'The configured mailgun API domain',
|
||||
},
|
||||
{
|
||||
displayName: 'Email Domain',
|
||||
name: 'emailDomain',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: '.',
|
||||
},
|
||||
{
|
||||
displayName: 'API Key',
|
||||
|
|
|
@ -25,7 +25,7 @@ export class MailjetEmailApi implements ICredentialType {
|
|||
name: 'sandboxMode',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Allow to run the API call in a Sandbox mode, where all validations of the payload will be done without delivering the message',
|
||||
description: 'Whether to allow to run the API call in a Sandbox mode, where all validations of the payload will be done without delivering the message',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ export class MarketstackApi implements ICredentialType {
|
|||
name: 'useHttps',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Use HTTPS (paid plans only).',
|
||||
description: 'Whether to use HTTPS (paid plans only)',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -55,14 +55,14 @@ export class MicrosoftSql implements ICredentialType {
|
|||
name: 'connectTimeout',
|
||||
type: 'number',
|
||||
default: 15000,
|
||||
description: 'Connection timeout in ms.',
|
||||
description: 'Connection timeout in ms',
|
||||
},
|
||||
{
|
||||
displayName: 'Request Timeout',
|
||||
name: 'requestTimeout',
|
||||
type: 'number',
|
||||
default: 15000,
|
||||
description: ' Request timeout in ms.',
|
||||
description: 'Request timeout in ms',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -22,7 +22,6 @@ export class MongoDb implements ICredentialType {
|
|||
},
|
||||
],
|
||||
default: 'values',
|
||||
description: 'The operation to perform.',
|
||||
},
|
||||
{
|
||||
displayName: 'Connection String',
|
||||
|
@ -37,7 +36,6 @@ export class MongoDb implements ICredentialType {
|
|||
},
|
||||
default: '',
|
||||
placeholder: 'mongodb://<USERNAME>:<PASSWORD>@localhost:27017/?authSource=admin&readPreference=primary&appname=n8n&ssl=false',
|
||||
required: false,
|
||||
description: `If provided, the value here will be used as a MongoDB connection string,
|
||||
and the MongoDB credentials will be ignored`,
|
||||
},
|
||||
|
|
|
@ -15,17 +15,17 @@ export class MonicaCrmApi implements ICredentialType {
|
|||
default: 'cloudHosted',
|
||||
options: [
|
||||
{
|
||||
name: 'Cloud-hosted',
|
||||
name: 'Cloud-Hosted',
|
||||
value: 'cloudHosted',
|
||||
},
|
||||
{
|
||||
name: 'Self-hosted',
|
||||
name: 'Self-Hosted',
|
||||
value: 'selfHosted',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Self-hosted domain',
|
||||
displayName: 'Self-Hosted Domain',
|
||||
name: 'domain',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -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',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ export class MySql implements ICredentialType {
|
|||
name: 'connectTimeout',
|
||||
type: 'number',
|
||||
default: 10000,
|
||||
description: 'The milliseconds before a timeout occurs during the initial connection to the MySQL server.',
|
||||
description: 'The milliseconds before a timeout occurs during the initial connection to the MySQL server',
|
||||
},
|
||||
{
|
||||
displayName: 'SSL',
|
||||
|
|
|
@ -61,7 +61,7 @@ export class OAuth1Api implements ICredentialType {
|
|||
value: 'HMAC-SHA512',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
default: 'HMAC-SHA1',
|
||||
required: true,
|
||||
},
|
||||
];
|
||||
|
|
|
@ -51,7 +51,7 @@ export class OAuth2Api implements ICredentialType {
|
|||
name: 'authQueryParameters',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'For some services additional query parameters have to be set which can be defined here.',
|
||||
description: 'For some services additional query parameters have to be set which can be defined here',
|
||||
placeholder: 'access_type=offline',
|
||||
},
|
||||
{
|
||||
|
@ -71,7 +71,6 @@ export class OAuth2Api implements ICredentialType {
|
|||
},
|
||||
],
|
||||
default: 'header',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ export class PaddleApi implements ICredentialType {
|
|||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Use Sandbox environment API',
|
||||
displayName: 'Use Sandbox Environment API',
|
||||
name: 'sandbox',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
|
|
@ -40,7 +40,6 @@ export class PagerDutyOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'header',
|
||||
description: 'Method of authentication.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -46,7 +46,6 @@ export class PhilipsHueOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'header',
|
||||
description: 'Method of authentication.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ export class Postgres implements ICredentialType {
|
|||
name: 'allowUnauthorizedCerts',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Connect even if SSL certificate validation is not possible.',
|
||||
description: 'Whether to connect even if SSL certificate validation is not possible',
|
||||
},
|
||||
{
|
||||
displayName: 'SSL',
|
||||
|
@ -56,23 +56,23 @@ export class Postgres implements ICredentialType {
|
|||
},
|
||||
options: [
|
||||
{
|
||||
name: 'disable',
|
||||
value: 'disable',
|
||||
},
|
||||
{
|
||||
name: 'allow',
|
||||
name: 'Allow',
|
||||
value: 'allow',
|
||||
},
|
||||
{
|
||||
name: 'require',
|
||||
name: 'Disable',
|
||||
value: 'disable',
|
||||
},
|
||||
{
|
||||
name: 'Require',
|
||||
value: 'require',
|
||||
},
|
||||
{
|
||||
name: 'verify (not implemented)',
|
||||
name: 'Verify (Not Implemented)',
|
||||
value: 'verify',
|
||||
},
|
||||
{
|
||||
name: 'verify-full (not implemented)',
|
||||
name: 'Verify-Full (Not Implemented)',
|
||||
value: 'verify-full',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -38,23 +38,23 @@ export class QuestDb implements ICredentialType {
|
|||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'disable',
|
||||
value: 'disable',
|
||||
},
|
||||
{
|
||||
name: 'allow',
|
||||
name: 'Allow',
|
||||
value: 'allow',
|
||||
},
|
||||
{
|
||||
name: 'require',
|
||||
name: 'Disable',
|
||||
value: 'disable',
|
||||
},
|
||||
{
|
||||
name: 'Require',
|
||||
value: 'require',
|
||||
},
|
||||
{
|
||||
name: 'verify (not implemented)',
|
||||
name: 'Verify (Not Implemented)',
|
||||
value: 'verify',
|
||||
},
|
||||
{
|
||||
name: 'verify-full (not implemented)',
|
||||
name: 'Verify-Full (Not Implemented)',
|
||||
value: 'verify-full',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -63,7 +63,7 @@ export class RabbitMQ 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',
|
||||
|
@ -80,7 +80,7 @@ export class RabbitMQ implements ICredentialType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'SSL CA Certificates to use.',
|
||||
description: 'SSL CA Certificates to use',
|
||||
},
|
||||
{
|
||||
displayName: 'Client Certificate',
|
||||
|
@ -100,7 +100,7 @@ export class RabbitMQ implements ICredentialType {
|
|||
},
|
||||
} as IDisplayOptions,
|
||||
default: '',
|
||||
description: 'SSL Client Certificate to use.',
|
||||
description: 'SSL Client Certificate to use',
|
||||
},
|
||||
{
|
||||
displayName: 'Client Key',
|
||||
|
@ -120,7 +120,7 @@ export class RabbitMQ implements ICredentialType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'SSL Client Key to use.',
|
||||
description: 'SSL Client Key to use',
|
||||
},
|
||||
{
|
||||
displayName: 'Passphrase',
|
||||
|
@ -140,7 +140,7 @@ export class RabbitMQ implements ICredentialType {
|
|||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'SSL passphrase to use.',
|
||||
description: 'SSL passphrase to use',
|
||||
},
|
||||
// {
|
||||
// displayName: 'Client ID',
|
||||
|
|
|
@ -10,7 +10,7 @@ export class RocketchatApi implements ICredentialType {
|
|||
documentationUrl = 'rocketchat';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'User Id',
|
||||
displayName: 'User ID',
|
||||
name: 'userId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
|
|
@ -10,7 +10,7 @@ export class S3 implements ICredentialType {
|
|||
documentationUrl = 's3';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'S3 endpoint',
|
||||
displayName: 'S3 Endpoint',
|
||||
name: 'endpoint',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -37,7 +37,7 @@ export class S3 implements ICredentialType {
|
|||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Force path style',
|
||||
displayName: 'Force Path Style',
|
||||
name: 'forcePathStyle',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
|
|
@ -30,7 +30,7 @@ export class SalesforceJwtApi implements ICredentialType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Consumer Key from Salesforce Connected App.',
|
||||
description: 'Consumer Key from Salesforce Connected App',
|
||||
},
|
||||
{
|
||||
displayName: 'Username',
|
||||
|
|
|
@ -58,7 +58,6 @@ export class SalesforceOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'header',
|
||||
description: 'Method of authentication.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -24,17 +24,17 @@ export class SeaTableApi implements ICredentialType {
|
|||
default: 'cloudHosted',
|
||||
options: [
|
||||
{
|
||||
name: 'Cloud-hosted',
|
||||
name: 'Cloud-Hosted',
|
||||
value: 'cloudHosted',
|
||||
},
|
||||
{
|
||||
name: 'Self-hosted',
|
||||
name: 'Self-Hosted',
|
||||
value: 'selfHosted',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Self-hosted domain',
|
||||
displayName: 'Self-Hosted Domain',
|
||||
name: 'domain',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -57,8 +57,8 @@ export class SeaTableApi implements ICredentialType {
|
|||
displayName: 'Timezone',
|
||||
name: 'timezone',
|
||||
type: 'options',
|
||||
default: 'Europe/Berlin',
|
||||
description: `Seatable server's timezone`,
|
||||
default: '',
|
||||
description: 'Seatable server\'s timezone',
|
||||
options: [
|
||||
...timezones,
|
||||
],
|
||||
|
|
|
@ -46,7 +46,7 @@ export class Sftp implements ICredentialType {
|
|||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
description: 'String that contains a private key for either key-based or hostbased user authentication (OpenSSH format).',
|
||||
description: 'String that contains a private key for either key-based or hostbased user authentication (OpenSSH format)',
|
||||
},
|
||||
{
|
||||
displayName: 'Passphrase',
|
||||
|
@ -56,7 +56,7 @@ export class Sftp implements ICredentialType {
|
|||
},
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'For an encrypted private key, this is the passphrase used to decrypt it.',
|
||||
description: 'For an encrypted private key, this is the passphrase used to decrypt it',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ export class Signl4Api implements ICredentialType {
|
|||
name: 'teamSecret',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The team secret is the last part of your SIGNL4 webhook URL.',
|
||||
description: 'The team secret is the last part of your SIGNL4 webhook URL',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -13,14 +13,14 @@ export class Snowflake implements ICredentialType {
|
|||
name: 'account',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Enter the name of your Snowflake account.',
|
||||
description: 'Enter the name of your Snowflake account',
|
||||
},
|
||||
{
|
||||
displayName: 'Database',
|
||||
name: 'database',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Specify the database you want to use after creating the connection.',
|
||||
description: 'Specify the database you want to use after creating the connection',
|
||||
},
|
||||
{
|
||||
displayName: 'Warehouse',
|
||||
|
@ -63,7 +63,7 @@ export class Snowflake implements ICredentialType {
|
|||
name: 'clientSessionKeepAlive',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: `By default, client connections typically time out approximately 3-4 hours after the most recent query was executed. If the parameter clientSessionKeepAlive is set to true, the client’s connection to the server will be kept alive indefinitely, even if no queries are executed.`,
|
||||
description: 'Whether to keep alive the client session. By default, client connections typically time out approximately 3-4 hours after the most recent query was executed. If the parameter clientSessionKeepAlive is set to true, the client’s connection to the server will be kept alive indefinitely, even if no queries are executed.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ export class TelegramApi implements ICredentialType {
|
|||
name: 'accessToken',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Chat with the <a href="https://telegram.me/botfather">bot father</a> to obtain the access token.',
|
||||
description: 'Chat with the <a href="https://telegram.me/botfather">bot father</a> to obtain the access token',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ export class TimescaleDb implements ICredentialType {
|
|||
name: 'allowUnauthorizedCerts',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Connect even if SSL certificate validation is not possible.',
|
||||
description: 'Whether to connect even if SSL certificate validation is not possible',
|
||||
},
|
||||
{
|
||||
displayName: 'SSL',
|
||||
|
@ -55,23 +55,23 @@ export class TimescaleDb implements ICredentialType {
|
|||
},
|
||||
options: [
|
||||
{
|
||||
name: 'disable',
|
||||
value: 'disable',
|
||||
},
|
||||
{
|
||||
name: 'allow',
|
||||
name: 'Allow',
|
||||
value: 'allow',
|
||||
},
|
||||
{
|
||||
name: 'require',
|
||||
name: 'Disable',
|
||||
value: 'disable',
|
||||
},
|
||||
{
|
||||
name: 'Require',
|
||||
value: 'require',
|
||||
},
|
||||
{
|
||||
name: 'verify (not implemented)',
|
||||
name: 'Verify (Not Implemented)',
|
||||
value: 'verify',
|
||||
},
|
||||
{
|
||||
name: 'verify-full (not implemented)',
|
||||
name: 'Verify-Full (Not Implemented)',
|
||||
value: 'verify-full',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -51,7 +51,6 @@ export class TwistOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ export class WebflowOAuth2Api implements ICredentialType {
|
|||
name: 'authQueryParameters',
|
||||
type: 'hidden',
|
||||
default: '',
|
||||
description: 'For some services additional query parameters have to be set which can be defined here.',
|
||||
description: 'For some services additional query parameters have to be set which can be defined here',
|
||||
placeholder: '',
|
||||
},
|
||||
{
|
||||
|
@ -44,7 +44,6 @@ export class WebflowOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ export class WooCommerceApi implements ICredentialType {
|
|||
name: 'includeCredentialsInQuery',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: `Occasionally, some servers may not parse the Authorization header correctly (if you see a “Consumer key is missing” error when authenticating over SSL, you have a server issue). In this case, you may provide the consumer key/secret as query string parameters instead.`,
|
||||
description: 'Whether credentials should be included in the query. Occasionally, some servers may not parse the Authorization header correctly (if you see a “Consumer key is missing” error when authenticating over SSL, you have a server issue). In this case, you may provide the consumer key/secret as query string parameters instead.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ export class ZendeskApi implements ICredentialType {
|
|||
displayName: 'Subdomain',
|
||||
name: 'subdomain',
|
||||
type: 'string',
|
||||
description: 'The subdomain of your Zendesk work environment.',
|
||||
description: 'The subdomain of your Zendesk work environment',
|
||||
placeholder: 'company',
|
||||
default: '',
|
||||
},
|
||||
|
|
|
@ -22,7 +22,7 @@ export class ZendeskOAuth2Api implements ICredentialType {
|
|||
type: 'string',
|
||||
default: '',
|
||||
placeholder: 'n8n',
|
||||
description: 'The subdomain of your Zendesk work environment.',
|
||||
description: 'The subdomain of your Zendesk work environment',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
|
@ -66,7 +66,7 @@ export class ZendeskOAuth2Api implements ICredentialType {
|
|||
name: 'authQueryParameters',
|
||||
type: 'hidden',
|
||||
default: '',
|
||||
description: 'For some services additional query parameters have to be set which can be defined here.',
|
||||
description: 'For some services additional query parameters have to be set which can be defined here',
|
||||
placeholder: '',
|
||||
},
|
||||
{
|
||||
|
@ -74,7 +74,6 @@ export class ZendeskOAuth2Api implements ICredentialType {
|
|||
name: 'authentication',
|
||||
type: 'hidden',
|
||||
default: 'body',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
|
@ -35,14 +35,14 @@ export class ZohoOAuth2Api implements ICredentialType {
|
|||
name: 'accessTokenUrl',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'US - https://accounts.zoho.com/oauth/v2/token',
|
||||
value: 'https://accounts.zoho.com/oauth/v2/token',
|
||||
},
|
||||
{
|
||||
name: 'AU - https://accounts.zoho.com.au/oauth/v2/token',
|
||||
value: 'https://accounts.zoho.com.au/oauth/v2/token',
|
||||
},
|
||||
{
|
||||
name: 'CN - https://accounts.zoho.com.cn/oauth/v2/token',
|
||||
value: 'https://accounts.zoho.com.cn/oauth/v2/token',
|
||||
},
|
||||
{
|
||||
name: 'EU - https://accounts.zoho.eu/oauth/v2/token',
|
||||
value: 'https://accounts.zoho.eu/oauth/v2/token',
|
||||
|
@ -52,8 +52,8 @@ export class ZohoOAuth2Api implements ICredentialType {
|
|||
value: 'https://accounts.zoho.in/oauth/v2/token',
|
||||
},
|
||||
{
|
||||
name: 'CN - https://accounts.zoho.com.cn/oauth/v2/token',
|
||||
value: 'https://accounts.zoho.com.cn/oauth/v2/token',
|
||||
name: 'US - https://accounts.zoho.com/oauth/v2/token',
|
||||
value: 'https://accounts.zoho.com/oauth/v2/token',
|
||||
},
|
||||
],
|
||||
default: 'https://accounts.zoho.com/oauth/v2/token',
|
||||
|
|
Loading…
Reference in a new issue