@onkernel/sdk 0.19.0 → 0.19.2
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 +16 -0
- package/package.json +1 -1
- package/resources/browsers/browsers.d.mts +17 -17
- package/resources/browsers/browsers.d.ts +17 -17
- package/src/resources/browsers/browsers.ts +17 -17
- 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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.19.2 (2025-11-17)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.19.1...v0.19.2](https://github.com/onkernel/kernel-node-sdk/compare/v0.19.1...v0.19.2)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Feat increase max timeout to 72h ([a2496da](https://github.com/onkernel/kernel-node-sdk/commit/a2496daa6609a55c75934584cc764344db5a4098))
|
|
10
|
+
|
|
11
|
+
## 0.19.1 (2025-11-13)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.19.0...v0.19.1](https://github.com/onkernel/kernel-node-sdk/compare/v0.19.0...v0.19.1)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* Add support for 1200x800 ([6321644](https://github.com/onkernel/kernel-node-sdk/commit/63216447e56cc6bc3ee706812d8afaf94071308f))
|
|
18
|
+
|
|
3
19
|
## 0.19.0 (2025-11-12)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.18.0...v0.19.0](https://github.com/onkernel/kernel-node-sdk/compare/v0.18.0...v0.19.0)
|
package/package.json
CHANGED
|
@@ -176,8 +176,8 @@ export interface BrowserCreateResponse {
|
|
|
176
176
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
177
177
|
* configurations are supported. The server will reject unsupported combinations.
|
|
178
178
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
179
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
180
|
-
* automatically determined from the width and height if they match a supported
|
|
179
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
180
|
+
* be automatically determined from the width and height if they match a supported
|
|
181
181
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
182
182
|
* live view browser
|
|
183
183
|
*/
|
|
@@ -189,8 +189,8 @@ export declare namespace BrowserCreateResponse {
|
|
|
189
189
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
190
190
|
* configurations are supported. The server will reject unsupported combinations.
|
|
191
191
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
192
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
193
|
-
* automatically determined from the width and height if they match a supported
|
|
192
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
193
|
+
* be automatically determined from the width and height if they match a supported
|
|
194
194
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
195
195
|
* live view browser
|
|
196
196
|
*/
|
|
@@ -261,8 +261,8 @@ export interface BrowserRetrieveResponse {
|
|
|
261
261
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
262
262
|
* configurations are supported. The server will reject unsupported combinations.
|
|
263
263
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
264
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
265
|
-
* automatically determined from the width and height if they match a supported
|
|
264
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
265
|
+
* be automatically determined from the width and height if they match a supported
|
|
266
266
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
267
267
|
* live view browser
|
|
268
268
|
*/
|
|
@@ -274,8 +274,8 @@ export declare namespace BrowserRetrieveResponse {
|
|
|
274
274
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
275
275
|
* configurations are supported. The server will reject unsupported combinations.
|
|
276
276
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
277
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
278
|
-
* automatically determined from the width and height if they match a supported
|
|
277
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
278
|
+
* be automatically determined from the width and height if they match a supported
|
|
279
279
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
280
280
|
* live view browser
|
|
281
281
|
*/
|
|
@@ -348,8 +348,8 @@ export declare namespace BrowserListResponse {
|
|
|
348
348
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
349
349
|
* configurations are supported. The server will reject unsupported combinations.
|
|
350
350
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
351
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
352
|
-
* automatically determined from the width and height if they match a supported
|
|
351
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
352
|
+
* be automatically determined from the width and height if they match a supported
|
|
353
353
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
354
354
|
* live view browser
|
|
355
355
|
*/
|
|
@@ -361,8 +361,8 @@ export declare namespace BrowserListResponse {
|
|
|
361
361
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
362
362
|
* configurations are supported. The server will reject unsupported combinations.
|
|
363
363
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
364
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
365
|
-
* automatically determined from the width and height if they match a supported
|
|
364
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
365
|
+
* be automatically determined from the width and height if they match a supported
|
|
366
366
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
367
367
|
* live view browser
|
|
368
368
|
*/
|
|
@@ -426,7 +426,7 @@ export interface BrowserCreateParams {
|
|
|
426
426
|
* The number of seconds of inactivity before the browser session is terminated.
|
|
427
427
|
* Only applicable to non-persistent browsers. Activity includes CDP connections
|
|
428
428
|
* and live view connections. Defaults to 60 seconds. Minimum allowed is 10
|
|
429
|
-
* seconds. Maximum allowed is
|
|
429
|
+
* seconds. Maximum allowed is 259200 (72 hours). We check for inactivity every 5
|
|
430
430
|
* seconds, so the actual timeout behavior you will see is +/- 5 seconds around the
|
|
431
431
|
* specified value.
|
|
432
432
|
*/
|
|
@@ -436,8 +436,8 @@ export interface BrowserCreateParams {
|
|
|
436
436
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
437
437
|
* configurations are supported. The server will reject unsupported combinations.
|
|
438
438
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
439
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
440
|
-
* automatically determined from the width and height if they match a supported
|
|
439
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
440
|
+
* be automatically determined from the width and height if they match a supported
|
|
441
441
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
442
442
|
* live view browser
|
|
443
443
|
*/
|
|
@@ -485,8 +485,8 @@ export declare namespace BrowserCreateParams {
|
|
|
485
485
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
486
486
|
* configurations are supported. The server will reject unsupported combinations.
|
|
487
487
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
488
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
489
|
-
* automatically determined from the width and height if they match a supported
|
|
488
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
489
|
+
* be automatically determined from the width and height if they match a supported
|
|
490
490
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
491
491
|
* live view browser
|
|
492
492
|
*/
|
|
@@ -176,8 +176,8 @@ export interface BrowserCreateResponse {
|
|
|
176
176
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
177
177
|
* configurations are supported. The server will reject unsupported combinations.
|
|
178
178
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
179
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
180
|
-
* automatically determined from the width and height if they match a supported
|
|
179
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
180
|
+
* be automatically determined from the width and height if they match a supported
|
|
181
181
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
182
182
|
* live view browser
|
|
183
183
|
*/
|
|
@@ -189,8 +189,8 @@ export declare namespace BrowserCreateResponse {
|
|
|
189
189
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
190
190
|
* configurations are supported. The server will reject unsupported combinations.
|
|
191
191
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
192
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
193
|
-
* automatically determined from the width and height if they match a supported
|
|
192
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
193
|
+
* be automatically determined from the width and height if they match a supported
|
|
194
194
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
195
195
|
* live view browser
|
|
196
196
|
*/
|
|
@@ -261,8 +261,8 @@ export interface BrowserRetrieveResponse {
|
|
|
261
261
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
262
262
|
* configurations are supported. The server will reject unsupported combinations.
|
|
263
263
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
264
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
265
|
-
* automatically determined from the width and height if they match a supported
|
|
264
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
265
|
+
* be automatically determined from the width and height if they match a supported
|
|
266
266
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
267
267
|
* live view browser
|
|
268
268
|
*/
|
|
@@ -274,8 +274,8 @@ export declare namespace BrowserRetrieveResponse {
|
|
|
274
274
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
275
275
|
* configurations are supported. The server will reject unsupported combinations.
|
|
276
276
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
277
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
278
|
-
* automatically determined from the width and height if they match a supported
|
|
277
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
278
|
+
* be automatically determined from the width and height if they match a supported
|
|
279
279
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
280
280
|
* live view browser
|
|
281
281
|
*/
|
|
@@ -348,8 +348,8 @@ export declare namespace BrowserListResponse {
|
|
|
348
348
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
349
349
|
* configurations are supported. The server will reject unsupported combinations.
|
|
350
350
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
351
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
352
|
-
* automatically determined from the width and height if they match a supported
|
|
351
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
352
|
+
* be automatically determined from the width and height if they match a supported
|
|
353
353
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
354
354
|
* live view browser
|
|
355
355
|
*/
|
|
@@ -361,8 +361,8 @@ export declare namespace BrowserListResponse {
|
|
|
361
361
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
362
362
|
* configurations are supported. The server will reject unsupported combinations.
|
|
363
363
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
364
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
365
|
-
* automatically determined from the width and height if they match a supported
|
|
364
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
365
|
+
* be automatically determined from the width and height if they match a supported
|
|
366
366
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
367
367
|
* live view browser
|
|
368
368
|
*/
|
|
@@ -426,7 +426,7 @@ export interface BrowserCreateParams {
|
|
|
426
426
|
* The number of seconds of inactivity before the browser session is terminated.
|
|
427
427
|
* Only applicable to non-persistent browsers. Activity includes CDP connections
|
|
428
428
|
* and live view connections. Defaults to 60 seconds. Minimum allowed is 10
|
|
429
|
-
* seconds. Maximum allowed is
|
|
429
|
+
* seconds. Maximum allowed is 259200 (72 hours). We check for inactivity every 5
|
|
430
430
|
* seconds, so the actual timeout behavior you will see is +/- 5 seconds around the
|
|
431
431
|
* specified value.
|
|
432
432
|
*/
|
|
@@ -436,8 +436,8 @@ export interface BrowserCreateParams {
|
|
|
436
436
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
437
437
|
* configurations are supported. The server will reject unsupported combinations.
|
|
438
438
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
439
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
440
|
-
* automatically determined from the width and height if they match a supported
|
|
439
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
440
|
+
* be automatically determined from the width and height if they match a supported
|
|
441
441
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
442
442
|
* live view browser
|
|
443
443
|
*/
|
|
@@ -485,8 +485,8 @@ export declare namespace BrowserCreateParams {
|
|
|
485
485
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
486
486
|
* configurations are supported. The server will reject unsupported combinations.
|
|
487
487
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
488
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
489
|
-
* automatically determined from the width and height if they match a supported
|
|
488
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
489
|
+
* be automatically determined from the width and height if they match a supported
|
|
490
490
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
491
491
|
* live view browser
|
|
492
492
|
*/
|
|
@@ -283,8 +283,8 @@ export interface BrowserCreateResponse {
|
|
|
283
283
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
284
284
|
* configurations are supported. The server will reject unsupported combinations.
|
|
285
285
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
286
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
287
|
-
* automatically determined from the width and height if they match a supported
|
|
286
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
287
|
+
* be automatically determined from the width and height if they match a supported
|
|
288
288
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
289
289
|
* live view browser
|
|
290
290
|
*/
|
|
@@ -297,8 +297,8 @@ export namespace BrowserCreateResponse {
|
|
|
297
297
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
298
298
|
* configurations are supported. The server will reject unsupported combinations.
|
|
299
299
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
300
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
301
|
-
* automatically determined from the width and height if they match a supported
|
|
300
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
301
|
+
* be automatically determined from the width and height if they match a supported
|
|
302
302
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
303
303
|
* live view browser
|
|
304
304
|
*/
|
|
@@ -383,8 +383,8 @@ export interface BrowserRetrieveResponse {
|
|
|
383
383
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
384
384
|
* configurations are supported. The server will reject unsupported combinations.
|
|
385
385
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
386
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
387
|
-
* automatically determined from the width and height if they match a supported
|
|
386
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
387
|
+
* be automatically determined from the width and height if they match a supported
|
|
388
388
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
389
389
|
* live view browser
|
|
390
390
|
*/
|
|
@@ -397,8 +397,8 @@ export namespace BrowserRetrieveResponse {
|
|
|
397
397
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
398
398
|
* configurations are supported. The server will reject unsupported combinations.
|
|
399
399
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
400
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
401
|
-
* automatically determined from the width and height if they match a supported
|
|
400
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
401
|
+
* be automatically determined from the width and height if they match a supported
|
|
402
402
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
403
403
|
* live view browser
|
|
404
404
|
*/
|
|
@@ -486,8 +486,8 @@ export namespace BrowserListResponse {
|
|
|
486
486
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
487
487
|
* configurations are supported. The server will reject unsupported combinations.
|
|
488
488
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
489
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
490
|
-
* automatically determined from the width and height if they match a supported
|
|
489
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
490
|
+
* be automatically determined from the width and height if they match a supported
|
|
491
491
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
492
492
|
* live view browser
|
|
493
493
|
*/
|
|
@@ -500,8 +500,8 @@ export namespace BrowserListResponse {
|
|
|
500
500
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
501
501
|
* configurations are supported. The server will reject unsupported combinations.
|
|
502
502
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
503
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
504
|
-
* automatically determined from the width and height if they match a supported
|
|
503
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
504
|
+
* be automatically determined from the width and height if they match a supported
|
|
505
505
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
506
506
|
* live view browser
|
|
507
507
|
*/
|
|
@@ -576,7 +576,7 @@ export interface BrowserCreateParams {
|
|
|
576
576
|
* The number of seconds of inactivity before the browser session is terminated.
|
|
577
577
|
* Only applicable to non-persistent browsers. Activity includes CDP connections
|
|
578
578
|
* and live view connections. Defaults to 60 seconds. Minimum allowed is 10
|
|
579
|
-
* seconds. Maximum allowed is
|
|
579
|
+
* seconds. Maximum allowed is 259200 (72 hours). We check for inactivity every 5
|
|
580
580
|
* seconds, so the actual timeout behavior you will see is +/- 5 seconds around the
|
|
581
581
|
* specified value.
|
|
582
582
|
*/
|
|
@@ -587,8 +587,8 @@ export interface BrowserCreateParams {
|
|
|
587
587
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
588
588
|
* configurations are supported. The server will reject unsupported combinations.
|
|
589
589
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
590
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
591
|
-
* automatically determined from the width and height if they match a supported
|
|
590
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
591
|
+
* be automatically determined from the width and height if they match a supported
|
|
592
592
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
593
593
|
* live view browser
|
|
594
594
|
*/
|
|
@@ -642,8 +642,8 @@ export namespace BrowserCreateParams {
|
|
|
642
642
|
* image defaults apply (commonly 1024x768@60). Only specific viewport
|
|
643
643
|
* configurations are supported. The server will reject unsupported combinations.
|
|
644
644
|
* Supported resolutions are: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
645
|
-
* 1440x900@25, 1024x768@60 If refresh_rate is not provided, it will
|
|
646
|
-
* automatically determined from the width and height if they match a supported
|
|
645
|
+
* 1440x900@25, 1024x768@60, 1200x800@60 If refresh_rate is not provided, it will
|
|
646
|
+
* be automatically determined from the width and height if they match a supported
|
|
647
647
|
* configuration exactly. Note: Higher resolutions may affect the responsiveness of
|
|
648
648
|
* live view browser
|
|
649
649
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.19.
|
|
1
|
+
export const VERSION = '0.19.2'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.19.
|
|
1
|
+
export declare const VERSION = "0.19.2";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.19.
|
|
1
|
+
export declare const VERSION = "0.19.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.19.
|
|
1
|
+
export const VERSION = '0.19.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|