@roxybrowser/openapi 1.0.4 → 1.0.7

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.
Files changed (47) hide show
  1. package/README.md +228 -226
  2. package/lib/index.js +93 -1610
  3. package/lib/index.js.map +1 -1
  4. package/lib/modules/account.d.ts +491 -0
  5. package/lib/modules/account.d.ts.map +1 -0
  6. package/lib/modules/account.js +442 -0
  7. package/lib/modules/account.js.map +1 -0
  8. package/lib/modules/browser.d.ts +3011 -0
  9. package/lib/modules/browser.d.ts.map +1 -0
  10. package/lib/modules/browser.js +1076 -0
  11. package/lib/modules/browser.js.map +1 -0
  12. package/lib/modules/other.d.ts +102 -0
  13. package/lib/modules/other.d.ts.map +1 -0
  14. package/lib/modules/other.js +194 -0
  15. package/lib/modules/other.js.map +1 -0
  16. package/lib/modules/proxy.d.ts +576 -0
  17. package/lib/modules/proxy.d.ts.map +1 -0
  18. package/lib/modules/proxy.js +713 -0
  19. package/lib/modules/proxy.js.map +1 -0
  20. package/lib/types.d.ts +860 -155
  21. package/lib/types.d.ts.map +1 -1
  22. package/lib/types.js +4 -4
  23. package/lib/types.js.map +1 -1
  24. package/lib/utils/error-analyzer.d.ts.map +1 -1
  25. package/lib/utils/error-analyzer.js +17 -15
  26. package/lib/utils/error-analyzer.js.map +1 -1
  27. package/lib/utils/index.d.ts +24 -0
  28. package/lib/utils/index.d.ts.map +1 -0
  29. package/lib/utils/index.js +45 -0
  30. package/lib/utils/index.js.map +1 -0
  31. package/package.json +50 -50
  32. package/lib/browser/browser-creator.d.ts +0 -54
  33. package/lib/browser/browser-creator.d.ts.map +0 -1
  34. package/lib/browser/browser-creator.js +0 -263
  35. package/lib/browser/browser-creator.js.map +0 -1
  36. package/lib/proxy/proxy-manager.d.ts +0 -67
  37. package/lib/proxy/proxy-manager.d.ts.map +0 -1
  38. package/lib/proxy/proxy-manager.js +0 -278
  39. package/lib/proxy/proxy-manager.js.map +0 -1
  40. package/lib/proxy/proxy-validator.d.ts +0 -66
  41. package/lib/proxy/proxy-validator.d.ts.map +0 -1
  42. package/lib/proxy/proxy-validator.js +0 -273
  43. package/lib/proxy/proxy-validator.js.map +0 -1
  44. package/lib/roxy-client.d.ts +0 -117
  45. package/lib/roxy-client.d.ts.map +0 -1
  46. package/lib/roxy-client.js +0 -467
  47. package/lib/roxy-client.js.map +0 -1
@@ -0,0 +1,3011 @@
1
+ declare class CreateBrowser {
2
+ name: string;
3
+ description: string;
4
+ inputSchema: {
5
+ type: string;
6
+ properties: {
7
+ workspaceId: {
8
+ type: string;
9
+ description: string;
10
+ };
11
+ windowName: {
12
+ type: string;
13
+ description: string;
14
+ };
15
+ coreVersion: {
16
+ type: string;
17
+ enum: string[];
18
+ description: string;
19
+ };
20
+ os: {
21
+ type: string;
22
+ enum: string[];
23
+ description: string;
24
+ };
25
+ osVersion: {
26
+ type: string;
27
+ description: string;
28
+ };
29
+ userAgent: {
30
+ type: string;
31
+ description: string;
32
+ };
33
+ cookie: {
34
+ type: string;
35
+ description: string;
36
+ };
37
+ searchEngine: {
38
+ type: string;
39
+ enum: string[];
40
+ description: string;
41
+ };
42
+ labelIds: {
43
+ type: string;
44
+ items: {
45
+ type: string;
46
+ };
47
+ description: string;
48
+ };
49
+ defaultOpenUrl: {
50
+ type: string;
51
+ items: {
52
+ type: string;
53
+ };
54
+ description: string;
55
+ };
56
+ windowRemark: {
57
+ type: string;
58
+ description: string;
59
+ };
60
+ projectId: {
61
+ type: string;
62
+ description: string;
63
+ };
64
+ windowPlatformList: {
65
+ type: string;
66
+ items: {
67
+ type: string;
68
+ properties: {
69
+ id: {
70
+ type: string;
71
+ description: string;
72
+ };
73
+ platformUrl: {
74
+ type: string;
75
+ description: string;
76
+ };
77
+ platformUserName: {
78
+ type: string;
79
+ description: string;
80
+ };
81
+ platformPassword: {
82
+ type: string;
83
+ description: string;
84
+ };
85
+ platformEfa: {
86
+ type: string;
87
+ description: string;
88
+ };
89
+ platformRemarks: {
90
+ type: string;
91
+ description: string;
92
+ };
93
+ };
94
+ };
95
+ description: string;
96
+ };
97
+ proxyInfo: {
98
+ type: string;
99
+ description: string;
100
+ properties: {
101
+ moduleId: {
102
+ type: string;
103
+ description: string;
104
+ };
105
+ proxyMethod: {
106
+ type: string;
107
+ enum: string[];
108
+ };
109
+ proxyCategory: {
110
+ type: string;
111
+ enum: string[];
112
+ };
113
+ ipType: {
114
+ type: string;
115
+ enum: string[];
116
+ };
117
+ protocol: {
118
+ type: string;
119
+ enum: string[];
120
+ };
121
+ host: {
122
+ type: string;
123
+ };
124
+ port: {
125
+ type: string;
126
+ };
127
+ proxyUserName: {
128
+ type: string;
129
+ };
130
+ proxyPassword: {
131
+ type: string;
132
+ };
133
+ refreshUrl: {
134
+ type: string;
135
+ };
136
+ checkChannel: {
137
+ type: string;
138
+ enum: string[];
139
+ };
140
+ };
141
+ };
142
+ fingerInfo: {
143
+ type: string;
144
+ description: string;
145
+ properties: {
146
+ isLanguageBaseIp: {
147
+ type: string;
148
+ description: string;
149
+ };
150
+ language: {
151
+ type: string;
152
+ description: string;
153
+ };
154
+ isDisplayLanguageBaseIp: {
155
+ type: string;
156
+ description: string;
157
+ };
158
+ displayLanguage: {
159
+ type: string;
160
+ description: string;
161
+ };
162
+ isTimeZone: {
163
+ type: string;
164
+ description: string;
165
+ };
166
+ timeZone: {
167
+ type: string;
168
+ description: string;
169
+ };
170
+ position: {
171
+ type: string;
172
+ enum: number[];
173
+ description: string;
174
+ };
175
+ isPositionBaseIp: {
176
+ type: string;
177
+ description: string;
178
+ };
179
+ longitude: {
180
+ type: string;
181
+ description: string;
182
+ };
183
+ latitude: {
184
+ type: string;
185
+ description: string;
186
+ };
187
+ precisionPos: {
188
+ type: string;
189
+ description: string;
190
+ };
191
+ forbidAudio: {
192
+ type: string;
193
+ description: string;
194
+ };
195
+ forbidImage: {
196
+ type: string;
197
+ description: string;
198
+ };
199
+ forbidMedia: {
200
+ type: string;
201
+ description: string;
202
+ };
203
+ openWidth: {
204
+ type: string;
205
+ description: string;
206
+ };
207
+ openHeight: {
208
+ type: string;
209
+ description: string;
210
+ };
211
+ openBookmarks: {
212
+ type: string;
213
+ description: string;
214
+ };
215
+ positionSwitch: {
216
+ type: string;
217
+ description: string;
218
+ };
219
+ windowRatioPosition: {
220
+ type: string;
221
+ description: string;
222
+ };
223
+ isDisplayName: {
224
+ type: string;
225
+ description: string;
226
+ };
227
+ syncBookmark: {
228
+ type: string;
229
+ description: string;
230
+ };
231
+ syncHistory: {
232
+ type: string;
233
+ description: string;
234
+ };
235
+ syncTab: {
236
+ type: string;
237
+ description: string;
238
+ };
239
+ syncCookie: {
240
+ type: string;
241
+ description: string;
242
+ };
243
+ syncExtensions: {
244
+ type: string;
245
+ description: string;
246
+ };
247
+ syncPassword: {
248
+ type: string;
249
+ description: string;
250
+ };
251
+ syncIndexedDb: {
252
+ type: string;
253
+ description: string;
254
+ };
255
+ syncLocalStorage: {
256
+ type: string;
257
+ description: string;
258
+ };
259
+ clearCacheFile: {
260
+ type: string;
261
+ description: string;
262
+ };
263
+ clearCookie: {
264
+ type: string;
265
+ description: string;
266
+ };
267
+ clearLocalStorage: {
268
+ type: string;
269
+ description: string;
270
+ };
271
+ randomFingerprint: {
272
+ type: string;
273
+ description: string;
274
+ };
275
+ forbidSavePassword: {
276
+ type: string;
277
+ description: string;
278
+ };
279
+ stopOpenNet: {
280
+ type: string;
281
+ description: string;
282
+ };
283
+ stopOpenIP: {
284
+ type: string;
285
+ description: string;
286
+ };
287
+ stopOpenPosition: {
288
+ type: string;
289
+ description: string;
290
+ };
291
+ openWorkbench: {
292
+ type: string;
293
+ enum: number[];
294
+ description: string;
295
+ };
296
+ resolutionType: {
297
+ type: string;
298
+ description: string;
299
+ };
300
+ resolutionX: {
301
+ type: string;
302
+ description: string;
303
+ };
304
+ resolutionY: {
305
+ type: string;
306
+ description: string;
307
+ };
308
+ fontType: {
309
+ type: string;
310
+ description: string;
311
+ };
312
+ webRTC: {
313
+ type: string;
314
+ enum: number[];
315
+ description: string;
316
+ };
317
+ webGL: {
318
+ type: string;
319
+ description: string;
320
+ };
321
+ webGLInfo: {
322
+ type: string;
323
+ description: string;
324
+ };
325
+ webGLManufacturer: {
326
+ type: string;
327
+ description: string;
328
+ };
329
+ webGLRender: {
330
+ type: string;
331
+ description: string;
332
+ };
333
+ webGpu: {
334
+ type: string;
335
+ enum: string[];
336
+ description: string;
337
+ };
338
+ canvas: {
339
+ type: string;
340
+ description: string;
341
+ };
342
+ audioContext: {
343
+ type: string;
344
+ description: string;
345
+ };
346
+ speechVoices: {
347
+ type: string;
348
+ description: string;
349
+ };
350
+ doNotTrack: {
351
+ type: string;
352
+ description: string;
353
+ };
354
+ clientRects: {
355
+ type: string;
356
+ description: string;
357
+ };
358
+ deviceInfo: {
359
+ type: string;
360
+ description: string;
361
+ };
362
+ deviceNameSwitch: {
363
+ type: string;
364
+ description: string;
365
+ };
366
+ macInfo: {
367
+ type: string;
368
+ description: string;
369
+ };
370
+ hardwareConcurrent: {
371
+ type: string;
372
+ description: string;
373
+ };
374
+ deviceMemory: {
375
+ type: string;
376
+ description: string;
377
+ };
378
+ disableSsl: {
379
+ type: string;
380
+ description: string;
381
+ };
382
+ disableSslList: {
383
+ type: string;
384
+ items: {
385
+ type: string;
386
+ };
387
+ description: string;
388
+ };
389
+ portScanProtect: {
390
+ type: string;
391
+ description: string;
392
+ };
393
+ portScanList: {
394
+ type: string;
395
+ description: string;
396
+ };
397
+ useGpu: {
398
+ type: string;
399
+ description: string;
400
+ };
401
+ sandboxPermission: {
402
+ type: string;
403
+ description: string;
404
+ };
405
+ startupParam: {
406
+ type: string;
407
+ description: string;
408
+ };
409
+ };
410
+ };
411
+ };
412
+ required: string[];
413
+ };
414
+ get schema(): {
415
+ name: string;
416
+ description: string;
417
+ inputSchema: {
418
+ type: string;
419
+ properties: {
420
+ workspaceId: {
421
+ type: string;
422
+ description: string;
423
+ };
424
+ windowName: {
425
+ type: string;
426
+ description: string;
427
+ };
428
+ coreVersion: {
429
+ type: string;
430
+ enum: string[];
431
+ description: string;
432
+ };
433
+ os: {
434
+ type: string;
435
+ enum: string[];
436
+ description: string;
437
+ };
438
+ osVersion: {
439
+ type: string;
440
+ description: string;
441
+ };
442
+ userAgent: {
443
+ type: string;
444
+ description: string;
445
+ };
446
+ cookie: {
447
+ type: string;
448
+ description: string;
449
+ };
450
+ searchEngine: {
451
+ type: string;
452
+ enum: string[];
453
+ description: string;
454
+ };
455
+ labelIds: {
456
+ type: string;
457
+ items: {
458
+ type: string;
459
+ };
460
+ description: string;
461
+ };
462
+ defaultOpenUrl: {
463
+ type: string;
464
+ items: {
465
+ type: string;
466
+ };
467
+ description: string;
468
+ };
469
+ windowRemark: {
470
+ type: string;
471
+ description: string;
472
+ };
473
+ projectId: {
474
+ type: string;
475
+ description: string;
476
+ };
477
+ windowPlatformList: {
478
+ type: string;
479
+ items: {
480
+ type: string;
481
+ properties: {
482
+ id: {
483
+ type: string;
484
+ description: string;
485
+ };
486
+ platformUrl: {
487
+ type: string;
488
+ description: string;
489
+ };
490
+ platformUserName: {
491
+ type: string;
492
+ description: string;
493
+ };
494
+ platformPassword: {
495
+ type: string;
496
+ description: string;
497
+ };
498
+ platformEfa: {
499
+ type: string;
500
+ description: string;
501
+ };
502
+ platformRemarks: {
503
+ type: string;
504
+ description: string;
505
+ };
506
+ };
507
+ };
508
+ description: string;
509
+ };
510
+ proxyInfo: {
511
+ type: string;
512
+ description: string;
513
+ properties: {
514
+ moduleId: {
515
+ type: string;
516
+ description: string;
517
+ };
518
+ proxyMethod: {
519
+ type: string;
520
+ enum: string[];
521
+ };
522
+ proxyCategory: {
523
+ type: string;
524
+ enum: string[];
525
+ };
526
+ ipType: {
527
+ type: string;
528
+ enum: string[];
529
+ };
530
+ protocol: {
531
+ type: string;
532
+ enum: string[];
533
+ };
534
+ host: {
535
+ type: string;
536
+ };
537
+ port: {
538
+ type: string;
539
+ };
540
+ proxyUserName: {
541
+ type: string;
542
+ };
543
+ proxyPassword: {
544
+ type: string;
545
+ };
546
+ refreshUrl: {
547
+ type: string;
548
+ };
549
+ checkChannel: {
550
+ type: string;
551
+ enum: string[];
552
+ };
553
+ };
554
+ };
555
+ fingerInfo: {
556
+ type: string;
557
+ description: string;
558
+ properties: {
559
+ isLanguageBaseIp: {
560
+ type: string;
561
+ description: string;
562
+ };
563
+ language: {
564
+ type: string;
565
+ description: string;
566
+ };
567
+ isDisplayLanguageBaseIp: {
568
+ type: string;
569
+ description: string;
570
+ };
571
+ displayLanguage: {
572
+ type: string;
573
+ description: string;
574
+ };
575
+ isTimeZone: {
576
+ type: string;
577
+ description: string;
578
+ };
579
+ timeZone: {
580
+ type: string;
581
+ description: string;
582
+ };
583
+ position: {
584
+ type: string;
585
+ enum: number[];
586
+ description: string;
587
+ };
588
+ isPositionBaseIp: {
589
+ type: string;
590
+ description: string;
591
+ };
592
+ longitude: {
593
+ type: string;
594
+ description: string;
595
+ };
596
+ latitude: {
597
+ type: string;
598
+ description: string;
599
+ };
600
+ precisionPos: {
601
+ type: string;
602
+ description: string;
603
+ };
604
+ forbidAudio: {
605
+ type: string;
606
+ description: string;
607
+ };
608
+ forbidImage: {
609
+ type: string;
610
+ description: string;
611
+ };
612
+ forbidMedia: {
613
+ type: string;
614
+ description: string;
615
+ };
616
+ openWidth: {
617
+ type: string;
618
+ description: string;
619
+ };
620
+ openHeight: {
621
+ type: string;
622
+ description: string;
623
+ };
624
+ openBookmarks: {
625
+ type: string;
626
+ description: string;
627
+ };
628
+ positionSwitch: {
629
+ type: string;
630
+ description: string;
631
+ };
632
+ windowRatioPosition: {
633
+ type: string;
634
+ description: string;
635
+ };
636
+ isDisplayName: {
637
+ type: string;
638
+ description: string;
639
+ };
640
+ syncBookmark: {
641
+ type: string;
642
+ description: string;
643
+ };
644
+ syncHistory: {
645
+ type: string;
646
+ description: string;
647
+ };
648
+ syncTab: {
649
+ type: string;
650
+ description: string;
651
+ };
652
+ syncCookie: {
653
+ type: string;
654
+ description: string;
655
+ };
656
+ syncExtensions: {
657
+ type: string;
658
+ description: string;
659
+ };
660
+ syncPassword: {
661
+ type: string;
662
+ description: string;
663
+ };
664
+ syncIndexedDb: {
665
+ type: string;
666
+ description: string;
667
+ };
668
+ syncLocalStorage: {
669
+ type: string;
670
+ description: string;
671
+ };
672
+ clearCacheFile: {
673
+ type: string;
674
+ description: string;
675
+ };
676
+ clearCookie: {
677
+ type: string;
678
+ description: string;
679
+ };
680
+ clearLocalStorage: {
681
+ type: string;
682
+ description: string;
683
+ };
684
+ randomFingerprint: {
685
+ type: string;
686
+ description: string;
687
+ };
688
+ forbidSavePassword: {
689
+ type: string;
690
+ description: string;
691
+ };
692
+ stopOpenNet: {
693
+ type: string;
694
+ description: string;
695
+ };
696
+ stopOpenIP: {
697
+ type: string;
698
+ description: string;
699
+ };
700
+ stopOpenPosition: {
701
+ type: string;
702
+ description: string;
703
+ };
704
+ openWorkbench: {
705
+ type: string;
706
+ enum: number[];
707
+ description: string;
708
+ };
709
+ resolutionType: {
710
+ type: string;
711
+ description: string;
712
+ };
713
+ resolutionX: {
714
+ type: string;
715
+ description: string;
716
+ };
717
+ resolutionY: {
718
+ type: string;
719
+ description: string;
720
+ };
721
+ fontType: {
722
+ type: string;
723
+ description: string;
724
+ };
725
+ webRTC: {
726
+ type: string;
727
+ enum: number[];
728
+ description: string;
729
+ };
730
+ webGL: {
731
+ type: string;
732
+ description: string;
733
+ };
734
+ webGLInfo: {
735
+ type: string;
736
+ description: string;
737
+ };
738
+ webGLManufacturer: {
739
+ type: string;
740
+ description: string;
741
+ };
742
+ webGLRender: {
743
+ type: string;
744
+ description: string;
745
+ };
746
+ webGpu: {
747
+ type: string;
748
+ enum: string[];
749
+ description: string;
750
+ };
751
+ canvas: {
752
+ type: string;
753
+ description: string;
754
+ };
755
+ audioContext: {
756
+ type: string;
757
+ description: string;
758
+ };
759
+ speechVoices: {
760
+ type: string;
761
+ description: string;
762
+ };
763
+ doNotTrack: {
764
+ type: string;
765
+ description: string;
766
+ };
767
+ clientRects: {
768
+ type: string;
769
+ description: string;
770
+ };
771
+ deviceInfo: {
772
+ type: string;
773
+ description: string;
774
+ };
775
+ deviceNameSwitch: {
776
+ type: string;
777
+ description: string;
778
+ };
779
+ macInfo: {
780
+ type: string;
781
+ description: string;
782
+ };
783
+ hardwareConcurrent: {
784
+ type: string;
785
+ description: string;
786
+ };
787
+ deviceMemory: {
788
+ type: string;
789
+ description: string;
790
+ };
791
+ disableSsl: {
792
+ type: string;
793
+ description: string;
794
+ };
795
+ disableSslList: {
796
+ type: string;
797
+ items: {
798
+ type: string;
799
+ };
800
+ description: string;
801
+ };
802
+ portScanProtect: {
803
+ type: string;
804
+ description: string;
805
+ };
806
+ portScanList: {
807
+ type: string;
808
+ description: string;
809
+ };
810
+ useGpu: {
811
+ type: string;
812
+ description: string;
813
+ };
814
+ sandboxPermission: {
815
+ type: string;
816
+ description: string;
817
+ };
818
+ startupParam: {
819
+ type: string;
820
+ description: string;
821
+ };
822
+ };
823
+ };
824
+ };
825
+ required: string[];
826
+ };
827
+ };
828
+ handle(params: any): Promise<{
829
+ content: {
830
+ type: string;
831
+ text: string;
832
+ }[];
833
+ }>;
834
+ }
835
+ export declare const createBrowser: CreateBrowser;
836
+ declare class BatchCreateBrowsers {
837
+ name: string;
838
+ description: string;
839
+ inputSchema: {
840
+ type: string;
841
+ properties: {
842
+ browsers: {
843
+ type: string;
844
+ description: string;
845
+ items: {
846
+ type: string;
847
+ properties: {
848
+ workspaceId: {
849
+ type: string;
850
+ description: string;
851
+ };
852
+ windowName: {
853
+ type: string;
854
+ description: string;
855
+ };
856
+ coreVersion: {
857
+ type: string;
858
+ enum: string[];
859
+ description: string;
860
+ };
861
+ os: {
862
+ type: string;
863
+ enum: string[];
864
+ description: string;
865
+ };
866
+ osVersion: {
867
+ type: string;
868
+ description: string;
869
+ };
870
+ userAgent: {
871
+ type: string;
872
+ description: string;
873
+ };
874
+ cookie: {
875
+ type: string;
876
+ description: string;
877
+ };
878
+ searchEngine: {
879
+ type: string;
880
+ enum: string[];
881
+ description: string;
882
+ };
883
+ labelIds: {
884
+ type: string;
885
+ items: {
886
+ type: string;
887
+ };
888
+ description: string;
889
+ };
890
+ defaultOpenUrl: {
891
+ type: string;
892
+ items: {
893
+ type: string;
894
+ };
895
+ description: string;
896
+ };
897
+ windowRemark: {
898
+ type: string;
899
+ description: string;
900
+ };
901
+ projectId: {
902
+ type: string;
903
+ description: string;
904
+ };
905
+ windowPlatformList: {
906
+ type: string;
907
+ items: {
908
+ type: string;
909
+ properties: {
910
+ id: {
911
+ type: string;
912
+ description: string;
913
+ };
914
+ platformUrl: {
915
+ type: string;
916
+ description: string;
917
+ };
918
+ platformUserName: {
919
+ type: string;
920
+ description: string;
921
+ };
922
+ platformPassword: {
923
+ type: string;
924
+ description: string;
925
+ };
926
+ platformEfa: {
927
+ type: string;
928
+ description: string;
929
+ };
930
+ platformRemarks: {
931
+ type: string;
932
+ description: string;
933
+ };
934
+ };
935
+ };
936
+ description: string;
937
+ };
938
+ proxyInfo: {
939
+ type: string;
940
+ description: string;
941
+ properties: {
942
+ moduleId: {
943
+ type: string;
944
+ description: string;
945
+ };
946
+ proxyMethod: {
947
+ type: string;
948
+ enum: string[];
949
+ };
950
+ proxyCategory: {
951
+ type: string;
952
+ enum: string[];
953
+ };
954
+ ipType: {
955
+ type: string;
956
+ enum: string[];
957
+ };
958
+ protocol: {
959
+ type: string;
960
+ enum: string[];
961
+ };
962
+ host: {
963
+ type: string;
964
+ };
965
+ port: {
966
+ type: string;
967
+ };
968
+ proxyUserName: {
969
+ type: string;
970
+ };
971
+ proxyPassword: {
972
+ type: string;
973
+ };
974
+ refreshUrl: {
975
+ type: string;
976
+ };
977
+ checkChannel: {
978
+ type: string;
979
+ enum: string[];
980
+ };
981
+ };
982
+ };
983
+ fingerInfo: {
984
+ type: string;
985
+ description: string;
986
+ properties: {
987
+ isLanguageBaseIp: {
988
+ type: string;
989
+ description: string;
990
+ };
991
+ language: {
992
+ type: string;
993
+ description: string;
994
+ };
995
+ isDisplayLanguageBaseIp: {
996
+ type: string;
997
+ description: string;
998
+ };
999
+ displayLanguage: {
1000
+ type: string;
1001
+ description: string;
1002
+ };
1003
+ isTimeZone: {
1004
+ type: string;
1005
+ description: string;
1006
+ };
1007
+ timeZone: {
1008
+ type: string;
1009
+ description: string;
1010
+ };
1011
+ position: {
1012
+ type: string;
1013
+ enum: number[];
1014
+ description: string;
1015
+ };
1016
+ isPositionBaseIp: {
1017
+ type: string;
1018
+ description: string;
1019
+ };
1020
+ longitude: {
1021
+ type: string;
1022
+ description: string;
1023
+ };
1024
+ latitude: {
1025
+ type: string;
1026
+ description: string;
1027
+ };
1028
+ precisionPos: {
1029
+ type: string;
1030
+ description: string;
1031
+ };
1032
+ forbidAudio: {
1033
+ type: string;
1034
+ description: string;
1035
+ };
1036
+ forbidImage: {
1037
+ type: string;
1038
+ description: string;
1039
+ };
1040
+ forbidMedia: {
1041
+ type: string;
1042
+ description: string;
1043
+ };
1044
+ openWidth: {
1045
+ type: string;
1046
+ description: string;
1047
+ };
1048
+ openHeight: {
1049
+ type: string;
1050
+ description: string;
1051
+ };
1052
+ openBookmarks: {
1053
+ type: string;
1054
+ description: string;
1055
+ };
1056
+ positionSwitch: {
1057
+ type: string;
1058
+ description: string;
1059
+ };
1060
+ windowRatioPosition: {
1061
+ type: string;
1062
+ description: string;
1063
+ };
1064
+ isDisplayName: {
1065
+ type: string;
1066
+ description: string;
1067
+ };
1068
+ syncBookmark: {
1069
+ type: string;
1070
+ description: string;
1071
+ };
1072
+ syncHistory: {
1073
+ type: string;
1074
+ description: string;
1075
+ };
1076
+ syncTab: {
1077
+ type: string;
1078
+ description: string;
1079
+ };
1080
+ syncCookie: {
1081
+ type: string;
1082
+ description: string;
1083
+ };
1084
+ syncExtensions: {
1085
+ type: string;
1086
+ description: string;
1087
+ };
1088
+ syncPassword: {
1089
+ type: string;
1090
+ description: string;
1091
+ };
1092
+ syncIndexedDb: {
1093
+ type: string;
1094
+ description: string;
1095
+ };
1096
+ syncLocalStorage: {
1097
+ type: string;
1098
+ description: string;
1099
+ };
1100
+ clearCacheFile: {
1101
+ type: string;
1102
+ description: string;
1103
+ };
1104
+ clearCookie: {
1105
+ type: string;
1106
+ description: string;
1107
+ };
1108
+ clearLocalStorage: {
1109
+ type: string;
1110
+ description: string;
1111
+ };
1112
+ randomFingerprint: {
1113
+ type: string;
1114
+ description: string;
1115
+ };
1116
+ forbidSavePassword: {
1117
+ type: string;
1118
+ description: string;
1119
+ };
1120
+ stopOpenNet: {
1121
+ type: string;
1122
+ description: string;
1123
+ };
1124
+ stopOpenIP: {
1125
+ type: string;
1126
+ description: string;
1127
+ };
1128
+ stopOpenPosition: {
1129
+ type: string;
1130
+ description: string;
1131
+ };
1132
+ openWorkbench: {
1133
+ type: string;
1134
+ enum: number[];
1135
+ description: string;
1136
+ };
1137
+ resolutionType: {
1138
+ type: string;
1139
+ description: string;
1140
+ };
1141
+ resolutionX: {
1142
+ type: string;
1143
+ description: string;
1144
+ };
1145
+ resolutionY: {
1146
+ type: string;
1147
+ description: string;
1148
+ };
1149
+ fontType: {
1150
+ type: string;
1151
+ description: string;
1152
+ };
1153
+ webRTC: {
1154
+ type: string;
1155
+ enum: number[];
1156
+ description: string;
1157
+ };
1158
+ webGL: {
1159
+ type: string;
1160
+ description: string;
1161
+ };
1162
+ webGLInfo: {
1163
+ type: string;
1164
+ description: string;
1165
+ };
1166
+ webGLManufacturer: {
1167
+ type: string;
1168
+ description: string;
1169
+ };
1170
+ webGLRender: {
1171
+ type: string;
1172
+ description: string;
1173
+ };
1174
+ webGpu: {
1175
+ type: string;
1176
+ enum: string[];
1177
+ description: string;
1178
+ };
1179
+ canvas: {
1180
+ type: string;
1181
+ description: string;
1182
+ };
1183
+ audioContext: {
1184
+ type: string;
1185
+ description: string;
1186
+ };
1187
+ speechVoices: {
1188
+ type: string;
1189
+ description: string;
1190
+ };
1191
+ doNotTrack: {
1192
+ type: string;
1193
+ description: string;
1194
+ };
1195
+ clientRects: {
1196
+ type: string;
1197
+ description: string;
1198
+ };
1199
+ deviceInfo: {
1200
+ type: string;
1201
+ description: string;
1202
+ };
1203
+ deviceNameSwitch: {
1204
+ type: string;
1205
+ description: string;
1206
+ };
1207
+ macInfo: {
1208
+ type: string;
1209
+ description: string;
1210
+ };
1211
+ hardwareConcurrent: {
1212
+ type: string;
1213
+ description: string;
1214
+ };
1215
+ deviceMemory: {
1216
+ type: string;
1217
+ description: string;
1218
+ };
1219
+ disableSsl: {
1220
+ type: string;
1221
+ description: string;
1222
+ };
1223
+ disableSslList: {
1224
+ type: string;
1225
+ items: {
1226
+ type: string;
1227
+ };
1228
+ description: string;
1229
+ };
1230
+ portScanProtect: {
1231
+ type: string;
1232
+ description: string;
1233
+ };
1234
+ portScanList: {
1235
+ type: string;
1236
+ description: string;
1237
+ };
1238
+ useGpu: {
1239
+ type: string;
1240
+ description: string;
1241
+ };
1242
+ sandboxPermission: {
1243
+ type: string;
1244
+ description: string;
1245
+ };
1246
+ startupParam: {
1247
+ type: string;
1248
+ description: string;
1249
+ };
1250
+ };
1251
+ };
1252
+ };
1253
+ required: string[];
1254
+ };
1255
+ };
1256
+ };
1257
+ required: string[];
1258
+ };
1259
+ get schema(): {
1260
+ name: string;
1261
+ description: string;
1262
+ inputSchema: {
1263
+ type: string;
1264
+ properties: {
1265
+ browsers: {
1266
+ type: string;
1267
+ description: string;
1268
+ items: {
1269
+ type: string;
1270
+ properties: {
1271
+ workspaceId: {
1272
+ type: string;
1273
+ description: string;
1274
+ };
1275
+ windowName: {
1276
+ type: string;
1277
+ description: string;
1278
+ };
1279
+ coreVersion: {
1280
+ type: string;
1281
+ enum: string[];
1282
+ description: string;
1283
+ };
1284
+ os: {
1285
+ type: string;
1286
+ enum: string[];
1287
+ description: string;
1288
+ };
1289
+ osVersion: {
1290
+ type: string;
1291
+ description: string;
1292
+ };
1293
+ userAgent: {
1294
+ type: string;
1295
+ description: string;
1296
+ };
1297
+ cookie: {
1298
+ type: string;
1299
+ description: string;
1300
+ };
1301
+ searchEngine: {
1302
+ type: string;
1303
+ enum: string[];
1304
+ description: string;
1305
+ };
1306
+ labelIds: {
1307
+ type: string;
1308
+ items: {
1309
+ type: string;
1310
+ };
1311
+ description: string;
1312
+ };
1313
+ defaultOpenUrl: {
1314
+ type: string;
1315
+ items: {
1316
+ type: string;
1317
+ };
1318
+ description: string;
1319
+ };
1320
+ windowRemark: {
1321
+ type: string;
1322
+ description: string;
1323
+ };
1324
+ projectId: {
1325
+ type: string;
1326
+ description: string;
1327
+ };
1328
+ windowPlatformList: {
1329
+ type: string;
1330
+ items: {
1331
+ type: string;
1332
+ properties: {
1333
+ id: {
1334
+ type: string;
1335
+ description: string;
1336
+ };
1337
+ platformUrl: {
1338
+ type: string;
1339
+ description: string;
1340
+ };
1341
+ platformUserName: {
1342
+ type: string;
1343
+ description: string;
1344
+ };
1345
+ platformPassword: {
1346
+ type: string;
1347
+ description: string;
1348
+ };
1349
+ platformEfa: {
1350
+ type: string;
1351
+ description: string;
1352
+ };
1353
+ platformRemarks: {
1354
+ type: string;
1355
+ description: string;
1356
+ };
1357
+ };
1358
+ };
1359
+ description: string;
1360
+ };
1361
+ proxyInfo: {
1362
+ type: string;
1363
+ description: string;
1364
+ properties: {
1365
+ moduleId: {
1366
+ type: string;
1367
+ description: string;
1368
+ };
1369
+ proxyMethod: {
1370
+ type: string;
1371
+ enum: string[];
1372
+ };
1373
+ proxyCategory: {
1374
+ type: string;
1375
+ enum: string[];
1376
+ };
1377
+ ipType: {
1378
+ type: string;
1379
+ enum: string[];
1380
+ };
1381
+ protocol: {
1382
+ type: string;
1383
+ enum: string[];
1384
+ };
1385
+ host: {
1386
+ type: string;
1387
+ };
1388
+ port: {
1389
+ type: string;
1390
+ };
1391
+ proxyUserName: {
1392
+ type: string;
1393
+ };
1394
+ proxyPassword: {
1395
+ type: string;
1396
+ };
1397
+ refreshUrl: {
1398
+ type: string;
1399
+ };
1400
+ checkChannel: {
1401
+ type: string;
1402
+ enum: string[];
1403
+ };
1404
+ };
1405
+ };
1406
+ fingerInfo: {
1407
+ type: string;
1408
+ description: string;
1409
+ properties: {
1410
+ isLanguageBaseIp: {
1411
+ type: string;
1412
+ description: string;
1413
+ };
1414
+ language: {
1415
+ type: string;
1416
+ description: string;
1417
+ };
1418
+ isDisplayLanguageBaseIp: {
1419
+ type: string;
1420
+ description: string;
1421
+ };
1422
+ displayLanguage: {
1423
+ type: string;
1424
+ description: string;
1425
+ };
1426
+ isTimeZone: {
1427
+ type: string;
1428
+ description: string;
1429
+ };
1430
+ timeZone: {
1431
+ type: string;
1432
+ description: string;
1433
+ };
1434
+ position: {
1435
+ type: string;
1436
+ enum: number[];
1437
+ description: string;
1438
+ };
1439
+ isPositionBaseIp: {
1440
+ type: string;
1441
+ description: string;
1442
+ };
1443
+ longitude: {
1444
+ type: string;
1445
+ description: string;
1446
+ };
1447
+ latitude: {
1448
+ type: string;
1449
+ description: string;
1450
+ };
1451
+ precisionPos: {
1452
+ type: string;
1453
+ description: string;
1454
+ };
1455
+ forbidAudio: {
1456
+ type: string;
1457
+ description: string;
1458
+ };
1459
+ forbidImage: {
1460
+ type: string;
1461
+ description: string;
1462
+ };
1463
+ forbidMedia: {
1464
+ type: string;
1465
+ description: string;
1466
+ };
1467
+ openWidth: {
1468
+ type: string;
1469
+ description: string;
1470
+ };
1471
+ openHeight: {
1472
+ type: string;
1473
+ description: string;
1474
+ };
1475
+ openBookmarks: {
1476
+ type: string;
1477
+ description: string;
1478
+ };
1479
+ positionSwitch: {
1480
+ type: string;
1481
+ description: string;
1482
+ };
1483
+ windowRatioPosition: {
1484
+ type: string;
1485
+ description: string;
1486
+ };
1487
+ isDisplayName: {
1488
+ type: string;
1489
+ description: string;
1490
+ };
1491
+ syncBookmark: {
1492
+ type: string;
1493
+ description: string;
1494
+ };
1495
+ syncHistory: {
1496
+ type: string;
1497
+ description: string;
1498
+ };
1499
+ syncTab: {
1500
+ type: string;
1501
+ description: string;
1502
+ };
1503
+ syncCookie: {
1504
+ type: string;
1505
+ description: string;
1506
+ };
1507
+ syncExtensions: {
1508
+ type: string;
1509
+ description: string;
1510
+ };
1511
+ syncPassword: {
1512
+ type: string;
1513
+ description: string;
1514
+ };
1515
+ syncIndexedDb: {
1516
+ type: string;
1517
+ description: string;
1518
+ };
1519
+ syncLocalStorage: {
1520
+ type: string;
1521
+ description: string;
1522
+ };
1523
+ clearCacheFile: {
1524
+ type: string;
1525
+ description: string;
1526
+ };
1527
+ clearCookie: {
1528
+ type: string;
1529
+ description: string;
1530
+ };
1531
+ clearLocalStorage: {
1532
+ type: string;
1533
+ description: string;
1534
+ };
1535
+ randomFingerprint: {
1536
+ type: string;
1537
+ description: string;
1538
+ };
1539
+ forbidSavePassword: {
1540
+ type: string;
1541
+ description: string;
1542
+ };
1543
+ stopOpenNet: {
1544
+ type: string;
1545
+ description: string;
1546
+ };
1547
+ stopOpenIP: {
1548
+ type: string;
1549
+ description: string;
1550
+ };
1551
+ stopOpenPosition: {
1552
+ type: string;
1553
+ description: string;
1554
+ };
1555
+ openWorkbench: {
1556
+ type: string;
1557
+ enum: number[];
1558
+ description: string;
1559
+ };
1560
+ resolutionType: {
1561
+ type: string;
1562
+ description: string;
1563
+ };
1564
+ resolutionX: {
1565
+ type: string;
1566
+ description: string;
1567
+ };
1568
+ resolutionY: {
1569
+ type: string;
1570
+ description: string;
1571
+ };
1572
+ fontType: {
1573
+ type: string;
1574
+ description: string;
1575
+ };
1576
+ webRTC: {
1577
+ type: string;
1578
+ enum: number[];
1579
+ description: string;
1580
+ };
1581
+ webGL: {
1582
+ type: string;
1583
+ description: string;
1584
+ };
1585
+ webGLInfo: {
1586
+ type: string;
1587
+ description: string;
1588
+ };
1589
+ webGLManufacturer: {
1590
+ type: string;
1591
+ description: string;
1592
+ };
1593
+ webGLRender: {
1594
+ type: string;
1595
+ description: string;
1596
+ };
1597
+ webGpu: {
1598
+ type: string;
1599
+ enum: string[];
1600
+ description: string;
1601
+ };
1602
+ canvas: {
1603
+ type: string;
1604
+ description: string;
1605
+ };
1606
+ audioContext: {
1607
+ type: string;
1608
+ description: string;
1609
+ };
1610
+ speechVoices: {
1611
+ type: string;
1612
+ description: string;
1613
+ };
1614
+ doNotTrack: {
1615
+ type: string;
1616
+ description: string;
1617
+ };
1618
+ clientRects: {
1619
+ type: string;
1620
+ description: string;
1621
+ };
1622
+ deviceInfo: {
1623
+ type: string;
1624
+ description: string;
1625
+ };
1626
+ deviceNameSwitch: {
1627
+ type: string;
1628
+ description: string;
1629
+ };
1630
+ macInfo: {
1631
+ type: string;
1632
+ description: string;
1633
+ };
1634
+ hardwareConcurrent: {
1635
+ type: string;
1636
+ description: string;
1637
+ };
1638
+ deviceMemory: {
1639
+ type: string;
1640
+ description: string;
1641
+ };
1642
+ disableSsl: {
1643
+ type: string;
1644
+ description: string;
1645
+ };
1646
+ disableSslList: {
1647
+ type: string;
1648
+ items: {
1649
+ type: string;
1650
+ };
1651
+ description: string;
1652
+ };
1653
+ portScanProtect: {
1654
+ type: string;
1655
+ description: string;
1656
+ };
1657
+ portScanList: {
1658
+ type: string;
1659
+ description: string;
1660
+ };
1661
+ useGpu: {
1662
+ type: string;
1663
+ description: string;
1664
+ };
1665
+ sandboxPermission: {
1666
+ type: string;
1667
+ description: string;
1668
+ };
1669
+ startupParam: {
1670
+ type: string;
1671
+ description: string;
1672
+ };
1673
+ };
1674
+ };
1675
+ };
1676
+ required: string[];
1677
+ };
1678
+ };
1679
+ };
1680
+ required: string[];
1681
+ };
1682
+ };
1683
+ handle(params: any): Promise<{
1684
+ content: {
1685
+ type: string;
1686
+ text: string;
1687
+ }[];
1688
+ }>;
1689
+ }
1690
+ export declare const batchCreateBrowsers: BatchCreateBrowsers;
1691
+ declare class UpdateBrowser {
1692
+ name: string;
1693
+ description: string;
1694
+ inputSchema: {
1695
+ type: string;
1696
+ properties: {
1697
+ workspaceId: {
1698
+ type: string;
1699
+ description: string;
1700
+ };
1701
+ windowName: {
1702
+ type: string;
1703
+ description: string;
1704
+ };
1705
+ coreVersion: {
1706
+ type: string;
1707
+ enum: string[];
1708
+ description: string;
1709
+ };
1710
+ os: {
1711
+ type: string;
1712
+ enum: string[];
1713
+ description: string;
1714
+ };
1715
+ osVersion: {
1716
+ type: string;
1717
+ description: string;
1718
+ };
1719
+ userAgent: {
1720
+ type: string;
1721
+ description: string;
1722
+ };
1723
+ cookie: {
1724
+ type: string;
1725
+ description: string;
1726
+ };
1727
+ searchEngine: {
1728
+ type: string;
1729
+ enum: string[];
1730
+ description: string;
1731
+ };
1732
+ labelIds: {
1733
+ type: string;
1734
+ items: {
1735
+ type: string;
1736
+ };
1737
+ description: string;
1738
+ };
1739
+ defaultOpenUrl: {
1740
+ type: string;
1741
+ items: {
1742
+ type: string;
1743
+ };
1744
+ description: string;
1745
+ };
1746
+ windowRemark: {
1747
+ type: string;
1748
+ description: string;
1749
+ };
1750
+ projectId: {
1751
+ type: string;
1752
+ description: string;
1753
+ };
1754
+ windowPlatformList: {
1755
+ type: string;
1756
+ items: {
1757
+ type: string;
1758
+ properties: {
1759
+ id: {
1760
+ type: string;
1761
+ description: string;
1762
+ };
1763
+ platformUrl: {
1764
+ type: string;
1765
+ description: string;
1766
+ };
1767
+ platformUserName: {
1768
+ type: string;
1769
+ description: string;
1770
+ };
1771
+ platformPassword: {
1772
+ type: string;
1773
+ description: string;
1774
+ };
1775
+ platformEfa: {
1776
+ type: string;
1777
+ description: string;
1778
+ };
1779
+ platformRemarks: {
1780
+ type: string;
1781
+ description: string;
1782
+ };
1783
+ };
1784
+ };
1785
+ description: string;
1786
+ };
1787
+ proxyInfo: {
1788
+ type: string;
1789
+ description: string;
1790
+ properties: {
1791
+ moduleId: {
1792
+ type: string;
1793
+ description: string;
1794
+ };
1795
+ proxyMethod: {
1796
+ type: string;
1797
+ enum: string[];
1798
+ };
1799
+ proxyCategory: {
1800
+ type: string;
1801
+ enum: string[];
1802
+ };
1803
+ ipType: {
1804
+ type: string;
1805
+ enum: string[];
1806
+ };
1807
+ protocol: {
1808
+ type: string;
1809
+ enum: string[];
1810
+ };
1811
+ host: {
1812
+ type: string;
1813
+ };
1814
+ port: {
1815
+ type: string;
1816
+ };
1817
+ proxyUserName: {
1818
+ type: string;
1819
+ };
1820
+ proxyPassword: {
1821
+ type: string;
1822
+ };
1823
+ refreshUrl: {
1824
+ type: string;
1825
+ };
1826
+ checkChannel: {
1827
+ type: string;
1828
+ enum: string[];
1829
+ };
1830
+ };
1831
+ };
1832
+ fingerInfo: {
1833
+ type: string;
1834
+ description: string;
1835
+ properties: {
1836
+ isLanguageBaseIp: {
1837
+ type: string;
1838
+ description: string;
1839
+ };
1840
+ language: {
1841
+ type: string;
1842
+ description: string;
1843
+ };
1844
+ isDisplayLanguageBaseIp: {
1845
+ type: string;
1846
+ description: string;
1847
+ };
1848
+ displayLanguage: {
1849
+ type: string;
1850
+ description: string;
1851
+ };
1852
+ isTimeZone: {
1853
+ type: string;
1854
+ description: string;
1855
+ };
1856
+ timeZone: {
1857
+ type: string;
1858
+ description: string;
1859
+ };
1860
+ position: {
1861
+ type: string;
1862
+ enum: number[];
1863
+ description: string;
1864
+ };
1865
+ isPositionBaseIp: {
1866
+ type: string;
1867
+ description: string;
1868
+ };
1869
+ longitude: {
1870
+ type: string;
1871
+ description: string;
1872
+ };
1873
+ latitude: {
1874
+ type: string;
1875
+ description: string;
1876
+ };
1877
+ precisionPos: {
1878
+ type: string;
1879
+ description: string;
1880
+ };
1881
+ forbidAudio: {
1882
+ type: string;
1883
+ description: string;
1884
+ };
1885
+ forbidImage: {
1886
+ type: string;
1887
+ description: string;
1888
+ };
1889
+ forbidMedia: {
1890
+ type: string;
1891
+ description: string;
1892
+ };
1893
+ openWidth: {
1894
+ type: string;
1895
+ description: string;
1896
+ };
1897
+ openHeight: {
1898
+ type: string;
1899
+ description: string;
1900
+ };
1901
+ openBookmarks: {
1902
+ type: string;
1903
+ description: string;
1904
+ };
1905
+ positionSwitch: {
1906
+ type: string;
1907
+ description: string;
1908
+ };
1909
+ windowRatioPosition: {
1910
+ type: string;
1911
+ description: string;
1912
+ };
1913
+ isDisplayName: {
1914
+ type: string;
1915
+ description: string;
1916
+ };
1917
+ syncBookmark: {
1918
+ type: string;
1919
+ description: string;
1920
+ };
1921
+ syncHistory: {
1922
+ type: string;
1923
+ description: string;
1924
+ };
1925
+ syncTab: {
1926
+ type: string;
1927
+ description: string;
1928
+ };
1929
+ syncCookie: {
1930
+ type: string;
1931
+ description: string;
1932
+ };
1933
+ syncExtensions: {
1934
+ type: string;
1935
+ description: string;
1936
+ };
1937
+ syncPassword: {
1938
+ type: string;
1939
+ description: string;
1940
+ };
1941
+ syncIndexedDb: {
1942
+ type: string;
1943
+ description: string;
1944
+ };
1945
+ syncLocalStorage: {
1946
+ type: string;
1947
+ description: string;
1948
+ };
1949
+ clearCacheFile: {
1950
+ type: string;
1951
+ description: string;
1952
+ };
1953
+ clearCookie: {
1954
+ type: string;
1955
+ description: string;
1956
+ };
1957
+ clearLocalStorage: {
1958
+ type: string;
1959
+ description: string;
1960
+ };
1961
+ randomFingerprint: {
1962
+ type: string;
1963
+ description: string;
1964
+ };
1965
+ forbidSavePassword: {
1966
+ type: string;
1967
+ description: string;
1968
+ };
1969
+ stopOpenNet: {
1970
+ type: string;
1971
+ description: string;
1972
+ };
1973
+ stopOpenIP: {
1974
+ type: string;
1975
+ description: string;
1976
+ };
1977
+ stopOpenPosition: {
1978
+ type: string;
1979
+ description: string;
1980
+ };
1981
+ openWorkbench: {
1982
+ type: string;
1983
+ enum: number[];
1984
+ description: string;
1985
+ };
1986
+ resolutionType: {
1987
+ type: string;
1988
+ description: string;
1989
+ };
1990
+ resolutionX: {
1991
+ type: string;
1992
+ description: string;
1993
+ };
1994
+ resolutionY: {
1995
+ type: string;
1996
+ description: string;
1997
+ };
1998
+ fontType: {
1999
+ type: string;
2000
+ description: string;
2001
+ };
2002
+ webRTC: {
2003
+ type: string;
2004
+ enum: number[];
2005
+ description: string;
2006
+ };
2007
+ webGL: {
2008
+ type: string;
2009
+ description: string;
2010
+ };
2011
+ webGLInfo: {
2012
+ type: string;
2013
+ description: string;
2014
+ };
2015
+ webGLManufacturer: {
2016
+ type: string;
2017
+ description: string;
2018
+ };
2019
+ webGLRender: {
2020
+ type: string;
2021
+ description: string;
2022
+ };
2023
+ webGpu: {
2024
+ type: string;
2025
+ enum: string[];
2026
+ description: string;
2027
+ };
2028
+ canvas: {
2029
+ type: string;
2030
+ description: string;
2031
+ };
2032
+ audioContext: {
2033
+ type: string;
2034
+ description: string;
2035
+ };
2036
+ speechVoices: {
2037
+ type: string;
2038
+ description: string;
2039
+ };
2040
+ doNotTrack: {
2041
+ type: string;
2042
+ description: string;
2043
+ };
2044
+ clientRects: {
2045
+ type: string;
2046
+ description: string;
2047
+ };
2048
+ deviceInfo: {
2049
+ type: string;
2050
+ description: string;
2051
+ };
2052
+ deviceNameSwitch: {
2053
+ type: string;
2054
+ description: string;
2055
+ };
2056
+ macInfo: {
2057
+ type: string;
2058
+ description: string;
2059
+ };
2060
+ hardwareConcurrent: {
2061
+ type: string;
2062
+ description: string;
2063
+ };
2064
+ deviceMemory: {
2065
+ type: string;
2066
+ description: string;
2067
+ };
2068
+ disableSsl: {
2069
+ type: string;
2070
+ description: string;
2071
+ };
2072
+ disableSslList: {
2073
+ type: string;
2074
+ items: {
2075
+ type: string;
2076
+ };
2077
+ description: string;
2078
+ };
2079
+ portScanProtect: {
2080
+ type: string;
2081
+ description: string;
2082
+ };
2083
+ portScanList: {
2084
+ type: string;
2085
+ description: string;
2086
+ };
2087
+ useGpu: {
2088
+ type: string;
2089
+ description: string;
2090
+ };
2091
+ sandboxPermission: {
2092
+ type: string;
2093
+ description: string;
2094
+ };
2095
+ startupParam: {
2096
+ type: string;
2097
+ description: string;
2098
+ };
2099
+ };
2100
+ };
2101
+ };
2102
+ required: string[];
2103
+ };
2104
+ get schema(): {
2105
+ name: string;
2106
+ description: string;
2107
+ inputSchema: {
2108
+ type: string;
2109
+ properties: {
2110
+ workspaceId: {
2111
+ type: string;
2112
+ description: string;
2113
+ };
2114
+ windowName: {
2115
+ type: string;
2116
+ description: string;
2117
+ };
2118
+ coreVersion: {
2119
+ type: string;
2120
+ enum: string[];
2121
+ description: string;
2122
+ };
2123
+ os: {
2124
+ type: string;
2125
+ enum: string[];
2126
+ description: string;
2127
+ };
2128
+ osVersion: {
2129
+ type: string;
2130
+ description: string;
2131
+ };
2132
+ userAgent: {
2133
+ type: string;
2134
+ description: string;
2135
+ };
2136
+ cookie: {
2137
+ type: string;
2138
+ description: string;
2139
+ };
2140
+ searchEngine: {
2141
+ type: string;
2142
+ enum: string[];
2143
+ description: string;
2144
+ };
2145
+ labelIds: {
2146
+ type: string;
2147
+ items: {
2148
+ type: string;
2149
+ };
2150
+ description: string;
2151
+ };
2152
+ defaultOpenUrl: {
2153
+ type: string;
2154
+ items: {
2155
+ type: string;
2156
+ };
2157
+ description: string;
2158
+ };
2159
+ windowRemark: {
2160
+ type: string;
2161
+ description: string;
2162
+ };
2163
+ projectId: {
2164
+ type: string;
2165
+ description: string;
2166
+ };
2167
+ windowPlatformList: {
2168
+ type: string;
2169
+ items: {
2170
+ type: string;
2171
+ properties: {
2172
+ id: {
2173
+ type: string;
2174
+ description: string;
2175
+ };
2176
+ platformUrl: {
2177
+ type: string;
2178
+ description: string;
2179
+ };
2180
+ platformUserName: {
2181
+ type: string;
2182
+ description: string;
2183
+ };
2184
+ platformPassword: {
2185
+ type: string;
2186
+ description: string;
2187
+ };
2188
+ platformEfa: {
2189
+ type: string;
2190
+ description: string;
2191
+ };
2192
+ platformRemarks: {
2193
+ type: string;
2194
+ description: string;
2195
+ };
2196
+ };
2197
+ };
2198
+ description: string;
2199
+ };
2200
+ proxyInfo: {
2201
+ type: string;
2202
+ description: string;
2203
+ properties: {
2204
+ moduleId: {
2205
+ type: string;
2206
+ description: string;
2207
+ };
2208
+ proxyMethod: {
2209
+ type: string;
2210
+ enum: string[];
2211
+ };
2212
+ proxyCategory: {
2213
+ type: string;
2214
+ enum: string[];
2215
+ };
2216
+ ipType: {
2217
+ type: string;
2218
+ enum: string[];
2219
+ };
2220
+ protocol: {
2221
+ type: string;
2222
+ enum: string[];
2223
+ };
2224
+ host: {
2225
+ type: string;
2226
+ };
2227
+ port: {
2228
+ type: string;
2229
+ };
2230
+ proxyUserName: {
2231
+ type: string;
2232
+ };
2233
+ proxyPassword: {
2234
+ type: string;
2235
+ };
2236
+ refreshUrl: {
2237
+ type: string;
2238
+ };
2239
+ checkChannel: {
2240
+ type: string;
2241
+ enum: string[];
2242
+ };
2243
+ };
2244
+ };
2245
+ fingerInfo: {
2246
+ type: string;
2247
+ description: string;
2248
+ properties: {
2249
+ isLanguageBaseIp: {
2250
+ type: string;
2251
+ description: string;
2252
+ };
2253
+ language: {
2254
+ type: string;
2255
+ description: string;
2256
+ };
2257
+ isDisplayLanguageBaseIp: {
2258
+ type: string;
2259
+ description: string;
2260
+ };
2261
+ displayLanguage: {
2262
+ type: string;
2263
+ description: string;
2264
+ };
2265
+ isTimeZone: {
2266
+ type: string;
2267
+ description: string;
2268
+ };
2269
+ timeZone: {
2270
+ type: string;
2271
+ description: string;
2272
+ };
2273
+ position: {
2274
+ type: string;
2275
+ enum: number[];
2276
+ description: string;
2277
+ };
2278
+ isPositionBaseIp: {
2279
+ type: string;
2280
+ description: string;
2281
+ };
2282
+ longitude: {
2283
+ type: string;
2284
+ description: string;
2285
+ };
2286
+ latitude: {
2287
+ type: string;
2288
+ description: string;
2289
+ };
2290
+ precisionPos: {
2291
+ type: string;
2292
+ description: string;
2293
+ };
2294
+ forbidAudio: {
2295
+ type: string;
2296
+ description: string;
2297
+ };
2298
+ forbidImage: {
2299
+ type: string;
2300
+ description: string;
2301
+ };
2302
+ forbidMedia: {
2303
+ type: string;
2304
+ description: string;
2305
+ };
2306
+ openWidth: {
2307
+ type: string;
2308
+ description: string;
2309
+ };
2310
+ openHeight: {
2311
+ type: string;
2312
+ description: string;
2313
+ };
2314
+ openBookmarks: {
2315
+ type: string;
2316
+ description: string;
2317
+ };
2318
+ positionSwitch: {
2319
+ type: string;
2320
+ description: string;
2321
+ };
2322
+ windowRatioPosition: {
2323
+ type: string;
2324
+ description: string;
2325
+ };
2326
+ isDisplayName: {
2327
+ type: string;
2328
+ description: string;
2329
+ };
2330
+ syncBookmark: {
2331
+ type: string;
2332
+ description: string;
2333
+ };
2334
+ syncHistory: {
2335
+ type: string;
2336
+ description: string;
2337
+ };
2338
+ syncTab: {
2339
+ type: string;
2340
+ description: string;
2341
+ };
2342
+ syncCookie: {
2343
+ type: string;
2344
+ description: string;
2345
+ };
2346
+ syncExtensions: {
2347
+ type: string;
2348
+ description: string;
2349
+ };
2350
+ syncPassword: {
2351
+ type: string;
2352
+ description: string;
2353
+ };
2354
+ syncIndexedDb: {
2355
+ type: string;
2356
+ description: string;
2357
+ };
2358
+ syncLocalStorage: {
2359
+ type: string;
2360
+ description: string;
2361
+ };
2362
+ clearCacheFile: {
2363
+ type: string;
2364
+ description: string;
2365
+ };
2366
+ clearCookie: {
2367
+ type: string;
2368
+ description: string;
2369
+ };
2370
+ clearLocalStorage: {
2371
+ type: string;
2372
+ description: string;
2373
+ };
2374
+ randomFingerprint: {
2375
+ type: string;
2376
+ description: string;
2377
+ };
2378
+ forbidSavePassword: {
2379
+ type: string;
2380
+ description: string;
2381
+ };
2382
+ stopOpenNet: {
2383
+ type: string;
2384
+ description: string;
2385
+ };
2386
+ stopOpenIP: {
2387
+ type: string;
2388
+ description: string;
2389
+ };
2390
+ stopOpenPosition: {
2391
+ type: string;
2392
+ description: string;
2393
+ };
2394
+ openWorkbench: {
2395
+ type: string;
2396
+ enum: number[];
2397
+ description: string;
2398
+ };
2399
+ resolutionType: {
2400
+ type: string;
2401
+ description: string;
2402
+ };
2403
+ resolutionX: {
2404
+ type: string;
2405
+ description: string;
2406
+ };
2407
+ resolutionY: {
2408
+ type: string;
2409
+ description: string;
2410
+ };
2411
+ fontType: {
2412
+ type: string;
2413
+ description: string;
2414
+ };
2415
+ webRTC: {
2416
+ type: string;
2417
+ enum: number[];
2418
+ description: string;
2419
+ };
2420
+ webGL: {
2421
+ type: string;
2422
+ description: string;
2423
+ };
2424
+ webGLInfo: {
2425
+ type: string;
2426
+ description: string;
2427
+ };
2428
+ webGLManufacturer: {
2429
+ type: string;
2430
+ description: string;
2431
+ };
2432
+ webGLRender: {
2433
+ type: string;
2434
+ description: string;
2435
+ };
2436
+ webGpu: {
2437
+ type: string;
2438
+ enum: string[];
2439
+ description: string;
2440
+ };
2441
+ canvas: {
2442
+ type: string;
2443
+ description: string;
2444
+ };
2445
+ audioContext: {
2446
+ type: string;
2447
+ description: string;
2448
+ };
2449
+ speechVoices: {
2450
+ type: string;
2451
+ description: string;
2452
+ };
2453
+ doNotTrack: {
2454
+ type: string;
2455
+ description: string;
2456
+ };
2457
+ clientRects: {
2458
+ type: string;
2459
+ description: string;
2460
+ };
2461
+ deviceInfo: {
2462
+ type: string;
2463
+ description: string;
2464
+ };
2465
+ deviceNameSwitch: {
2466
+ type: string;
2467
+ description: string;
2468
+ };
2469
+ macInfo: {
2470
+ type: string;
2471
+ description: string;
2472
+ };
2473
+ hardwareConcurrent: {
2474
+ type: string;
2475
+ description: string;
2476
+ };
2477
+ deviceMemory: {
2478
+ type: string;
2479
+ description: string;
2480
+ };
2481
+ disableSsl: {
2482
+ type: string;
2483
+ description: string;
2484
+ };
2485
+ disableSslList: {
2486
+ type: string;
2487
+ items: {
2488
+ type: string;
2489
+ };
2490
+ description: string;
2491
+ };
2492
+ portScanProtect: {
2493
+ type: string;
2494
+ description: string;
2495
+ };
2496
+ portScanList: {
2497
+ type: string;
2498
+ description: string;
2499
+ };
2500
+ useGpu: {
2501
+ type: string;
2502
+ description: string;
2503
+ };
2504
+ sandboxPermission: {
2505
+ type: string;
2506
+ description: string;
2507
+ };
2508
+ startupParam: {
2509
+ type: string;
2510
+ description: string;
2511
+ };
2512
+ };
2513
+ };
2514
+ };
2515
+ required: string[];
2516
+ };
2517
+ };
2518
+ handle(params: any): Promise<{
2519
+ content: {
2520
+ type: string;
2521
+ text: string;
2522
+ }[];
2523
+ }>;
2524
+ }
2525
+ declare class OpenBrowser {
2526
+ name: string;
2527
+ description: string;
2528
+ inputSchema: {
2529
+ type: string;
2530
+ properties: {
2531
+ workspaceId: {
2532
+ type: string;
2533
+ description: string;
2534
+ };
2535
+ dirIds: {
2536
+ type: string;
2537
+ items: {
2538
+ type: string;
2539
+ };
2540
+ description: string;
2541
+ };
2542
+ forceOpen: {
2543
+ type: string;
2544
+ description: string;
2545
+ default: boolean;
2546
+ };
2547
+ args: {
2548
+ type: string;
2549
+ items: {
2550
+ type: string;
2551
+ };
2552
+ description: string;
2553
+ };
2554
+ };
2555
+ required: string[];
2556
+ };
2557
+ get schema(): {
2558
+ name: string;
2559
+ description: string;
2560
+ inputSchema: {
2561
+ type: string;
2562
+ properties: {
2563
+ workspaceId: {
2564
+ type: string;
2565
+ description: string;
2566
+ };
2567
+ dirIds: {
2568
+ type: string;
2569
+ items: {
2570
+ type: string;
2571
+ };
2572
+ description: string;
2573
+ };
2574
+ forceOpen: {
2575
+ type: string;
2576
+ description: string;
2577
+ default: boolean;
2578
+ };
2579
+ args: {
2580
+ type: string;
2581
+ items: {
2582
+ type: string;
2583
+ };
2584
+ description: string;
2585
+ };
2586
+ };
2587
+ required: string[];
2588
+ };
2589
+ };
2590
+ handle(params: any): Promise<{
2591
+ content: {
2592
+ type: string;
2593
+ text: string;
2594
+ }[];
2595
+ }>;
2596
+ }
2597
+ declare class ListBrowsers {
2598
+ name: string;
2599
+ description: string;
2600
+ inputSchema: {
2601
+ type: string;
2602
+ properties: {
2603
+ workspaceId: {
2604
+ type: string;
2605
+ description: string;
2606
+ };
2607
+ projectIds: {
2608
+ type: string;
2609
+ description: string;
2610
+ };
2611
+ windowName: {
2612
+ type: string;
2613
+ description: string;
2614
+ };
2615
+ pageIndex: {
2616
+ type: string;
2617
+ description: string;
2618
+ default: number;
2619
+ };
2620
+ pageSize: {
2621
+ type: string;
2622
+ description: string;
2623
+ default: number;
2624
+ };
2625
+ };
2626
+ required: string[];
2627
+ };
2628
+ get schema(): {
2629
+ name: string;
2630
+ description: string;
2631
+ inputSchema: {
2632
+ type: string;
2633
+ properties: {
2634
+ workspaceId: {
2635
+ type: string;
2636
+ description: string;
2637
+ };
2638
+ projectIds: {
2639
+ type: string;
2640
+ description: string;
2641
+ };
2642
+ windowName: {
2643
+ type: string;
2644
+ description: string;
2645
+ };
2646
+ pageIndex: {
2647
+ type: string;
2648
+ description: string;
2649
+ default: number;
2650
+ };
2651
+ pageSize: {
2652
+ type: string;
2653
+ description: string;
2654
+ default: number;
2655
+ };
2656
+ };
2657
+ required: string[];
2658
+ };
2659
+ };
2660
+ handle(params: any): Promise<{
2661
+ content: {
2662
+ type: string;
2663
+ text: string;
2664
+ }[];
2665
+ }>;
2666
+ }
2667
+ declare class CloseBrowsers {
2668
+ name: string;
2669
+ description: string;
2670
+ inputSchema: {
2671
+ type: string;
2672
+ properties: {
2673
+ dirIds: {
2674
+ type: string;
2675
+ items: {
2676
+ type: string;
2677
+ };
2678
+ description: string;
2679
+ };
2680
+ };
2681
+ required: string[];
2682
+ };
2683
+ get schema(): {
2684
+ name: string;
2685
+ description: string;
2686
+ inputSchema: {
2687
+ type: string;
2688
+ properties: {
2689
+ dirIds: {
2690
+ type: string;
2691
+ items: {
2692
+ type: string;
2693
+ };
2694
+ description: string;
2695
+ };
2696
+ };
2697
+ required: string[];
2698
+ };
2699
+ };
2700
+ handle(params: any): Promise<{
2701
+ content: {
2702
+ type: string;
2703
+ text: string;
2704
+ }[];
2705
+ }>;
2706
+ }
2707
+ declare class DeleteBrowsers {
2708
+ name: string;
2709
+ description: string;
2710
+ inputSchema: {
2711
+ type: string;
2712
+ properties: {
2713
+ workspaceId: {
2714
+ type: string;
2715
+ description: string;
2716
+ };
2717
+ dirIds: {
2718
+ type: string;
2719
+ items: {
2720
+ type: string;
2721
+ };
2722
+ description: string;
2723
+ };
2724
+ };
2725
+ required: string[];
2726
+ };
2727
+ get schema(): {
2728
+ name: string;
2729
+ description: string;
2730
+ inputSchema: {
2731
+ type: string;
2732
+ properties: {
2733
+ workspaceId: {
2734
+ type: string;
2735
+ description: string;
2736
+ };
2737
+ dirIds: {
2738
+ type: string;
2739
+ items: {
2740
+ type: string;
2741
+ };
2742
+ description: string;
2743
+ };
2744
+ };
2745
+ required: string[];
2746
+ };
2747
+ };
2748
+ handle(params: any): Promise<{
2749
+ content: {
2750
+ type: string;
2751
+ text: string;
2752
+ }[];
2753
+ }>;
2754
+ }
2755
+ declare class GetBrowserDetail {
2756
+ name: string;
2757
+ description: string;
2758
+ inputSchema: {
2759
+ type: string;
2760
+ properties: {
2761
+ workspaceId: {
2762
+ type: string;
2763
+ description: string;
2764
+ };
2765
+ dirId: {
2766
+ type: string;
2767
+ description: string;
2768
+ };
2769
+ };
2770
+ required: string[];
2771
+ };
2772
+ get schema(): {
2773
+ name: string;
2774
+ description: string;
2775
+ inputSchema: {
2776
+ type: string;
2777
+ properties: {
2778
+ workspaceId: {
2779
+ type: string;
2780
+ description: string;
2781
+ };
2782
+ dirId: {
2783
+ type: string;
2784
+ description: string;
2785
+ };
2786
+ };
2787
+ required: string[];
2788
+ };
2789
+ };
2790
+ handle(params: any): Promise<{
2791
+ content: {
2792
+ type: string;
2793
+ text: string;
2794
+ }[];
2795
+ }>;
2796
+ }
2797
+ declare class ClearLocalCache {
2798
+ name: string;
2799
+ description: string;
2800
+ inputSchema: {
2801
+ type: string;
2802
+ properties: {
2803
+ dirIds: {
2804
+ type: string;
2805
+ items: {
2806
+ type: string;
2807
+ };
2808
+ description: string;
2809
+ };
2810
+ };
2811
+ required: string[];
2812
+ };
2813
+ get schema(): {
2814
+ name: string;
2815
+ description: string;
2816
+ inputSchema: {
2817
+ type: string;
2818
+ properties: {
2819
+ dirIds: {
2820
+ type: string;
2821
+ items: {
2822
+ type: string;
2823
+ };
2824
+ description: string;
2825
+ };
2826
+ };
2827
+ required: string[];
2828
+ };
2829
+ };
2830
+ handle(params: any): Promise<{
2831
+ content: {
2832
+ type: string;
2833
+ text: string;
2834
+ }[];
2835
+ }>;
2836
+ }
2837
+ declare class ClearServerCache {
2838
+ name: string;
2839
+ description: string;
2840
+ inputSchema: {
2841
+ type: string;
2842
+ properties: {
2843
+ workspaceId: {
2844
+ type: string;
2845
+ description: string;
2846
+ };
2847
+ dirIds: {
2848
+ type: string;
2849
+ items: {
2850
+ type: string;
2851
+ };
2852
+ description: string;
2853
+ };
2854
+ };
2855
+ required: string[];
2856
+ };
2857
+ get schema(): {
2858
+ name: string;
2859
+ description: string;
2860
+ inputSchema: {
2861
+ type: string;
2862
+ properties: {
2863
+ workspaceId: {
2864
+ type: string;
2865
+ description: string;
2866
+ };
2867
+ dirIds: {
2868
+ type: string;
2869
+ items: {
2870
+ type: string;
2871
+ };
2872
+ description: string;
2873
+ };
2874
+ };
2875
+ required: string[];
2876
+ };
2877
+ };
2878
+ handle(params: any): Promise<{
2879
+ content: {
2880
+ type: string;
2881
+ text: string;
2882
+ }[];
2883
+ }>;
2884
+ }
2885
+ declare class RandomFingerprint {
2886
+ name: string;
2887
+ description: string;
2888
+ inputSchema: {
2889
+ type: string;
2890
+ properties: {
2891
+ workspaceId: {
2892
+ type: string;
2893
+ description: string;
2894
+ };
2895
+ dirId: {
2896
+ type: string;
2897
+ description: string;
2898
+ };
2899
+ };
2900
+ required: string[];
2901
+ };
2902
+ get schema(): {
2903
+ name: string;
2904
+ description: string;
2905
+ inputSchema: {
2906
+ type: string;
2907
+ properties: {
2908
+ workspaceId: {
2909
+ type: string;
2910
+ description: string;
2911
+ };
2912
+ dirId: {
2913
+ type: string;
2914
+ description: string;
2915
+ };
2916
+ };
2917
+ required: string[];
2918
+ };
2919
+ };
2920
+ handle(params: any): Promise<{
2921
+ content: {
2922
+ type: string;
2923
+ text: string;
2924
+ }[];
2925
+ }>;
2926
+ }
2927
+ declare class ListLabels {
2928
+ name: string;
2929
+ description: string;
2930
+ inputSchema: {
2931
+ type: string;
2932
+ properties: {
2933
+ workspaceId: {
2934
+ type: string;
2935
+ description: string;
2936
+ };
2937
+ };
2938
+ required: string[];
2939
+ };
2940
+ get schema(): {
2941
+ name: string;
2942
+ description: string;
2943
+ inputSchema: {
2944
+ type: string;
2945
+ properties: {
2946
+ workspaceId: {
2947
+ type: string;
2948
+ description: string;
2949
+ };
2950
+ };
2951
+ required: string[];
2952
+ };
2953
+ };
2954
+ handle(params: any): Promise<{
2955
+ content: {
2956
+ type: string;
2957
+ text: string;
2958
+ }[];
2959
+ }>;
2960
+ }
2961
+ declare class GetConnectionInfo {
2962
+ name: string;
2963
+ description: string;
2964
+ inputSchema: {
2965
+ type: string;
2966
+ properties: {
2967
+ dirIds: {
2968
+ type: string;
2969
+ items: {
2970
+ type: string;
2971
+ };
2972
+ description: string;
2973
+ };
2974
+ };
2975
+ };
2976
+ get schema(): {
2977
+ name: string;
2978
+ description: string;
2979
+ inputSchema: {
2980
+ type: string;
2981
+ properties: {
2982
+ dirIds: {
2983
+ type: string;
2984
+ items: {
2985
+ type: string;
2986
+ };
2987
+ description: string;
2988
+ };
2989
+ };
2990
+ };
2991
+ };
2992
+ handle(params: any): Promise<{
2993
+ content: {
2994
+ type: string;
2995
+ text: string;
2996
+ }[];
2997
+ }>;
2998
+ }
2999
+ export declare const openBrowser: OpenBrowser;
3000
+ export declare const updateBrowser: UpdateBrowser;
3001
+ export declare const listBrowsers: ListBrowsers;
3002
+ export declare const closeBrowsers: CloseBrowsers;
3003
+ export declare const deleteBrowsers: DeleteBrowsers;
3004
+ export declare const getBrowserDetail: GetBrowserDetail;
3005
+ export declare const clearLocalCache: ClearLocalCache;
3006
+ export declare const clearServerCache: ClearServerCache;
3007
+ export declare const randomFingerprint: RandomFingerprint;
3008
+ export declare const listLabels: ListLabels;
3009
+ export declare const getConnectionInfo: GetConnectionInfo;
3010
+ export {};
3011
+ //# sourceMappingURL=browser.d.ts.map