n8n-nodes-scrapingbee 0.1.0

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/LICENSE.md ADDED
@@ -0,0 +1,19 @@
1
+ Copyright 2022 n8n
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # n8n-nodes-scrapingbee
2
+
3
+ This is an n8n community node. It lets you use ScrapingBee API in your n8n workflows.
4
+
5
+ The ScrapingBee web scraping API handles headless browsers, rotates proxies for you, and offers AI-powered data extraction.
6
+
7
+ [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
8
+
9
+ [Installation](#installation)
10
+ [Operations](#operations)
11
+ [Credentials](#credentials) <!-- delete if no auth needed -->
12
+ [Compatibility](#compatibility)
13
+ [Resources](#resources)
14
+ [Version history](#version-history) <!-- delete if not using this section -->
15
+
16
+ ## Installation
17
+
18
+ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
19
+
20
+ ## Operations
21
+
22
+ - HTML API: GET, POST, PUT
23
+ - Google Search API: GET
24
+ - Usage: GET
25
+
26
+ ## Credentials
27
+
28
+ You can obtain your API KEY for free by signing up and visting this page: https://app.scrapingbee.com/account/manage/api_key
29
+
30
+ When you signup, you will also get 1000 credits for free.
31
+
32
+ ## Compatibility
33
+
34
+ n8n 1.101.2 and above
35
+
36
+ ## Resources
37
+
38
+ * [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)
39
+ * [HTML API](https://www.scrapingbee.com/documentation/)
40
+ * [Google Search API](https://www.scrapingbee.com/documentation/google/)
41
+ * [Usage](https://www.scrapingbee.com/documentation/#usage-endpoint)
42
+ * [Data Extraction](https://www.scrapingbee.com/documentation/data-extraction/)
43
+ * [JavaScript Scenario](https://www.scrapingbee.com/documentation/js-scenario/)
44
+
45
+ ## Version history
46
+
47
+ - 0.1.0: Initial Release
48
+
49
+
@@ -0,0 +1,8 @@
1
+ import { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class ScrapingBeeApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ authenticate: IAuthenticateGeneric;
8
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ScrapingBeeApi = void 0;
4
+ class ScrapingBeeApi {
5
+ constructor() {
6
+ this.name = 'ScrapingBeeApi';
7
+ this.displayName = 'ScrapingBee API';
8
+ this.documentationUrl = 'https://www.scrapingbee.com/documentation/';
9
+ this.properties = [
10
+ {
11
+ displayName: 'API Key',
12
+ name: 'apiKey',
13
+ type: 'string',
14
+ typeOptions: {
15
+ password: true,
16
+ },
17
+ default: '',
18
+ },
19
+ ];
20
+ this.authenticate = {
21
+ type: 'generic',
22
+ properties: {
23
+ qs: {
24
+ api_key: '={{$credentials.apiKey}}',
25
+ },
26
+ },
27
+ };
28
+ }
29
+ }
30
+ exports.ScrapingBeeApi = ScrapingBeeApi;
31
+ //# sourceMappingURL=ScrapingBeeApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScrapingBeeApi.credentials.js","sourceRoot":"","sources":["../../credentials/ScrapingBeeApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,cAAc;IAA3B;QAEC,SAAI,GAAG,gBAAgB,CAAC;QACxB,gBAAW,GAAG,iBAAiB,CAAC;QAChC,qBAAgB,GAAG,4CAA4C,CAAC;QAChE,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,OAAO,EAAE,EAAE;aACX;SACD,CAAC;QACF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,EAAE,EAAE;oBACH,OAAO,EAAE,0BAA0B;iBACnC;aACD;SACD,CAAA;IACF,CAAC;CAAA;AAxBD,wCAwBC"}
@@ -0,0 +1,5 @@
1
+ import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class ScrapingBee implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,679 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ScrapingBee = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ class ScrapingBee {
6
+ constructor() {
7
+ this.description = {
8
+ displayName: 'ScrapingBee',
9
+ name: 'ScrapingBee',
10
+ icon: 'file:scrapingbee.svg',
11
+ group: ['transform'],
12
+ version: 1,
13
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
14
+ description: 'Scrape websites using ScrapingBee',
15
+ defaults: {
16
+ name: 'ScrapingBee',
17
+ },
18
+ inputs: ['main'],
19
+ outputs: ['main'],
20
+ credentials: [
21
+ {
22
+ name: 'ScrapingBeeApi',
23
+ required: true,
24
+ },
25
+ ],
26
+ properties: [
27
+ {
28
+ displayName: 'Resource',
29
+ name: 'resource',
30
+ type: 'options',
31
+ noDataExpression: true,
32
+ options: [
33
+ {
34
+ name: 'HTML API',
35
+ value: 'htmlAPI',
36
+ },
37
+ {
38
+ name: 'Google Search API',
39
+ value: 'googleSearchAPI',
40
+ },
41
+ {
42
+ name: 'Usage',
43
+ value: 'usage',
44
+ },
45
+ ],
46
+ default: 'htmlAPI',
47
+ },
48
+ {
49
+ displayName: 'Operation',
50
+ name: 'operation',
51
+ type: 'options',
52
+ noDataExpression: true,
53
+ displayOptions: {
54
+ show: {
55
+ resource: ['htmlAPI'],
56
+ },
57
+ },
58
+ options: [
59
+ {
60
+ name: 'GET',
61
+ value: 'get',
62
+ action: 'Scrape using HTML API',
63
+ description: 'Scrape the webpage using our HTML API',
64
+ },
65
+ {
66
+ name: 'POST',
67
+ value: 'post',
68
+ action: 'Send POST request using HTML API',
69
+ description: 'Send a post request using our HTML API',
70
+ },
71
+ {
72
+ name: 'PUT',
73
+ value: 'put',
74
+ action: 'Send PUT request using HTML API',
75
+ description: 'Send a put request using our HTML API',
76
+ },
77
+ ],
78
+ default: 'get',
79
+ },
80
+ {
81
+ displayName: 'Operation',
82
+ name: 'operation',
83
+ type: 'options',
84
+ noDataExpression: true,
85
+ displayOptions: {
86
+ show: {
87
+ resource: ['googleSearchAPI'],
88
+ },
89
+ },
90
+ options: [
91
+ {
92
+ name: 'GET',
93
+ value: 'get',
94
+ action: 'Get SERP data using GOOGLE SEARCH API',
95
+ description: 'Get SERP data using our Google Search API',
96
+ },
97
+ ],
98
+ default: 'get',
99
+ },
100
+ {
101
+ displayName: 'Operation',
102
+ name: 'operation',
103
+ type: 'options',
104
+ noDataExpression: true,
105
+ displayOptions: {
106
+ show: {
107
+ resource: ['usage'],
108
+ },
109
+ },
110
+ options: [
111
+ {
112
+ name: 'GET',
113
+ value: 'get',
114
+ action: 'Get usage data',
115
+ description: 'Get your API usage data',
116
+ },
117
+ ],
118
+ default: 'get',
119
+ },
120
+ {
121
+ displayName: 'URL',
122
+ description: 'Target webpage to scrape',
123
+ required: true,
124
+ name: 'url',
125
+ type: 'string',
126
+ default: 'http://httpbin.org/anything?json',
127
+ displayOptions: {
128
+ show: {
129
+ resource: ['htmlAPI'],
130
+ },
131
+ },
132
+ },
133
+ {
134
+ displayName: 'Forward Headers',
135
+ name: 'forwardHeaders',
136
+ type: 'boolean',
137
+ default: false,
138
+ description: 'Whether to forward particular headers to the webpage, as well as other headers generated by ScrapingBee or not',
139
+ displayOptions: {
140
+ show: {
141
+ resource: ['htmlAPI'],
142
+ },
143
+ },
144
+ },
145
+ {
146
+ displayName: 'Specify Headers As',
147
+ name: 'specifyHeaders',
148
+ type: 'options',
149
+ options: [
150
+ { name: 'Key/Value Pairs', value: 'keypair' },
151
+ { name: 'Raw JSON', value: 'json' },
152
+ ],
153
+ default: 'keypair',
154
+ displayOptions: {
155
+ show: {
156
+ forwardHeaders: [true],
157
+ resource: ['htmlAPI'],
158
+ },
159
+ },
160
+ },
161
+ {
162
+ displayName: 'Headers (JSON)',
163
+ name: 'jsonHeadersParameter',
164
+ type: 'json',
165
+ description: 'Please prefix headers with "Spb-"',
166
+ default: '',
167
+ displayOptions: {
168
+ show: {
169
+ forwardHeaders: [true],
170
+ specifyHeaders: ['json'],
171
+ resource: ['htmlAPI'],
172
+ },
173
+ },
174
+ },
175
+ {
176
+ displayName: 'Headers (Key/Value)',
177
+ name: 'headerParameters',
178
+ type: 'fixedCollection',
179
+ description: 'No need to prefix headers with "Spb-", we are already taking care of it here',
180
+ typeOptions: {
181
+ multipleValues: true,
182
+ },
183
+ default: {},
184
+ placeholder: 'Add Header',
185
+ options: [
186
+ {
187
+ name: 'header',
188
+ displayName: 'Header',
189
+ values: [
190
+ {
191
+ displayName: 'Name',
192
+ name: 'name',
193
+ type: 'string',
194
+ default: '',
195
+ },
196
+ {
197
+ displayName: 'Value',
198
+ name: 'value',
199
+ type: 'string',
200
+ default: '',
201
+ },
202
+ ],
203
+ },
204
+ ],
205
+ displayOptions: {
206
+ show: {
207
+ forwardHeaders: [true],
208
+ specifyHeaders: ['keypair'],
209
+ resource: ['htmlAPI'],
210
+ },
211
+ },
212
+ },
213
+ {
214
+ displayName: 'Search',
215
+ description: 'Enter your search query',
216
+ required: true,
217
+ name: 'search',
218
+ type: 'string',
219
+ default: 'pizza',
220
+ displayOptions: {
221
+ show: {
222
+ resource: ['googleSearchAPI'],
223
+ },
224
+ },
225
+ },
226
+ {
227
+ displayName: 'Additional Fields',
228
+ name: 'additionalFields',
229
+ type: 'collection',
230
+ default: {},
231
+ placeholder: 'Add Field',
232
+ displayOptions: {
233
+ show: {
234
+ resource: ['htmlAPI'],
235
+ },
236
+ },
237
+ options: [
238
+ {
239
+ displayName: 'AI Data Extraction',
240
+ name: 'aiExtractRules',
241
+ type: 'json',
242
+ default: '',
243
+ description: 'Data extraction from description using AI',
244
+ },
245
+ {
246
+ displayName: 'AI Query',
247
+ name: 'aiQuery',
248
+ type: 'string',
249
+ default: '',
250
+ description: 'The information you want to extract from the webpage using AI',
251
+ },
252
+ {
253
+ displayName: 'AI Selector',
254
+ name: 'aiSelector',
255
+ type: 'string',
256
+ default: '',
257
+ description: 'CSS selector to focus the AI extraction on a specific part of the page',
258
+ },
259
+ {
260
+ displayName: 'Block Ads',
261
+ name: 'blockAds',
262
+ type: 'boolean',
263
+ default: false,
264
+ description: 'Whether to block ads on the page you want to scrape or not',
265
+ },
266
+ {
267
+ displayName: 'Block Resources',
268
+ name: 'blockResources',
269
+ type: 'boolean',
270
+ default: true,
271
+ description: 'Whether to block images and CSS on the page you want to scrape or not',
272
+ },
273
+ {
274
+ displayName: 'Cookies',
275
+ name: 'cookies',
276
+ type: 'string',
277
+ default: '',
278
+ description: 'Pass custom cookies to the webpage you want to scrape',
279
+ hint: 'name=value,other_attributes=other_attribues_value;',
280
+ },
281
+ {
282
+ displayName: 'Country Code',
283
+ name: 'countryCode',
284
+ type: 'string',
285
+ default: '',
286
+ description: 'Premium proxy geolocation',
287
+ },
288
+ {
289
+ displayName: 'Custom Google',
290
+ name: 'customGoogle',
291
+ type: 'boolean',
292
+ default: false,
293
+ description: 'Whether you are scraping Google domains or not? Set to true to scrape Google',
294
+ },
295
+ {
296
+ displayName: 'Device',
297
+ name: 'device',
298
+ type: 'options',
299
+ description: 'Control the device the request will be sent from',
300
+ options: [
301
+ { name: 'Desktop', value: 'desktop' },
302
+ { name: 'Mobile', value: 'mobile' },
303
+ ],
304
+ default: 'desktop',
305
+ },
306
+ {
307
+ displayName: 'Extract Data',
308
+ name: 'extractRules',
309
+ type: 'json',
310
+ default: '',
311
+ description: 'Data extraction from CSS selectors',
312
+ },
313
+ {
314
+ displayName: 'Forward Headers Pure',
315
+ name: 'forwardHeadersPure',
316
+ type: 'boolean',
317
+ default: false,
318
+ description: 'Whether to forward only particular headers to the webpage, and nothing else or not',
319
+ },
320
+ {
321
+ displayName: 'JS Scenario',
322
+ name: 'js_scenario',
323
+ type: 'json',
324
+ default: '',
325
+ description: 'JavaScript scenario to execute',
326
+ },
327
+ {
328
+ displayName: 'JSON Response',
329
+ name: 'jsonResponse',
330
+ type: 'boolean',
331
+ default: false,
332
+ description: 'Whether to wrap response in JSON or not',
333
+ },
334
+ {
335
+ displayName: 'Own Proxy',
336
+ name: 'ownProxy',
337
+ type: 'string',
338
+ default: '',
339
+ description: 'Allows you to use ScrapingBee with your own proxy provider',
340
+ },
341
+ {
342
+ displayName: 'Premium Proxy',
343
+ name: 'premiumProxy',
344
+ type: 'boolean',
345
+ default: false,
346
+ description: 'Whether to use premium proxies to bypass difficult to scrape websites or not',
347
+ },
348
+ {
349
+ displayName: 'Render JS',
350
+ name: 'renderJs',
351
+ type: 'boolean',
352
+ default: true,
353
+ description: 'Whether to render the JavaScript on the page with a headless browser or not',
354
+ },
355
+ {
356
+ displayName: 'Return Page Source',
357
+ name: 'returnPageSource',
358
+ type: 'boolean',
359
+ default: false,
360
+ description: 'Whether to return the original HTML before the JavaScript rendering or not',
361
+ },
362
+ {
363
+ displayName: 'Scraping Configuration',
364
+ name: 'scrapingConfig',
365
+ type: 'string',
366
+ default: '',
367
+ description: 'Use a pre-saved request configuration on your request',
368
+ },
369
+ {
370
+ displayName: 'Screenshot',
371
+ name: 'screenshot',
372
+ type: 'boolean',
373
+ default: false,
374
+ description: 'Whether to return a screenshot of the page you want to scrape or not',
375
+ },
376
+ {
377
+ displayName: 'Screenshot Full Page',
378
+ name: 'screenshotFullPage',
379
+ type: 'boolean',
380
+ default: false,
381
+ description: 'Whether to Return a screenshot of the full page you want to scrape or not',
382
+ },
383
+ {
384
+ displayName: 'Screenshot Selector',
385
+ name: 'screenshotSelector',
386
+ type: 'string',
387
+ default: '',
388
+ description: 'Return a screenshot of a particular area of the page, targeted by a CSS selector',
389
+ },
390
+ {
391
+ displayName: 'Session ID',
392
+ name: 'sessionId',
393
+ type: 'number',
394
+ default: '',
395
+ description: 'Route multiple API requests through the same IP address',
396
+ },
397
+ {
398
+ displayName: 'Stealth Proxy',
399
+ name: 'stealthProxy',
400
+ type: 'boolean',
401
+ default: false,
402
+ description: 'Whether to use special stealth proxy pool or not',
403
+ },
404
+ {
405
+ displayName: 'Timeout',
406
+ name: 'timeout',
407
+ type: 'number',
408
+ default: 140000,
409
+ description: 'Timeout for your requests',
410
+ },
411
+ {
412
+ displayName: 'Transparent Status Code',
413
+ name: 'transparentStatusCode',
414
+ type: 'boolean',
415
+ default: false,
416
+ description: 'Whether to transparently return the same HTTP code of the page requested or not',
417
+ },
418
+ {
419
+ displayName: 'Wait',
420
+ name: 'wait',
421
+ type: 'number',
422
+ default: '',
423
+ description: 'Additional time in ms for JavaScript to render',
424
+ },
425
+ {
426
+ displayName: 'Wait Browser',
427
+ name: 'waitBrowser',
428
+ type: 'options',
429
+ description: 'Control the device the request will be sent from',
430
+ options: [
431
+ { name: 'Domcontentloaded', value: 'domcontentloaded' },
432
+ { name: 'Load', value: 'load' },
433
+ { name: 'Networkidle0', value: 'networkidle0' },
434
+ { name: 'Networkidle2', value: 'networkidle2' },
435
+ ],
436
+ default: 'domcontentloaded',
437
+ },
438
+ {
439
+ displayName: 'Wait For',
440
+ name: 'waitFor',
441
+ type: 'string',
442
+ default: '',
443
+ description: 'CSS / XPath selector to wait for in the DOM',
444
+ },
445
+ {
446
+ displayName: 'Window Height',
447
+ name: 'windowHeight',
448
+ type: 'number',
449
+ default: 1080,
450
+ description: 'Height, in pixel, of the viewport used to render the page you want to scrape',
451
+ },
452
+ {
453
+ displayName: 'Window Width',
454
+ name: 'windowWidth',
455
+ type: 'number',
456
+ default: 1920,
457
+ description: 'Width, in pixel, of the viewport used to render the page you want to scrape',
458
+ },
459
+ ],
460
+ },
461
+ {
462
+ displayName: 'Additional Fields',
463
+ name: 'additionalFields',
464
+ type: 'collection',
465
+ default: {},
466
+ placeholder: 'Add Field',
467
+ displayOptions: {
468
+ show: {
469
+ resource: ['googleSearchAPI'],
470
+ },
471
+ },
472
+ options: [
473
+ {
474
+ displayName: 'Add HTML',
475
+ name: 'addHtml',
476
+ type: 'boolean',
477
+ default: false,
478
+ description: 'Whether to add the full html of the page in the results or not',
479
+ },
480
+ {
481
+ displayName: 'Country Code',
482
+ name: 'countryCode',
483
+ type: 'string',
484
+ default: 'us',
485
+ description: 'Country code from which you would like the request to come from',
486
+ },
487
+ {
488
+ displayName: 'Device',
489
+ name: 'device',
490
+ type: 'options',
491
+ description: 'Control the device the request will be sent from',
492
+ options: [
493
+ { name: 'Desktop', value: 'desktop' },
494
+ { name: 'Mobile', value: 'mobile' },
495
+ ],
496
+ default: 'desktop',
497
+ },
498
+ {
499
+ displayName: 'Disable Autocorrection',
500
+ name: 'nfpr',
501
+ type: 'boolean',
502
+ default: false,
503
+ description: 'Whether to exclude results from auto-corrected queries that were spelt wrong or not',
504
+ },
505
+ {
506
+ displayName: 'Extra Params',
507
+ name: 'extraParams',
508
+ type: 'string',
509
+ default: '',
510
+ description: 'Extra Google URL parameters',
511
+ hint: 'You can also pass multiple parameters, separated by &: example: tbs=qdr:d&lr=lang_fr',
512
+ },
513
+ {
514
+ displayName: 'Language',
515
+ name: 'language',
516
+ type: 'string',
517
+ default: 'en',
518
+ description: 'Language the search results will be displayed in',
519
+ },
520
+ {
521
+ displayName: 'Number of Results',
522
+ name: 'nbResults',
523
+ type: 'number',
524
+ default: 100,
525
+ description: 'The number of results you want to get back from Google Search',
526
+ },
527
+ {
528
+ displayName: 'Page',
529
+ name: 'page',
530
+ type: 'number',
531
+ default: 1,
532
+ description: 'The page number you want to extract results from',
533
+ },
534
+ {
535
+ displayName: 'Search Type',
536
+ name: 'searchType',
537
+ type: 'options',
538
+ description: 'The type of search you want to perform, (classic, news or maps)',
539
+ options: [
540
+ { name: 'Classic', value: 'classic' },
541
+ { name: 'News', value: 'news' },
542
+ { name: 'Maps', value: 'maps' },
543
+ ],
544
+ default: 'classic',
545
+ },
546
+ ],
547
+ },
548
+ ],
549
+ };
550
+ }
551
+ async execute() {
552
+ var _a;
553
+ const items = this.getInputData();
554
+ const returnData = [];
555
+ for (let i = 0; i < items.length; i++) {
556
+ try {
557
+ const resource = this.getNodeParameter('resource', i);
558
+ const credentials = await this.getCredentials('ScrapingBeeApi');
559
+ const apiKey = credentials.apiKey;
560
+ const qs = { api_key: apiKey };
561
+ const headers = {};
562
+ let body = {};
563
+ let endpoint = '';
564
+ let requestMethod = 'GET';
565
+ const additionalFields = this.getNodeParameter('additionalFields', i, {});
566
+ Object.keys(additionalFields).forEach(key => {
567
+ const snakeKey = key.replace(/[A-Z]/g, letter => `_${letter.toLowerCase()}`);
568
+ if (additionalFields[key] !== '' && additionalFields[key] !== undefined && additionalFields[key] !== null) {
569
+ qs[snakeKey] = additionalFields[key];
570
+ }
571
+ });
572
+ const requestOptions = {
573
+ qs,
574
+ headers,
575
+ body,
576
+ json: false,
577
+ resolveWithFullResponse: true,
578
+ encoding: 'utf8',
579
+ };
580
+ if (resource === 'htmlAPI') {
581
+ requestMethod = this.getNodeParameter('operation', i).toUpperCase();
582
+ endpoint = 'https://app.scrapingbee.com/api/v1/';
583
+ qs.url = this.getNodeParameter('url', i);
584
+ const forwardHeaders = this.getNodeParameter('forwardHeaders', i, false);
585
+ if (forwardHeaders) {
586
+ qs.forward_headers = forwardHeaders;
587
+ const specifyHeaders = this.getNodeParameter('specifyHeaders', i, 'keypair');
588
+ if (specifyHeaders === 'json') {
589
+ const jsonHeaders = this.getNodeParameter('jsonHeadersParameter', i, '');
590
+ if (jsonHeaders)
591
+ Object.assign(headers, JSON.parse(jsonHeaders));
592
+ }
593
+ else {
594
+ const headerParameters = this.getNodeParameter('headerParameters', i, { header: [] });
595
+ for (const header of headerParameters.header) {
596
+ headers[`Spb-${header.name}`] = header.value;
597
+ }
598
+ }
599
+ }
600
+ requestOptions.encoding = null;
601
+ }
602
+ else if (resource === 'googleSearchAPI') {
603
+ endpoint = 'https://app.scrapingbee.com/api/v1/store/google';
604
+ qs.search = this.getNodeParameter('search', i);
605
+ }
606
+ else {
607
+ endpoint = 'https://app.scrapingbee.com/api/v1/usage';
608
+ }
609
+ requestOptions.method = requestMethod;
610
+ requestOptions.url = endpoint;
611
+ const response = await this.helpers.request(requestOptions);
612
+ const contentType = (response.headers['content-type'] || '').split(';')[0];
613
+ const responseBody = Buffer.from(response.body);
614
+ if (contentType.includes('application/json')) {
615
+ try {
616
+ const jsonData = JSON.parse(responseBody.toString());
617
+ returnData.push({ json: jsonData, pairedItem: { item: i } });
618
+ }
619
+ catch (parseError) {
620
+ returnData.push({ json: { raw: responseBody.toString() }, pairedItem: { item: i } });
621
+ }
622
+ }
623
+ else if (contentType.startsWith('text/')) {
624
+ returnData.push({ json: { data: responseBody.toString() }, pairedItem: { item: i } });
625
+ }
626
+ else {
627
+ const contentDisposition = response.headers['content-disposition'];
628
+ let fileName = '';
629
+ let directory = '';
630
+ if (contentDisposition) {
631
+ const match = contentDisposition.match(/filename="?([^"]+)"?/);
632
+ if (match) {
633
+ fileName = match[1];
634
+ }
635
+ }
636
+ if (!fileName && qs.url) {
637
+ try {
638
+ const url = new URL(qs.url);
639
+ const pathParts = url.pathname.split('/').filter(p => p);
640
+ fileName = pathParts.pop() || '';
641
+ directory = pathParts.join('/');
642
+ }
643
+ catch (e) { }
644
+ }
645
+ if (!fileName) {
646
+ const extension = (contentType.split('/')[1] || 'bin').split('+')[0];
647
+ fileName = `scrapingbee-data-${Date.now()}.${extension}`;
648
+ }
649
+ const binaryData = await this.helpers.prepareBinaryData(responseBody, fileName, contentType);
650
+ returnData.push({
651
+ json: { directory },
652
+ binary: { data: binaryData },
653
+ pairedItem: { item: i },
654
+ });
655
+ }
656
+ }
657
+ catch (error) {
658
+ if (this.continueOnFail()) {
659
+ let errorMessage = error.message;
660
+ if ((_a = error.response) === null || _a === void 0 ? void 0 : _a.body) {
661
+ try {
662
+ const apiError = JSON.parse(error.response.body.toString());
663
+ errorMessage = apiError.message || apiError.detail || JSON.stringify(apiError);
664
+ }
665
+ catch (e) {
666
+ errorMessage = error.response.body.toString();
667
+ }
668
+ }
669
+ returnData.push({ json: { error: errorMessage }, pairedItem: { item: i } });
670
+ continue;
671
+ }
672
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), error);
673
+ }
674
+ }
675
+ return [this.helpers.returnJsonArray(returnData)];
676
+ }
677
+ }
678
+ exports.ScrapingBee = ScrapingBee;
679
+ //# sourceMappingURL=ScrapingBee.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScrapingBee.node.js","sourceRoot":"","sources":["../../../nodes/ScrapingBee/ScrapingBee.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ {
2
+ "node": "n8n-nodes-base.ScrapingBee",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": ["Miscellaneous"],
6
+ "resources": {
7
+ "credentialDocumenation": [
8
+ {
9
+ "url": ""
10
+ }
11
+ ],
12
+ "primaryDocumentation": [
13
+ {
14
+ "url": ""
15
+ }
16
+ ]
17
+ }
18
+ }
@@ -0,0 +1,6 @@
1
+ <svg width="148" height="142" viewBox="0 0 148 142" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.10406 43.4061V97.2369C5.10406 86.856 9.41669 76.9 17.0934 69.5587C24.7702 62.2175 35.1824 58.092 46.0402 58.0896H86.9857V43.4061C86.9832 33.0251 82.6683 23.0701 74.9898 15.7305C67.3113 8.39087 56.898 4.26765 46.0402 4.26765C35.1833 4.26765 24.771 8.39113 17.094 15.731C9.41697 23.0709 5.10406 33.0259 5.10406 43.4061V43.4061Z" fill="white"/>
3
+ <path d="M46.0363 136.375H102.34C113.197 136.375 123.609 132.251 131.286 124.912C138.963 117.572 143.276 107.617 143.276 97.2365V97.2365C143.276 86.8555 138.963 76.8996 131.287 69.5583C123.61 62.217 113.198 58.0916 102.34 58.0892H86.9817V97.2365C86.9793 107.617 82.6643 117.572 74.9858 124.912C67.3073 132.252 56.8941 136.375 46.0363 136.375V136.375Z" fill="white"/>
4
+ <path d="M5.10406 97.2365C5.10406 107.617 9.41697 117.572 17.094 124.912C24.771 132.251 35.1833 136.375 46.0402 136.375V136.375C56.898 136.375 67.3113 132.252 74.9898 124.912C82.6683 117.572 86.9832 107.617 86.9857 97.2365V58.0892H46.0402C35.1824 58.0916 24.7702 62.217 17.0934 69.5583C9.41669 76.8996 5.10406 86.8555 5.10406 97.2365V97.2365Z" fill="#FFC91F"/>
5
+ <path d="M102.34 53.1876H92.1203V43.4163C91.9484 31.8452 87.02 20.8037 78.4008 12.6792C69.7815 4.55467 58.164 0 46.0601 0C33.9563 0 22.3388 4.55467 13.7195 12.6792C5.10028 20.8037 0.171893 31.8452 0 43.4163V97.2471C0.0147525 108.921 4.87175 120.113 13.5056 128.367C22.1395 136.622 33.8453 141.266 46.0555 141.28H102.359C114.462 141.116 126.01 136.404 134.508 128.163C143.006 119.922 147.77 108.815 147.77 97.2426C147.77 85.6704 143.006 74.5631 134.508 66.3223C126.01 58.0816 114.462 53.3697 102.359 53.2053L102.34 53.1876ZM10.2201 69.5766V43.3985C10.3715 34.4108 14.2121 25.8402 20.9135 19.5355C27.6148 13.2308 36.6398 9.69739 46.0416 9.69739C55.4433 9.69739 64.4683 13.2308 71.1696 19.5355C77.871 25.8402 81.7116 34.4108 81.863 43.3985V53.1698H46.0369C45.1914 53.1698 44.346 53.1698 43.5005 53.2408L42.6736 53.303C42.1068 53.303 41.5494 53.383 40.9919 53.4363L40.0628 53.5606C39.5518 53.6228 39.0408 53.685 38.5391 53.7649L37.5542 53.9337L36.0955 54.218L35.12 54.4401C34.6369 54.5555 34.1909 54.671 33.6799 54.8043L32.7508 55.053L31.2456 55.5238L30.4466 55.7814C29.8055 56.0035 29.183 56.2344 28.5884 56.4831L28.2168 56.6253C27.4828 56.9184 26.7488 57.2382 26.0334 57.5757L25.3923 57.8866C24.8906 58.1354 24.3889 58.3752 23.9057 58.6328L23.116 59.0681C22.6886 59.3079 22.2612 59.5478 21.8431 59.7965C21.425 60.0452 21.295 60.1251 21.0255 60.2939L19.8363 61.0578L19.0373 61.5997C18.647 61.8751 18.2661 62.1505 17.8945 62.4347L17.1419 62.9944C16.7517 63.2964 16.3707 63.6073 15.9898 63.9271L15.3209 64.4778C14.8842 64.8509 14.4568 65.2417 14.0294 65.6415L13.5927 66.0323C13.0353 66.5653 12.4964 67.116 11.9668 67.6757C11.8181 67.8267 11.6881 67.9777 11.5487 68.1376C11.1585 68.5462 10.7776 68.9637 10.4152 69.399L10.2201 69.5766ZM10.2201 97.2293C10.2275 88.1486 14.0031 79.4417 20.7182 73.0199C27.4333 66.5981 36.5391 62.986 46.0369 62.9766H81.863V97.2293C81.9396 101.773 81.0696 106.286 79.3038 110.506C77.5379 114.725 74.9115 118.566 71.5776 121.805C68.2437 125.045 64.2689 127.617 59.8848 129.373C55.5007 131.129 50.7949 132.034 46.0416 132.034C41.2883 132.034 36.5825 131.129 32.1984 129.373C27.8142 127.617 23.8394 125.045 20.5055 121.805C17.1716 118.566 14.5452 114.725 12.7794 110.506C11.0135 106.286 10.1436 101.773 10.2201 97.2293V97.2293ZM102.34 131.482H74.9784L75.1642 131.331C75.5823 131.002 75.9818 130.665 76.3813 130.327C76.5765 130.167 76.7716 130.016 76.9574 129.848C77.5427 129.35 78.1002 128.835 78.6576 128.311L79.1315 127.831C79.5217 127.44 79.9119 127.058 80.2929 126.659L80.8875 125.992C81.2126 125.637 81.5285 125.282 81.8166 124.918C82.1046 124.553 82.2254 124.429 82.4205 124.18C82.6156 123.932 82.9965 123.47 83.2753 123.105C83.554 122.741 83.6655 122.59 83.8513 122.324C84.0371 122.057 84.3809 121.586 84.641 121.204L85.1799 120.414C85.4308 120.014 85.6816 119.614 85.9232 119.206C86.0811 118.948 86.2391 118.699 86.3878 118.442C86.6572 117.98 86.908 117.509 87.1589 117.038C87.2704 116.825 87.3912 116.621 87.4934 116.408C87.8464 115.715 88.1809 115.022 88.4875 114.32C88.5433 114.196 88.5897 114.071 88.6362 113.947C88.8963 113.361 89.1379 112.766 89.3702 112.17C89.4631 111.913 89.5467 111.646 89.6396 111.389C89.8068 110.918 89.9741 110.438 90.132 109.959C90.2249 109.665 90.3086 109.363 90.3922 109.07C90.5315 108.617 90.6616 108.182 90.7731 107.693C90.8567 107.383 90.9311 107.072 91.0054 106.761C91.1076 106.299 91.2098 105.872 91.3027 105.375C91.3584 105.055 91.4235 104.735 91.4792 104.425C91.5629 103.936 91.6279 103.456 91.6929 102.968C91.7394 102.666 91.7858 102.364 91.823 102.079C91.8787 101.546 91.9252 101.013 91.9624 100.472C91.9624 100.205 92.0088 99.9475 92.0274 99.681C92.0274 98.8726 92.1017 98.0643 92.1017 97.2559V62.9766H102.322C111.823 62.9766 120.936 66.5853 127.655 73.009C134.373 79.4326 138.148 88.1449 138.148 97.2293C138.148 106.314 134.373 115.026 127.655 121.45C120.936 127.873 111.823 131.482 102.322 131.482H102.34Z" fill="#0F0F0E"/>
6
+ </svg>
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "n8n-nodes-scrapingbee",
3
+ "version": "0.1.0",
4
+ "description": "n8n node to call ScrapingBee API services.",
5
+ "keywords": [
6
+ "n8n-community-node-package"
7
+ ],
8
+ "license": "MIT",
9
+ "homepage": "https://www.scrapingbee.com/",
10
+ "author": {
11
+ "name": "ScrapingBee",
12
+ "email": "contact@scrapingbee.com"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/ScrapingBee/scrapingbee-n8n.git"
17
+ },
18
+ "engines": {
19
+ "node": ">=20.15"
20
+ },
21
+ "main": "index.js",
22
+ "scripts": {
23
+ "build": "npx rimraf dist && tsc && gulp build:icons",
24
+ "dev": "tsc --watch",
25
+ "format": "prettier nodes credentials --write",
26
+ "lint": "eslint nodes credentials package.json",
27
+ "lintfix": "eslint nodes credentials package.json --fix",
28
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "n8n": {
34
+ "n8nNodesApiVersion": 1,
35
+ "credentials": [
36
+ "dist/credentials/ScrapingBee.credentials.js"
37
+ ],
38
+ "nodes": [
39
+ "dist/nodes/ScrapingBee/ScrapingBee.node.js"
40
+ ]
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^24.0.13",
44
+ "@typescript-eslint/parser": "~8.32.0",
45
+ "eslint": "^8.57.0",
46
+ "eslint-plugin-n8n-nodes-base": "^1.16.3",
47
+ "gulp": "^5.0.0",
48
+ "prettier": "^3.5.3",
49
+ "typescript": "^5.8.3"
50
+ },
51
+ "peerDependencies": {
52
+ "n8n-workflow": "*"
53
+ }
54
+ }
@@ -0,0 +1 @@
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/axios/index.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/constants.d.ts","../node_modules/n8n-workflow/dist/deferredpromise.d.ts","../node_modules/n8n-workflow/dist/errors/error.types.d.ts","../node_modules/n8n-workflow/dist/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/errors/application.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/errors/index.d.ts","../node_modules/n8n-workflow/dist/executionstatus.d.ts","../node_modules/n8n-workflow/dist/result.d.ts","../node_modules/n8n-workflow/dist/expression.d.ts","../node_modules/n8n-workflow/dist/workflow.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxyenvprovider.d.ts","../node_modules/n8n-workflow/dist/interfaces.d.ts","../node_modules/n8n-workflow/dist/loggerproxy.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/main.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/options.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/parser.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/printer.d.ts","../node_modules/@n8n/tournament/node_modules/recast/main.d.ts","../node_modules/@n8n/tournament/dist/expressionsplitter.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/main.d.ts","../node_modules/@n8n/tournament/dist/ast.d.ts","../node_modules/@n8n/tournament/dist/expressionbuilder.d.ts","../node_modules/@n8n/tournament/dist/evaluator.d.ts","../node_modules/@n8n/tournament/dist/analysis.d.ts","../node_modules/@n8n/tournament/dist/index.d.ts","../node_modules/n8n-workflow/dist/expressionevaluatorproxy.d.ts","../node_modules/n8n-workflow/dist/nodehelpers.d.ts","../node_modules/n8n-workflow/dist/observableobject.d.ts","../node_modules/n8n-workflow/dist/telemetryhelpers.d.ts","../node_modules/n8n-workflow/dist/cron.d.ts","../node_modules/n8n-workflow/dist/globalstate.d.ts","../node_modules/n8n-workflow/dist/messageeventbus.d.ts","../node_modules/zod/lib/helpers/typealiases.d.ts","../node_modules/zod/lib/helpers/util.d.ts","../node_modules/zod/lib/zoderror.d.ts","../node_modules/zod/lib/locales/en.d.ts","../node_modules/zod/lib/errors.d.ts","../node_modules/zod/lib/helpers/parseutil.d.ts","../node_modules/zod/lib/helpers/enumutil.d.ts","../node_modules/zod/lib/helpers/errorutil.d.ts","../node_modules/zod/lib/helpers/partialutil.d.ts","../node_modules/zod/lib/standard-schema.d.ts","../node_modules/zod/lib/types.d.ts","../node_modules/zod/lib/external.d.ts","../node_modules/zod/lib/index.d.ts","../node_modules/zod/index.d.ts","../node_modules/n8n-workflow/dist/fromaiparseutils.d.ts","../node_modules/n8n-workflow/dist/metadatautils.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxy.d.ts","../node_modules/n8n-workflow/dist/versionednodetype.d.ts","../node_modules/n8n-workflow/dist/typevalidation.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/type-guards.d.ts","../node_modules/n8n-workflow/dist/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionextension.d.ts","../node_modules/n8n-workflow/dist/extensions/index.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionparser.d.ts","../node_modules/n8n-workflow/dist/nativemethods/index.d.ts","../node_modules/n8n-workflow/dist/nodeparameters/filterparameter.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../credentials/scrapingbeeapi.credentials.ts","../nodes/scrapingbee/scrapingbee.node.ts","../nodes/scrapingbee/scrapingbee.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[53,98,248],[53,98,210],[53,98,197,208],[53,98,213],[53,98,197,198,209],[53,98],[53,98,209,210,211,212],[53,98,199,200],[53,98,199],[53,98,200,202],[53,98,199,205,206],[53,98,199,201,202,203,205,206,207],[53,98,202,203,204],[53,98,202,205,207],[53,98,202],[53,98,202,205],[53,98,199,201],[53,98,183],[53,98,194],[53,98,193,194,195,196],[53,98,184,185],[53,98,184],[53,98,183,185,187],[53,98,184,190,191],[53,98,183,187,188,189],[53,98,183,187,190,192],[53,98,183,187],[53,98,183,190],[53,98,183,184,186],[53,98,183,184,186,187,188,190,191,192],[53,95,98],[53,97,98],[98],[53,98,103,133],[53,98,99,104,110,111,118,130,141],[53,98,99,100,110,118],[53,98,101,142],[53,98,102,103,111,119],[53,98,103,130,138],[53,98,104,106,110,118],[53,97,98,105],[53,98,106,107],[53,98,108,110],[53,97,98,110],[53,98,110,111,112,130,141],[53,98,110,111,112,125,130,133],[53,93,98],[53,93,98,106,110,113,118,130,141,248],[53,98,110,111,113,114,118,130,138,141],[53,98,113,115,130,138,141],[51,52,53,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147],[53,98,110,116],[53,98,117,141],[53,98,106,110,118,130],[53,98,119],[53,98,120],[53,97,98,121],[53,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,248],[53,98,123],[53,98,124],[53,98,110,125,126],[53,98,125,127,142,144],[53,98,110,130,131,133],[53,98,132,133],[53,98,130,131],[53,98,133],[53,98,134],[53,95,98,130,135],[53,98,110,136,137],[53,98,136,137],[53,98,103,118,130,138],[53,98,139],[53,98,118,140],[53,98,113,124,141],[53,98,103,142],[53,98,130,143],[53,98,117,144],[53,98,145],[53,98,110,112,121,130,133,141,143,144,146],[53,98,130,147],[53,98,254,293],[53,98,254,278,293],[53,98,293],[53,98,254],[53,98,254,279,293],[53,98,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292],[53,98,279,293],[53,98,113,130,148,248],[53,98,181],[53,98,152,157,181],[53,98,158,181],[53,98,152],[53,98,153],[53,98,169],[53,98,157],[53,98,158],[53,98,159],[53,98,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[53,98,152,161,181],[53,98,161,162,181],[53,98,168],[53,98,165],[53,98,157,158,181],[53,98,179,181],[53,98,181,213],[53,98,242],[53,98,242,243],[53,98,234],[53,98,113,150,151,175,176,177,178,179,180,181,182,214,215,216,217,218,219,220,235,236,237,238,239,240,241,244,245,246,247],[50,53,98,111,113,130,138,141,149,150,151,159,162,163,165,168,175,176,177,179,180,248],[53,98,157,181],[53,98,178,181],[53,98,179,180,181],[53,63,67,98,141],[53,63,98,130,141],[53,98,130],[53,58,98],[53,60,63,98,141],[53,98,118,138],[53,98,148],[53,58,98,148],[53,60,63,98,118,141],[53,55,56,57,59,62,98,110,130,141],[53,63,71,98],[53,56,61,98],[53,63,87,88,98],[53,56,59,63,98,133,141,148],[53,63,98],[53,55,98],[53,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,98],[53,63,80,83,98,106],[53,63,71,72,73,98],[53,61,63,72,74,98],[53,62,98],[53,56,58,63,98],[53,63,67,72,74,98],[53,67,98],[53,61,63,66,98,141],[53,56,60,63,71,98],[53,63,80,98],[53,58,63,87,98,133,146,148],[53,98,233],[53,98,223,224],[53,98,221,222,223,225,226,231],[53,98,222,223],[53,98,232],[53,98,223],[53,98,221,222,223,226,227,228,229,230],[53,98,221,222,233]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc602ef9638db2163c461ec64133fe76f890f6e03b69b1c96f5c5e59592025e8","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"17fe9131bec653b07b0a1a8b99a830216e3e43fe0ea2605be318dc31777c8bbf","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"2472ef4c28971272a897fdb85d4155df022e1f5d9a474a526b8fc2ef598af94e","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"19851a6596401ca52d42117108d35e87230fc21593df5c4d3da7108526b6111c","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"40bfc70953be2617dc71979c14e9e99c5e65c940a4f1c9759ddb90b0f8ff6b1a","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"561c60d8bfe0fec2c08827d09ff039eca0c1f9b50ef231025e5a549655ed0298","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"003ec918ec442c3a4db2c36dc0c9c766977ea1c8bcc1ca7c2085868727c3d3f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"12fb9c13f24845000d7bd9660d11587e27ef967cbd64bd9df19ae3e6aa9b52d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"5078cd62dbdf91ae8b1dc90b1384dec71a9c0932d62bdafb1a811d2a8e26bef2","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f32444438ecb1fa4519f6ec3977d69ce0e3acfa18b803e5cd725c204501f350","impliedFormat":1},{"version":"0ab3c844f1eb5a1d94c90edc346a25eb9d3943af7a7812f061bf2d627d8afac0","impliedFormat":1},{"version":"b0a84d9348601dbc217017c0721d6064c3b1af9b392663348ba146fdae0c7afd","impliedFormat":1},{"version":"161f09445a8b4ba07f62ae54b27054e4234e7957062e34c6362300726dabd315","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"e6057f9e7b0c64d4527afeeada89f313f96a53291705f069a9193c18880578cb","impliedFormat":1},{"version":"34ecb9596317c44dab586118fb62c1565d3dad98d201cd77f3e6b0dde453339c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"237581f5ec4620a17e791d3bb79bad3af01e27a274dbee875ac9b0721a4fe97d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"e6d81b1f7ab11dc1b1ad7ad29fcfad6904419b36baf55ed5e80df48d56ac3aff","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"b6b8e3736383a1d27e2592c484a940eeb37ec4808ba9e74dd57679b2453b5865","impliedFormat":1},{"version":"d6f36b683c59ac0d68a1d5ee906e578e2f5e9a285bca80ff95ce61cdc9ddcdeb","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"b338a6e6c1d456e65a6ea78da283e3077fe8edf7202ae10490abbba5b952b05e","impliedFormat":1},{"version":"2918b7c516051c30186a1055ebcdb3580522be7190f8a2fff4100ea714c7c366","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"d67fc92a91171632fc74f413ce42ff1aa7fbcc5a85b127101f7ec446d2039a1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d40e4631100dbc067268bce96b07d7aff7f28a541b1bfb7ef791c64a696b3d33","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"e4c653466d0497d87fa9ffd00e59a95f33bc1c1722c3f5c84dab2e950c18da70","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6dcc3b933e864e91d4bea94274ad69854d5d2a1311a4b0e20408a57af19e95d","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"8093df4b6de7728cd3327b33ce2846cb808e3b738b55f380578ab47fb1a0a82f","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"b047c5f4612ebd6f142d2eda135939c6808ac082b2251a36e9e002b96f04ca18","impliedFormat":1},{"version":"816c068d57010d183fa4dce821e6552a912cb654cf9f0e840f49f0a0fb3d2157","impliedFormat":1},{"version":"5ca59af607163e4c0b2350019394132c6fd5d643ecc13d5d2692084c23eb74fc","impliedFormat":1},{"version":"ebc356c4f81035935ebddc0e1c7818038b78043d349d58e1042aa1c0579b5600","impliedFormat":1},{"version":"fc73b467be17d21f268b1dae8e63c269e8eba711d6d3faf3c5e525383ac5b461","impliedFormat":1},{"version":"4ba081d644e7e33dc2fa68f4bf7b963cbf9838092a10f0f7d5dcc98095012bfb","impliedFormat":1},{"version":"7c1d9666b46748a09c7c290f2cad37d32d0a395c4fc49357f0f7b32cd2dc7d97","impliedFormat":1},{"version":"054eafa956d5592e6a91c2553e5657ee3032ed50121a65da1079c96d82631459","impliedFormat":1},{"version":"01d56fcd8d2968c9545f42ab80c1e6a43be249dadeb2d38262b888370ebbdf32","impliedFormat":1},{"version":"cf53b1ef37bdf9eacfe04a5c0977793a87fbdd8d6893aa513075fa656c2f7638","impliedFormat":1},{"version":"bfccff2a7a1a17431408d48ec6ef5f54c42d1a1650b97e291c63de8b07333ccb","impliedFormat":1},{"version":"ab8790af6d4be130bd0faaba17d6a1d6394b21a643af03be4827fd7f8664caac","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"2f83df884805baffce941efa67d2e459f09d82ae5f03b35771eea7bb9875346b","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"0b8d5b22b236fff7e23f3a5d1ddeb80bee6630bd35b1bf1c3efae226f08a1c3d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"38e7ca4f87ae169831eee751ad1b043b672bc9f328c0d44ec5a1bed98756a0b4","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"124e0f6c51420174212b8d23f9a53d5d781d4777995164f1fb64957eac658ce7","impliedFormat":1},{"version":"c7da212302d6bfa21317461599d24e8077b34664b4ed409c4c02a3d5fe31efaf","impliedFormat":1},{"version":"bf070df468371021e0dd0ad9ab7918b3f94254044136bf711c7e0e855f75309e","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"191d027b3924d5046fbf118bae0987969b9e03eba478ad34d2572244720ddb3c","impliedFormat":1},{"version":"14f2edd0618d9adaf83d22b55155ec41faddac678b4d158c8380e4325c8b36b6","impliedFormat":1},{"version":"72c9243dfd255afefe50d511f215053083a79db363d12e7e394ba78462be9e1b","impliedFormat":1},{"version":"2fbcb6bb6ffd69437452ca3029458f3c81a92b72aa71922df931cc4d373fffc1","impliedFormat":1},{"version":"8515d09f98ff2e7251cc970e74af5a0790caa52abc02d412ae87cbc6e47239ca","impliedFormat":1},{"version":"6d5438d567004aa049a2cdcad7aa2c3d671c9e74a0209297935b12bc16c3cf38","impliedFormat":1},{"version":"e78705f977ecfcc36de9ab57841ad7a617ef649b07a995577fd857f1d175f730","impliedFormat":1},{"version":"5083850590c7890ffb680f0c9838f48b07eb8b2f7dbe02874858fcac0691705d","impliedFormat":1},{"version":"02a4a2284d423d8ccc3a77aa9257c34fdac28cddfb46f73178e60f6a1b1b31e9","impliedFormat":1},{"version":"3ee8e014aab37dbd755401967fbb9602221550038f6b8da6cedd5291a918ae0a","impliedFormat":1},{"version":"826f3c6a6d737e0d330522094a21cde94a202c5373448240ba483709cb829aec","impliedFormat":1},{"version":"7e4a23f6f3763da4a06900935d22acfd463c375cada5ab325e3980bd6c95d5b3","impliedFormat":1},{"version":"f3e045e81b47113fa02aaf9637b9ef84347610aaceda60a0d8316aabc3f03638","impliedFormat":1},{"version":"1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","impliedFormat":1},{"version":"6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","impliedFormat":1},{"version":"226dbfe4506447111bd898161d47850f8c57f04cbb6a3a6d487b7939dbf89b1b","impliedFormat":1},{"version":"13f846a45f738733c8a63a06eaa9f580e9c07eb7aed5d8a2c674114846a42175","impliedFormat":1},{"version":"9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","impliedFormat":1},{"version":"e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","impliedFormat":1},{"version":"28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","impliedFormat":1},{"version":"1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"0295c7a5d5d956391ab9bf0410e73a89e25fe26810f9a1d823cc794d682cdafc","impliedFormat":1},{"version":"19826a846db870c2261a3c4cf0695df889d9fe3eebe7775f3f5bc76fe7ad07a7","impliedFormat":1},{"version":"e04cafd03370139cdb0c846273cb19eb4264be0073c7baf78e9b2c16ffb74813","impliedFormat":1},{"version":"7c01c77fb7d8664daa64819245d785e106e0a3cb6e43da64346e4400d7fa9401","impliedFormat":1},{"version":"8c2ca98f4713d989d610fbd38a44316bc43c50aa26983e62dc31002f32ce63fa","impliedFormat":1},{"version":"ee931610d1cf7a6e666fad138187751392fc88bee931b94ac8c4571208dc7370","impliedFormat":1},{"version":"53543b3b64e624a81fc5876da6d72c94dd87655e7afc10988cf82ce7cbc74180","impliedFormat":1},{"version":"967e68e99b8a80551837321442a0e2f12ef50aa1ce567ec991ac6bf062a0c7cf","impliedFormat":1},{"version":"144ab2f3ef7404caf39c6acc88d248d7e55ab3dd1c4c0d89367ad12169aec113","impliedFormat":1},{"version":"759002d4454b851c51b3585e0837c77d159c59957fc519c876449ee5d80a6643","impliedFormat":1},{"version":"1ff2be5eb8b9b508603019df9f851240e57360a9417e672bf4de9d3495833f81","impliedFormat":1},{"version":"8263aed8d77f5b9a10de995c8efd14ea0e5bc54e2b4525178b643f5b24f90f1d","impliedFormat":1},{"version":"a7e7df52af8795560306e4b354e6670d978c59a87dd78b81e58656890c5ed451","impliedFormat":1},{"version":"d6220bee7bd245bc2a377f1a8ef31c496132cc9c7e7e3937e7dd4cbbcec0b38d","impliedFormat":1},{"version":"7686d52e8cbd036b9ca265490c31e36945a52ef3a9e726523d36b02befec7331","impliedFormat":1},{"version":"0f55c8c4605355ddea9fdd104ea0cb089e6ce7f41165fdc72d08247665dba0d4","impliedFormat":1},{"version":"9cc46a5cf6e8b232bb86abfd0c0ed4e0fd25d95aa3d2930e4705b078d29e51ec","impliedFormat":1},{"version":"edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","impliedFormat":1},{"version":"edcb8d46132756662651f6a42656aaeced2e221d0929411fb0a62c906f9873dd","impliedFormat":1},{"version":"382d2239e60b72282adfeb672e22e6df4de3737ce7e5df2151823dab489496ba","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"a42e1c2eec0e747163afa705044664a39065215a8d66c930f8d43f118a9bc044","impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"b542939a35357458e62f8229c2d7578ae888d63d3ab837395d7bb8a3064c205e","impliedFormat":1},{"version":"3a5af4fba7b27b815bb40f52715aedebaa4b371da3e5a664e7e0798c9b638825","impliedFormat":1},{"version":"8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","impliedFormat":1},{"version":"ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","impliedFormat":1},{"version":"49c632082dc8a916353288d3d8b2dc82b3471794249a381d090d960c8ceac908","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"71addb585c2db7b8e53dc1b0bcfa58c6c67c6e4fa2b968942046749d66f82e7e","impliedFormat":1},{"version":"c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"0320c5b275beb43649be5a818dfa83a2586ae110ac5bbb2c5eb7184e1fe3ca60","impliedFormat":1},{"version":"f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","impliedFormat":1},{"version":"b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","impliedFormat":1},{"version":"5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","impliedFormat":1},{"version":"378e26daa6ec402b81f5aea1ab47262d4f8ad8966037c26be75e8185366d09a1","impliedFormat":1},{"version":"4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","impliedFormat":1},{"version":"efb8488e3acac79cac5927eaa8069fffc1d37cc3b2c3213d0256e9e1be8276bc","impliedFormat":1},{"version":"951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","impliedFormat":1},{"version":"361547594eb0fdbb5316523e4668c26ec483de464f53c4a0f65bbca573abae3e","impliedFormat":1},{"version":"afcef07b51d43cdd4e1bc0b92a3d84734cded5f12d764af090666afefb5a3676","impliedFormat":1},{"version":"3f6f70c077ed8d600aa24d8c0e83ba0dd5d2c5300d524cd2181efd30c0a62c72","impliedFormat":1},{"version":"b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","impliedFormat":1},{"version":"0ca63470234437191f454f7f66b5815d79b59ebc636faa1de1194d282563e431","impliedFormat":1},{"version":"6d3b514475ee51ab5e99e4fc82ffcd6191d40c19dd197a1743111e0757c6f9c6","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"716c6fce977a188f23ee5165e4179944a63e8620784a7054fc0dd81f6c348bb4","impliedFormat":1},{"version":"cf2324583854e9b5dd489e537e2d46375ffb66169fbd947dea112898210ed9ff","impliedFormat":1},{"version":"b4b08a04e1861c2494437fad74c5c71f38a2f3d3cdd51fba70fcb072f3337b58","impliedFormat":1},{"version":"15cbc92e3e016d931b2acac300e769051f0005c7b938115aae1c258a8d94e6ed","signature":"ef4ca2cfd260b43543dbb3d1876d966c99cab91ac0bcaa49dd3c5312d2c9d915"},{"version":"d47b03375f3faf246c6a09b366271830023b4384dfd4b0c5b230823205d028bd","signature":"44c8039abd28c87db50691bc8626cae165572c257b6710c29dbfb0f61a4930b8"},"fcd38fce76e94c9230133d8a97ae86c7846156b40f9b59cd7ff6c470a727cff2","a2a77916d2fc1661677ed569bf05095c730443cc07e9c4e59efbab21b40762d5",{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","impliedFormat":1}],"root":[[249,252]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[249,1],[212,2],[209,3],[211,4],[210,5],[198,6],[213,7],[201,8],[200,9],[199,10],[207,11],[208,12],[205,13],[206,14],[203,15],[204,16],[202,17],[194,18],[195,19],[196,6],[197,20],[186,21],[185,22],[184,23],[192,24],[190,25],[191,26],[188,27],[189,28],[187,29],[193,30],[183,6],[253,6],[95,31],[96,31],[97,32],[53,33],[98,34],[99,35],[100,36],[51,6],[101,37],[102,38],[103,39],[104,40],[105,41],[106,42],[107,42],[109,6],[108,43],[110,44],[111,45],[112,46],[94,47],[52,6],[113,48],[114,49],[115,50],[148,51],[116,52],[117,53],[118,54],[119,55],[120,56],[121,57],[122,58],[123,59],[124,60],[125,61],[126,61],[127,62],[128,6],[129,6],[130,63],[132,64],[131,65],[133,66],[134,67],[135,68],[136,69],[137,70],[138,71],[139,72],[140,73],[141,74],[142,75],[143,76],[144,77],[145,78],[146,79],[147,80],[278,81],[279,82],[254,83],[257,83],[276,81],[277,81],[267,81],[266,84],[264,81],[259,81],[272,81],[270,81],[274,81],[258,81],[271,81],[275,81],[260,81],[261,81],[273,81],[255,81],[262,81],[263,81],[265,81],[269,81],[280,85],[268,81],[256,81],[293,86],[292,6],[287,85],[289,87],[288,85],[281,85],[282,85],[284,85],[286,85],[290,87],[291,87],[283,87],[285,87],[50,6],[54,6],[149,88],[150,6],[218,89],[151,6],[158,90],[161,91],[157,6],[153,92],[154,93],[155,93],[156,93],[170,94],[173,95],[174,6],[152,6],[160,96],[172,97],[159,96],[175,98],[162,99],[163,100],[164,96],[169,101],[171,90],[166,102],[165,103],[167,102],[168,91],[176,6],[178,104],[214,105],[243,106],[245,6],[242,6],[244,107],[235,108],[219,6],[248,109],[181,110],[182,89],[220,89],[236,1],[246,106],[215,104],[247,111],[216,89],[177,6],[217,89],[241,89],[239,89],[240,89],[238,89],[179,112],[237,113],[180,6],[48,6],[49,6],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[18,6],[19,6],[4,6],[20,6],[24,6],[21,6],[22,6],[23,6],[25,6],[26,6],[27,6],[5,6],[28,6],[29,6],[30,6],[31,6],[6,6],[35,6],[32,6],[33,6],[34,6],[36,6],[7,6],[37,6],[42,6],[43,6],[38,6],[39,6],[40,6],[41,6],[44,6],[45,6],[1,6],[46,6],[47,6],[71,114],[82,115],[69,114],[83,116],[92,117],[61,118],[60,119],[91,120],[86,121],[90,122],[63,123],[79,124],[62,125],[89,126],[58,127],[59,121],[64,128],[65,6],[70,118],[68,128],[56,129],[93,130],[84,131],[74,132],[73,128],[75,133],[77,134],[72,135],[76,136],[87,120],[66,137],[67,138],[78,139],[57,116],[81,140],[80,128],[85,6],[55,6],[88,141],[234,142],[225,143],[232,144],[227,6],[228,6],[226,145],[229,142],[221,6],[222,6],[233,146],[224,147],[230,6],[231,148],[223,149],[251,6],[250,1],[252,6]],"version":"5.8.3"}
package/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "n8n-nodes-scrapingbee",
3
+ "version": "0.1.0",
4
+ "description": "n8n node to call ScrapingBee API services.",
5
+ "keywords": [
6
+ "n8n-community-node-package"
7
+ ],
8
+ "license": "MIT",
9
+ "homepage": "https://www.scrapingbee.com/",
10
+ "author": {
11
+ "name": "ScrapingBee",
12
+ "email": "contact@scrapingbee.com"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/ScrapingBee/scrapingbee-n8n.git"
17
+ },
18
+ "engines": {
19
+ "node": ">=20.15"
20
+ },
21
+ "main": "index.js",
22
+ "scripts": {
23
+ "build": "npx rimraf dist && tsc && gulp build:icons",
24
+ "dev": "tsc --watch",
25
+ "format": "prettier nodes credentials --write",
26
+ "lint": "eslint nodes credentials package.json",
27
+ "lintfix": "eslint nodes credentials package.json --fix",
28
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "n8n": {
34
+ "n8nNodesApiVersion": 1,
35
+ "credentials": [
36
+ "dist/credentials/ScrapingBee.credentials.js"
37
+ ],
38
+ "nodes": [
39
+ "dist/nodes/ScrapingBee/ScrapingBee.node.js"
40
+ ]
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "^24.0.13",
44
+ "@typescript-eslint/parser": "~8.32.0",
45
+ "eslint": "^8.57.0",
46
+ "eslint-plugin-n8n-nodes-base": "^1.16.3",
47
+ "gulp": "^5.0.0",
48
+ "prettier": "^3.5.3",
49
+ "typescript": "^5.8.3"
50
+ },
51
+ "peerDependencies": {
52
+ "n8n-workflow": "*"
53
+ }
54
+ }