n8n-nodes-nvk-browser 1.0.13 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nodes/PageInteraction/BrowserHttpRequest/BrowserHttpRequest.node.js +1 -0
- package/dist/nodes/PageInteraction/GetNetworkResponse/GetNetworkResponse.node.js +1 -0
- package/dist/nodes/PageInteraction/MoveAndClick/MoveAndClick.node.js +1 -0
- package/dist/nodes/PageInteraction/RunJavaScript/RunJavaScript.node.js +1 -0
- package/dist/nodes/ProfileManagement/CreateProfile/CreateProfile.node.js +1 -0
- package/dist/nodes/ProfileManagement/DeleteProfile/DeleteProfile.node.js +1 -0
- package/dist/nodes/ProfileManagement/StartProfile/StartProfile.node.js +1 -0
- package/dist/nodes/ProfileManagement/StopProfile/StopProfile.node.js +1 -0
- package/index.js +22 -0
- package/package.json +3 -2
|
@@ -35,6 +35,7 @@ class BrowserHttpRequest {
|
|
|
35
35
|
icon: 'file:http.svg',
|
|
36
36
|
group: ['transform'],
|
|
37
37
|
version: 1,
|
|
38
|
+
subtitle: '={{$parameter["operation"]}}',
|
|
38
39
|
description: 'Make HTTP requests using browser profile cookies and headers to bypass Cloudflare',
|
|
39
40
|
defaults: {
|
|
40
41
|
name: 'Browser HTTP Request',
|
|
@@ -35,6 +35,7 @@ class GetNetworkResponse {
|
|
|
35
35
|
icon: 'file:network.svg',
|
|
36
36
|
group: ['transform'],
|
|
37
37
|
version: 1,
|
|
38
|
+
subtitle: '={{$parameter["operation"]}}',
|
|
38
39
|
description: 'Capture and return the response of a network request by name or URL',
|
|
39
40
|
defaults: {
|
|
40
41
|
name: 'Get Network Response',
|
package/index.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const CreateProfile = require('./dist/nodes/ProfileManagement/CreateProfile/CreateProfile.node');
|
|
2
|
+
const DeleteProfile = require('./dist/nodes/ProfileManagement/DeleteProfile/DeleteProfile.node');
|
|
3
|
+
const StartProfile = require('./dist/nodes/ProfileManagement/StartProfile/StartProfile.node');
|
|
4
|
+
const StopProfile = require('./dist/nodes/ProfileManagement/StopProfile/StopProfile.node');
|
|
5
|
+
const MoveAndClick = require('./dist/nodes/PageInteraction/MoveAndClick/MoveAndClick.node');
|
|
6
|
+
const RunJavaScript = require('./dist/nodes/PageInteraction/RunJavaScript/RunJavaScript.node');
|
|
7
|
+
const GetNetworkResponse = require('./dist/nodes/PageInteraction/GetNetworkResponse/GetNetworkResponse.node');
|
|
8
|
+
const BrowserHttpRequest = require('./dist/nodes/PageInteraction/BrowserHttpRequest/BrowserHttpRequest.node');
|
|
9
|
+
|
|
10
|
+
module.exports = {
|
|
11
|
+
nodes: [
|
|
12
|
+
CreateProfile,
|
|
13
|
+
DeleteProfile,
|
|
14
|
+
StartProfile,
|
|
15
|
+
StopProfile,
|
|
16
|
+
MoveAndClick,
|
|
17
|
+
RunJavaScript,
|
|
18
|
+
GetNetworkResponse,
|
|
19
|
+
BrowserHttpRequest,
|
|
20
|
+
],
|
|
21
|
+
};
|
|
22
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-nvk-browser",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"displayName": "NVK Browser",
|
|
5
5
|
"description": "n8n nodes for managing Chrome browser profiles and page interactions with Puppeteer automation",
|
|
6
6
|
"keywords": [
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"prepublishOnly": "npm run build && npm run lint -s"
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
37
|
-
"dist"
|
|
37
|
+
"dist",
|
|
38
|
+
"index.js"
|
|
38
39
|
],
|
|
39
40
|
"n8n": {
|
|
40
41
|
"n8nNodesApiVersion": 1,
|