n8n-nodes-nvk-call-api 0.0.7 → 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,1397 +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
- inputs: ['main'],
16
- outputs: ['main'],
17
- credentials: [],
18
- properties: [
19
- {
20
- displayName: 'Environment',
21
- name: 'environment',
22
- type: 'options',
23
- options: [
24
- {
25
- name: 'Local',
26
- value: 'local',
27
- },
28
- {
29
- name: 'Docker',
30
- value: 'docker',
31
- },
32
- {
33
- name: 'Tunnel (Custom URL)',
34
- value: 'tunnel',
35
- },
36
- ],
37
- default: 'local',
38
- description: 'Choose the environment to connect to',
39
- },
40
- {
41
- displayName: 'Tunnel URL',
42
- name: 'tunnelUrl',
43
- type: 'string',
44
- displayOptions: {
45
- show: {
46
- environment: ['tunnel'],
47
- },
48
- },
49
- default: '',
50
- placeholder: 'https://abc123.ngrok.io',
51
- description: 'Enter your tunnel URL (ngrok, Cloudflare Tunnel, etc.)',
52
- required: true,
53
- },
54
- {
55
- displayName: 'Resource',
56
- name: 'resource',
57
- type: 'options',
58
- noDataExpression: true,
59
- options: [
60
- {
61
- name: 'Profile Management',
62
- value: 'profileManagement',
63
- },
64
- {
65
- name: 'Page Interaction',
66
- value: 'pageInteraction',
67
- },
68
- {
69
- name: 'Browser Automation',
70
- value: 'browserAutomation',
71
- },
72
- ],
73
- default: 'profileManagement',
74
- },
75
- {
76
- displayName: 'Operation',
77
- name: 'operation',
78
- type: 'options',
79
- noDataExpression: true,
80
- displayOptions: {
81
- show: {
82
- resource: ['profileManagement'],
83
- },
84
- },
85
- options: [
86
- {
87
- name: 'Create Profile',
88
- value: 'createProfile',
89
- action: 'Create Profile',
90
- },
91
- {
92
- name: 'Delete Profile',
93
- value: 'deleteProfile',
94
- action: 'Delete Profile',
95
- },
96
- {
97
- name: 'Start Profile',
98
- value: 'startProfile',
99
- action: 'Start Profile',
100
- },
101
- {
102
- name: 'Stop Profile',
103
- value: 'stopProfile',
104
- action: 'Stop Profile',
105
- },
106
- {
107
- name: 'Update Profile',
108
- value: 'updateProfile',
109
- action: 'Update Profile',
110
- },
111
- {
112
- name: 'Download Browser',
113
- value: 'downloadBrowser',
114
- action: 'Download Browser',
115
- },
116
- ],
117
- default: 'createProfile',
118
- },
119
- {
120
- displayName: 'Operation',
121
- name: 'operation',
122
- type: 'options',
123
- noDataExpression: true,
124
- displayOptions: {
125
- show: {
126
- resource: ['pageInteraction'],
127
- },
128
- },
129
- options: [
130
- {
131
- name: 'Move and Click',
132
- value: 'moveAndClick',
133
- action: 'Move and Click',
134
- },
135
- {
136
- name: 'Run JavaScript',
137
- value: 'runJavaScript',
138
- action: 'Run JavaScript',
139
- },
140
- {
141
- name: 'Get Network Response',
142
- value: 'getNetworkResponse',
143
- action: 'Get Network Response',
144
- },
145
- {
146
- name: 'Browser HTTP Request',
147
- value: 'browserHttpRequest',
148
- action: 'Make HTTP requests using Browser',
149
- },
150
- {
151
- name: 'Get Recaptcha Token',
152
- value: 'getRecaptchaToken',
153
- action: 'Get Recaptcha Token',
154
- },
155
- ],
156
- default: 'moveAndClick',
157
- },
158
- {
159
- displayName: 'Operation',
160
- name: 'operation',
161
- type: 'options',
162
- noDataExpression: true,
163
- displayOptions: {
164
- show: {
165
- resource: ['browserAutomation'],
166
- },
167
- },
168
- options: [
169
- {
170
- name: 'Run Multiple Profiles',
171
- value: 'runMultipleProfiles',
172
- action: 'Run Multiple Profiles',
173
- },
174
- ],
175
- default: 'runMultipleProfiles',
176
- },
177
- // Run Multiple Profiles Fields
178
- {
179
- displayName: 'Data',
180
- name: 'data',
181
- type: 'string',
182
- typeOptions: {
183
- rows: 10,
184
- },
185
- displayOptions: {
186
- show: {
187
- resource: ['browserAutomation'],
188
- operation: ['runMultipleProfiles'],
189
- },
190
- },
191
- default: '',
192
- required: true,
193
- description: 'Enter data in format: line|profileId (one per line)',
194
- placeholder: '1|212e2d01-0c8a-4373-9c9f-9153354de0a4\n2|212e2d01-0c8a-4373-9c9f-9153354de0a4',
195
- },
196
- {
197
- displayName: 'Number of Threads',
198
- name: 'numberOfThreads',
199
- type: 'number',
200
- displayOptions: {
201
- show: {
202
- resource: ['browserAutomation'],
203
- operation: ['runMultipleProfiles'],
204
- },
205
- },
206
- default: 1,
207
- description: 'Number of parallel threads to run',
208
- },
209
- {
210
- displayName: 'Define Columns',
211
- name: 'defineColumns',
212
- type: 'number',
213
- displayOptions: {
214
- show: {
215
- resource: ['browserAutomation'],
216
- operation: ['runMultipleProfiles'],
217
- },
218
- },
219
- default: 3,
220
- description: 'Number of columns in grid layout',
221
- },
222
- {
223
- displayName: 'Define Rows',
224
- name: 'defineRows',
225
- type: 'number',
226
- displayOptions: {
227
- show: {
228
- resource: ['browserAutomation'],
229
- operation: ['runMultipleProfiles'],
230
- },
231
- },
232
- default: 2,
233
- description: 'Number of rows in grid layout',
234
- },
235
- {
236
- displayName: 'Win Scale',
237
- name: 'winScale',
238
- type: 'number',
239
- displayOptions: {
240
- show: {
241
- resource: ['browserAutomation'],
242
- operation: ['runMultipleProfiles'],
243
- },
244
- },
245
- default: 100,
246
- description: 'Window scale percentage (100 = 100%)',
247
- },
248
- {
249
- displayName: 'Webhook URL',
250
- name: 'webhookUrl',
251
- type: 'string',
252
- displayOptions: {
253
- show: {
254
- resource: ['browserAutomation'],
255
- operation: ['runMultipleProfiles'],
256
- },
257
- },
258
- default: '',
259
- description: 'Webhook URL to send results to (optional)',
260
- },
261
- {
262
- displayName: 'Webhook Method',
263
- name: 'webhookMethod',
264
- type: 'options',
265
- displayOptions: {
266
- show: {
267
- resource: ['browserAutomation'],
268
- operation: ['runMultipleProfiles'],
269
- },
270
- },
271
- options: [
272
- {
273
- name: 'GET',
274
- value: 'GET',
275
- },
276
- {
277
- name: 'POST',
278
- value: 'POST',
279
- },
280
- ],
281
- default: 'POST',
282
- description: 'HTTP method to use for webhook call',
283
- },
284
- {
285
- displayName: 'Timeout (Milliseconds)',
286
- name: 'timeout',
287
- type: 'number',
288
- displayOptions: {
289
- show: {
290
- resource: ['browserAutomation'],
291
- operation: ['runMultipleProfiles'],
292
- },
293
- },
294
- default: 100000000,
295
- description: 'Maximum timeout in milliseconds',
296
- },
297
- {
298
- displayName: 'Wait For The Previous Session To Complete',
299
- name: 'waitForPrevious',
300
- type: 'boolean',
301
- displayOptions: {
302
- show: {
303
- resource: ['browserAutomation'],
304
- operation: ['runMultipleProfiles'],
305
- },
306
- },
307
- default: true,
308
- description: 'Whether to wait for previous session to complete before starting next',
309
- },
310
- // Create Profile Fields
311
- {
312
- displayName: 'Profile Name',
313
- name: 'profileName',
314
- type: 'string',
315
- displayOptions: {
316
- show: {
317
- resource: ['profileManagement'],
318
- operation: ['createProfile'],
319
- },
320
- },
321
- default: '',
322
- required: true,
323
- description: 'Name of the profile',
324
- },
325
- {
326
- displayName: 'Proxy',
327
- name: 'proxy',
328
- type: 'string',
329
- displayOptions: {
330
- show: {
331
- resource: ['profileManagement'],
332
- operation: ['createProfile'],
333
- },
334
- },
335
- default: 'http:127.0.0.1:8080:user:pass',
336
- placeholder: 'http:127.0.0.1:8080:user:pass hoặc socks5:127.0.0.1:1080:user:pass',
337
- description: 'Proxy configuration',
338
- },
339
- {
340
- displayName: 'Note',
341
- name: 'note',
342
- type: 'string',
343
- displayOptions: {
344
- show: {
345
- resource: ['profileManagement'],
346
- operation: ['createProfile'],
347
- },
348
- },
349
- default: '',
350
- description: 'Additional notes',
351
- },
352
- {
353
- displayName: 'Extensions',
354
- name: 'extensions',
355
- type: 'string',
356
- typeOptions: {
357
- rows: 4,
358
- },
359
- displayOptions: {
360
- show: {
361
- resource: ['profileManagement'],
362
- operation: ['createProfile'],
363
- },
364
- },
365
- default: '',
366
- description: 'Browser extensions (one per line)',
367
- },
368
- // Delete Profile Fields
369
- {
370
- displayName: 'Profile ID',
371
- name: 'profileId',
372
- type: 'string',
373
- displayOptions: {
374
- show: {
375
- resource: ['profileManagement'],
376
- operation: ['deleteProfile'],
377
- },
378
- },
379
- default: '',
380
- required: true,
381
- description: 'ID of the profile to delete',
382
- },
383
- // Start Profile Fields
384
- {
385
- displayName: 'Profile ID',
386
- name: 'profileId',
387
- type: 'string',
388
- displayOptions: {
389
- show: {
390
- resource: ['profileManagement'],
391
- operation: ['startProfile'],
392
- },
393
- },
394
- default: '',
395
- required: true,
396
- description: 'ID of the profile to start',
397
- },
398
- {
399
- displayName: 'Window Scale',
400
- name: 'winScale',
401
- type: 'number',
402
- displayOptions: {
403
- show: {
404
- resource: ['profileManagement'],
405
- operation: ['startProfile'],
406
- },
407
- },
408
- default: 1,
409
- description: 'Browser window scale',
410
- },
411
- {
412
- displayName: 'Window Position',
413
- name: 'winPosition',
414
- type: 'fixedCollection',
415
- typeOptions: {
416
- multipleValues: false,
417
- },
418
- displayOptions: {
419
- show: {
420
- resource: ['profileManagement'],
421
- operation: ['startProfile'],
422
- },
423
- },
424
- default: {},
425
- options: [
426
- {
427
- displayName: 'Position',
428
- name: 'positionValues',
429
- values: [
430
- {
431
- displayName: 'X',
432
- name: 'x',
433
- type: 'number',
434
- default: 0,
435
- },
436
- {
437
- displayName: 'Y',
438
- name: 'y',
439
- type: 'number',
440
- default: 0,
441
- },
442
- ],
443
- },
444
- ],
445
- },
446
- {
447
- displayName: 'Window Size',
448
- name: 'winSize',
449
- type: 'fixedCollection',
450
- typeOptions: {
451
- multipleValues: false,
452
- },
453
- displayOptions: {
454
- show: {
455
- resource: ['profileManagement'],
456
- operation: ['startProfile'],
457
- },
458
- },
459
- default: {},
460
- options: [
461
- {
462
- displayName: 'Size',
463
- name: 'sizeValues',
464
- values: [
465
- {
466
- displayName: 'Width',
467
- name: 'width',
468
- type: 'number',
469
- default: 1280,
470
- },
471
- {
472
- displayName: 'Height',
473
- name: 'height',
474
- type: 'number',
475
- default: 720,
476
- },
477
- ],
478
- },
479
- ],
480
- },
481
- {
482
- displayName: 'Headless Mode',
483
- name: 'headless',
484
- type: 'boolean',
485
- displayOptions: {
486
- show: {
487
- resource: ['profileManagement'],
488
- operation: ['startProfile'],
489
- },
490
- },
491
- default: false,
492
- description: 'Whether to run browser in headless mode',
493
- },
494
- {
495
- displayName: 'Initial URL',
496
- name: 'initialUrl',
497
- type: 'string',
498
- displayOptions: {
499
- show: {
500
- resource: ['profileManagement'],
501
- operation: ['startProfile'],
502
- },
503
- },
504
- default: 'https://example.com',
505
- description: 'URL to open on start',
506
- },
507
- // Stop Profile Fields
508
- {
509
- displayName: 'Profile ID',
510
- name: 'profileId',
511
- type: 'string',
512
- displayOptions: {
513
- show: {
514
- resource: ['profileManagement'],
515
- operation: ['stopProfile'],
516
- },
517
- },
518
- default: '',
519
- required: true,
520
- description: 'ID of the profile to stop',
521
- },
522
- // Update Profile Fields
523
- {
524
- displayName: 'Profile ID',
525
- name: 'profileId',
526
- type: 'string',
527
- displayOptions: {
528
- show: {
529
- resource: ['profileManagement'],
530
- operation: ['updateProfile'],
531
- },
532
- },
533
- default: '',
534
- required: true,
535
- description: 'ID of the profile to update',
536
- },
537
- {
538
- displayName: 'Profile Name',
539
- name: 'profileName',
540
- type: 'string',
541
- displayOptions: {
542
- show: {
543
- resource: ['profileManagement'],
544
- operation: ['updateProfile'],
545
- },
546
- },
547
- default: '',
548
- description: 'New profile name',
549
- },
550
- {
551
- displayName: 'Proxy',
552
- name: 'proxy',
553
- type: 'string',
554
- displayOptions: {
555
- show: {
556
- resource: ['profileManagement'],
557
- operation: ['updateProfile'],
558
- },
559
- },
560
- default: '',
561
- description: 'New proxy configuration',
562
- },
563
- {
564
- displayName: 'Note',
565
- name: 'note',
566
- type: 'string',
567
- displayOptions: {
568
- show: {
569
- resource: ['profileManagement'],
570
- operation: ['updateProfile'],
571
- },
572
- },
573
- default: '',
574
- description: 'New note',
575
- },
576
- {
577
- displayName: 'Extensions',
578
- name: 'extensions',
579
- type: 'string',
580
- typeOptions: {
581
- rows: 4,
582
- },
583
- displayOptions: {
584
- show: {
585
- resource: ['profileManagement'],
586
- operation: ['updateProfile'],
587
- },
588
- },
589
- default: '',
590
- description: 'New extensions (one per line)',
591
- },
592
- // Move and Click Fields
593
- {
594
- displayName: 'Profile ID',
595
- name: 'profileId',
596
- type: 'string',
597
- displayOptions: {
598
- show: {
599
- resource: ['pageInteraction'],
600
- operation: ['moveAndClick'],
601
- },
602
- },
603
- default: '',
604
- required: true,
605
- description: 'ID of the profile',
606
- },
607
- {
608
- displayName: 'Selector',
609
- name: 'selector',
610
- type: 'string',
611
- displayOptions: {
612
- show: {
613
- resource: ['pageInteraction'],
614
- operation: ['moveAndClick'],
615
- },
616
- },
617
- default: '',
618
- required: true,
619
- description: 'CSS selector for the element',
620
- },
621
- {
622
- displayName: 'Click Method',
623
- name: 'clickMethod',
624
- type: 'options',
625
- displayOptions: {
626
- show: {
627
- resource: ['pageInteraction'],
628
- operation: ['moveAndClick'],
629
- },
630
- },
631
- options: [
632
- {
633
- name: 'Puppeteer',
634
- value: 'puppeteer',
635
- },
636
- {
637
- name: 'Coordinates',
638
- value: 'coordinates',
639
- },
640
- ],
641
- default: 'puppeteer',
642
- description: 'Method to use for clicking',
643
- },
644
- {
645
- displayName: 'Timeout',
646
- name: 'timeout',
647
- type: 'number',
648
- displayOptions: {
649
- show: {
650
- resource: ['pageInteraction'],
651
- operation: ['moveAndClick'],
652
- },
653
- },
654
- default: 30000,
655
- description: 'Timeout in milliseconds',
656
- },
657
- {
658
- displayName: 'Tab Index',
659
- name: 'tabIndex',
660
- type: 'number',
661
- displayOptions: {
662
- show: {
663
- resource: ['pageInteraction'],
664
- operation: ['moveAndClick'],
665
- },
666
- },
667
- default: 0,
668
- description: 'Browser tab index',
669
- },
670
- {
671
- displayName: 'Auto Start Profile',
672
- name: 'autoStart',
673
- type: 'boolean',
674
- displayOptions: {
675
- show: {
676
- resource: ['pageInteraction'],
677
- operation: ['moveAndClick'],
678
- },
679
- },
680
- default: false,
681
- description: 'Whether to auto-start profile if not running',
682
- },
683
- {
684
- displayName: 'Wait For Click',
685
- name: 'waitForClick',
686
- type: 'number',
687
- displayOptions: {
688
- show: {
689
- resource: ['pageInteraction'],
690
- operation: ['moveAndClick'],
691
- },
692
- },
693
- default: 500,
694
- description: 'Wait time before click in milliseconds',
695
- },
696
- {
697
- displayName: 'Button',
698
- name: 'button',
699
- type: 'options',
700
- displayOptions: {
701
- show: {
702
- resource: ['pageInteraction'],
703
- operation: ['moveAndClick'],
704
- },
705
- },
706
- options: [
707
- {
708
- name: 'Left',
709
- value: 'left',
710
- },
711
- {
712
- name: 'Right',
713
- value: 'right',
714
- },
715
- {
716
- name: 'Middle',
717
- value: 'middle',
718
- },
719
- ],
720
- default: 'left',
721
- description: 'Mouse button to use',
722
- },
723
- {
724
- displayName: 'Click Count',
725
- name: 'clickCount',
726
- type: 'number',
727
- displayOptions: {
728
- show: {
729
- resource: ['pageInteraction'],
730
- operation: ['moveAndClick'],
731
- },
732
- },
733
- default: 1,
734
- description: 'Number of clicks',
735
- },
736
- {
737
- displayName: 'Use Binary File',
738
- name: 'useBinaryFile',
739
- type: 'boolean',
740
- displayOptions: {
741
- show: {
742
- resource: ['pageInteraction'],
743
- operation: ['moveAndClick'],
744
- },
745
- },
746
- default: false,
747
- description: 'Whether to upload a binary file',
748
- },
749
- {
750
- displayName: 'Input Data Field Name',
751
- name: 'binaryPropertyName',
752
- type: 'string',
753
- displayOptions: {
754
- show: {
755
- resource: ['pageInteraction'],
756
- operation: ['moveAndClick'],
757
- useBinaryFile: [true],
758
- },
759
- },
760
- default: 'data',
761
- required: true,
762
- description: 'Name of the binary property',
763
- },
764
- // Run JavaScript Fields
765
- {
766
- displayName: 'Profile ID',
767
- name: 'profileId',
768
- type: 'string',
769
- displayOptions: {
770
- show: {
771
- resource: ['pageInteraction'],
772
- operation: ['runJavaScript'],
773
- },
774
- },
775
- default: '',
776
- required: true,
777
- description: 'ID of the profile',
778
- },
779
- {
780
- displayName: 'JavaScript Code',
781
- name: 'javascriptCode',
782
- type: 'string',
783
- typeOptions: {
784
- rows: 10,
785
- },
786
- displayOptions: {
787
- show: {
788
- resource: ['pageInteraction'],
789
- operation: ['runJavaScript'],
790
- },
791
- },
792
- default: '',
793
- required: true,
794
- description: 'JavaScript code to execute',
795
- },
796
- {
797
- displayName: 'Tab Index',
798
- name: 'tabIndex',
799
- type: 'number',
800
- displayOptions: {
801
- show: {
802
- resource: ['pageInteraction'],
803
- operation: ['runJavaScript'],
804
- },
805
- },
806
- default: 0,
807
- description: 'Browser tab index',
808
- },
809
- {
810
- displayName: 'Auto Start Profile',
811
- name: 'autoStart',
812
- type: 'boolean',
813
- displayOptions: {
814
- show: {
815
- resource: ['pageInteraction'],
816
- operation: ['runJavaScript'],
817
- },
818
- },
819
- default: false,
820
- description: 'Whether to auto-start profile if not running',
821
- },
822
- // Get Network Response Fields
823
- {
824
- displayName: 'Profile ID',
825
- name: 'profileId',
826
- type: 'string',
827
- displayOptions: {
828
- show: {
829
- resource: ['pageInteraction'],
830
- operation: ['getNetworkResponse'],
831
- },
832
- },
833
- default: '',
834
- required: true,
835
- description: 'ID of the profile',
836
- },
837
- {
838
- displayName: 'Request Filter',
839
- name: 'requestFilter',
840
- type: 'string',
841
- displayOptions: {
842
- show: {
843
- resource: ['pageInteraction'],
844
- operation: ['getNetworkResponse'],
845
- },
846
- },
847
- default: '',
848
- required: true,
849
- description: 'Filter for network requests',
850
- },
851
- {
852
- displayName: 'Match Type',
853
- name: 'matchType',
854
- type: 'options',
855
- displayOptions: {
856
- show: {
857
- resource: ['pageInteraction'],
858
- operation: ['getNetworkResponse'],
859
- },
860
- },
861
- options: [
862
- {
863
- name: 'Contains',
864
- value: 'contains',
865
- },
866
- {
867
- name: 'Exact',
868
- value: 'exact',
869
- },
870
- {
871
- name: 'Regex',
872
- value: 'regex',
873
- },
874
- ],
875
- default: 'contains',
876
- description: 'Type of matching to use',
877
- },
878
- {
879
- displayName: 'Timeout',
880
- name: 'timeout',
881
- type: 'number',
882
- displayOptions: {
883
- show: {
884
- resource: ['pageInteraction'],
885
- operation: ['getNetworkResponse'],
886
- },
887
- },
888
- default: 30000,
889
- description: 'Timeout in milliseconds',
890
- },
891
- {
892
- displayName: 'Wait For Request',
893
- name: 'waitForRequest',
894
- type: 'boolean',
895
- displayOptions: {
896
- show: {
897
- resource: ['pageInteraction'],
898
- operation: ['getNetworkResponse'],
899
- },
900
- },
901
- default: true,
902
- description: 'Whether to wait for the request',
903
- },
904
- {
905
- displayName: 'Tab Index',
906
- name: 'tabIndex',
907
- type: 'number',
908
- displayOptions: {
909
- show: {
910
- resource: ['pageInteraction'],
911
- operation: ['getNetworkResponse'],
912
- },
913
- },
914
- default: 0,
915
- description: 'Browser tab index',
916
- },
917
- {
918
- displayName: 'Auto Start Profile',
919
- name: 'autoStart',
920
- type: 'boolean',
921
- displayOptions: {
922
- show: {
923
- resource: ['pageInteraction'],
924
- operation: ['getNetworkResponse'],
925
- },
926
- },
927
- default: false,
928
- description: 'Whether to auto-start profile if not running',
929
- },
930
- // Browser HTTP Request Fields
931
- {
932
- displayName: 'Profile ID',
933
- name: 'profileId',
934
- type: 'string',
935
- displayOptions: {
936
- show: {
937
- resource: ['pageInteraction'],
938
- operation: ['browserHttpRequest'],
939
- },
940
- },
941
- default: '',
942
- required: true,
943
- description: 'ID of the profile',
944
- },
945
- {
946
- displayName: 'Method',
947
- name: 'method',
948
- type: 'options',
949
- displayOptions: {
950
- show: {
951
- resource: ['pageInteraction'],
952
- operation: ['browserHttpRequest'],
953
- },
954
- },
955
- options: [
956
- {
957
- name: 'GET',
958
- value: 'GET',
959
- },
960
- {
961
- name: 'POST',
962
- value: 'POST',
963
- },
964
- ],
965
- default: 'GET',
966
- description: 'HTTP method',
967
- },
968
- {
969
- displayName: 'URL',
970
- name: 'url',
971
- type: 'string',
972
- displayOptions: {
973
- show: {
974
- resource: ['pageInteraction'],
975
- operation: ['browserHttpRequest'],
976
- },
977
- },
978
- default: '',
979
- required: true,
980
- description: 'Request URL',
981
- },
982
- {
983
- displayName: 'Send Body',
984
- name: 'sendBody',
985
- type: 'boolean',
986
- displayOptions: {
987
- show: {
988
- resource: ['pageInteraction'],
989
- operation: ['browserHttpRequest'],
990
- method: ['POST'],
991
- },
992
- },
993
- default: false,
994
- description: 'Whether to send request body',
995
- },
996
- {
997
- displayName: 'Body Content Type',
998
- name: 'bodyContentType',
999
- type: 'options',
1000
- displayOptions: {
1001
- show: {
1002
- resource: ['pageInteraction'],
1003
- operation: ['browserHttpRequest'],
1004
- method: ['POST'],
1005
- sendBody: [true],
1006
- },
1007
- },
1008
- options: [
1009
- {
1010
- name: 'Form Urlencoded',
1011
- value: 'formUrlencoded',
1012
- },
1013
- {
1014
- name: 'Form-Data',
1015
- value: 'formData',
1016
- },
1017
- {
1018
- name: 'JSON',
1019
- value: 'json',
1020
- },
1021
- {
1022
- name: 'n8n Binary File',
1023
- value: 'binaryFile',
1024
- },
1025
- {
1026
- name: 'Raw',
1027
- value: 'raw',
1028
- },
1029
- ],
1030
- default: 'formData',
1031
- description: 'Type of body content',
1032
- },
1033
- // Get Recaptcha Token Fields
1034
- {
1035
- displayName: 'Profile ID',
1036
- name: 'profileId',
1037
- type: 'string',
1038
- displayOptions: {
1039
- show: {
1040
- resource: ['pageInteraction'],
1041
- operation: ['getRecaptchaToken'],
1042
- },
1043
- },
1044
- default: '',
1045
- required: true,
1046
- description: 'ID of the profile',
1047
- },
1048
- {
1049
- displayName: 'Site Key',
1050
- name: 'siteKey',
1051
- type: 'string',
1052
- displayOptions: {
1053
- show: {
1054
- resource: ['pageInteraction'],
1055
- operation: ['getRecaptchaToken'],
1056
- },
1057
- },
1058
- default: '',
1059
- description: 'reCAPTCHA site key (auto-detect if empty)',
1060
- },
1061
- {
1062
- displayName: 'Tab Index',
1063
- name: 'tabIndex',
1064
- type: 'number',
1065
- displayOptions: {
1066
- show: {
1067
- resource: ['pageInteraction'],
1068
- operation: ['getRecaptchaToken'],
1069
- },
1070
- },
1071
- default: 0,
1072
- description: 'Browser tab index',
1073
- },
1074
- {
1075
- displayName: 'Timeout',
1076
- name: 'timeout',
1077
- type: 'number',
1078
- displayOptions: {
1079
- show: {
1080
- resource: ['pageInteraction'],
1081
- operation: ['getRecaptchaToken'],
1082
- },
1083
- },
1084
- default: 10000,
1085
- description: 'Timeout in milliseconds',
1086
- },
1087
- {
1088
- displayName: 'Action',
1089
- name: 'action',
1090
- type: 'string',
1091
- displayOptions: {
1092
- show: {
1093
- resource: ['pageInteraction'],
1094
- operation: ['getRecaptchaToken'],
1095
- },
1096
- },
1097
- default: 'FLOW_GENERATION',
1098
- description: 'reCAPTCHA action parameter',
1099
- },
1100
- {
1101
- displayName: 'Max Retries',
1102
- name: 'maxRetries',
1103
- type: 'number',
1104
- displayOptions: {
1105
- show: {
1106
- resource: ['pageInteraction'],
1107
- operation: ['getRecaptchaToken'],
1108
- },
1109
- },
1110
- default: 3,
1111
- description: 'Maximum number of retry attempts',
1112
- },
1113
- {
1114
- displayName: 'Auto Start Profile',
1115
- name: 'autoStart',
1116
- type: 'boolean',
1117
- displayOptions: {
1118
- show: {
1119
- resource: ['pageInteraction'],
1120
- operation: ['getRecaptchaToken'],
1121
- },
1122
- },
1123
- default: false,
1124
- description: 'Whether to auto-start profile if not running',
1125
- },
1126
- // n8n Binary File - Input Data Field Name
1127
- {
1128
- displayName: 'Input Data Field Name',
1129
- name: 'binaryPropertyName',
1130
- type: 'string',
1131
- displayOptions: {
1132
- show: {
1133
- resource: ['pageInteraction'],
1134
- operation: ['browserHttpRequest'],
1135
- method: ['POST'],
1136
- sendBody: [true],
1137
- bodyContentType: ['binaryFile'],
1138
- },
1139
- },
1140
- default: 'data',
1141
- required: true,
1142
- placeholder: 'data',
1143
- description: 'Name of the binary property to send',
1144
- },
1145
- {
1146
- displayName: 'JSON Body',
1147
- name: 'jsonBody',
1148
- type: 'string',
1149
- typeOptions: {
1150
- rows: 4,
1151
- },
1152
- displayOptions: {
1153
- show: {
1154
- resource: ['pageInteraction'],
1155
- operation: ['browserHttpRequest'],
1156
- method: ['POST'],
1157
- sendBody: [true],
1158
- bodyContentType: ['json'],
1159
- },
1160
- },
1161
- default: '',
1162
- description: 'JSON body content',
1163
- },
1164
- {
1165
- displayName: 'Raw Body',
1166
- name: 'rawBody',
1167
- type: 'string',
1168
- typeOptions: {
1169
- rows: 4,
1170
- },
1171
- displayOptions: {
1172
- show: {
1173
- resource: ['pageInteraction'],
1174
- operation: ['browserHttpRequest'],
1175
- method: ['POST'],
1176
- sendBody: [true],
1177
- bodyContentType: ['raw'],
1178
- },
1179
- },
1180
- default: '',
1181
- description: 'Raw body content',
1182
- },
1183
- // Body Parameters for Form-Data with Parameter Type selector
1184
- {
1185
- displayName: 'Body Parameters',
1186
- name: 'bodyParameters',
1187
- type: 'fixedCollection',
1188
- typeOptions: {
1189
- multipleValues: true,
1190
- },
1191
- displayOptions: {
1192
- show: {
1193
- resource: ['pageInteraction'],
1194
- operation: ['browserHttpRequest'],
1195
- method: ['POST'],
1196
- sendBody: [true],
1197
- bodyContentType: ['formData'],
1198
- },
1199
- },
1200
- default: {},
1201
- placeholder: 'Add Parameter',
1202
- options: [
1203
- {
1204
- displayName: 'Parameter',
1205
- name: 'parameter',
1206
- values: [
1207
- {
1208
- displayName: 'Parameter Type',
1209
- name: 'parameterType',
1210
- type: 'options',
1211
- options: [
1212
- {
1213
- name: 'Form Data',
1214
- value: 'formData',
1215
- },
1216
- {
1217
- name: 'n8n Binary File',
1218
- value: 'binaryFile',
1219
- },
1220
- ],
1221
- default: 'formData',
1222
- description: 'Type of the parameter',
1223
- },
1224
- {
1225
- displayName: 'Name',
1226
- name: 'name',
1227
- type: 'string',
1228
- default: '',
1229
- description: 'Parameter name',
1230
- },
1231
- {
1232
- displayName: 'Value',
1233
- name: 'value',
1234
- type: 'string',
1235
- displayOptions: {
1236
- show: {
1237
- parameterType: ['formData'],
1238
- },
1239
- },
1240
- default: '',
1241
- description: 'Parameter value',
1242
- },
1243
- {
1244
- displayName: 'Input Data Field Name',
1245
- name: 'binaryProperty',
1246
- type: 'string',
1247
- displayOptions: {
1248
- show: {
1249
- parameterType: ['binaryFile'],
1250
- },
1251
- },
1252
- default: 'data',
1253
- placeholder: 'data',
1254
- description: 'Name of the binary property for this parameter',
1255
- },
1256
- ],
1257
- },
1258
- ],
1259
- },
1260
- // Form Urlencoded Parameters
1261
- {
1262
- displayName: 'Form Data',
1263
- name: 'formData',
1264
- type: 'fixedCollection',
1265
- typeOptions: {
1266
- multipleValues: true,
1267
- },
1268
- displayOptions: {
1269
- show: {
1270
- resource: ['pageInteraction'],
1271
- operation: ['browserHttpRequest'],
1272
- method: ['POST'],
1273
- sendBody: [true],
1274
- bodyContentType: ['formUrlencoded'],
1275
- },
1276
- },
1277
- default: {},
1278
- placeholder: 'Add Parameter',
1279
- options: [
1280
- {
1281
- displayName: 'Parameter',
1282
- name: 'parameter',
1283
- values: [
1284
- {
1285
- displayName: 'Name',
1286
- name: 'name',
1287
- type: 'string',
1288
- default: '',
1289
- },
1290
- {
1291
- displayName: 'Value',
1292
- name: 'value',
1293
- type: 'string',
1294
- default: '',
1295
- },
1296
- ],
1297
- },
1298
- ],
1299
- },
1300
- {
1301
- displayName: 'Additional Headers',
1302
- name: 'additionalHeaders',
1303
- type: 'fixedCollection',
1304
- typeOptions: {
1305
- multipleValues: true,
1306
- },
1307
- displayOptions: {
1308
- show: {
1309
- resource: ['pageInteraction'],
1310
- operation: ['browserHttpRequest'],
1311
- },
1312
- },
1313
- default: {},
1314
- options: [
1315
- {
1316
- displayName: 'Header',
1317
- name: 'header',
1318
- values: [
1319
- {
1320
- displayName: 'Name',
1321
- name: 'name',
1322
- type: 'string',
1323
- default: '',
1324
- },
1325
- {
1326
- displayName: 'Value',
1327
- name: 'value',
1328
- type: 'string',
1329
- default: '',
1330
- },
1331
- ],
1332
- },
1333
- ],
1334
- },
1335
- {
1336
- displayName: 'Query Parameters',
1337
- name: 'queryParameters',
1338
- type: 'fixedCollection',
1339
- typeOptions: {
1340
- multipleValues: true,
1341
- },
1342
- displayOptions: {
1343
- show: {
1344
- resource: ['pageInteraction'],
1345
- operation: ['browserHttpRequest'],
1346
- },
1347
- },
1348
- default: {},
1349
- options: [
1350
- {
1351
- displayName: 'Parameter',
1352
- name: 'parameter',
1353
- values: [
1354
- {
1355
- displayName: 'Name',
1356
- name: 'name',
1357
- type: 'string',
1358
- default: '',
1359
- },
1360
- {
1361
- displayName: 'Value',
1362
- name: 'value',
1363
- type: 'string',
1364
- default: '',
1365
- },
1366
- ],
1367
- },
1368
- ],
1369
- },
1370
- {
1371
- displayName: 'Tab Index',
1372
- name: 'tabIndex',
1373
- type: 'number',
1374
- displayOptions: {
1375
- show: {
1376
- resource: ['pageInteraction'],
1377
- operation: ['browserHttpRequest'],
1378
- },
1379
- },
1380
- default: 0,
1381
- description: 'Browser tab index',
1382
- },
1383
- {
1384
- displayName: 'Auto Start Profile',
1385
- name: 'autoStart',
1386
- type: 'boolean',
1387
- displayOptions: {
1388
- show: {
1389
- resource: ['pageInteraction'],
1390
- operation: ['browserHttpRequest'],
1391
- },
1392
- },
1393
- default: false,
1394
- description: 'Whether to auto-start profile if not running',
1395
- },
1396
- ],
1397
- };
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)}]};