n8n-3867-progressively-apply-prettier-to-all (#3873)

* 🔨 formatting nodes with prettier
This commit is contained in:
Michael Kret
2022-08-17 18:50:24 +03:00
committed by GitHub
parent f2d326c7f0
commit 91d7e16c81
1072 changed files with 42357 additions and 59109 deletions

View File

@@ -1,11 +1,6 @@
import {
IExecuteFunctions,
IHookFunctions,
} from 'n8n-core';
import { IExecuteFunctions, IHookFunctions } from 'n8n-core';
import {
IDataObject, NodeApiError, NodeOperationError,
} from 'n8n-workflow';
import { IDataObject, NodeApiError, NodeOperationError } from 'n8n-workflow';
/**
* Make an API request to MSG91
@@ -16,7 +11,14 @@ import {
* @param {object} body
* @returns {Promise<any>}
*/
export async function msg91ApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: IDataObject, query?: IDataObject): Promise<any> { // tslint:disable-line:no-any
export async function msg91ApiRequest(
this: IHookFunctions | IExecuteFunctions,
method: string,
endpoint: string,
body: IDataObject,
query?: IDataObject,
// tslint:disable-next-line:no-any
): Promise<any> {
const credentials = await this.getCredentials('msg91Api');
if (query === undefined) {

View File

@@ -7,10 +7,7 @@ import {
NodeOperationError,
} from 'n8n-workflow';
import {
msg91ApiRequest,
} from './GenericFunctions';
import { msg91ApiRequest } from './GenericFunctions';
export class Msg91 implements INodeType {
description: INodeTypeDescription = {
@@ -54,9 +51,7 @@ export class Msg91 implements INodeType {
noDataExpression: true,
displayOptions: {
show: {
resource: [
'sms',
],
resource: ['sms'],
},
},
options: [
@@ -78,12 +73,8 @@ export class Msg91 implements INodeType {
required: true,
displayOptions: {
show: {
operation: [
'send',
],
resource: [
'sms',
],
operation: ['send'],
resource: ['sms'],
},
},
description: 'The number from which to send the message',
@@ -97,12 +88,8 @@ export class Msg91 implements INodeType {
required: true,
displayOptions: {
show: {
operation: [
'send',
],
resource: [
'sms',
],
operation: ['send'],
resource: ['sms'],
},
},
description: 'The number, with coutry code, to which to send the message',
@@ -115,12 +102,8 @@ export class Msg91 implements INodeType {
required: true,
displayOptions: {
show: {
operation: [
'send',
],
resource: [
'sms',
],
operation: ['send'],
resource: ['sms'],
},
},
description: 'The message to send',
@@ -128,9 +111,7 @@ export class Msg91 implements INodeType {
],
};
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
const items = this.getInputData();
const returnData: IDataObject[] = [];
@@ -167,12 +148,17 @@ export class Msg91 implements INodeType {
qs.sender = this.getNodeParameter('from', i) as string;
qs.mobiles = this.getNodeParameter('to', i) as string;
qs.message = this.getNodeParameter('message', i) as string;
} else {
throw new NodeOperationError(this.getNode(), `The operation "${operation}" is not known!`, { itemIndex: i });
throw new NodeOperationError(
this.getNode(),
`The operation "${operation}" is not known!`,
{ itemIndex: i },
);
}
} else {
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`, { itemIndex: i });
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`, {
itemIndex: i,
});
}
const responseData = await msg91ApiRequest.call(this, requestMethod, endpoint, body, qs);
@@ -181,6 +167,5 @@ export class Msg91 implements INodeType {
}
return [this.helpers.returnJsonArray(returnData)];
}
}