diff --git a/package-lock.json b/package-lock.json index 7feb7db3cb..dfd286cdc5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27204,6 +27204,11 @@ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, + "isbot": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/isbot/-/isbot-3.4.0.tgz", + "integrity": "sha512-0WOb6bbJ6gtpWVHQ30r5MzqvSrCNbZ70wFXAJWdXt/0LulF59uvBQnPgA7IelbOXEpV+CtLWkDxLB4TU7f0+VA==" + }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -33267,38 +33272,6 @@ "thenify-all": "^1.0.0" } }, - "n8n-core": { - "version": "0.96.0", - "resolved": "https://registry.npmjs.org/n8n-core/-/n8n-core-0.96.0.tgz", - "integrity": "sha512-FwcLt9tYATP2FJkEkiGlbQCdzzdShTcXfpd6ba0RDeOAwvKK+IIoMvlnaU4ClhJX5og7wvLDouAOWRj9UjjdRQ==", - "requires": { - "axios": "^0.21.1", - "client-oauth2": "^4.2.5", - "cron": "~1.7.2", - "crypto-js": "~4.1.1", - "file-type": "^14.6.2", - "form-data": "^4.0.0", - "lodash.get": "^4.4.2", - "mime-types": "^2.1.27", - "n8n-workflow": "~0.79.0", - "oauth-1.0a": "^2.2.6", - "p-cancelable": "^2.0.0", - "qs": "^6.10.1", - "request": "^2.88.2", - "request-promise-native": "^1.0.7" - } - }, - "n8n-workflow": { - "version": "0.79.0", - "resolved": "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.79.0.tgz", - "integrity": "sha512-ylzM1l7M00gfAnCcQtdRn2DzYZ+7vyWu2gfVe5crpOJnuoLstYbUF+UgShXyrlugdMg6GV86w9mE0iRkgbMb/Q==", - "requires": { - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "riot-tmpl": "^3.0.8", - "xml2js": "^0.4.23" - } - }, "named-placeholders": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.2.tgz", diff --git a/packages/nodes-base/nodes/Wait/Wait.node.ts b/packages/nodes-base/nodes/Wait/Wait.node.ts index 3176747bad..accc79f94d 100644 --- a/packages/nodes-base/nodes/Wait/Wait.node.ts +++ b/packages/nodes-base/nodes/Wait/Wait.node.ts @@ -537,6 +537,13 @@ export class Wait implements INodeType { the received file. If the data gets received via "Form-Data Multipart" it will be the prefix and a number starting with 0 will be attached to it.`, }, + { + displayName: 'Ignore Bots', + name: 'ignoreBots', + type: 'boolean', + default: false, + description: 'Set to true to ignore requests from bots like link previewers and web crawlers', + }, { displayName: 'Response Data', name: 'responseData', @@ -628,13 +635,6 @@ export class Wait implements INodeType { placeholder: 'webhook', description: 'This suffix path will be appended to the restart URL. Helpful when using multiple wait nodes. Note: Does not support expressions.', }, - { - displayName: 'Ignore Bots', - name: 'ignoreBots', - type: 'boolean', - default: false, - description: 'Set to true to ignore requests from bots like link previewers and web crawlers', - }, // { // displayName: 'Raw Body', // name: 'rawBody', diff --git a/packages/nodes-base/nodes/Webhook/Webhook.node.ts b/packages/nodes-base/nodes/Webhook/Webhook.node.ts index efd6c5d493..ad6b6cc280 100644 --- a/packages/nodes-base/nodes/Webhook/Webhook.node.ts +++ b/packages/nodes-base/nodes/Webhook/Webhook.node.ts @@ -283,6 +283,13 @@ export class Webhook implements INodeType { the received file to. If the data gets received via "Form-Data Multipart" it will be the prefix and a number starting with 0 will be attached to it.`, }, + { + displayName: 'Ignore Bots', + name: 'ignoreBots', + type: 'boolean', + default: false, + description: 'Set to true to ignore requests from bots like link previewers and web crawlers', + }, { displayName: 'Response Data', name: 'responseData', @@ -380,13 +387,6 @@ export class Webhook implements INodeType { default: false, description: 'Raw body (binary)', }, - { - displayName: 'Ignore Bots', - name: 'ignoreBots', - type: 'boolean', - default: false, - description: 'Set to true to ignore requests from bots like link previewers and web crawlers', - }, ], }, ],