New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

n8n-nodes-browserless

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-browserless - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

6

dist/nodes/Browserless/chemas/browserless-api.schema.js

@@ -26,5 +26,5 @@ "use strict";

.items(joi_1.default.object().keys({
url: joi_1.default.string(),
content: joi_1.default.string(),
type: joi_1.default.string(),
url: joi_1.default.string().optional(),
content: joi_1.default.string().optional(),
type: joi_1.default.string().optional,
}))

@@ -31,0 +31,0 @@ .default([]);

/// <reference types="node" />
export interface content {
addScriptTag?: Array<{
addScriptTag?: {
content?: string;
type?: string;
type?: any;
url?: string;
}>;
addStyleTag?: Array<{
}[];
addStyleTag?: {
content?: string;
url?: string;
}>;
}[];
authenticate?: {

@@ -16,3 +16,3 @@ password?: string;

};
cookies?: Array<{
cookies?: ({
domain?: string;

@@ -27,3 +27,3 @@ expires?: number;

value: string;
}>;
})[];
gotoOptions?: {

@@ -34,4 +34,4 @@ timeout?: number;

rejectRequestPattern?: string[];
rejectResourceTypes?: Array<'document' | 'stylesheet' | 'image' | 'media' | 'font' | 'script' | 'texttrack' | 'xhr' | 'fetch' | 'eventsource' | 'websocket' | 'manifest' | 'other'>;
requestInterceptors?: Array<{
rejectResourceTypes?: ('document' | 'stylesheet' | 'image' | 'media' | 'font' | 'script' | 'texttrack' | 'xhr' | 'fetch' | 'eventsource' | 'websocket' | 'manifest' | 'other')[];
requestInterceptors?: ({
pattern: string;

@@ -44,3 +44,3 @@ response?: {

};
}>;
})[];
setExtraHTTPHeaders?: {

@@ -68,11 +68,11 @@ [x: string]: unknown;

export interface pdf {
addScriptTag?: Array<{
addScriptTag?: {
content?: string;
type?: string;
type?: any;
url?: string;
}>;
addStyleTag?: Array<{
}[];
addStyleTag?: {
content?: string;
url?: string;
}>;
}[];
authenticate?: {

@@ -82,3 +82,3 @@ password?: string;

};
cookies?: Array<{
cookies?: ({
domain?: string;

@@ -93,3 +93,3 @@ expires?: number;

value: string;
}>;
})[];
emulateMedia?: 'screen' | 'print';

@@ -123,4 +123,4 @@ gotoOptions?: {

rejectRequestPattern?: string[];
rejectResourceTypes?: Array<'document' | 'stylesheet' | 'image' | 'media' | 'font' | 'script' | 'texttrack' | 'xhr' | 'fetch' | 'eventsource' | 'websocket' | 'manifest' | 'other'>;
requestInterceptors?: Array<{
rejectResourceTypes?: ('document' | 'stylesheet' | 'image' | 'media' | 'font' | 'script' | 'texttrack' | 'xhr' | 'fetch' | 'eventsource' | 'websocket' | 'manifest' | 'other')[];
requestInterceptors?: ({
pattern: string;

@@ -133,3 +133,3 @@ response?: {

};
}>;
})[];
rotate?: 90 | -90 | 180;

@@ -154,11 +154,11 @@ safeMode?: boolean;

export interface scrape {
addScriptTag?: Array<{
addScriptTag?: {
content?: string;
type?: string;
type?: any;
url?: string;
}>;
addStyleTag?: Array<{
}[];
addStyleTag?: {
content?: string;
url?: string;
}>;
}[];
authenticate?: {

@@ -168,3 +168,3 @@ password?: string;

};
cookies?: Array<{
cookies?: ({
domain?: string;

@@ -179,3 +179,3 @@ expires?: number;

value: string;
}>;
})[];
debug?: {

@@ -188,6 +188,6 @@ console?: boolean;

};
elements: Array<{
elements: {
selector?: string;
timeout?: number;
}>;
}[];
gotoOptions?: {

@@ -198,4 +198,4 @@ timeout?: number;

rejectRequestPattern?: string[];
rejectResourceTypes?: Array<'document' | 'stylesheet' | 'image' | 'media' | 'font' | 'script' | 'texttrack' | 'xhr' | 'fetch' | 'eventsource' | 'websocket' | 'manifest' | 'other'>;
requestInterceptors?: Array<{
rejectResourceTypes?: ('document' | 'stylesheet' | 'image' | 'media' | 'font' | 'script' | 'texttrack' | 'xhr' | 'fetch' | 'eventsource' | 'websocket' | 'manifest' | 'other')[];
requestInterceptors?: ({
pattern: string;

@@ -208,3 +208,3 @@ response?: {

};
}>;
})[];
setExtraHTTPHeaders?: {

@@ -218,11 +218,11 @@ [x: string]: unknown;

export interface screenshot {
addScriptTag?: Array<{
addScriptTag?: {
content?: string;
type?: string;
type?: any;
url?: string;
}>;
addStyleTag?: Array<{
}[];
addStyleTag?: {
content?: string;
url?: string;
}>;
}[];
authenticate?: {

@@ -232,3 +232,3 @@ password?: string;

};
cookies?: Array<{
cookies?: ({
domain?: string;

@@ -243,3 +243,3 @@ expires?: number;

value: string;
}>;
})[];
gotoOptions?: {

@@ -275,4 +275,4 @@ timeout?: number;

rejectRequestPattern?: string[];
rejectResourceTypes?: Array<'document' | 'stylesheet' | 'image' | 'media' | 'font' | 'script' | 'texttrack' | 'xhr' | 'fetch' | 'eventsource' | 'websocket' | 'manifest' | 'other'>;
requestInterceptors?: Array<{
rejectResourceTypes?: ('document' | 'stylesheet' | 'image' | 'media' | 'font' | 'script' | 'texttrack' | 'xhr' | 'fetch' | 'eventsource' | 'websocket' | 'manifest' | 'other')[];
requestInterceptors?: ({
pattern: string;

@@ -285,3 +285,3 @@ response?: {

};
}>;
})[];
scrollPage?: boolean;

@@ -288,0 +288,0 @@ selector?: string;

{
"name": "n8n-nodes-browserless",
"version": "0.1.5",
"version": "0.1.6",
"description": "n8n mode integrate with Browserless platform",

@@ -5,0 +5,0 @@ "keywords": [

{
"name": "n8n-nodes-browserless",
"version": "0.1.5",
"version": "0.1.6",
"description": "n8n mode integrate with Browserless platform",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc