diff --git a/packages/nodes-base/credentials/PushbulletOAuth2Api.credentials.ts b/packages/nodes-base/credentials/PushbulletOAuth2Api.credentials.ts index 4bc2b88234..2119241497 100644 --- a/packages/nodes-base/credentials/PushbulletOAuth2Api.credentials.ts +++ b/packages/nodes-base/credentials/PushbulletOAuth2Api.credentials.ts @@ -40,7 +40,7 @@ export class PushbulletOAuth2Api implements ICredentialType { displayName: 'Authentication', name: 'authentication', type: 'hidden' as NodePropertyTypes, - default: 'body' + default: 'body', }, ]; } diff --git a/packages/nodes-base/nodes/Pushbullet/GenericFunctions.ts b/packages/nodes-base/nodes/Pushbullet/GenericFunctions.ts index 88d34fa9f2..bf412da333 100644 --- a/packages/nodes-base/nodes/Pushbullet/GenericFunctions.ts +++ b/packages/nodes-base/nodes/Pushbullet/GenericFunctions.ts @@ -36,7 +36,7 @@ export async function pushbulletApiRequest(this: IExecuteFunctions | ILoadOption // Try to return the error prettier throw new Error( - `Pushbullet error response [${error.statusCode}]: ${message}` + `Pushbullet error response [${error.statusCode}]: ${message}`, ); } throw error; diff --git a/packages/nodes-base/nodes/Pushbullet/Pushbullet.node.ts b/packages/nodes-base/nodes/Pushbullet/Pushbullet.node.ts index 50c331a6bb..283715839b 100644 --- a/packages/nodes-base/nodes/Pushbullet/Pushbullet.node.ts +++ b/packages/nodes-base/nodes/Pushbullet/Pushbullet.node.ts @@ -525,7 +525,7 @@ export class Pushbullet implements INodeType { value: Buffer.from(binaryData.data, BINARY_ENCODING), options: { filename: binaryData.fileName, - } + }, }, }, json: false, @@ -591,7 +591,7 @@ export class Pushbullet implements INodeType { `/pushes/${pushId}`, { dismissed, - } + }, ); } }