n8n-nodes-nvk-browser 1.0.16 → 1.0.17

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.
@@ -1,2 +1,2 @@
1
- import { INodeProperties } from 'n8n-workflow';
1
+ import type { INodeProperties } from 'n8n-workflow';
2
2
  export declare const browserHttpRequestFields: INodeProperties[];
@@ -1,4 +1,4 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class BrowserHttpRequest implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
@@ -1,2 +1,2 @@
1
- import { INodeProperties } from 'n8n-workflow';
1
+ import type { INodeProperties } from 'n8n-workflow';
2
2
  export declare const getNetworkResponseFields: INodeProperties[];
@@ -1,4 +1,4 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class GetNetworkResponse implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
@@ -1,2 +1,2 @@
1
- import { INodeProperties } from 'n8n-workflow';
1
+ import type { INodeProperties } from 'n8n-workflow';
2
2
  export declare const moveAndClickFields: INodeProperties[];
@@ -1,4 +1,4 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class MoveAndClick implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
@@ -1,2 +1,2 @@
1
- import { INodeProperties } from 'n8n-workflow';
1
+ import type { INodeProperties } from 'n8n-workflow';
2
2
  export declare const runJavaScriptFields: INodeProperties[];
@@ -1,4 +1,4 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class RunJavaScript implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
@@ -1,2 +1,2 @@
1
- import { INodeProperties } from 'n8n-workflow';
1
+ import type { INodeProperties } from 'n8n-workflow';
2
2
  export declare const createProfileFields: INodeProperties[];
@@ -1,4 +1,4 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class CreateProfile implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
@@ -1,2 +1,2 @@
1
- import { INodeProperties } from 'n8n-workflow';
1
+ import type { INodeProperties } from 'n8n-workflow';
2
2
  export declare const deleteProfileFields: INodeProperties[];
@@ -1,4 +1,4 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class DeleteProfile implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
@@ -1,2 +1,2 @@
1
- import { INodeProperties } from 'n8n-workflow';
1
+ import type { INodeProperties } from 'n8n-workflow';
2
2
  export declare const startProfileFields: INodeProperties[];
@@ -1,4 +1,4 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class StartProfile implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
@@ -1,2 +1,2 @@
1
- import { INodeProperties } from 'n8n-workflow';
1
+ import type { INodeProperties } from 'n8n-workflow';
2
2
  export declare const stopProfileFields: INodeProperties[];
@@ -1,4 +1,4 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class StopProfile implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
package/index.js CHANGED
@@ -1,11 +1,11 @@
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');
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
9
 
10
10
  module.exports = {
11
11
  nodes: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-nvk-browser",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "n8n nodes for managing Chrome browser profiles and page interactions with Puppeteer automation",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",