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.
@@ -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',
@@ -39,6 +39,7 @@ class MoveAndClick {
39
39
  icon: 'file:click.svg',
40
40
  group: ['transform'],
41
41
  version: 1,
42
+ subtitle: '={{$parameter["operation"]}}',
42
43
  description: 'Move mouse and click on an element',
43
44
  defaults: {
44
45
  name: 'Move and Click',
@@ -35,6 +35,7 @@ class RunJavaScript {
35
35
  icon: 'file:code.svg',
36
36
  group: ['transform'],
37
37
  version: 1,
38
+ subtitle: '={{$parameter["operation"]}}',
38
39
  description: 'Execute JavaScript code in the browser',
39
40
  defaults: {
40
41
  name: 'Run JavaScript',
@@ -36,6 +36,7 @@ class CreateProfile {
36
36
  icon: 'file:profile.svg',
37
37
  group: ['transform'],
38
38
  version: 1,
39
+ subtitle: '={{$parameter["operation"]}}',
39
40
  description: 'Create a new browser profile',
40
41
  defaults: {
41
42
  name: 'Create Profile',
@@ -36,6 +36,7 @@ class DeleteProfile {
36
36
  icon: 'file:profile.svg',
37
37
  group: ['transform'],
38
38
  version: 1,
39
+ subtitle: '={{$parameter["operation"]}}',
39
40
  description: 'Delete a browser profile',
40
41
  defaults: {
41
42
  name: 'Delete Profile',
@@ -35,6 +35,7 @@ class StartProfile {
35
35
  icon: 'file:profile.svg',
36
36
  group: ['transform'],
37
37
  version: 1,
38
+ subtitle: '={{$parameter["operation"]}}',
38
39
  description: 'Start a browser profile',
39
40
  defaults: {
40
41
  name: 'Start Profile',
@@ -35,6 +35,7 @@ class StopProfile {
35
35
  icon: 'file:profile.svg',
36
36
  group: ['transform'],
37
37
  version: 1,
38
+ subtitle: '={{$parameter["operation"]}}',
38
39
  description: 'Stop a running browser profile',
39
40
  defaults: {
40
41
  name: 'Stop Profile',
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.13",
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,