mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
👕 Fix lint issue
This commit is contained in:
parent
0b1688caf4
commit
889267ebb6
|
@ -19,6 +19,9 @@ module.exports = {
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
devServer: {
|
||||||
|
disableHostCheck: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
css: {
|
css: {
|
||||||
loaderOptions: {
|
loaderOptions: {
|
||||||
|
|
|
@ -40,7 +40,7 @@ export async function mailerliteApiRequest(this: IExecuteFunctions | IExecuteSin
|
||||||
|
|
||||||
// Try to return the error prettier
|
// Try to return the error prettier
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Mailer Lite error response [${error.statusCode}]: ${message}`
|
`Mailer Lite error response [${error.statusCode}]: ${message}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
throw error;
|
throw error;
|
||||||
|
|
|
@ -54,7 +54,7 @@ export class MailerLite implements INodeType {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'subscriber',
|
default: 'subscriber',
|
||||||
description: 'The resource to operate on.'
|
description: 'The resource to operate on.',
|
||||||
},
|
},
|
||||||
...subscriberOperations,
|
...subscriberOperations,
|
||||||
...subscriberFields,
|
...subscriberFields,
|
||||||
|
|
|
@ -182,7 +182,7 @@ export class MailerLiteTrigger implements INodeType {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
workflowData: [
|
workflowData: [
|
||||||
this.helpers.returnJsonArray(events)
|
this.helpers.returnJsonArray(events),
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,8 +57,8 @@ export const subscriberFields = [
|
||||||
'subscriber',
|
'subscriber',
|
||||||
],
|
],
|
||||||
operation: [
|
operation: [
|
||||||
'create'
|
'create',
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'Email of new subscriber.',
|
description: 'Email of new subscriber.',
|
||||||
|
|
|
@ -82,7 +82,7 @@ export function sortOptions(options: INodePropertyOptions[]): void {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function getOptions(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: any, qs: IDataObject, instanceUrl: string): OptionsWithUri {
|
function getOptions(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: any, qs: IDataObject, instanceUrl: string): OptionsWithUri { // tslint:disable-line:no-any
|
||||||
const options: OptionsWithUri = {
|
const options: OptionsWithUri = {
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
|
@ -91,7 +91,7 @@ function getOptions(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOpt
|
||||||
body: method === 'GET' ? undefined : body,
|
body: method === 'GET' ? undefined : body,
|
||||||
qs,
|
qs,
|
||||||
uri: `${instanceUrl}/services/data/v39.0${endpoint}`,
|
uri: `${instanceUrl}/services/data/v39.0${endpoint}`,
|
||||||
json: true
|
json: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
|
@ -115,7 +115,7 @@ function getAccessToken(this: IExecuteFunctions | IExecuteSingleFunctions | ILoa
|
||||||
header: {
|
header: {
|
||||||
'alg': 'RS256',
|
'alg': 'RS256',
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const options: OptionsWithUri = {
|
const options: OptionsWithUri = {
|
||||||
|
@ -128,7 +128,7 @@ function getAccessToken(this: IExecuteFunctions | IExecuteSingleFunctions | ILoa
|
||||||
assertion: signature,
|
assertion: signature,
|
||||||
},
|
},
|
||||||
uri: `${authUrl}/services/oauth2/token`,
|
uri: `${authUrl}/services/oauth2/token`,
|
||||||
json: true
|
json: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
|
|
|
@ -150,24 +150,24 @@
|
||||||
"dist/credentials/Redis.credentials.js",
|
"dist/credentials/Redis.credentials.js",
|
||||||
"dist/credentials/RocketchatApi.credentials.js",
|
"dist/credentials/RocketchatApi.credentials.js",
|
||||||
"dist/credentials/RundeckApi.credentials.js",
|
"dist/credentials/RundeckApi.credentials.js",
|
||||||
"dist/credentials/ShopifyApi.credentials.js",
|
|
||||||
"dist/credentials/SalesforceOAuth2Api.credentials.js",
|
|
||||||
"dist/credentials/SalesforceJwtApi.credentials.js",
|
"dist/credentials/SalesforceJwtApi.credentials.js",
|
||||||
|
"dist/credentials/SalesforceOAuth2Api.credentials.js",
|
||||||
|
"dist/credentials/SalesmateApi.credentials.js",
|
||||||
|
"dist/credentials/SegmentApi.credentials.js",
|
||||||
|
"dist/credentials/SendyApi.credentials.js",
|
||||||
"dist/credentials/SentryIoApi.credentials.js",
|
"dist/credentials/SentryIoApi.credentials.js",
|
||||||
"dist/credentials/SentryIoServerApi.credentials.js",
|
"dist/credentials/SentryIoServerApi.credentials.js",
|
||||||
"dist/credentials/SentryIoOAuth2Api.credentials.js",
|
"dist/credentials/SentryIoOAuth2Api.credentials.js",
|
||||||
|
"dist/credentials/ShopifyApi.credentials.js",
|
||||||
|
"dist/credentials/Signl4Api.credentials.js",
|
||||||
"dist/credentials/SlackApi.credentials.js",
|
"dist/credentials/SlackApi.credentials.js",
|
||||||
"dist/credentials/SlackOAuth2Api.credentials.js",
|
"dist/credentials/SlackOAuth2Api.credentials.js",
|
||||||
"dist/credentials/Sms77Api.credentials.js",
|
"dist/credentials/Sms77Api.credentials.js",
|
||||||
"dist/credentials/Smtp.credentials.js",
|
"dist/credentials/Smtp.credentials.js",
|
||||||
|
"dist/credentials/SpotifyOAuth2Api.credentials.js",
|
||||||
"dist/credentials/StravaOAuth2Api.credentials.js",
|
"dist/credentials/StravaOAuth2Api.credentials.js",
|
||||||
"dist/credentials/StripeApi.credentials.js",
|
"dist/credentials/StripeApi.credentials.js",
|
||||||
"dist/credentials/SalesmateApi.credentials.js",
|
|
||||||
"dist/credentials/SegmentApi.credentials.js",
|
|
||||||
"dist/credentials/SendyApi.credentials.js",
|
|
||||||
"dist/credentials/Sftp.credentials.js",
|
"dist/credentials/Sftp.credentials.js",
|
||||||
"dist/credentials/Signl4Api.credentials.js",
|
|
||||||
"dist/credentials/SpotifyOAuth2Api.credentials.js",
|
|
||||||
"dist/credentials/SurveyMonkeyApi.credentials.js",
|
"dist/credentials/SurveyMonkeyApi.credentials.js",
|
||||||
"dist/credentials/SurveyMonkeyOAuth2Api.credentials.js",
|
"dist/credentials/SurveyMonkeyOAuth2Api.credentials.js",
|
||||||
"dist/credentials/TaigaCloudApi.credentials.js",
|
"dist/credentials/TaigaCloudApi.credentials.js",
|
||||||
|
|
Loading…
Reference in a new issue