@onkernel/sdk 0.43.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/resources/auth/auth.d.mts +2 -2
- package/resources/auth/auth.d.mts.map +1 -1
- package/resources/auth/auth.d.ts +2 -2
- package/resources/auth/auth.d.ts.map +1 -1
- package/resources/auth/auth.js.map +1 -1
- package/resources/auth/auth.mjs.map +1 -1
- package/resources/auth/connections.d.mts +233 -7
- package/resources/auth/connections.d.mts.map +1 -1
- package/resources/auth/connections.d.ts +233 -7
- package/resources/auth/connections.d.ts.map +1 -1
- package/resources/auth/connections.js +14 -0
- package/resources/auth/connections.js.map +1 -1
- package/resources/auth/connections.mjs +14 -0
- package/resources/auth/connections.mjs.map +1 -1
- package/resources/auth/index.d.mts +1 -1
- package/resources/auth/index.d.mts.map +1 -1
- package/resources/auth/index.d.ts +1 -1
- package/resources/auth/index.d.ts.map +1 -1
- package/resources/auth/index.js.map +1 -1
- package/resources/auth/index.mjs.map +1 -1
- package/resources/browser-pools.d.mts +30 -13
- package/resources/browser-pools.d.mts.map +1 -1
- package/resources/browser-pools.d.ts +30 -13
- package/resources/browser-pools.d.ts.map +1 -1
- package/resources/browsers/browsers.d.mts +45 -21
- package/resources/browsers/browsers.d.mts.map +1 -1
- package/resources/browsers/browsers.d.ts +45 -21
- package/resources/browsers/browsers.d.ts.map +1 -1
- package/resources/browsers/browsers.js.map +1 -1
- package/resources/browsers/browsers.mjs.map +1 -1
- package/resources/browsers/computer.d.mts +28 -4
- package/resources/browsers/computer.d.mts.map +1 -1
- package/resources/browsers/computer.d.ts +28 -4
- package/resources/browsers/computer.d.ts.map +1 -1
- package/resources/invocations.d.mts +9 -4
- package/resources/invocations.d.mts.map +1 -1
- package/resources/invocations.d.ts +9 -4
- package/resources/invocations.d.ts.map +1 -1
- package/resources/shared.d.mts +7 -3
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +7 -3
- package/resources/shared.d.ts.map +1 -1
- package/src/resources/auth/auth.ts +4 -0
- package/src/resources/auth/connections.ts +273 -6
- package/src/resources/auth/index.ts +2 -0
- package/src/resources/browser-pools.ts +30 -13
- package/src/resources/browsers/browsers.ts +45 -21
- package/src/resources/browsers/computer.ts +32 -4
- package/src/resources/invocations.ts +9 -4
- package/src/resources/shared.ts +7 -3
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -243,9 +243,13 @@ export namespace BrowserPool {
|
|
|
243
243
|
|
|
244
244
|
/**
|
|
245
245
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
246
|
-
* image defaults apply (1920x1080@25).
|
|
247
|
-
*
|
|
248
|
-
*
|
|
246
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
247
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
248
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
249
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
250
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
251
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
252
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
249
253
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
250
254
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
251
255
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -305,7 +309,8 @@ export interface BrowserPoolAcquireResponse {
|
|
|
305
309
|
deleted_at?: string;
|
|
306
310
|
|
|
307
311
|
/**
|
|
308
|
-
* Whether the browser session
|
|
312
|
+
* Whether GPU acceleration is enabled for the browser session (only supported for
|
|
313
|
+
* headful sessions).
|
|
309
314
|
*/
|
|
310
315
|
gpu?: boolean;
|
|
311
316
|
|
|
@@ -342,9 +347,13 @@ export interface BrowserPoolAcquireResponse {
|
|
|
342
347
|
|
|
343
348
|
/**
|
|
344
349
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
345
|
-
* image defaults apply (1920x1080@25).
|
|
346
|
-
*
|
|
347
|
-
*
|
|
350
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
351
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
352
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
353
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
354
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
355
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
356
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
348
357
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
349
358
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
350
359
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -414,9 +423,13 @@ export interface BrowserPoolCreateParams {
|
|
|
414
423
|
|
|
415
424
|
/**
|
|
416
425
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
417
|
-
* image defaults apply (1920x1080@25).
|
|
418
|
-
*
|
|
419
|
-
*
|
|
426
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
427
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
428
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
429
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
430
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
431
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
432
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
420
433
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
421
434
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
422
435
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -492,9 +505,13 @@ export interface BrowserPoolUpdateParams {
|
|
|
492
505
|
|
|
493
506
|
/**
|
|
494
507
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
495
|
-
* image defaults apply (1920x1080@25).
|
|
496
|
-
*
|
|
497
|
-
*
|
|
508
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
509
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
510
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
511
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
512
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
513
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
514
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
498
515
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
499
516
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
500
517
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -330,7 +330,8 @@ export interface BrowserCreateResponse {
|
|
|
330
330
|
deleted_at?: string;
|
|
331
331
|
|
|
332
332
|
/**
|
|
333
|
-
* Whether the browser session
|
|
333
|
+
* Whether GPU acceleration is enabled for the browser session (only supported for
|
|
334
|
+
* headful sessions).
|
|
334
335
|
*/
|
|
335
336
|
gpu?: boolean;
|
|
336
337
|
|
|
@@ -367,9 +368,13 @@ export interface BrowserCreateResponse {
|
|
|
367
368
|
|
|
368
369
|
/**
|
|
369
370
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
370
|
-
* image defaults apply (1920x1080@25).
|
|
371
|
-
*
|
|
372
|
-
*
|
|
371
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
372
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
373
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
374
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
375
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
376
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
377
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
373
378
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
374
379
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
375
380
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -426,7 +431,8 @@ export interface BrowserRetrieveResponse {
|
|
|
426
431
|
deleted_at?: string;
|
|
427
432
|
|
|
428
433
|
/**
|
|
429
|
-
* Whether the browser session
|
|
434
|
+
* Whether GPU acceleration is enabled for the browser session (only supported for
|
|
435
|
+
* headful sessions).
|
|
430
436
|
*/
|
|
431
437
|
gpu?: boolean;
|
|
432
438
|
|
|
@@ -463,9 +469,13 @@ export interface BrowserRetrieveResponse {
|
|
|
463
469
|
|
|
464
470
|
/**
|
|
465
471
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
466
|
-
* image defaults apply (1920x1080@25).
|
|
467
|
-
*
|
|
468
|
-
*
|
|
472
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
473
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
474
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
475
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
476
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
477
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
478
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
469
479
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
470
480
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
471
481
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -522,7 +532,8 @@ export interface BrowserUpdateResponse {
|
|
|
522
532
|
deleted_at?: string;
|
|
523
533
|
|
|
524
534
|
/**
|
|
525
|
-
* Whether the browser session
|
|
535
|
+
* Whether GPU acceleration is enabled for the browser session (only supported for
|
|
536
|
+
* headful sessions).
|
|
526
537
|
*/
|
|
527
538
|
gpu?: boolean;
|
|
528
539
|
|
|
@@ -559,9 +570,13 @@ export interface BrowserUpdateResponse {
|
|
|
559
570
|
|
|
560
571
|
/**
|
|
561
572
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
562
|
-
* image defaults apply (1920x1080@25).
|
|
563
|
-
*
|
|
564
|
-
*
|
|
573
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
574
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
575
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
576
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
577
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
578
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
579
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
565
580
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
566
581
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
567
582
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -618,7 +633,8 @@ export interface BrowserListResponse {
|
|
|
618
633
|
deleted_at?: string;
|
|
619
634
|
|
|
620
635
|
/**
|
|
621
|
-
* Whether the browser session
|
|
636
|
+
* Whether GPU acceleration is enabled for the browser session (only supported for
|
|
637
|
+
* headful sessions).
|
|
622
638
|
*/
|
|
623
639
|
gpu?: boolean;
|
|
624
640
|
|
|
@@ -655,9 +671,13 @@ export interface BrowserListResponse {
|
|
|
655
671
|
|
|
656
672
|
/**
|
|
657
673
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
658
|
-
* image defaults apply (1920x1080@25).
|
|
659
|
-
*
|
|
660
|
-
*
|
|
674
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
675
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
676
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
677
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
678
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
679
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
680
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
661
681
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
662
682
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
663
683
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -673,8 +693,8 @@ export interface BrowserCreateParams {
|
|
|
673
693
|
extensions?: Array<Shared.BrowserExtension>;
|
|
674
694
|
|
|
675
695
|
/**
|
|
676
|
-
* If true,
|
|
677
|
-
*
|
|
696
|
+
* If true, enables GPU acceleration for the browser session. Requires Start-Up or
|
|
697
|
+
* Enterprise plan and headless=false.
|
|
678
698
|
*/
|
|
679
699
|
gpu?: boolean;
|
|
680
700
|
|
|
@@ -731,9 +751,13 @@ export interface BrowserCreateParams {
|
|
|
731
751
|
|
|
732
752
|
/**
|
|
733
753
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
734
|
-
* image defaults apply (1920x1080@25).
|
|
735
|
-
*
|
|
736
|
-
*
|
|
754
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
755
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
756
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
757
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
758
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
759
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
760
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
737
761
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
738
762
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
739
763
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
|
@@ -353,11 +353,23 @@ export namespace ComputerBatchParams {
|
|
|
353
353
|
*/
|
|
354
354
|
delay?: number;
|
|
355
355
|
|
|
356
|
+
/**
|
|
357
|
+
* Target total duration in milliseconds for the entire drag movement when
|
|
358
|
+
* smooth=true. Omit for automatic timing based on total path length.
|
|
359
|
+
*/
|
|
360
|
+
duration_ms?: number;
|
|
361
|
+
|
|
356
362
|
/**
|
|
357
363
|
* Modifier keys to hold during the drag
|
|
358
364
|
*/
|
|
359
365
|
hold_keys?: Array<string>;
|
|
360
366
|
|
|
367
|
+
/**
|
|
368
|
+
* Use human-like Bezier curves between path waypoints instead of linear
|
|
369
|
+
* interpolation. When true, steps_per_segment and step_delay_ms are ignored.
|
|
370
|
+
*/
|
|
371
|
+
smooth?: boolean;
|
|
372
|
+
|
|
361
373
|
/**
|
|
362
374
|
* Delay in milliseconds between relative steps while dragging (not the initial
|
|
363
375
|
* delay).
|
|
@@ -431,12 +443,14 @@ export namespace ComputerBatchParams {
|
|
|
431
443
|
y: number;
|
|
432
444
|
|
|
433
445
|
/**
|
|
434
|
-
* Horizontal scroll amount. Positive scrolls right,
|
|
446
|
+
* Horizontal scroll amount in xdotool "wheel units." Positive scrolls right,
|
|
447
|
+
* negative scrolls left.
|
|
435
448
|
*/
|
|
436
449
|
delta_x?: number;
|
|
437
450
|
|
|
438
451
|
/**
|
|
439
|
-
* Vertical scroll amount. Positive scrolls down, negative
|
|
452
|
+
* Vertical scroll amount in xdotool "wheel units." Positive scrolls down, negative
|
|
453
|
+
* scrolls up.
|
|
440
454
|
*/
|
|
441
455
|
delta_y?: number;
|
|
442
456
|
|
|
@@ -554,11 +568,23 @@ export interface ComputerDragMouseParams {
|
|
|
554
568
|
*/
|
|
555
569
|
delay?: number;
|
|
556
570
|
|
|
571
|
+
/**
|
|
572
|
+
* Target total duration in milliseconds for the entire drag movement when
|
|
573
|
+
* smooth=true. Omit for automatic timing based on total path length.
|
|
574
|
+
*/
|
|
575
|
+
duration_ms?: number;
|
|
576
|
+
|
|
557
577
|
/**
|
|
558
578
|
* Modifier keys to hold during the drag
|
|
559
579
|
*/
|
|
560
580
|
hold_keys?: Array<string>;
|
|
561
581
|
|
|
582
|
+
/**
|
|
583
|
+
* Use human-like Bezier curves between path waypoints instead of linear
|
|
584
|
+
* interpolation. When true, steps_per_segment and step_delay_ms are ignored.
|
|
585
|
+
*/
|
|
586
|
+
smooth?: boolean;
|
|
587
|
+
|
|
562
588
|
/**
|
|
563
589
|
* Delay in milliseconds between relative steps while dragging (not the initial
|
|
564
590
|
* delay).
|
|
@@ -632,12 +658,14 @@ export interface ComputerScrollParams {
|
|
|
632
658
|
y: number;
|
|
633
659
|
|
|
634
660
|
/**
|
|
635
|
-
* Horizontal scroll amount. Positive scrolls right,
|
|
661
|
+
* Horizontal scroll amount in xdotool "wheel units." Positive scrolls right,
|
|
662
|
+
* negative scrolls left.
|
|
636
663
|
*/
|
|
637
664
|
delta_x?: number;
|
|
638
665
|
|
|
639
666
|
/**
|
|
640
|
-
* Vertical scroll amount. Positive scrolls down, negative
|
|
667
|
+
* Vertical scroll amount in xdotool "wheel units." Positive scrolls down, negative
|
|
668
|
+
* scrolls up.
|
|
641
669
|
*/
|
|
642
670
|
delta_y?: number;
|
|
643
671
|
|
|
@@ -465,7 +465,8 @@ export namespace InvocationListBrowsersResponse {
|
|
|
465
465
|
deleted_at?: string;
|
|
466
466
|
|
|
467
467
|
/**
|
|
468
|
-
* Whether the browser session
|
|
468
|
+
* Whether GPU acceleration is enabled for the browser session (only supported for
|
|
469
|
+
* headful sessions).
|
|
469
470
|
*/
|
|
470
471
|
gpu?: boolean;
|
|
471
472
|
|
|
@@ -502,9 +503,13 @@ export namespace InvocationListBrowsersResponse {
|
|
|
502
503
|
|
|
503
504
|
/**
|
|
504
505
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
505
|
-
* image defaults apply (1920x1080@25).
|
|
506
|
-
*
|
|
507
|
-
*
|
|
506
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
507
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
508
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
509
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
510
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
511
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
512
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
508
513
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
509
514
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
510
515
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
package/src/resources/shared.ts
CHANGED
|
@@ -65,9 +65,13 @@ export interface BrowserProfile {
|
|
|
65
65
|
|
|
66
66
|
/**
|
|
67
67
|
* Initial browser window size in pixels with optional refresh rate. If omitted,
|
|
68
|
-
* image defaults apply (1920x1080@25).
|
|
69
|
-
*
|
|
70
|
-
*
|
|
68
|
+
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
69
|
+
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
70
|
+
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
71
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
|
|
72
|
+
* presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
|
|
73
|
+
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
|
|
74
|
+
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
|
|
71
75
|
* Viewports outside this list may exhibit unstable live view or recording
|
|
72
76
|
* behavior. If refresh_rate is not provided, it will be automatically determined
|
|
73
77
|
* based on the resolution (higher resolutions use lower refresh rates to keep
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.44.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.44.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.44.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.44.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|