n8n-nodes-nvk-call-api 0.0.8 → 0.0.9

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,1411 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.nvkBrowserApiDescription = void 0;
4
- exports.nvkBrowserApiDescription = {
5
- displayName: 'NVK Browser Call API',
6
- name: 'nvkBrowserApi',
7
- icon: 'file:nvk.svg',
8
- group: ['transform'],
9
- version: 1,
10
- subtitle: '={{$parameter["operation"]}}',
11
- description: 'Interact with NVK Browser API for automation',
12
- defaults: {
13
- name: 'NVK Browser Call API',
14
- },
15
- codex: {
16
- categories: ['Development'],
17
- subcategories: {
18
- Development: ['Browser Automation'],
19
- },
20
- resources: {
21
- primaryDocumentation: [
22
- {
23
- url: 'https://your-docs-url.com',
24
- },
25
- ],
26
- },
27
- alias: ['Run Multiple Profiles', 'requests', 'HTTP', 'HTTP requests', 'Make HTTP requests using Browser', 'HTTP requests using Browser', 'Get Network Response', 'Move And Click', 'Download Browser', 'Update Profile', 'Stop Profile', 'Delete Profile', 'Create profile', 'recaptcha', 'captcha', 'token', 'get recaptcha token', 'recaptcha solver', 'browser', 'automation', 'puppeteer'],
28
- },
29
- inputs: ['main'],
30
- outputs: ['main'],
31
- credentials: [],
32
- properties: [
33
- {
34
- displayName: 'Environment',
35
- name: 'environment',
36
- type: 'options',
37
- options: [
38
- {
39
- name: 'Local',
40
- value: 'local',
41
- },
42
- {
43
- name: 'Docker',
44
- value: 'docker',
45
- },
46
- {
47
- name: 'Tunnel (Custom URL)',
48
- value: 'tunnel',
49
- },
50
- ],
51
- default: 'local',
52
- description: 'Choose the environment to connect to',
53
- },
54
- {
55
- displayName: 'Tunnel URL',
56
- name: 'tunnelUrl',
57
- type: 'string',
58
- displayOptions: {
59
- show: {
60
- environment: ['tunnel'],
61
- },
62
- },
63
- default: '',
64
- placeholder: 'https://abc123.ngrok.io',
65
- description: 'Enter your tunnel URL (ngrok, Cloudflare Tunnel, etc.)',
66
- required: true,
67
- },
68
- {
69
- displayName: 'Resource',
70
- name: 'resource',
71
- type: 'options',
72
- noDataExpression: true,
73
- options: [
74
- {
75
- name: 'Profile Management',
76
- value: 'profileManagement',
77
- },
78
- {
79
- name: 'Page Interaction',
80
- value: 'pageInteraction',
81
- },
82
- {
83
- name: 'Browser Automation',
84
- value: 'browserAutomation',
85
- },
86
- ],
87
- default: 'profileManagement',
88
- },
89
- {
90
- displayName: 'Operation',
91
- name: 'operation',
92
- type: 'options',
93
- noDataExpression: true,
94
- displayOptions: {
95
- show: {
96
- resource: ['profileManagement'],
97
- },
98
- },
99
- options: [
100
- {
101
- name: 'Create Profile',
102
- value: 'createProfile',
103
- action: 'Create Profile',
104
- },
105
- {
106
- name: 'Delete Profile',
107
- value: 'deleteProfile',
108
- action: 'Delete Profile',
109
- },
110
- {
111
- name: 'Start Profile',
112
- value: 'startProfile',
113
- action: 'Start Profile',
114
- },
115
- {
116
- name: 'Stop Profile',
117
- value: 'stopProfile',
118
- action: 'Stop Profile',
119
- },
120
- {
121
- name: 'Update Profile',
122
- value: 'updateProfile',
123
- action: 'Update Profile',
124
- },
125
- {
126
- name: 'Download Browser',
127
- value: 'downloadBrowser',
128
- action: 'Download Browser',
129
- },
130
- ],
131
- default: 'createProfile',
132
- },
133
- {
134
- displayName: 'Operation',
135
- name: 'operation',
136
- type: 'options',
137
- noDataExpression: true,
138
- displayOptions: {
139
- show: {
140
- resource: ['pageInteraction'],
141
- },
142
- },
143
- options: [
144
- {
145
- name: 'Move and Click',
146
- value: 'moveAndClick',
147
- action: 'Move and Click',
148
- },
149
- {
150
- name: 'Run JavaScript',
151
- value: 'runJavaScript',
152
- action: 'Run JavaScript',
153
- },
154
- {
155
- name: 'Get Network Response',
156
- value: 'getNetworkResponse',
157
- action: 'Get Network Response',
158
- },
159
- {
160
- name: 'Browser HTTP Request',
161
- value: 'browserHttpRequest',
162
- action: 'Make HTTP requests using Browser',
163
- },
164
- {
165
- name: 'Get Recaptcha Token',
166
- value: 'getRecaptchaToken',
167
- action: 'Get Recaptcha Token',
168
- },
169
- ],
170
- default: 'moveAndClick',
171
- },
172
- {
173
- displayName: 'Operation',
174
- name: 'operation',
175
- type: 'options',
176
- noDataExpression: true,
177
- displayOptions: {
178
- show: {
179
- resource: ['browserAutomation'],
180
- },
181
- },
182
- options: [
183
- {
184
- name: 'Run Multiple Profiles',
185
- value: 'runMultipleProfiles',
186
- action: 'Run Multiple Profiles',
187
- },
188
- ],
189
- default: 'runMultipleProfiles',
190
- },
191
- // Run Multiple Profiles Fields
192
- {
193
- displayName: 'Data',
194
- name: 'data',
195
- type: 'string',
196
- typeOptions: {
197
- rows: 10,
198
- },
199
- displayOptions: {
200
- show: {
201
- resource: ['browserAutomation'],
202
- operation: ['runMultipleProfiles'],
203
- },
204
- },
205
- default: '',
206
- required: true,
207
- description: 'Enter data in format: line|profileId (one per line)',
208
- placeholder: '1|212e2d01-0c8a-4373-9c9f-9153354de0a4\n2|212e2d01-0c8a-4373-9c9f-9153354de0a4',
209
- },
210
- {
211
- displayName: 'Number of Threads',
212
- name: 'numberOfThreads',
213
- type: 'number',
214
- displayOptions: {
215
- show: {
216
- resource: ['browserAutomation'],
217
- operation: ['runMultipleProfiles'],
218
- },
219
- },
220
- default: 1,
221
- description: 'Number of parallel threads to run',
222
- },
223
- {
224
- displayName: 'Define Columns',
225
- name: 'defineColumns',
226
- type: 'number',
227
- displayOptions: {
228
- show: {
229
- resource: ['browserAutomation'],
230
- operation: ['runMultipleProfiles'],
231
- },
232
- },
233
- default: 3,
234
- description: 'Number of columns in grid layout',
235
- },
236
- {
237
- displayName: 'Define Rows',
238
- name: 'defineRows',
239
- type: 'number',
240
- displayOptions: {
241
- show: {
242
- resource: ['browserAutomation'],
243
- operation: ['runMultipleProfiles'],
244
- },
245
- },
246
- default: 2,
247
- description: 'Number of rows in grid layout',
248
- },
249
- {
250
- displayName: 'Win Scale',
251
- name: 'winScale',
252
- type: 'number',
253
- displayOptions: {
254
- show: {
255
- resource: ['browserAutomation'],
256
- operation: ['runMultipleProfiles'],
257
- },
258
- },
259
- default: 100,
260
- description: 'Window scale percentage (100 = 100%)',
261
- },
262
- {
263
- displayName: 'Webhook URL',
264
- name: 'webhookUrl',
265
- type: 'string',
266
- displayOptions: {
267
- show: {
268
- resource: ['browserAutomation'],
269
- operation: ['runMultipleProfiles'],
270
- },
271
- },
272
- default: '',
273
- description: 'Webhook URL to send results to (optional)',
274
- },
275
- {
276
- displayName: 'Webhook Method',
277
- name: 'webhookMethod',
278
- type: 'options',
279
- displayOptions: {
280
- show: {
281
- resource: ['browserAutomation'],
282
- operation: ['runMultipleProfiles'],
283
- },
284
- },
285
- options: [
286
- {
287
- name: 'GET',
288
- value: 'GET',
289
- },
290
- {
291
- name: 'POST',
292
- value: 'POST',
293
- },
294
- ],
295
- default: 'POST',
296
- description: 'HTTP method to use for webhook call',
297
- },
298
- {
299
- displayName: 'Timeout (Milliseconds)',
300
- name: 'timeout',
301
- type: 'number',
302
- displayOptions: {
303
- show: {
304
- resource: ['browserAutomation'],
305
- operation: ['runMultipleProfiles'],
306
- },
307
- },
308
- default: 100000000,
309
- description: 'Maximum timeout in milliseconds',
310
- },
311
- {
312
- displayName: 'Wait For The Previous Session To Complete',
313
- name: 'waitForPrevious',
314
- type: 'boolean',
315
- displayOptions: {
316
- show: {
317
- resource: ['browserAutomation'],
318
- operation: ['runMultipleProfiles'],
319
- },
320
- },
321
- default: true,
322
- description: 'Whether to wait for previous session to complete before starting next',
323
- },
324
- // Create Profile Fields
325
- {
326
- displayName: 'Profile Name',
327
- name: 'profileName',
328
- type: 'string',
329
- displayOptions: {
330
- show: {
331
- resource: ['profileManagement'],
332
- operation: ['createProfile'],
333
- },
334
- },
335
- default: '',
336
- required: true,
337
- description: 'Name of the profile',
338
- },
339
- {
340
- displayName: 'Proxy',
341
- name: 'proxy',
342
- type: 'string',
343
- displayOptions: {
344
- show: {
345
- resource: ['profileManagement'],
346
- operation: ['createProfile'],
347
- },
348
- },
349
- default: 'http:127.0.0.1:8080:user:pass',
350
- placeholder: 'http:127.0.0.1:8080:user:pass hoặc socks5:127.0.0.1:1080:user:pass',
351
- description: 'Proxy configuration',
352
- },
353
- {
354
- displayName: 'Note',
355
- name: 'note',
356
- type: 'string',
357
- displayOptions: {
358
- show: {
359
- resource: ['profileManagement'],
360
- operation: ['createProfile'],
361
- },
362
- },
363
- default: '',
364
- description: 'Additional notes',
365
- },
366
- {
367
- displayName: 'Extensions',
368
- name: 'extensions',
369
- type: 'string',
370
- typeOptions: {
371
- rows: 4,
372
- },
373
- displayOptions: {
374
- show: {
375
- resource: ['profileManagement'],
376
- operation: ['createProfile'],
377
- },
378
- },
379
- default: '',
380
- description: 'Browser extensions (one per line)',
381
- },
382
- // Delete Profile Fields
383
- {
384
- displayName: 'Profile ID',
385
- name: 'profileId',
386
- type: 'string',
387
- displayOptions: {
388
- show: {
389
- resource: ['profileManagement'],
390
- operation: ['deleteProfile'],
391
- },
392
- },
393
- default: '',
394
- required: true,
395
- description: 'ID of the profile to delete',
396
- },
397
- // Start Profile Fields
398
- {
399
- displayName: 'Profile ID',
400
- name: 'profileId',
401
- type: 'string',
402
- displayOptions: {
403
- show: {
404
- resource: ['profileManagement'],
405
- operation: ['startProfile'],
406
- },
407
- },
408
- default: '',
409
- required: true,
410
- description: 'ID of the profile to start',
411
- },
412
- {
413
- displayName: 'Window Scale',
414
- name: 'winScale',
415
- type: 'number',
416
- displayOptions: {
417
- show: {
418
- resource: ['profileManagement'],
419
- operation: ['startProfile'],
420
- },
421
- },
422
- default: 1,
423
- description: 'Browser window scale',
424
- },
425
- {
426
- displayName: 'Window Position',
427
- name: 'winPosition',
428
- type: 'fixedCollection',
429
- typeOptions: {
430
- multipleValues: false,
431
- },
432
- displayOptions: {
433
- show: {
434
- resource: ['profileManagement'],
435
- operation: ['startProfile'],
436
- },
437
- },
438
- default: {},
439
- options: [
440
- {
441
- displayName: 'Position',
442
- name: 'positionValues',
443
- values: [
444
- {
445
- displayName: 'X',
446
- name: 'x',
447
- type: 'number',
448
- default: 0,
449
- },
450
- {
451
- displayName: 'Y',
452
- name: 'y',
453
- type: 'number',
454
- default: 0,
455
- },
456
- ],
457
- },
458
- ],
459
- },
460
- {
461
- displayName: 'Window Size',
462
- name: 'winSize',
463
- type: 'fixedCollection',
464
- typeOptions: {
465
- multipleValues: false,
466
- },
467
- displayOptions: {
468
- show: {
469
- resource: ['profileManagement'],
470
- operation: ['startProfile'],
471
- },
472
- },
473
- default: {},
474
- options: [
475
- {
476
- displayName: 'Size',
477
- name: 'sizeValues',
478
- values: [
479
- {
480
- displayName: 'Width',
481
- name: 'width',
482
- type: 'number',
483
- default: 1280,
484
- },
485
- {
486
- displayName: 'Height',
487
- name: 'height',
488
- type: 'number',
489
- default: 720,
490
- },
491
- ],
492
- },
493
- ],
494
- },
495
- {
496
- displayName: 'Headless Mode',
497
- name: 'headless',
498
- type: 'boolean',
499
- displayOptions: {
500
- show: {
501
- resource: ['profileManagement'],
502
- operation: ['startProfile'],
503
- },
504
- },
505
- default: false,
506
- description: 'Whether to run browser in headless mode',
507
- },
508
- {
509
- displayName: 'Initial URL',
510
- name: 'initialUrl',
511
- type: 'string',
512
- displayOptions: {
513
- show: {
514
- resource: ['profileManagement'],
515
- operation: ['startProfile'],
516
- },
517
- },
518
- default: 'https://example.com',
519
- description: 'URL to open on start',
520
- },
521
- // Stop Profile Fields
522
- {
523
- displayName: 'Profile ID',
524
- name: 'profileId',
525
- type: 'string',
526
- displayOptions: {
527
- show: {
528
- resource: ['profileManagement'],
529
- operation: ['stopProfile'],
530
- },
531
- },
532
- default: '',
533
- required: true,
534
- description: 'ID of the profile to stop',
535
- },
536
- // Update Profile Fields
537
- {
538
- displayName: 'Profile ID',
539
- name: 'profileId',
540
- type: 'string',
541
- displayOptions: {
542
- show: {
543
- resource: ['profileManagement'],
544
- operation: ['updateProfile'],
545
- },
546
- },
547
- default: '',
548
- required: true,
549
- description: 'ID of the profile to update',
550
- },
551
- {
552
- displayName: 'Profile Name',
553
- name: 'profileName',
554
- type: 'string',
555
- displayOptions: {
556
- show: {
557
- resource: ['profileManagement'],
558
- operation: ['updateProfile'],
559
- },
560
- },
561
- default: '',
562
- description: 'New profile name',
563
- },
564
- {
565
- displayName: 'Proxy',
566
- name: 'proxy',
567
- type: 'string',
568
- displayOptions: {
569
- show: {
570
- resource: ['profileManagement'],
571
- operation: ['updateProfile'],
572
- },
573
- },
574
- default: '',
575
- description: 'New proxy configuration',
576
- },
577
- {
578
- displayName: 'Note',
579
- name: 'note',
580
- type: 'string',
581
- displayOptions: {
582
- show: {
583
- resource: ['profileManagement'],
584
- operation: ['updateProfile'],
585
- },
586
- },
587
- default: '',
588
- description: 'New note',
589
- },
590
- {
591
- displayName: 'Extensions',
592
- name: 'extensions',
593
- type: 'string',
594
- typeOptions: {
595
- rows: 4,
596
- },
597
- displayOptions: {
598
- show: {
599
- resource: ['profileManagement'],
600
- operation: ['updateProfile'],
601
- },
602
- },
603
- default: '',
604
- description: 'New extensions (one per line)',
605
- },
606
- // Move and Click Fields
607
- {
608
- displayName: 'Profile ID',
609
- name: 'profileId',
610
- type: 'string',
611
- displayOptions: {
612
- show: {
613
- resource: ['pageInteraction'],
614
- operation: ['moveAndClick'],
615
- },
616
- },
617
- default: '',
618
- required: true,
619
- description: 'ID of the profile',
620
- },
621
- {
622
- displayName: 'Selector',
623
- name: 'selector',
624
- type: 'string',
625
- displayOptions: {
626
- show: {
627
- resource: ['pageInteraction'],
628
- operation: ['moveAndClick'],
629
- },
630
- },
631
- default: '',
632
- required: true,
633
- description: 'CSS selector for the element',
634
- },
635
- {
636
- displayName: 'Click Method',
637
- name: 'clickMethod',
638
- type: 'options',
639
- displayOptions: {
640
- show: {
641
- resource: ['pageInteraction'],
642
- operation: ['moveAndClick'],
643
- },
644
- },
645
- options: [
646
- {
647
- name: 'Puppeteer',
648
- value: 'puppeteer',
649
- },
650
- {
651
- name: 'Coordinates',
652
- value: 'coordinates',
653
- },
654
- ],
655
- default: 'puppeteer',
656
- description: 'Method to use for clicking',
657
- },
658
- {
659
- displayName: 'Timeout',
660
- name: 'timeout',
661
- type: 'number',
662
- displayOptions: {
663
- show: {
664
- resource: ['pageInteraction'],
665
- operation: ['moveAndClick'],
666
- },
667
- },
668
- default: 30000,
669
- description: 'Timeout in milliseconds',
670
- },
671
- {
672
- displayName: 'Tab Index',
673
- name: 'tabIndex',
674
- type: 'number',
675
- displayOptions: {
676
- show: {
677
- resource: ['pageInteraction'],
678
- operation: ['moveAndClick'],
679
- },
680
- },
681
- default: 0,
682
- description: 'Browser tab index',
683
- },
684
- {
685
- displayName: 'Auto Start Profile',
686
- name: 'autoStart',
687
- type: 'boolean',
688
- displayOptions: {
689
- show: {
690
- resource: ['pageInteraction'],
691
- operation: ['moveAndClick'],
692
- },
693
- },
694
- default: false,
695
- description: 'Whether to auto-start profile if not running',
696
- },
697
- {
698
- displayName: 'Wait For Click',
699
- name: 'waitForClick',
700
- type: 'number',
701
- displayOptions: {
702
- show: {
703
- resource: ['pageInteraction'],
704
- operation: ['moveAndClick'],
705
- },
706
- },
707
- default: 500,
708
- description: 'Wait time before click in milliseconds',
709
- },
710
- {
711
- displayName: 'Button',
712
- name: 'button',
713
- type: 'options',
714
- displayOptions: {
715
- show: {
716
- resource: ['pageInteraction'],
717
- operation: ['moveAndClick'],
718
- },
719
- },
720
- options: [
721
- {
722
- name: 'Left',
723
- value: 'left',
724
- },
725
- {
726
- name: 'Right',
727
- value: 'right',
728
- },
729
- {
730
- name: 'Middle',
731
- value: 'middle',
732
- },
733
- ],
734
- default: 'left',
735
- description: 'Mouse button to use',
736
- },
737
- {
738
- displayName: 'Click Count',
739
- name: 'clickCount',
740
- type: 'number',
741
- displayOptions: {
742
- show: {
743
- resource: ['pageInteraction'],
744
- operation: ['moveAndClick'],
745
- },
746
- },
747
- default: 1,
748
- description: 'Number of clicks',
749
- },
750
- {
751
- displayName: 'Use Binary File',
752
- name: 'useBinaryFile',
753
- type: 'boolean',
754
- displayOptions: {
755
- show: {
756
- resource: ['pageInteraction'],
757
- operation: ['moveAndClick'],
758
- },
759
- },
760
- default: false,
761
- description: 'Whether to upload a binary file',
762
- },
763
- {
764
- displayName: 'Input Data Field Name',
765
- name: 'binaryPropertyName',
766
- type: 'string',
767
- displayOptions: {
768
- show: {
769
- resource: ['pageInteraction'],
770
- operation: ['moveAndClick'],
771
- useBinaryFile: [true],
772
- },
773
- },
774
- default: 'data',
775
- required: true,
776
- description: 'Name of the binary property',
777
- },
778
- // Run JavaScript Fields
779
- {
780
- displayName: 'Profile ID',
781
- name: 'profileId',
782
- type: 'string',
783
- displayOptions: {
784
- show: {
785
- resource: ['pageInteraction'],
786
- operation: ['runJavaScript'],
787
- },
788
- },
789
- default: '',
790
- required: true,
791
- description: 'ID of the profile',
792
- },
793
- {
794
- displayName: 'JavaScript Code',
795
- name: 'javascriptCode',
796
- type: 'string',
797
- typeOptions: {
798
- rows: 10,
799
- },
800
- displayOptions: {
801
- show: {
802
- resource: ['pageInteraction'],
803
- operation: ['runJavaScript'],
804
- },
805
- },
806
- default: '',
807
- required: true,
808
- description: 'JavaScript code to execute',
809
- },
810
- {
811
- displayName: 'Tab Index',
812
- name: 'tabIndex',
813
- type: 'number',
814
- displayOptions: {
815
- show: {
816
- resource: ['pageInteraction'],
817
- operation: ['runJavaScript'],
818
- },
819
- },
820
- default: 0,
821
- description: 'Browser tab index',
822
- },
823
- {
824
- displayName: 'Auto Start Profile',
825
- name: 'autoStart',
826
- type: 'boolean',
827
- displayOptions: {
828
- show: {
829
- resource: ['pageInteraction'],
830
- operation: ['runJavaScript'],
831
- },
832
- },
833
- default: false,
834
- description: 'Whether to auto-start profile if not running',
835
- },
836
- // Get Network Response Fields
837
- {
838
- displayName: 'Profile ID',
839
- name: 'profileId',
840
- type: 'string',
841
- displayOptions: {
842
- show: {
843
- resource: ['pageInteraction'],
844
- operation: ['getNetworkResponse'],
845
- },
846
- },
847
- default: '',
848
- required: true,
849
- description: 'ID of the profile',
850
- },
851
- {
852
- displayName: 'Request Filter',
853
- name: 'requestFilter',
854
- type: 'string',
855
- displayOptions: {
856
- show: {
857
- resource: ['pageInteraction'],
858
- operation: ['getNetworkResponse'],
859
- },
860
- },
861
- default: '',
862
- required: true,
863
- description: 'Filter for network requests',
864
- },
865
- {
866
- displayName: 'Match Type',
867
- name: 'matchType',
868
- type: 'options',
869
- displayOptions: {
870
- show: {
871
- resource: ['pageInteraction'],
872
- operation: ['getNetworkResponse'],
873
- },
874
- },
875
- options: [
876
- {
877
- name: 'Contains',
878
- value: 'contains',
879
- },
880
- {
881
- name: 'Exact',
882
- value: 'exact',
883
- },
884
- {
885
- name: 'Regex',
886
- value: 'regex',
887
- },
888
- ],
889
- default: 'contains',
890
- description: 'Type of matching to use',
891
- },
892
- {
893
- displayName: 'Timeout',
894
- name: 'timeout',
895
- type: 'number',
896
- displayOptions: {
897
- show: {
898
- resource: ['pageInteraction'],
899
- operation: ['getNetworkResponse'],
900
- },
901
- },
902
- default: 30000,
903
- description: 'Timeout in milliseconds',
904
- },
905
- {
906
- displayName: 'Wait For Request',
907
- name: 'waitForRequest',
908
- type: 'boolean',
909
- displayOptions: {
910
- show: {
911
- resource: ['pageInteraction'],
912
- operation: ['getNetworkResponse'],
913
- },
914
- },
915
- default: true,
916
- description: 'Whether to wait for the request',
917
- },
918
- {
919
- displayName: 'Tab Index',
920
- name: 'tabIndex',
921
- type: 'number',
922
- displayOptions: {
923
- show: {
924
- resource: ['pageInteraction'],
925
- operation: ['getNetworkResponse'],
926
- },
927
- },
928
- default: 0,
929
- description: 'Browser tab index',
930
- },
931
- {
932
- displayName: 'Auto Start Profile',
933
- name: 'autoStart',
934
- type: 'boolean',
935
- displayOptions: {
936
- show: {
937
- resource: ['pageInteraction'],
938
- operation: ['getNetworkResponse'],
939
- },
940
- },
941
- default: false,
942
- description: 'Whether to auto-start profile if not running',
943
- },
944
- // Browser HTTP Request Fields
945
- {
946
- displayName: 'Profile ID',
947
- name: 'profileId',
948
- type: 'string',
949
- displayOptions: {
950
- show: {
951
- resource: ['pageInteraction'],
952
- operation: ['browserHttpRequest'],
953
- },
954
- },
955
- default: '',
956
- required: true,
957
- description: 'ID of the profile',
958
- },
959
- {
960
- displayName: 'Method',
961
- name: 'method',
962
- type: 'options',
963
- displayOptions: {
964
- show: {
965
- resource: ['pageInteraction'],
966
- operation: ['browserHttpRequest'],
967
- },
968
- },
969
- options: [
970
- {
971
- name: 'GET',
972
- value: 'GET',
973
- },
974
- {
975
- name: 'POST',
976
- value: 'POST',
977
- },
978
- ],
979
- default: 'GET',
980
- description: 'HTTP method',
981
- },
982
- {
983
- displayName: 'URL',
984
- name: 'url',
985
- type: 'string',
986
- displayOptions: {
987
- show: {
988
- resource: ['pageInteraction'],
989
- operation: ['browserHttpRequest'],
990
- },
991
- },
992
- default: '',
993
- required: true,
994
- description: 'Request URL',
995
- },
996
- {
997
- displayName: 'Send Body',
998
- name: 'sendBody',
999
- type: 'boolean',
1000
- displayOptions: {
1001
- show: {
1002
- resource: ['pageInteraction'],
1003
- operation: ['browserHttpRequest'],
1004
- method: ['POST'],
1005
- },
1006
- },
1007
- default: false,
1008
- description: 'Whether to send request body',
1009
- },
1010
- {
1011
- displayName: 'Body Content Type',
1012
- name: 'bodyContentType',
1013
- type: 'options',
1014
- displayOptions: {
1015
- show: {
1016
- resource: ['pageInteraction'],
1017
- operation: ['browserHttpRequest'],
1018
- method: ['POST'],
1019
- sendBody: [true],
1020
- },
1021
- },
1022
- options: [
1023
- {
1024
- name: 'Form Urlencoded',
1025
- value: 'formUrlencoded',
1026
- },
1027
- {
1028
- name: 'Form-Data',
1029
- value: 'formData',
1030
- },
1031
- {
1032
- name: 'JSON',
1033
- value: 'json',
1034
- },
1035
- {
1036
- name: 'n8n Binary File',
1037
- value: 'binaryFile',
1038
- },
1039
- {
1040
- name: 'Raw',
1041
- value: 'raw',
1042
- },
1043
- ],
1044
- default: 'formData',
1045
- description: 'Type of body content',
1046
- },
1047
- // Get Recaptcha Token Fields
1048
- {
1049
- displayName: 'Profile ID',
1050
- name: 'profileId',
1051
- type: 'string',
1052
- displayOptions: {
1053
- show: {
1054
- resource: ['pageInteraction'],
1055
- operation: ['getRecaptchaToken'],
1056
- },
1057
- },
1058
- default: '',
1059
- required: true,
1060
- description: 'ID of the profile',
1061
- },
1062
- {
1063
- displayName: 'Site Key',
1064
- name: 'siteKey',
1065
- type: 'string',
1066
- displayOptions: {
1067
- show: {
1068
- resource: ['pageInteraction'],
1069
- operation: ['getRecaptchaToken'],
1070
- },
1071
- },
1072
- default: '',
1073
- description: 'reCAPTCHA site key (auto-detect if empty)',
1074
- },
1075
- {
1076
- displayName: 'Tab Index',
1077
- name: 'tabIndex',
1078
- type: 'number',
1079
- displayOptions: {
1080
- show: {
1081
- resource: ['pageInteraction'],
1082
- operation: ['getRecaptchaToken'],
1083
- },
1084
- },
1085
- default: 0,
1086
- description: 'Browser tab index',
1087
- },
1088
- {
1089
- displayName: 'Timeout',
1090
- name: 'timeout',
1091
- type: 'number',
1092
- displayOptions: {
1093
- show: {
1094
- resource: ['pageInteraction'],
1095
- operation: ['getRecaptchaToken'],
1096
- },
1097
- },
1098
- default: 10000,
1099
- description: 'Timeout in milliseconds',
1100
- },
1101
- {
1102
- displayName: 'Action',
1103
- name: 'action',
1104
- type: 'string',
1105
- displayOptions: {
1106
- show: {
1107
- resource: ['pageInteraction'],
1108
- operation: ['getRecaptchaToken'],
1109
- },
1110
- },
1111
- default: 'FLOW_GENERATION',
1112
- description: 'reCAPTCHA action parameter',
1113
- },
1114
- {
1115
- displayName: 'Max Retries',
1116
- name: 'maxRetries',
1117
- type: 'number',
1118
- displayOptions: {
1119
- show: {
1120
- resource: ['pageInteraction'],
1121
- operation: ['getRecaptchaToken'],
1122
- },
1123
- },
1124
- default: 3,
1125
- description: 'Maximum number of retry attempts',
1126
- },
1127
- {
1128
- displayName: 'Auto Start Profile',
1129
- name: 'autoStart',
1130
- type: 'boolean',
1131
- displayOptions: {
1132
- show: {
1133
- resource: ['pageInteraction'],
1134
- operation: ['getRecaptchaToken'],
1135
- },
1136
- },
1137
- default: false,
1138
- description: 'Whether to auto-start profile if not running',
1139
- },
1140
- // n8n Binary File - Input Data Field Name
1141
- {
1142
- displayName: 'Input Data Field Name',
1143
- name: 'binaryPropertyName',
1144
- type: 'string',
1145
- displayOptions: {
1146
- show: {
1147
- resource: ['pageInteraction'],
1148
- operation: ['browserHttpRequest'],
1149
- method: ['POST'],
1150
- sendBody: [true],
1151
- bodyContentType: ['binaryFile'],
1152
- },
1153
- },
1154
- default: 'data',
1155
- required: true,
1156
- placeholder: 'data',
1157
- description: 'Name of the binary property to send',
1158
- },
1159
- {
1160
- displayName: 'JSON Body',
1161
- name: 'jsonBody',
1162
- type: 'string',
1163
- typeOptions: {
1164
- rows: 4,
1165
- },
1166
- displayOptions: {
1167
- show: {
1168
- resource: ['pageInteraction'],
1169
- operation: ['browserHttpRequest'],
1170
- method: ['POST'],
1171
- sendBody: [true],
1172
- bodyContentType: ['json'],
1173
- },
1174
- },
1175
- default: '',
1176
- description: 'JSON body content',
1177
- },
1178
- {
1179
- displayName: 'Raw Body',
1180
- name: 'rawBody',
1181
- type: 'string',
1182
- typeOptions: {
1183
- rows: 4,
1184
- },
1185
- displayOptions: {
1186
- show: {
1187
- resource: ['pageInteraction'],
1188
- operation: ['browserHttpRequest'],
1189
- method: ['POST'],
1190
- sendBody: [true],
1191
- bodyContentType: ['raw'],
1192
- },
1193
- },
1194
- default: '',
1195
- description: 'Raw body content',
1196
- },
1197
- // Body Parameters for Form-Data with Parameter Type selector
1198
- {
1199
- displayName: 'Body Parameters',
1200
- name: 'bodyParameters',
1201
- type: 'fixedCollection',
1202
- typeOptions: {
1203
- multipleValues: true,
1204
- },
1205
- displayOptions: {
1206
- show: {
1207
- resource: ['pageInteraction'],
1208
- operation: ['browserHttpRequest'],
1209
- method: ['POST'],
1210
- sendBody: [true],
1211
- bodyContentType: ['formData'],
1212
- },
1213
- },
1214
- default: {},
1215
- placeholder: 'Add Parameter',
1216
- options: [
1217
- {
1218
- displayName: 'Parameter',
1219
- name: 'parameter',
1220
- values: [
1221
- {
1222
- displayName: 'Parameter Type',
1223
- name: 'parameterType',
1224
- type: 'options',
1225
- options: [
1226
- {
1227
- name: 'Form Data',
1228
- value: 'formData',
1229
- },
1230
- {
1231
- name: 'n8n Binary File',
1232
- value: 'binaryFile',
1233
- },
1234
- ],
1235
- default: 'formData',
1236
- description: 'Type of the parameter',
1237
- },
1238
- {
1239
- displayName: 'Name',
1240
- name: 'name',
1241
- type: 'string',
1242
- default: '',
1243
- description: 'Parameter name',
1244
- },
1245
- {
1246
- displayName: 'Value',
1247
- name: 'value',
1248
- type: 'string',
1249
- displayOptions: {
1250
- show: {
1251
- parameterType: ['formData'],
1252
- },
1253
- },
1254
- default: '',
1255
- description: 'Parameter value',
1256
- },
1257
- {
1258
- displayName: 'Input Data Field Name',
1259
- name: 'binaryProperty',
1260
- type: 'string',
1261
- displayOptions: {
1262
- show: {
1263
- parameterType: ['binaryFile'],
1264
- },
1265
- },
1266
- default: 'data',
1267
- placeholder: 'data',
1268
- description: 'Name of the binary property for this parameter',
1269
- },
1270
- ],
1271
- },
1272
- ],
1273
- },
1274
- // Form Urlencoded Parameters
1275
- {
1276
- displayName: 'Form Data',
1277
- name: 'formData',
1278
- type: 'fixedCollection',
1279
- typeOptions: {
1280
- multipleValues: true,
1281
- },
1282
- displayOptions: {
1283
- show: {
1284
- resource: ['pageInteraction'],
1285
- operation: ['browserHttpRequest'],
1286
- method: ['POST'],
1287
- sendBody: [true],
1288
- bodyContentType: ['formUrlencoded'],
1289
- },
1290
- },
1291
- default: {},
1292
- placeholder: 'Add Parameter',
1293
- options: [
1294
- {
1295
- displayName: 'Parameter',
1296
- name: 'parameter',
1297
- values: [
1298
- {
1299
- displayName: 'Name',
1300
- name: 'name',
1301
- type: 'string',
1302
- default: '',
1303
- },
1304
- {
1305
- displayName: 'Value',
1306
- name: 'value',
1307
- type: 'string',
1308
- default: '',
1309
- },
1310
- ],
1311
- },
1312
- ],
1313
- },
1314
- {
1315
- displayName: 'Additional Headers',
1316
- name: 'additionalHeaders',
1317
- type: 'fixedCollection',
1318
- typeOptions: {
1319
- multipleValues: true,
1320
- },
1321
- displayOptions: {
1322
- show: {
1323
- resource: ['pageInteraction'],
1324
- operation: ['browserHttpRequest'],
1325
- },
1326
- },
1327
- default: {},
1328
- options: [
1329
- {
1330
- displayName: 'Header',
1331
- name: 'header',
1332
- values: [
1333
- {
1334
- displayName: 'Name',
1335
- name: 'name',
1336
- type: 'string',
1337
- default: '',
1338
- },
1339
- {
1340
- displayName: 'Value',
1341
- name: 'value',
1342
- type: 'string',
1343
- default: '',
1344
- },
1345
- ],
1346
- },
1347
- ],
1348
- },
1349
- {
1350
- displayName: 'Query Parameters',
1351
- name: 'queryParameters',
1352
- type: 'fixedCollection',
1353
- typeOptions: {
1354
- multipleValues: true,
1355
- },
1356
- displayOptions: {
1357
- show: {
1358
- resource: ['pageInteraction'],
1359
- operation: ['browserHttpRequest'],
1360
- },
1361
- },
1362
- default: {},
1363
- options: [
1364
- {
1365
- displayName: 'Parameter',
1366
- name: 'parameter',
1367
- values: [
1368
- {
1369
- displayName: 'Name',
1370
- name: 'name',
1371
- type: 'string',
1372
- default: '',
1373
- },
1374
- {
1375
- displayName: 'Value',
1376
- name: 'value',
1377
- type: 'string',
1378
- default: '',
1379
- },
1380
- ],
1381
- },
1382
- ],
1383
- },
1384
- {
1385
- displayName: 'Tab Index',
1386
- name: 'tabIndex',
1387
- type: 'number',
1388
- displayOptions: {
1389
- show: {
1390
- resource: ['pageInteraction'],
1391
- operation: ['browserHttpRequest'],
1392
- },
1393
- },
1394
- default: 0,
1395
- description: 'Browser tab index',
1396
- },
1397
- {
1398
- displayName: 'Auto Start Profile',
1399
- name: 'autoStart',
1400
- type: 'boolean',
1401
- displayOptions: {
1402
- show: {
1403
- resource: ['pageInteraction'],
1404
- operation: ['browserHttpRequest'],
1405
- },
1406
- },
1407
- default: false,
1408
- description: 'Whether to auto-start profile if not running',
1409
- },
1410
- ],
1411
- };
1
+ 'use strict';function a0_0x2d51(_0x488591,_0x422925){_0x488591=_0x488591-0x1d5;var _0x1ce427=a0_0x1ce4();var _0x2d517f=_0x1ce427[_0x488591];if(a0_0x2d51['ohEBsa']===undefined){var _0x174a51=function(_0x4dfeef){var _0x595a65='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x3642e6='',_0x5ab5b8='';for(var _0x6c05d4=0x0,_0x53fb36,_0x73d7d2,_0x461cd5=0x0;_0x73d7d2=_0x4dfeef['charAt'](_0x461cd5++);~_0x73d7d2&&(_0x53fb36=_0x6c05d4%0x4?_0x53fb36*0x40+_0x73d7d2:_0x73d7d2,_0x6c05d4++%0x4)?_0x3642e6+=String['fromCharCode'](0xff&_0x53fb36>>(-0x2*_0x6c05d4&0x6)):0x0){_0x73d7d2=_0x595a65['indexOf'](_0x73d7d2);}for(var _0x57878f=0x0,_0x59b89b=_0x3642e6['length'];_0x57878f<_0x59b89b;_0x57878f++){_0x5ab5b8+='%'+('00'+_0x3642e6['charCodeAt'](_0x57878f)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x5ab5b8);};a0_0x2d51['WCFoJL']=_0x174a51,a0_0x2d51['BDZCDS']={},a0_0x2d51['ohEBsa']=!![];}var _0x49a08a=_0x1ce427[0x0],_0x504959=_0x488591+_0x49a08a,_0x58bcde=a0_0x2d51['BDZCDS'][_0x504959];return!_0x58bcde?(_0x2d517f=a0_0x2d51['WCFoJL'](_0x2d517f),a0_0x2d51['BDZCDS'][_0x504959]=_0x2d517f):_0x2d517f=_0x58bcde,_0x2d517f;}var a0_0x355814=a0_0x2d51;(function(_0x55da7a,_0x58a3df){var _0x50b08f=a0_0x2d51,_0x4e85bf=_0x55da7a();while(!![]){try{var _0x340f59=parseInt(_0x50b08f(0x25b))/0x1+-parseInt(_0x50b08f(0x293))/0x2*(parseInt(_0x50b08f(0x28c))/0x3)+-parseInt(_0x50b08f(0x1fe))/0x4*(-parseInt(_0x50b08f(0x2aa))/0x5)+-parseInt(_0x50b08f(0x24e))/0x6*(parseInt(_0x50b08f(0x1fb))/0x7)+parseInt(_0x50b08f(0x235))/0x8+-parseInt(_0x50b08f(0x1ec))/0x9*(-parseInt(_0x50b08f(0x2bb))/0xa)+parseInt(_0x50b08f(0x283))/0xb*(-parseInt(_0x50b08f(0x279))/0xc);if(_0x340f59===_0x58a3df)break;else _0x4e85bf['push'](_0x4e85bf['shift']());}catch(_0x3ed1bc){_0x4e85bf['push'](_0x4e85bf['shift']());}}}(a0_0x1ce4,0x956c3));function a0_0x1ce4(){var _0x53e5de=['q3jLyxrLifbYB2zPBgu','q1ntihnLBgvJDg9YigzVCIb0AguGzwXLBwvUDa','q2HVB3nLihrOzsbLBNzPCM9UBwvUDcb0BYbJB25Uzwn0ihrV','ChvWCgv0zwvY','u3rVCcbqCM9MAwXL','q29UDgfPBNm','BM90zq','mteWndq5nvDPs3votG','tNvTyMvYig9MignVBhvTBNmGAw4Gz3jPzcbSyxLVDxq','vxbKyxrLifbYB2zPBgu','suqGB2yGDgHLihbYB2zPBguGDg8GC3rHCNq','sw50zxjHy3qGD2L0AcbovKSGqNjVD3nLCIbbueKGzM9Yigf1Dg9TyxrPB24','vgfIieLUzgv4','C2L0zuTLEq','twf4Aw11BsbUDw1IzxiGB2yGCMv0CNKGyxr0zw1WDhm','sMf2yvnJCMLWDcbdB2rL','Bwf0y2HuExbL','BNvTyMvYt2zuAhjLywrZ','uMvNzxG','qM9KEsbqyxjHBwv0zxjZ','yxv0B1n0yxj0','rxHHy3q','DhjHBNnMB3jT','rgvMAw5LifjVD3m','Cg9ZAxrPB25wywX1zxm','uhjVEhKGy29UzMLNDxjHDgLVBG','D2LUug9ZAxrPB24','zg9JA2vY','v2LKDgG','v2fPDcbgB3iGvgHLifbYzxzPB3vZifnLC3nPB24Gvg8Gq29TCgXLDgu','ugfYyw1LDgvY','uhvWCgv0zwvY','BwfPBG','CMLNAhq','u2vSzwn0B3i','v2fPDcbgB3iGuMvXDwvZDa','sfruucbTzxrOB2qGDg8GDxnLigzVCIb3zwjOB29RignHBgW','nJq4D2j5B3ze','tw92zsbbBMqGq2XPy2S','C3rYAw5N','Ahr0Chm6lY9LEgfTCgXLlMnVBq','tMfTzsbVzIb0AguGyMLUyxj5ihbYB3bLCNr5ihrVihnLBMq','vhvUBMvSicHdDxn0B20Gvvjmkq','sMf2yvnJCMLWDcbJB2rLihrVigv4zwn1Dgu','zw52AxjVBM1LBNq','D2LUu2L6zq','v2vIAg9VAYbvuKW','mtKWmti0z2fABK1s','C2L6zvzHBhvLCW','CgfYyw1LDgvY','rgv2zwXVCg1LBNq','rM9YBsbvCMXLBMnVzgvK','qNv0Dg9U','twv0Ag9KihrVihvZzsbMB3iGy2XPy2TPBMC','qwrKAxrPB25HBcbizwfKzxjZ','CgfYyw1LDgvYvhLWzq','nZiXnuXcCgLHzW','ugfYyw1LDgvYig5HBwu','DMfSDwu','yNjVD3nLCKH0Dhbszxf1zxn0','zgf0yq','uhjVzMLSzsboyw1L','v2vIAg9VAYbnzxrOB2q','odC0ELHmwMXf','vvjmihrVig9Wzw4GB24GC3rHCNq','Bw92zufUzenSAwnR','z2v0uMvJyxb0y2HHvg9Rzw4','q2XPy2SGtwv0Ag9K','CMf3qM9KEq','C3rHCNrqCM9MAwXL','Dg9Rzw4','ugfYyw1LDgvYifr5Cgu','tLzliejYB3DZzxiGq2fSBcbbueK','zMLSztPUDMSUC3zN','BgvMDa','v2HLDgHLCIb0BYbHDxrVlxn0yxj0ihbYB2zPBguGAwyGBM90ihj1BM5PBMC','yNjVD3nLCG','ANnVBG','D2fPDezVCKnSAwnR','twv0Ag9K','vgLTzw91Da','qNjVD3nLCIbivfrqifjLCxvLC3q','zgvMAw5LuhjVCgvYDhK','BNzRqNjVD3nLCKfWAurLC2nYAxb0Aw9U','v2HLDgHLCIb0BYb1CgXVywqGysbIAw5HCNKGzMLSzq','ugfNzsbjBNrLCMfJDgLVBG','nte3nJqWCfPywfvZ','twf4ifjLDhjPzxm','D2vIAg9VA01LDgHVza','sgvHzgvY','rxH0zw5ZAw9UCW','DhvUBMvSvxjS','Bg9JywW','yMLUyxj5rMLSzq','pxT7jhbHCMfTzxrLCLSIB3bLCMf0Aw9UiL19Fq','rM9YBsbeyxrH','CMvXDwvZDhm','CMvNzxG','rgvSzxrLifbYB2zPBgu','tNvTyMvYig9MihjVD3mGAw4Gz3jPzcbSyxLVDxq','tMfTzsbVzIb0AguGyMLUyxj5ihbYB3bLCNr5','qwn0Aw9U','uMf3igjVzhKGy29UDgvUDa','ote5mevyD3HUza','ywrKAxrPB25HBeHLywrLCNm','r0vu','q29VCMrPBMf0zxm','vgLTzw91DcaOtwLSBgLZzwnVBMrZkq','Bwf4uMv0CMLLCW','zM9YBvvYBgvUy29Kzwq','sgvHzgXLC3mGtw9Kzq','ChjVzMLSzu5HBwu','qM9KEsbdB250zw50ifr5Cgu','v2LUzg93ifbVC2L0Aw9U','tgvMDa','twf4Aw11Bsb0Aw1LB3v0igLUig1PBgXPC2vJB25KCW','CNvUtxvSDgLWBgvqCM9MAwXLCW','AgvHzgXLC3m','suqGB2yGDgHLihbYB2zPBguGDg8GDxbKyxrL','zM9YBurHDge','uMvZB3vYy2u','sfruucbTzxrOB2q','twLKzgXL','C2vSzwn0B3i','zML4zwrdB2XSzwn0Aw9U','sLnptIbcB2r5','suqGB2yGDgHLihbYB2zPBguGDg8GC3rVCa','uMf3iejVzhK','yNjVD3nLCKf1Dg9TyxrPB24','B3b0Aw9UCW','vhLWzsbVzIbIB2r5ignVBNrLBNq','Ahr0Chm6lY95B3vYlwrVy3mTDxjSlMnVBq','DxbKyxrLuhjVzMLSzq','y2XPy2TdB3vUDa','D2LUu2nHBgu','rKXpv19hru5fuKfusu9o','uMLNAhq','AgvPz2H0','ANnVBKjVzhK','y29UDgfPBNm','BMfTzq','v2HLDgHLCIb0BYbYDw4GyNjVD3nLCIbPBIbOzwfKBgvZCYbTB2rL','sw5WDxqGrgf0ysbgAwvSzcboyw1L','mtaWmtDcvgzhqwm','CgfNzuLUDgvYywn0Aw9U','rMLSDgvYigzVCIbUzxr3B3jRihjLCxvLC3rZ','mxWYmtjLmMqWms0WyZHHltqZnZmTowm5zI05mtuZmZu0zguWytqkmNWYmtjLmMqWms0WyZHHltqZnZmTowm5zI05mtuZmZu0zguWytq','DxjS','suqGB2yGDgHLihbYB2zPBgu','tMfTzsbVzIb0AguGyMLUyxj5ihbYB3bLCNr5igzVCIb0AgLZihbHCMfTzxrLCG','CMvZB3vYy2u','ug9ZAxrPB24','Bwv0Ag9K','qNjVD3nLCIbLEhrLBNnPB25ZicHVBMuGCgvYigXPBMuP','rgf0yq','tMv3ihbYB2zPBguGBMfTzq','ugfYyw1LDgvYihzHBhvL','BMJHUQ1WigLKigHV4BQHyYb1CMWGy+g7P2eGzxH0zw5ZAw9UCYbT4BUxAsbKW7jUzYbT4BUzDcbLEhrLBNnPB25Z','ote3vLfHB3nf','C3rVCfbYB2zPBgu','tNvTyMvYig9MihbHCMfSBgvSihrOCMvHzhmGDg8GCNvU','mZzqqw5RqwC','suqGB2yGDgHLihbYB2zPBguGDg8GzgvSzxrL','tw92zsbHBMqGq2XPy2S','yM9VBgvHBG','DgLTzw91Da','DxnLqMLUyxj5rMLSzq','ChjVEhK','tw91C2uGyNv0Dg9UihrVihvZzq','vhLWzsbVzIb0AguGCgfYyw1LDgvY','uMf3','yMLUyxj5uhjVCgvYDhLoyw1L','twfRzsbivfrqihjLCxvLC3rZihvZAw5NiejYB3DZzxi','qxv0BYbtDgfYDcbqCM9MAwXL','y2fWDgnOyq','uhjVzMLSzsbnyw5Hz2vTzw50','r2v0ie5LDhDVCMSGuMvZCg9UC2u','BNvTyMvY','BMJHUQ1WimsrW7PUzYb0W6PUigfJDgLVBIbJ4BUNysbZAxrL','sLnptIbIB2r5ignVBNrLBNq','qNjVD3nLCIb0ywiGAw5KzxG','B3bLCMf0Aw9U','D2LKDgG','tg9JywW','CxvLCNLqyxjHBwv0zxjZ','y2XPy2TnzxrOB2q','BNzRqNjVD3nLCKfWAq','uNvUiePHDMfty3jPChq','sw5PDgLHBcbvuKW','DgfIsw5KzxG','u3rHCNqGuhjVzMLSzq','CMvJyxb0y2HH','CMvdqvbuq0HbihnPDguGA2v5icHHDxrVlwrLDgvJDcbPzIbLBxb0EsK','yMLUyxj5uhjVCgvYDhK','vgLTzw91DcbPBIbTAwXSAxnLy29Uzhm','sfruucbYzxf1zxn0CYb1C2LUzYbcCM93C2vY','y3jLyxrLuhjVzMLSzq','CNvUsMf2yvnJCMLWDa','sfruua','u2L0zsblzxK','CMvXDwvZDezPBhrLCG','v2LUzg93ifnPEMu','tMfTzsbVzIb0AguGChjVzMLSzq','qNjVD3nLCIbbDxrVBwf0Aw9U','vxnLiejPBMfYEsbgAwXL','zgvMAw5LuM93CW','zgvSzxrLuhjVzMLSzq','tMv3ihbYB3H5ignVBMzPz3vYyxrPB24','v2fPDcbgB3iGq2XPy2S','qNjVD3nLCIb3Aw5KB3CGC2nHBgu','v2LUifnJywXL','q2XPy2SGq291BNq','rg93BMXVywqGqNjVD3nLCG','Ahr0CdOXmJCUmc4WlJe6oda4mdP1C2vYoNbHC3mGAg/HURDJihnVy2TZntOXmJCUmc4WlJe6mta4mdP1C2vYoNbHC3m','uNvUie11BhrPCgXLifbYB2zPBgvZ','rM9YBs1eyxrH','ndyWntu5mK5fy05fCW','rw50zxiGEw91CIb0Dw5UzwWGvvjmicHUz3jVAYWGq2XVDwrMBgfYzsbuDw5UzwWSigv0yY4P','vhLWzsbVzIbTyxrJAgLUzYb0BYb1C2u','D2vIAg9VA1vYBa','sfruucbYzxf1zxn0CW','yM9KEvbHCMfTzxrLCNm','x19LC01VzhvSzq','v2fPDcb0Aw1LigjLzM9YzsbJBgLJAYbPBIbTAwXSAxnLy29Uzhm','vvjm','rw50zxiGzgf0ysbPBIbMB3jTyxq6igXPBMv8ChjVzMLSzuLKicHVBMuGCgvYigXPBMuP','BJHUiejPBMfYEsbgAwXL','z2v0tMv0D29YA1jLC3bVBNnL','vMfSDwu','tM90zq','vhvUBMvSifvsta','t3bLCMf0Aw9U','qwrKAxrPB25HBcbUB3rLCW','qwrKifbHCMfTzxrLCG','ue9tva','BwLKzgXL','rgvMAw5LienVBhvTBNm','ChjVzMLSzuLK','CMvJyxb0y2HHihnVBhzLCG','tMfTzq','u2L6zq','ndC1nJjAzhb6zuO','zxH0zw5ZAw9UCW','Aw5PDgLHBfvYBa','uhjVzMLSzsbjra','DhvUBMvS','ChjVzMLSzu1HBMfNzw1LBNq'];a0_0x1ce4=function(){return _0x53e5de;};return a0_0x1ce4();}Object[a0_0x355814(0x2a6)](exports,a0_0x355814(0x23b),{'value':!![]}),exports['nvkBrowserApiDescription']=void 0x0,exports[a0_0x355814(0x2a7)]={'displayName':a0_0x355814(0x29c),'name':a0_0x355814(0x217),'icon':a0_0x355814(0x29d),'group':[a0_0x355814(0x26a)],'version':0x1,'subtitle':a0_0x355814(0x2b2),'description':a0_0x355814(0x25f),'defaults':{'name':a0_0x355814(0x29c)},'codex':{'categories':[a0_0x355814(0x286)],'subcategories':{'Development':[a0_0x355814(0x228)]},'resources':{'primaryDocumentation':[{'url':a0_0x355814(0x1e0)}]},'alias':['Run\x20Multiple\x20Profiles',a0_0x355814(0x2b4),a0_0x355814(0x223),a0_0x355814(0x239),a0_0x355814(0x209),a0_0x355814(0x220),a0_0x355814(0x20d),a0_0x355814(0x27a),a0_0x355814(0x231),a0_0x355814(0x25d),a0_0x355814(0x258),a0_0x355814(0x2b6),'Create\x20profile',a0_0x355814(0x21c),a0_0x355814(0x20b),a0_0x355814(0x29a),'get\x20recaptcha\x20token',a0_0x355814(0x24b),a0_0x355814(0x2a0),'automation',a0_0x355814(0x257)]},'inputs':[a0_0x355814(0x274)],'outputs':[a0_0x355814(0x274)],'credentials':[],'properties':[{'displayName':'Environment','name':a0_0x355814(0x280),'type':a0_0x355814(0x1de),'options':[{'name':a0_0x355814(0x214),'value':a0_0x355814(0x2b0)},{'name':'Docker','value':a0_0x355814(0x26f)},{'name':a0_0x355814(0x27e),'value':a0_0x355814(0x252)}],'default':a0_0x355814(0x2b0),'description':a0_0x355814(0x256)},{'displayName':a0_0x355814(0x243),'name':a0_0x355814(0x2af),'type':'string','displayOptions':{'show':{'environment':['tunnel']}},'default':'','placeholder':'https://abc123.ngrok.io','description':a0_0x355814(0x236),'required':!![]},{'displayName':a0_0x355814(0x1d5),'name':a0_0x355814(0x1f3),'type':a0_0x355814(0x1de),'noDataExpression':!![],'options':[{'name':a0_0x355814(0x20c),'value':'profileManagement'},{'name':a0_0x355814(0x2a9),'value':a0_0x355814(0x1ed)},{'name':a0_0x355814(0x228),'value':a0_0x355814(0x1dd)}],'default':a0_0x355814(0x253)},{'displayName':a0_0x355814(0x244),'name':a0_0x355814(0x212),'type':a0_0x355814(0x1de),'noDataExpression':!![],'displayOptions':{'show':{'resource':[a0_0x355814(0x253)]}},'options':[{'name':a0_0x355814(0x254),'value':'createProfile','action':'Create\x20Profile'},{'name':a0_0x355814(0x2b6),'value':a0_0x355814(0x22b),'action':a0_0x355814(0x2b6)},{'name':a0_0x355814(0x21b),'value':a0_0x355814(0x299),'action':a0_0x355814(0x21b)},{'name':a0_0x355814(0x258),'value':a0_0x355814(0x1fc),'action':'Stop\x20Profile'},{'name':a0_0x355814(0x25d),'value':a0_0x355814(0x1e1),'action':a0_0x355814(0x25d)},{'name':a0_0x355814(0x231),'value':'downloadBrowser','action':'Download\x20Browser'}],'default':'createProfile'},{'displayName':a0_0x355814(0x244),'name':a0_0x355814(0x212),'type':a0_0x355814(0x1de),'noDataExpression':!![],'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)]}},'options':[{'name':a0_0x355814(0x200),'value':a0_0x355814(0x295),'action':a0_0x355814(0x200)},{'name':a0_0x355814(0x218),'value':a0_0x355814(0x222),'action':'Run\x20JavaScript'},{'name':a0_0x355814(0x20d),'value':a0_0x355814(0x240),'action':'Get\x20Network\x20Response'},{'name':a0_0x355814(0x2a5),'value':a0_0x355814(0x28f),'action':a0_0x355814(0x209)},{'name':'Get\x20Recaptcha\x20Token','value':a0_0x355814(0x296),'action':'Get\x20Recaptcha\x20Token'}],'default':a0_0x355814(0x295)},{'displayName':'Operation','name':a0_0x355814(0x212),'type':a0_0x355814(0x1de),'noDataExpression':!![],'displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)]}},'options':[{'name':a0_0x355814(0x233),'value':'runMultipleProfiles','action':a0_0x355814(0x233)}],'default':a0_0x355814(0x2c8)},{'displayName':a0_0x355814(0x1f7),'name':a0_0x355814(0x290),'type':a0_0x355814(0x27b),'typeOptions':{'rows':0xa},'displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)],'operation':[a0_0x355814(0x2c8)]}},'default':'','required':!![],'description':a0_0x355814(0x23e),'placeholder':a0_0x355814(0x1ef)},{'displayName':'Number\x20of\x20Threads','name':a0_0x355814(0x265),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)],'operation':['runMultipleProfiles']}},'default':0x1,'description':a0_0x355814(0x1fd)},{'displayName':a0_0x355814(0x249),'name':'defineColumns','type':'number','displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)],'operation':[a0_0x355814(0x2c8)]}},'default':0x3,'description':a0_0x355814(0x25c)},{'displayName':a0_0x355814(0x26b),'name':a0_0x355814(0x22a),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)],'operation':[a0_0x355814(0x2c8)]}},'default':0x2,'description':a0_0x355814(0x2b7)},{'displayName':a0_0x355814(0x22f),'name':a0_0x355814(0x1e3),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)],'operation':[a0_0x355814(0x2c8)]}},'default':0x64,'description':'Window\x20scale\x20percentage\x20(100\x20=\x20100%)'},{'displayName':a0_0x355814(0x282),'name':a0_0x355814(0x238),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':['browserAutomation'],'operation':[a0_0x355814(0x2c8)]}},'default':'','description':'Webhook\x20URL\x20to\x20send\x20results\x20to\x20(optional)'},{'displayName':a0_0x355814(0x292),'name':a0_0x355814(0x2ac),'type':a0_0x355814(0x1de),'displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)],'operation':[a0_0x355814(0x2c8)]}},'options':[{'name':'GET','value':a0_0x355814(0x2bd)},{'name':a0_0x355814(0x247),'value':'POST'}],'default':a0_0x355814(0x247),'description':a0_0x355814(0x278)},{'displayName':a0_0x355814(0x2bf),'name':'timeout','type':'number','displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)],'operation':['runMultipleProfiles']}},'default':0x5f5e100,'description':a0_0x355814(0x2c7)},{'displayName':a0_0x355814(0x271),'name':'waitForPrevious','type':a0_0x355814(0x201),'displayOptions':{'show':{'resource':[a0_0x355814(0x1dd)],'operation':[a0_0x355814(0x2c8)]}},'default':!![],'description':'Whether\x20to\x20wait\x20for\x20previous\x20session\x20to\x20complete\x20before\x20starting\x20next'},{'displayName':a0_0x355814(0x291),'name':a0_0x355814(0x2c3),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x221)]}},'default':'','required':!![],'description':a0_0x355814(0x227)},{'displayName':'Proxy','name':a0_0x355814(0x204),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':['createProfile']}},'default':'','placeholder':a0_0x355814(0x232),'description':a0_0x355814(0x26d)},{'displayName':a0_0x355814(0x242),'name':a0_0x355814(0x25a),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x221)]}},'default':'','description':a0_0x355814(0x245)},{'displayName':'Extensions','name':a0_0x355814(0x24f),'type':a0_0x355814(0x27b),'typeOptions':{'rows':0x4},'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x221)]}},'default':'','placeholder':a0_0x355814(0x1fa),'description':a0_0x355814(0x1f6)},{'displayName':'Profile\x20ID','name':a0_0x355814(0x24a),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':['deleteProfile']}},'default':'','required':!![],'description':a0_0x355814(0x1ff)},{'displayName':a0_0x355814(0x251),'name':a0_0x355814(0x24a),'type':'string','displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x299)]}},'default':'','required':!![],'description':a0_0x355814(0x25e)},{'displayName':'Window\x20Scale','name':'winScale','type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':['startProfile']}},'default':0x1,'description':a0_0x355814(0x22e)},{'displayName':a0_0x355814(0x2c5),'name':a0_0x355814(0x26e),'type':a0_0x355814(0x1d9),'typeOptions':{'multipleValues':![]},'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x299)]}},'default':{},'options':[{'displayName':a0_0x355814(0x1f4),'name':a0_0x355814(0x26c),'values':[{'displayName':'X','name':'x','type':'number','default':0x0},{'displayName':'Y','name':'y','type':a0_0x355814(0x20e),'default':0x0}]}]},{'displayName':a0_0x355814(0x226),'name':a0_0x355814(0x281),'type':a0_0x355814(0x1d9),'typeOptions':{'multipleValues':![]},'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x299)]}},'default':{},'options':[{'displayName':a0_0x355814(0x24d),'name':a0_0x355814(0x284),'values':[{'displayName':a0_0x355814(0x270),'name':a0_0x355814(0x213),'type':'number','default':0x500},{'displayName':'Height','name':a0_0x355814(0x1e6),'type':'number','default':0x2d0}]}]},{'displayName':a0_0x355814(0x2c2),'name':a0_0x355814(0x2c9),'type':'boolean','displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':['startProfile']}},'default':![],'description':a0_0x355814(0x1ea)},{'displayName':a0_0x355814(0x219),'name':a0_0x355814(0x250),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x299)]}},'default':a0_0x355814(0x27c),'description':a0_0x355814(0x294)},{'displayName':'Profile\x20ID','name':a0_0x355814(0x24a),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x1fc)]}},'default':'','required':!![],'description':a0_0x355814(0x1db)},{'displayName':a0_0x355814(0x251),'name':a0_0x355814(0x24a),'type':'string','displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':['updateProfile']}},'default':'','required':!![],'description':a0_0x355814(0x2ca)},{'displayName':a0_0x355814(0x291),'name':'profileName','type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x1e1)]}},'default':'','description':a0_0x355814(0x1f8)},{'displayName':'Proxy','name':a0_0x355814(0x204),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':['updateProfile']}},'default':'','description':a0_0x355814(0x22c)},{'displayName':a0_0x355814(0x242),'name':'note','type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':['updateProfile']}},'default':'','description':'New\x20note'},{'displayName':a0_0x355814(0x2ae),'name':a0_0x355814(0x24f),'type':'string','typeOptions':{'rows':0x4},'displayOptions':{'show':{'resource':[a0_0x355814(0x253)],'operation':[a0_0x355814(0x1e1)]}},'default':'','description':'New\x20extensions\x20(one\x20per\x20line)'},{'displayName':a0_0x355814(0x251),'name':a0_0x355814(0x24a),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x295)]}},'default':'','required':!![],'description':a0_0x355814(0x1f1)},{'displayName':a0_0x355814(0x276),'name':a0_0x355814(0x1d8),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x295)]}},'default':'','required':!![],'description':a0_0x355814(0x255)},{'displayName':a0_0x355814(0x297),'name':a0_0x355814(0x216),'type':a0_0x355814(0x1de),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x295)]}},'options':[{'name':a0_0x355814(0x273),'value':a0_0x355814(0x257)},{'name':a0_0x355814(0x2be),'value':'coordinates'}],'default':a0_0x355814(0x257),'description':a0_0x355814(0x289)},{'displayName':'Timeout','name':a0_0x355814(0x202),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['moveAndClick']}},'default':0x7530,'description':a0_0x355814(0x21f)},{'displayName':'Tab\x20Index','name':a0_0x355814(0x21a),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':['moveAndClick']}},'default':0x0,'description':a0_0x355814(0x211)},{'displayName':a0_0x355814(0x20a),'name':a0_0x355814(0x268),'type':'boolean','displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x295)]}},'default':![],'description':a0_0x355814(0x29f)},{'displayName':a0_0x355814(0x22d),'name':a0_0x355814(0x2a2),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['moveAndClick']}},'default':0x1f4,'description':a0_0x355814(0x23c)},{'displayName':a0_0x355814(0x288),'name':'button','type':'options','displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['moveAndClick']}},'options':[{'name':a0_0x355814(0x2c6),'value':'left'},{'name':a0_0x355814(0x1e5),'value':a0_0x355814(0x275)},{'name':a0_0x355814(0x1d7),'value':a0_0x355814(0x248)}],'default':a0_0x355814(0x29e),'description':a0_0x355814(0x205)},{'displayName':a0_0x355814(0x230),'name':a0_0x355814(0x1e2),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x295)]}},'default':0x1,'description':'Number\x20of\x20clicks'},{'displayName':a0_0x355814(0x229),'name':a0_0x355814(0x203),'type':a0_0x355814(0x201),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x295)]}},'default':![],'description':a0_0x355814(0x2a8)},{'displayName':a0_0x355814(0x1eb),'name':'binaryPropertyName','type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x295)],'useBinaryFile':[!![]]}},'default':'data','required':!![],'description':a0_0x355814(0x2b8)},{'displayName':'Profile\x20ID','name':a0_0x355814(0x24a),'type':'string','displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x222)]}},'default':'','required':!![],'description':a0_0x355814(0x1f1)},{'displayName':a0_0x355814(0x263),'name':'javascriptCode','type':'string','typeOptions':{'rows':0xa},'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['runJavaScript']}},'default':'','required':!![],'description':a0_0x355814(0x27f)},{'displayName':a0_0x355814(0x260),'name':a0_0x355814(0x21a),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x222)]}},'default':0x0,'description':a0_0x355814(0x211)},{'displayName':a0_0x355814(0x20a),'name':a0_0x355814(0x268),'type':a0_0x355814(0x201),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x222)]}},'default':![],'description':'Whether\x20to\x20auto-start\x20profile\x20if\x20not\x20running'},{'displayName':a0_0x355814(0x251),'name':a0_0x355814(0x24a),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['getNetworkResponse']}},'default':'','required':!![],'description':a0_0x355814(0x1f1)},{'displayName':'Request\x20Filter','name':a0_0x355814(0x225),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x240)]}},'default':'','required':!![],'description':a0_0x355814(0x1ee)},{'displayName':'Match\x20Type','name':a0_0x355814(0x264),'type':a0_0x355814(0x1de),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x240)]}},'options':[{'name':a0_0x355814(0x259),'value':a0_0x355814(0x1e8)},{'name':a0_0x355814(0x269),'value':'exact'},{'name':a0_0x355814(0x266),'value':a0_0x355814(0x2b5)}],'default':a0_0x355814(0x1e8),'description':a0_0x355814(0x237)},{'displayName':a0_0x355814(0x2a4),'name':a0_0x355814(0x202),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x240)]}},'default':0x7530,'description':a0_0x355814(0x21f)},{'displayName':a0_0x355814(0x277),'name':'waitForRequest','type':'boolean','displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x240)]}},'default':!![],'description':'Whether\x20to\x20wait\x20for\x20the\x20request'},{'displayName':a0_0x355814(0x260),'name':a0_0x355814(0x21a),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x240)]}},'default':0x0,'description':'Browser\x20tab\x20index'},{'displayName':a0_0x355814(0x20a),'name':a0_0x355814(0x268),'type':a0_0x355814(0x201),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x240)]}},'default':![],'description':a0_0x355814(0x29f)},{'displayName':a0_0x355814(0x251),'name':a0_0x355814(0x24a),'type':'string','displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x28f)]}},'default':'','required':!![],'description':a0_0x355814(0x1f1)},{'displayName':a0_0x355814(0x2a3),'name':a0_0x355814(0x1f5),'type':a0_0x355814(0x1de),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x28f)]}},'options':[{'name':a0_0x355814(0x2bd),'value':a0_0x355814(0x2bd)},{'name':a0_0x355814(0x247),'value':a0_0x355814(0x247)}],'default':a0_0x355814(0x2bd),'description':a0_0x355814(0x1d6)},{'displayName':a0_0x355814(0x23d),'name':a0_0x355814(0x1f0),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['browserHttpRequest']}},'default':'','required':!![],'description':'Request\x20URL'},{'displayName':'Send\x20Body','name':'sendBody','type':a0_0x355814(0x201),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x28f)],'method':[a0_0x355814(0x247)]}},'default':![],'description':'Whether\x20to\x20send\x20request\x20body'},{'displayName':a0_0x355814(0x2c4),'name':'bodyContentType','type':a0_0x355814(0x1de),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x28f)],'method':[a0_0x355814(0x247)],'sendBody':[!![]]}},'options':[{'name':a0_0x355814(0x287),'value':a0_0x355814(0x2c1)},{'name':a0_0x355814(0x234),'value':a0_0x355814(0x2cb)},{'name':'JSON','value':'json'},{'name':a0_0x355814(0x23f),'value':a0_0x355814(0x2b1)},{'name':a0_0x355814(0x207),'value':'raw'}],'default':a0_0x355814(0x2cb),'description':a0_0x355814(0x1df)},{'displayName':'Profile\x20ID','name':a0_0x355814(0x24a),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['getRecaptchaToken']}},'default':'','required':!![],'description':'ID\x20of\x20the\x20profile'},{'displayName':a0_0x355814(0x224),'name':a0_0x355814(0x261),'type':'string','displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x296)]}},'default':'','description':a0_0x355814(0x21d)},{'displayName':a0_0x355814(0x260),'name':a0_0x355814(0x21a),'type':'number','displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['getRecaptchaToken']}},'default':0x0,'description':a0_0x355814(0x211)},{'displayName':'Timeout','name':a0_0x355814(0x202),'type':'number','displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x296)]}},'default':0x2710,'description':'Timeout\x20in\x20milliseconds'},{'displayName':a0_0x355814(0x2b9),'name':'action','type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':['getRecaptchaToken']}},'default':a0_0x355814(0x1e4),'placeholder':a0_0x355814(0x20f),'description':a0_0x355814(0x20f)},{'displayName':a0_0x355814(0x2ab),'name':a0_0x355814(0x2c0),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x296)]}},'default':0x3,'description':a0_0x355814(0x262)},{'displayName':'Auto\x20Start\x20Profile','name':a0_0x355814(0x268),'type':'boolean','displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x296)]}},'default':![],'description':'Whether\x20to\x20auto-start\x20profile\x20if\x20not\x20running'},{'displayName':a0_0x355814(0x1eb),'name':a0_0x355814(0x208),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x28f)],'method':[a0_0x355814(0x247)],'sendBody':[!![]],'bodyContentType':[a0_0x355814(0x2b1)]}},'default':a0_0x355814(0x290),'required':!![],'placeholder':a0_0x355814(0x290),'description':a0_0x355814(0x27d)},{'displayName':a0_0x355814(0x1da),'name':a0_0x355814(0x1e7),'type':a0_0x355814(0x27b),'typeOptions':{'rows':0x4},'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x28f)],'method':[a0_0x355814(0x247)],'sendBody':[!![]],'bodyContentType':[a0_0x355814(0x2a1)]}},'default':'','description':a0_0x355814(0x210)},{'displayName':a0_0x355814(0x1dc),'name':a0_0x355814(0x298),'type':'string','typeOptions':{'rows':0x4},'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x28f)],'method':[a0_0x355814(0x247)],'sendBody':[!![]],'bodyContentType':['raw']}},'default':'','description':a0_0x355814(0x2ba)},{'displayName':a0_0x355814(0x267),'name':a0_0x355814(0x23a),'type':a0_0x355814(0x1d9),'typeOptions':{'multipleValues':!![]},'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x28f)],'method':['POST'],'sendBody':[!![]],'bodyContentType':[a0_0x355814(0x2cb)]}},'default':{},'placeholder':a0_0x355814(0x246),'options':[{'displayName':a0_0x355814(0x272),'name':'parameter','values':[{'displayName':a0_0x355814(0x29b),'name':a0_0x355814(0x28b),'type':'options','options':[{'name':a0_0x355814(0x2b3),'value':a0_0x355814(0x2cb)},{'name':a0_0x355814(0x23f),'value':a0_0x355814(0x2b1)}],'default':a0_0x355814(0x2cb),'description':a0_0x355814(0x206)},{'displayName':'Name','name':a0_0x355814(0x1e9),'type':a0_0x355814(0x27b),'default':'','description':a0_0x355814(0x28d)},{'displayName':a0_0x355814(0x241),'name':a0_0x355814(0x28e),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'parameterType':[a0_0x355814(0x2cb)]}},'default':'','description':a0_0x355814(0x1f9)},{'displayName':'Input\x20Data\x20Field\x20Name','name':a0_0x355814(0x21e),'type':a0_0x355814(0x27b),'displayOptions':{'show':{'parameterType':['binaryFile']}},'default':a0_0x355814(0x290),'placeholder':a0_0x355814(0x290),'description':a0_0x355814(0x1f2)}]}]},{'displayName':a0_0x355814(0x2b3),'name':a0_0x355814(0x2cb),'type':a0_0x355814(0x1d9),'typeOptions':{'multipleValues':!![]},'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':['browserHttpRequest'],'method':['POST'],'sendBody':[!![]],'bodyContentType':['formUrlencoded']}},'default':{},'placeholder':a0_0x355814(0x246),'options':[{'displayName':a0_0x355814(0x272),'name':a0_0x355814(0x285),'values':[{'displayName':'Name','name':a0_0x355814(0x1e9),'type':a0_0x355814(0x27b),'default':''},{'displayName':a0_0x355814(0x241),'name':a0_0x355814(0x28e),'type':a0_0x355814(0x27b),'default':''}]}]},{'displayName':a0_0x355814(0x28a),'name':a0_0x355814(0x2bc),'type':a0_0x355814(0x1d9),'typeOptions':{'multipleValues':!![]},'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x28f)]}},'default':{},'options':[{'displayName':a0_0x355814(0x2ad),'name':'header','values':[{'displayName':a0_0x355814(0x24c),'name':a0_0x355814(0x1e9),'type':a0_0x355814(0x27b),'default':''},{'displayName':a0_0x355814(0x241),'name':a0_0x355814(0x28e),'type':a0_0x355814(0x27b),'default':''}]}]},{'displayName':'Query\x20Parameters','name':a0_0x355814(0x215),'type':a0_0x355814(0x1d9),'typeOptions':{'multipleValues':!![]},'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x28f)]}},'default':{},'options':[{'displayName':a0_0x355814(0x272),'name':a0_0x355814(0x285),'values':[{'displayName':a0_0x355814(0x24c),'name':'name','type':'string','default':''},{'displayName':a0_0x355814(0x241),'name':a0_0x355814(0x28e),'type':a0_0x355814(0x27b),'default':''}]}]},{'displayName':a0_0x355814(0x260),'name':a0_0x355814(0x21a),'type':a0_0x355814(0x20e),'displayOptions':{'show':{'resource':[a0_0x355814(0x1ed)],'operation':[a0_0x355814(0x28f)]}},'default':0x0,'description':a0_0x355814(0x211)},{'displayName':a0_0x355814(0x20a),'name':a0_0x355814(0x268),'type':a0_0x355814(0x201),'displayOptions':{'show':{'resource':['pageInteraction'],'operation':[a0_0x355814(0x28f)]}},'default':![],'description':a0_0x355814(0x29f)}]};