@onkernel/sdk 0.73.0 → 0.75.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/package.json +1 -1
  3. package/resources/api-keys.d.mts +2 -1
  4. package/resources/api-keys.d.mts.map +1 -1
  5. package/resources/api-keys.d.ts +2 -1
  6. package/resources/api-keys.d.ts.map +1 -1
  7. package/resources/api-keys.js +2 -1
  8. package/resources/api-keys.js.map +1 -1
  9. package/resources/api-keys.mjs +2 -1
  10. package/resources/api-keys.mjs.map +1 -1
  11. package/resources/apps.d.mts +3 -1
  12. package/resources/apps.d.mts.map +1 -1
  13. package/resources/apps.d.ts +3 -1
  14. package/resources/apps.d.ts.map +1 -1
  15. package/resources/browser-pools.d.mts +107 -72
  16. package/resources/browser-pools.d.mts.map +1 -1
  17. package/resources/browser-pools.d.ts +107 -72
  18. package/resources/browser-pools.d.ts.map +1 -1
  19. package/resources/browser-pools.js +3 -1
  20. package/resources/browser-pools.js.map +1 -1
  21. package/resources/browser-pools.mjs +3 -1
  22. package/resources/browser-pools.mjs.map +1 -1
  23. package/resources/browsers/browsers.d.mts +40 -40
  24. package/resources/browsers/browsers.d.ts +40 -40
  25. package/resources/browsers/telemetry.d.mts +13 -4
  26. package/resources/browsers/telemetry.d.mts.map +1 -1
  27. package/resources/browsers/telemetry.d.ts +13 -4
  28. package/resources/browsers/telemetry.d.ts.map +1 -1
  29. package/resources/browsers/telemetry.js +4 -4
  30. package/resources/browsers/telemetry.mjs +4 -4
  31. package/resources/deployments.d.mts +14 -5
  32. package/resources/deployments.d.mts.map +1 -1
  33. package/resources/deployments.d.ts +14 -5
  34. package/resources/deployments.d.ts.map +1 -1
  35. package/resources/extensions.d.mts +24 -0
  36. package/resources/extensions.d.mts.map +1 -1
  37. package/resources/extensions.d.ts +24 -0
  38. package/resources/extensions.d.ts.map +1 -1
  39. package/resources/invocations.d.mts +8 -8
  40. package/resources/invocations.d.ts +8 -8
  41. package/resources/shared.d.mts +8 -8
  42. package/resources/shared.d.ts +8 -8
  43. package/src/resources/api-keys.ts +2 -1
  44. package/src/resources/apps.ts +3 -1
  45. package/src/resources/browser-pools.ts +112 -72
  46. package/src/resources/browsers/browsers.ts +40 -40
  47. package/src/resources/browsers/telemetry.ts +14 -4
  48. package/src/resources/deployments.ts +14 -5
  49. package/src/resources/extensions.ts +27 -0
  50. package/src/resources/invocations.ts +8 -8
  51. package/src/resources/shared.ts +8 -8
  52. package/src/version.ts +1 -1
  53. package/version.d.mts +1 -1
  54. package/version.d.ts +1 -1
  55. package/version.js +1 -1
  56. package/version.mjs +1 -1
@@ -37,7 +37,9 @@ export declare class BrowserPools extends APIResource {
37
37
  /**
38
38
  * Updates the configuration used to create browsers in the pool. As with creation,
39
39
  * save_changes on the pool profile is ignored (not rejected); pooled browsers
40
- * never persist changes back to the profile.
40
+ * never persist changes back to the profile. To clear the profile reference, send
41
+ * `profile: { "id": "" }`. Clearing the profile also disables
42
+ * `refresh_on_profile_update`.
41
43
  *
42
44
  * @example
43
45
  * ```ts
@@ -129,10 +131,24 @@ export interface BrowserPool {
129
131
  * Timestamp when the browser pool was created
130
132
  */
131
133
  created_at: string;
134
+ /**
135
+ * Resolved extension IDs attached to the pool, in configured load order. Empty
136
+ * when no extensions are attached. Authoritative for programmatic consumers; the
137
+ * extensions inside `browser_pool_config` reflect the configured selector (echoed
138
+ * as sent on create).
139
+ */
140
+ extension_ids: Array<string>;
132
141
  /**
133
142
  * Browser pool name, if set
134
143
  */
135
144
  name?: string;
145
+ /**
146
+ * Resolved profile ID the pool is attached to. Omitted when no profile is
147
+ * attached. Authoritative for programmatic consumers; the profile inside
148
+ * `browser_pool_config` reflects the configured selector (echoed as sent on
149
+ * create).
150
+ */
151
+ profile_id?: string;
136
152
  }
137
153
  export declare namespace BrowserPool {
138
154
  /**
@@ -178,12 +194,11 @@ export declare namespace BrowserPool {
178
194
  */
179
195
  name?: string;
180
196
  /**
181
- * Profile selection for browsers in a pool. Provide either id or name. The
182
- * matching profile is loaded into every browser in the pool. Profiles must be
183
- * created beforehand. Unlike single browser sessions, pools load the profile
184
- * read-only and never persist changes back to it, so save_changes is omitted here.
185
- * Any save_changes value sent on a pool profile is silently ignored rather than
186
- * rejected, so callers reusing a single-session profile object will not error.
197
+ * Profile configuration for browsers in a pool. Provide either id or name.
198
+ * Profiles must be created beforehand. Unlike single browser sessions, pools load
199
+ * the profile read-only and never persist changes back to it, so save_changes is
200
+ * omitted here. Any save_changes value sent on a pool profile is silently ignored
201
+ * rather than rejected.
187
202
  */
188
203
  profile?: BrowserPoolConfig.Profile;
189
204
  /**
@@ -191,6 +206,12 @@ export declare namespace BrowserPool {
191
206
  * the same project as the browser session.
192
207
  */
193
208
  proxy_id?: string;
209
+ /**
210
+ * When true, flush idle browsers when the profile the pool uses is updated, so
211
+ * pool browsers pick up the latest profile data. Requires a profile to be set on
212
+ * the pool.
213
+ */
214
+ refresh_on_profile_update?: boolean;
194
215
  /**
195
216
  * Optional URL to navigate to when a new browser is warmed into the pool.
196
217
  * Best-effort: failures to navigate do not fail pool fill. Only applied to
@@ -214,25 +235,24 @@ export declare namespace BrowserPool {
214
235
  * image defaults apply (1920x1080@25). For GPU images, the default is
215
236
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
216
237
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
217
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
218
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
219
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
220
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
221
- * Viewports outside this list may exhibit unstable live view or recording
222
- * behavior. If refresh_rate is not provided, it will be automatically determined
223
- * based on the resolution (higher resolutions use lower refresh rates to keep
224
- * bandwidth reasonable).
238
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
239
+ * GPU images, recommended presets use one of these resolutions with refresh rates
240
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
241
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
242
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
243
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
244
+ * determined based on the resolution (higher resolutions use lower refresh rates
245
+ * to keep bandwidth reasonable).
225
246
  */
226
247
  viewport?: Shared.BrowserViewport;
227
248
  }
228
249
  namespace BrowserPoolConfig {
229
250
  /**
230
- * Profile selection for browsers in a pool. Provide either id or name. The
231
- * matching profile is loaded into every browser in the pool. Profiles must be
232
- * created beforehand. Unlike single browser sessions, pools load the profile
233
- * read-only and never persist changes back to it, so save_changes is omitted here.
234
- * Any save_changes value sent on a pool profile is silently ignored rather than
235
- * rejected, so callers reusing a single-session profile object will not error.
251
+ * Profile configuration for browsers in a pool. Provide either id or name.
252
+ * Profiles must be created beforehand. Unlike single browser sessions, pools load
253
+ * the profile read-only and never persist changes back to it, so save_changes is
254
+ * omitted here. Any save_changes value sent on a pool profile is silently ignored
255
+ * rather than rejected.
236
256
  */
237
257
  interface Profile {
238
258
  /**
@@ -348,14 +368,14 @@ export interface BrowserPoolAcquireResponse {
348
368
  * image defaults apply (1920x1080@25). For GPU images, the default is
349
369
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
350
370
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
351
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
352
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
353
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
354
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
355
- * Viewports outside this list may exhibit unstable live view or recording
356
- * behavior. If refresh_rate is not provided, it will be automatically determined
357
- * based on the resolution (higher resolutions use lower refresh rates to keep
358
- * bandwidth reasonable).
371
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
372
+ * GPU images, recommended presets use one of these resolutions with refresh rates
373
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
374
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
375
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
376
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
377
+ * determined based on the resolution (higher resolutions use lower refresh rates
378
+ * to keep bandwidth reasonable).
359
379
  */
360
380
  viewport?: Shared.BrowserViewport;
361
381
  }
@@ -399,12 +419,11 @@ export interface BrowserPoolCreateParams {
399
419
  */
400
420
  name?: string;
401
421
  /**
402
- * Profile selection for browsers in a pool. Provide either id or name. The
403
- * matching profile is loaded into every browser in the pool. Profiles must be
404
- * created beforehand. Unlike single browser sessions, pools load the profile
405
- * read-only and never persist changes back to it, so save_changes is omitted here.
406
- * Any save_changes value sent on a pool profile is silently ignored rather than
407
- * rejected, so callers reusing a single-session profile object will not error.
422
+ * Profile configuration for browsers in a pool. Provide either id or name.
423
+ * Profiles must be created beforehand. Unlike single browser sessions, pools load
424
+ * the profile read-only and never persist changes back to it, so save_changes is
425
+ * omitted here. Any save_changes value sent on a pool profile is silently ignored
426
+ * rather than rejected.
408
427
  */
409
428
  profile?: BrowserPoolCreateParams.Profile;
410
429
  /**
@@ -412,6 +431,12 @@ export interface BrowserPoolCreateParams {
412
431
  * the same project as the browser session.
413
432
  */
414
433
  proxy_id?: string;
434
+ /**
435
+ * When true, flush idle browsers when the profile the pool uses is updated, so
436
+ * pool browsers pick up the latest profile data. Requires a profile to be set on
437
+ * the pool.
438
+ */
439
+ refresh_on_profile_update?: boolean;
415
440
  /**
416
441
  * Optional URL to navigate to when a new browser is warmed into the pool.
417
442
  * Best-effort: failures to navigate do not fail pool fill. Only applied to
@@ -435,25 +460,24 @@ export interface BrowserPoolCreateParams {
435
460
  * image defaults apply (1920x1080@25). For GPU images, the default is
436
461
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
437
462
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
438
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
439
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
440
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
441
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
442
- * Viewports outside this list may exhibit unstable live view or recording
443
- * behavior. If refresh_rate is not provided, it will be automatically determined
444
- * based on the resolution (higher resolutions use lower refresh rates to keep
445
- * bandwidth reasonable).
463
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
464
+ * GPU images, recommended presets use one of these resolutions with refresh rates
465
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
466
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
467
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
468
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
469
+ * determined based on the resolution (higher resolutions use lower refresh rates
470
+ * to keep bandwidth reasonable).
446
471
  */
447
472
  viewport?: Shared.BrowserViewport;
448
473
  }
449
474
  export declare namespace BrowserPoolCreateParams {
450
475
  /**
451
- * Profile selection for browsers in a pool. Provide either id or name. The
452
- * matching profile is loaded into every browser in the pool. Profiles must be
453
- * created beforehand. Unlike single browser sessions, pools load the profile
454
- * read-only and never persist changes back to it, so save_changes is omitted here.
455
- * Any save_changes value sent on a pool profile is silently ignored rather than
456
- * rejected, so callers reusing a single-session profile object will not error.
476
+ * Profile configuration for browsers in a pool. Provide either id or name.
477
+ * Profiles must be created beforehand. Unlike single browser sessions, pools load
478
+ * the profile read-only and never persist changes back to it, so save_changes is
479
+ * omitted here. Any save_changes value sent on a pool profile is silently ignored
480
+ * rather than rejected.
457
481
  */
458
482
  interface Profile {
459
483
  /**
@@ -478,8 +502,12 @@ export interface BrowserPoolUpdateParams {
478
502
  [key: string]: unknown;
479
503
  };
480
504
  /**
481
- * Whether to discard all idle browsers and rebuild the pool immediately. Defaults
482
- * to false.
505
+ * Whether to discard all idle browsers and rebuild them immediately with the new
506
+ * configuration. Defaults to false. Only browsers that are idle when the update
507
+ * runs are rebuilt. A browser that is in use during the update keeps its original
508
+ * configuration, and if it is later released with `reuse: true` it returns to the
509
+ * pool with that stale configuration until it is discarded (by this flag on a
510
+ * later update, or by flushing the pool).
483
511
  */
484
512
  discard_all_idle?: boolean;
485
513
  /**
@@ -506,12 +534,11 @@ export interface BrowserPoolUpdateParams {
506
534
  */
507
535
  name?: string;
508
536
  /**
509
- * Profile selection for browsers in a pool. Provide either id or name. The
510
- * matching profile is loaded into every browser in the pool. Profiles must be
511
- * created beforehand. Unlike single browser sessions, pools load the profile
512
- * read-only and never persist changes back to it, so save_changes is omitted here.
513
- * Any save_changes value sent on a pool profile is silently ignored rather than
514
- * rejected, so callers reusing a single-session profile object will not error.
537
+ * Profile configuration for browsers in a pool. Provide either id or name.
538
+ * Profiles must be created beforehand. Unlike single browser sessions, pools load
539
+ * the profile read-only and never persist changes back to it, so save_changes is
540
+ * omitted here. Any save_changes value sent on a pool profile is silently ignored
541
+ * rather than rejected.
515
542
  */
516
543
  profile?: BrowserPoolUpdateParams.Profile;
517
544
  /**
@@ -519,6 +546,12 @@ export interface BrowserPoolUpdateParams {
519
546
  * the same project as the browser session.
520
547
  */
521
548
  proxy_id?: string;
549
+ /**
550
+ * When true, flush idle browsers when the profile the pool uses is updated, so
551
+ * pool browsers pick up the latest profile data. Requires a profile to be set on
552
+ * the pool.
553
+ */
554
+ refresh_on_profile_update?: boolean;
522
555
  /**
523
556
  * Number of browsers to maintain in the pool. The maximum size is determined by
524
557
  * your organization's pooled sessions limit (the sum of all pool sizes cannot
@@ -548,25 +581,24 @@ export interface BrowserPoolUpdateParams {
548
581
  * image defaults apply (1920x1080@25). For GPU images, the default is
549
582
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
550
583
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
551
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
552
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
553
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
554
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
555
- * Viewports outside this list may exhibit unstable live view or recording
556
- * behavior. If refresh_rate is not provided, it will be automatically determined
557
- * based on the resolution (higher resolutions use lower refresh rates to keep
558
- * bandwidth reasonable).
584
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
585
+ * GPU images, recommended presets use one of these resolutions with refresh rates
586
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
587
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
588
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
589
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
590
+ * determined based on the resolution (higher resolutions use lower refresh rates
591
+ * to keep bandwidth reasonable).
559
592
  */
560
593
  viewport?: Shared.BrowserViewport;
561
594
  }
562
595
  export declare namespace BrowserPoolUpdateParams {
563
596
  /**
564
- * Profile selection for browsers in a pool. Provide either id or name. The
565
- * matching profile is loaded into every browser in the pool. Profiles must be
566
- * created beforehand. Unlike single browser sessions, pools load the profile
567
- * read-only and never persist changes back to it, so save_changes is omitted here.
568
- * Any save_changes value sent on a pool profile is silently ignored rather than
569
- * rejected, so callers reusing a single-session profile object will not error.
597
+ * Profile configuration for browsers in a pool. Provide either id or name.
598
+ * Profiles must be created beforehand. Unlike single browser sessions, pools load
599
+ * the profile read-only and never persist changes back to it, so save_changes is
600
+ * omitted here. Any save_changes value sent on a pool profile is silently ignored
601
+ * rather than rejected.
570
602
  */
571
603
  interface Profile {
572
604
  /**
@@ -627,7 +659,10 @@ export interface BrowserPoolReleaseParams {
627
659
  session_id: string;
628
660
  /**
629
661
  * Whether to reuse the browser instance or destroy it and create a new one.
630
- * Defaults to true.
662
+ * Defaults to true. A reused browser keeps the configuration it was created with,
663
+ * so it does not pick up pool configuration changes made while it was in use.
664
+ * Release with `reuse: false`, or flush the pool afterward, to rebuild it with the
665
+ * current configuration.
631
666
  */
632
667
  reuse?: boolean;
633
668
  }
@@ -1 +1 @@
1
- {"version":3,"file":"browser-pools.d.ts","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"browser-pools.d.ts","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":"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"}
@@ -42,7 +42,9 @@ class BrowserPools extends resource_1.APIResource {
42
42
  /**
43
43
  * Updates the configuration used to create browsers in the pool. As with creation,
44
44
  * save_changes on the pool profile is ignored (not rejected); pooled browsers
45
- * never persist changes back to the profile.
45
+ * never persist changes back to the profile. To clear the profile reference, send
46
+ * `profile: { "id": "" }`. Clearing the profile also disables
47
+ * `refresh_on_profile_update`.
46
48
  *
47
49
  * @example
48
50
  * ```ts
@@ -1 +1 @@
1
- {"version":3,"file":"browser-pools.js","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAK/C,sDAAgG;AAChG,oDAAmD;AAEnD,oDAA8C;AAE9C;;GAEG;AACH,MAAa,YAAa,SAAQ,sBAAW;IAC3C;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAA6B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACnE,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAgB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAC;IACrE,CAAC;IAED;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,QAAgB,EAAE,IAA6B,EAAE,OAAwB;QAC9E,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpF,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAAkD,EAAE,EACpD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAA,6BAA6B,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACzG,CAAC;IAED;;;;;;;;OAQG;IACH,MAAM,CACJ,QAAgB,EAChB,OAAmD,EAAE,EACrD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,EAAE,EAAE;YAC3D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,OAAO,CACL,QAAgB,EAChB,IAA8B,EAC9B,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,UAAU,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3F,CAAC;IAED;;;;;;;OAOG;IACH,KAAK,CAAC,QAAgB,EAAE,OAAwB;QAC9C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,QAAQ,EAAE;YAC/D,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;OASG;IACH,OAAO,CAAC,QAAgB,EAAE,IAA8B,EAAE,OAAwB;QAChF,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,UAAU,EAAE;YACjE,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AA5ID,oCA4IC"}
1
+ {"version":3,"file":"browser-pools.js","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAK/C,sDAAgG;AAChG,oDAAmD;AAEnD,oDAA8C;AAE9C;;GAEG;AACH,MAAa,YAAa,SAAQ,sBAAW;IAC3C;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAA6B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACnE,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAgB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAC;IACrE,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,QAAgB,EAAE,IAA6B,EAAE,OAAwB;QAC9E,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpF,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAAkD,EAAE,EACpD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAA,6BAA6B,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACzG,CAAC;IAED;;;;;;;;OAQG;IACH,MAAM,CACJ,QAAgB,EAChB,OAAmD,EAAE,EACrD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,EAAE,EAAE;YAC3D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,OAAO,CACL,QAAgB,EAChB,IAA8B,EAC9B,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,UAAU,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3F,CAAC;IAED;;;;;;;OAOG;IACH,KAAK,CAAC,QAAgB,EAAE,OAAwB;QAC9C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,QAAQ,EAAE;YAC/D,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;OASG;IACH,OAAO,CAAC,QAAgB,EAAE,IAA8B,EAAE,OAAwB;QAChF,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,kBAAkB,QAAQ,UAAU,EAAE;YACjE,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AA9ID,oCA8IC"}
@@ -39,7 +39,9 @@ export class BrowserPools extends APIResource {
39
39
  /**
40
40
  * Updates the configuration used to create browsers in the pool. As with creation,
41
41
  * save_changes on the pool profile is ignored (not rejected); pooled browsers
42
- * never persist changes back to the profile.
42
+ * never persist changes back to the profile. To clear the profile reference, send
43
+ * `profile: { "id": "" }`. Clearing the profile also disables
44
+ * `refresh_on_profile_update`.
43
45
  *
44
46
  * @example
45
47
  * ```ts
@@ -1 +1 @@
1
- {"version":3,"file":"browser-pools.mjs","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAK/C,OAAO,EAAE,gBAAgB,EAA4C,+BAA2B;AAChG,OAAO,EAAE,YAAY,EAAE,gCAA4B;AAEnD,OAAO,EAAE,IAAI,EAAE,mCAA+B;AAE9C;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,WAAW;IAC3C;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAA6B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACnE,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAgB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,kBAAkB,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAC;IACrE,CAAC;IAED;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,QAAgB,EAAE,IAA6B,EAAE,OAAwB;QAC9E,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,kBAAkB,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpF,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAAkD,EAAE,EACpD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAA,gBAA6B,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACzG,CAAC;IAED;;;;;;;;OAQG;IACH,MAAM,CACJ,QAAgB,EAChB,OAAmD,EAAE,EACrD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,kBAAkB,QAAQ,EAAE,EAAE;YAC3D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,OAAO,CACL,QAAgB,EAChB,IAA8B,EAC9B,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,kBAAkB,QAAQ,UAAU,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3F,CAAC;IAED;;;;;;;OAOG;IACH,KAAK,CAAC,QAAgB,EAAE,OAAwB;QAC9C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,kBAAkB,QAAQ,QAAQ,EAAE;YAC/D,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;OASG;IACH,OAAO,CAAC,QAAgB,EAAE,IAA8B,EAAE,OAAwB;QAChF,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,kBAAkB,QAAQ,UAAU,EAAE;YACjE,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF"}
1
+ {"version":3,"file":"browser-pools.mjs","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAK/C,OAAO,EAAE,gBAAgB,EAA4C,+BAA2B;AAChG,OAAO,EAAE,YAAY,EAAE,gCAA4B;AAEnD,OAAO,EAAE,IAAI,EAAE,mCAA+B;AAE9C;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,WAAW;IAC3C;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,IAA6B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACnE,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAgB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,kBAAkB,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAC;IACrE,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,QAAgB,EAAE,IAA6B,EAAE,OAAwB;QAC9E,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,kBAAkB,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpF,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAAkD,EAAE,EACpD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAA,gBAA6B,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACzG,CAAC;IAED;;;;;;;;OAQG;IACH,MAAM,CACJ,QAAgB,EAChB,OAAmD,EAAE,EACrD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,kBAAkB,QAAQ,EAAE,EAAE;YAC3D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,OAAO,CACL,QAAgB,EAChB,IAA8B,EAC9B,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,kBAAkB,QAAQ,UAAU,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3F,CAAC;IAED;;;;;;;OAOG;IACH,KAAK,CAAC,QAAgB,EAAE,OAAwB;QAC9C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,kBAAkB,QAAQ,QAAQ,EAAE;YAC/D,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;OASG;IACH,OAAO,CAAC,QAAgB,EAAE,IAA8B,EAAE,OAAwB;QAChF,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,kBAAkB,QAAQ,UAAU,EAAE;YACjE,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF"}
@@ -278,14 +278,14 @@ export interface BrowserCreateResponse {
278
278
  * image defaults apply (1920x1080@25). For GPU images, the default is
279
279
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
280
280
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
281
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
282
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
283
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
284
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
285
- * Viewports outside this list may exhibit unstable live view or recording
286
- * behavior. If refresh_rate is not provided, it will be automatically determined
287
- * based on the resolution (higher resolutions use lower refresh rates to keep
288
- * bandwidth reasonable).
281
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
282
+ * GPU images, recommended presets use one of these resolutions with refresh rates
283
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
284
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
285
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
286
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
287
+ * determined based on the resolution (higher resolutions use lower refresh rates
288
+ * to keep bandwidth reasonable).
289
289
  */
290
290
  viewport?: Shared.BrowserViewport;
291
291
  }
@@ -390,14 +390,14 @@ export interface BrowserRetrieveResponse {
390
390
  * image defaults apply (1920x1080@25). For GPU images, the default is
391
391
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
392
392
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
393
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
394
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
395
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
396
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
397
- * Viewports outside this list may exhibit unstable live view or recording
398
- * behavior. If refresh_rate is not provided, it will be automatically determined
399
- * based on the resolution (higher resolutions use lower refresh rates to keep
400
- * bandwidth reasonable).
393
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
394
+ * GPU images, recommended presets use one of these resolutions with refresh rates
395
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
396
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
397
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
398
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
399
+ * determined based on the resolution (higher resolutions use lower refresh rates
400
+ * to keep bandwidth reasonable).
401
401
  */
402
402
  viewport?: Shared.BrowserViewport;
403
403
  }
@@ -502,14 +502,14 @@ export interface BrowserUpdateResponse {
502
502
  * image defaults apply (1920x1080@25). For GPU images, the default is
503
503
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
504
504
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
505
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
506
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
507
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
508
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
509
- * Viewports outside this list may exhibit unstable live view or recording
510
- * behavior. If refresh_rate is not provided, it will be automatically determined
511
- * based on the resolution (higher resolutions use lower refresh rates to keep
512
- * bandwidth reasonable).
505
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
506
+ * GPU images, recommended presets use one of these resolutions with refresh rates
507
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
508
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
509
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
510
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
511
+ * determined based on the resolution (higher resolutions use lower refresh rates
512
+ * to keep bandwidth reasonable).
513
513
  */
514
514
  viewport?: Shared.BrowserViewport;
515
515
  }
@@ -614,14 +614,14 @@ export interface BrowserListResponse {
614
614
  * image defaults apply (1920x1080@25). For GPU images, the default is
615
615
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
616
616
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
617
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
618
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
619
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
620
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
621
- * Viewports outside this list may exhibit unstable live view or recording
622
- * behavior. If refresh_rate is not provided, it will be automatically determined
623
- * based on the resolution (higher resolutions use lower refresh rates to keep
624
- * bandwidth reasonable).
617
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
618
+ * GPU images, recommended presets use one of these resolutions with refresh rates
619
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
620
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
621
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
622
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
623
+ * determined based on the resolution (higher resolutions use lower refresh rates
624
+ * to keep bandwidth reasonable).
625
625
  */
626
626
  viewport?: Shared.BrowserViewport;
627
627
  }
@@ -736,14 +736,14 @@ export interface BrowserCreateParams {
736
736
  * image defaults apply (1920x1080@25). For GPU images, the default is
737
737
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
738
738
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
739
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
740
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
741
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
742
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
743
- * Viewports outside this list may exhibit unstable live view or recording
744
- * behavior. If refresh_rate is not provided, it will be automatically determined
745
- * based on the resolution (higher resolutions use lower refresh rates to keep
746
- * bandwidth reasonable).
739
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
740
+ * GPU images, recommended presets use one of these resolutions with refresh rates
741
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
742
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
743
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
744
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
745
+ * determined based on the resolution (higher resolutions use lower refresh rates
746
+ * to keep bandwidth reasonable).
747
747
  */
748
748
  viewport?: Shared.BrowserViewport;
749
749
  }
@@ -278,14 +278,14 @@ export interface BrowserCreateResponse {
278
278
  * image defaults apply (1920x1080@25). For GPU images, the default is
279
279
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
280
280
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
281
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
282
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
283
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
284
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
285
- * Viewports outside this list may exhibit unstable live view or recording
286
- * behavior. If refresh_rate is not provided, it will be automatically determined
287
- * based on the resolution (higher resolutions use lower refresh rates to keep
288
- * bandwidth reasonable).
281
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
282
+ * GPU images, recommended presets use one of these resolutions with refresh rates
283
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
284
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
285
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
286
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
287
+ * determined based on the resolution (higher resolutions use lower refresh rates
288
+ * to keep bandwidth reasonable).
289
289
  */
290
290
  viewport?: Shared.BrowserViewport;
291
291
  }
@@ -390,14 +390,14 @@ export interface BrowserRetrieveResponse {
390
390
  * image defaults apply (1920x1080@25). For GPU images, the default is
391
391
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
392
392
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
393
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
394
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
395
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
396
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
397
- * Viewports outside this list may exhibit unstable live view or recording
398
- * behavior. If refresh_rate is not provided, it will be automatically determined
399
- * based on the resolution (higher resolutions use lower refresh rates to keep
400
- * bandwidth reasonable).
393
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
394
+ * GPU images, recommended presets use one of these resolutions with refresh rates
395
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
396
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
397
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
398
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
399
+ * determined based on the resolution (higher resolutions use lower refresh rates
400
+ * to keep bandwidth reasonable).
401
401
  */
402
402
  viewport?: Shared.BrowserViewport;
403
403
  }
@@ -502,14 +502,14 @@ export interface BrowserUpdateResponse {
502
502
  * image defaults apply (1920x1080@25). For GPU images, the default is
503
503
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
504
504
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
505
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
506
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
507
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
508
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
509
- * Viewports outside this list may exhibit unstable live view or recording
510
- * behavior. If refresh_rate is not provided, it will be automatically determined
511
- * based on the resolution (higher resolutions use lower refresh rates to keep
512
- * bandwidth reasonable).
505
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
506
+ * GPU images, recommended presets use one of these resolutions with refresh rates
507
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
508
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
509
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
510
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
511
+ * determined based on the resolution (higher resolutions use lower refresh rates
512
+ * to keep bandwidth reasonable).
513
513
  */
514
514
  viewport?: Shared.BrowserViewport;
515
515
  }
@@ -614,14 +614,14 @@ export interface BrowserListResponse {
614
614
  * image defaults apply (1920x1080@25). For GPU images, the default is
615
615
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
616
616
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
617
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
618
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
619
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
620
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
621
- * Viewports outside this list may exhibit unstable live view or recording
622
- * behavior. If refresh_rate is not provided, it will be automatically determined
623
- * based on the resolution (higher resolutions use lower refresh rates to keep
624
- * bandwidth reasonable).
617
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
618
+ * GPU images, recommended presets use one of these resolutions with refresh rates
619
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
620
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
621
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
622
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
623
+ * determined based on the resolution (higher resolutions use lower refresh rates
624
+ * to keep bandwidth reasonable).
625
625
  */
626
626
  viewport?: Shared.BrowserViewport;
627
627
  }
@@ -736,14 +736,14 @@ export interface BrowserCreateParams {
736
736
  * image defaults apply (1920x1080@25). For GPU images, the default is
737
737
  * 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
738
738
  * Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
739
- * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For GPU images, recommended
740
- * presets use one of these resolutions with refresh rates 60, 30, 25, or 10:
741
- * 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800, 1280x720, 1368x768,
742
- * 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250, 768x1024, 800x1600.
743
- * Viewports outside this list may exhibit unstable live view or recording
744
- * behavior. If refresh_rate is not provided, it will be automatically determined
745
- * based on the resolution (higher resolutions use lower refresh rates to keep
746
- * bandwidth reasonable).
739
+ * 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
740
+ * GPU images, recommended presets use one of these resolutions with refresh rates
741
+ * 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
742
+ * 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
743
+ * 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
744
+ * or recording behavior. If refresh_rate is not provided, it will be automatically
745
+ * determined based on the resolution (higher resolutions use lower refresh rates
746
+ * to keep bandwidth reasonable).
747
747
  */
748
748
  viewport?: Shared.BrowserViewport;
749
749
  }