@onkernel/sdk 0.71.0 → 0.72.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 +20 -0
- package/package.json +1 -1
- package/resources/browser-pools.d.mts +91 -14
- package/resources/browser-pools.d.mts.map +1 -1
- package/resources/browser-pools.d.ts +91 -14
- package/resources/browser-pools.d.ts.map +1 -1
- package/resources/browser-pools.js +7 -2
- package/resources/browser-pools.js.map +1 -1
- package/resources/browser-pools.mjs +7 -2
- package/resources/browser-pools.mjs.map +1 -1
- package/src/resources/browser-pools.ts +97 -14
- 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,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.72.0 (2026-06-26)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.71.1...v0.72.0](https://github.com/kernel/kernel-node-sdk/compare/v0.71.1...v0.72.0)
|
|
6
|
+
|
|
7
|
+
### ⚠ BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
* browser pool `profile` is now `BrowserPoolProfile` (id/name only); `save_changes` is no longer accepted on pool profiles. Wire-compatible for inline callers; typed callers must update. Sending `save_changes` on a pool used to return `400` and is now silently ignored.
|
|
10
|
+
|
|
11
|
+
### Chores
|
|
12
|
+
|
|
13
|
+
* re-release browser pool profile change as 0.72.0 ([3efca49](https://github.com/kernel/kernel-node-sdk/commit/3efca4930b67cb8460bc8c3880cc38fa8d026309))
|
|
14
|
+
|
|
15
|
+
## 0.71.1 (2026-06-26)
|
|
16
|
+
|
|
17
|
+
Full Changelog: [v0.71.0...v0.71.1](https://github.com/kernel/kernel-node-sdk/compare/v0.71.0...v0.71.1)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **api:** browser pool profile omits save_changes (BrowserPoolProfile) ([41f382e](https://github.com/kernel/kernel-node-sdk/commit/41f382e07d767dd998533de4e2904f5db46b1ea8))
|
|
22
|
+
|
|
3
23
|
## 0.71.0 (2026-06-26)
|
|
4
24
|
|
|
5
25
|
Full Changelog: [v0.70.0...v0.71.0](https://github.com/kernel/kernel-node-sdk/compare/v0.70.0...v0.71.0)
|
package/package.json
CHANGED
|
@@ -10,7 +10,10 @@ import { RequestOptions } from "../internal/request-options.mjs";
|
|
|
10
10
|
*/
|
|
11
11
|
export declare class BrowserPools extends APIResource {
|
|
12
12
|
/**
|
|
13
|
-
* Create a new browser pool with the specified configuration and size.
|
|
13
|
+
* Create a new browser pool with the specified configuration and size. Pooled
|
|
14
|
+
* browsers load their profile read-only: any save_changes on the profile is
|
|
15
|
+
* ignored (not rejected), so pooled browsers never persist changes back to the
|
|
16
|
+
* profile.
|
|
14
17
|
*
|
|
15
18
|
* @example
|
|
16
19
|
* ```ts
|
|
@@ -32,7 +35,9 @@ export declare class BrowserPools extends APIResource {
|
|
|
32
35
|
*/
|
|
33
36
|
retrieve(idOrName: string, options?: RequestOptions): APIPromise<BrowserPool>;
|
|
34
37
|
/**
|
|
35
|
-
* Updates the configuration used to create browsers in the pool.
|
|
38
|
+
* Updates the configuration used to create browsers in the pool. As with creation,
|
|
39
|
+
* save_changes on the pool profile is ignored (not rejected); pooled browsers
|
|
40
|
+
* never persist changes back to the profile.
|
|
36
41
|
*
|
|
37
42
|
* @example
|
|
38
43
|
* ```ts
|
|
@@ -173,11 +178,14 @@ export declare namespace BrowserPool {
|
|
|
173
178
|
*/
|
|
174
179
|
name?: string;
|
|
175
180
|
/**
|
|
176
|
-
* Profile selection for
|
|
177
|
-
*
|
|
178
|
-
*
|
|
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.
|
|
179
187
|
*/
|
|
180
|
-
profile?:
|
|
188
|
+
profile?: BrowserPoolConfig.Profile;
|
|
181
189
|
/**
|
|
182
190
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
183
191
|
* the same project as the browser session.
|
|
@@ -217,6 +225,27 @@ export declare namespace BrowserPool {
|
|
|
217
225
|
*/
|
|
218
226
|
viewport?: Shared.BrowserViewport;
|
|
219
227
|
}
|
|
228
|
+
namespace BrowserPoolConfig {
|
|
229
|
+
/**
|
|
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.
|
|
236
|
+
*/
|
|
237
|
+
interface Profile {
|
|
238
|
+
/**
|
|
239
|
+
* Profile ID to load for browsers in this pool
|
|
240
|
+
*/
|
|
241
|
+
id?: string;
|
|
242
|
+
/**
|
|
243
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
244
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
245
|
+
*/
|
|
246
|
+
name?: string;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
220
249
|
}
|
|
221
250
|
export interface BrowserPoolAcquireResponse {
|
|
222
251
|
/**
|
|
@@ -370,11 +399,14 @@ export interface BrowserPoolCreateParams {
|
|
|
370
399
|
*/
|
|
371
400
|
name?: string;
|
|
372
401
|
/**
|
|
373
|
-
* Profile selection for
|
|
374
|
-
*
|
|
375
|
-
*
|
|
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.
|
|
376
408
|
*/
|
|
377
|
-
profile?:
|
|
409
|
+
profile?: BrowserPoolCreateParams.Profile;
|
|
378
410
|
/**
|
|
379
411
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
380
412
|
* the same project as the browser session.
|
|
@@ -414,6 +446,27 @@ export interface BrowserPoolCreateParams {
|
|
|
414
446
|
*/
|
|
415
447
|
viewport?: Shared.BrowserViewport;
|
|
416
448
|
}
|
|
449
|
+
export declare namespace BrowserPoolCreateParams {
|
|
450
|
+
/**
|
|
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.
|
|
457
|
+
*/
|
|
458
|
+
interface Profile {
|
|
459
|
+
/**
|
|
460
|
+
* Profile ID to load for browsers in this pool
|
|
461
|
+
*/
|
|
462
|
+
id?: string;
|
|
463
|
+
/**
|
|
464
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
465
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
466
|
+
*/
|
|
467
|
+
name?: string;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
417
470
|
export interface BrowserPoolUpdateParams {
|
|
418
471
|
/**
|
|
419
472
|
* Custom Chrome enterprise policy overrides applied to all browsers in this pool.
|
|
@@ -453,11 +506,14 @@ export interface BrowserPoolUpdateParams {
|
|
|
453
506
|
*/
|
|
454
507
|
name?: string;
|
|
455
508
|
/**
|
|
456
|
-
* Profile selection for
|
|
457
|
-
*
|
|
458
|
-
*
|
|
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.
|
|
459
515
|
*/
|
|
460
|
-
profile?:
|
|
516
|
+
profile?: BrowserPoolUpdateParams.Profile;
|
|
461
517
|
/**
|
|
462
518
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
463
519
|
* the same project as the browser session.
|
|
@@ -503,6 +559,27 @@ export interface BrowserPoolUpdateParams {
|
|
|
503
559
|
*/
|
|
504
560
|
viewport?: Shared.BrowserViewport;
|
|
505
561
|
}
|
|
562
|
+
export declare namespace BrowserPoolUpdateParams {
|
|
563
|
+
/**
|
|
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.
|
|
570
|
+
*/
|
|
571
|
+
interface Profile {
|
|
572
|
+
/**
|
|
573
|
+
* Profile ID to load for browsers in this pool
|
|
574
|
+
*/
|
|
575
|
+
id?: string;
|
|
576
|
+
/**
|
|
577
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
578
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
579
|
+
*/
|
|
580
|
+
name?: string;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
506
583
|
export interface BrowserPoolListParams extends OffsetPaginationParams {
|
|
507
584
|
/**
|
|
508
585
|
* Search browser pools by name or ID.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browser-pools.d.mts","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAC/C,OAAO,KAAK,MAAM,qBAAiB;AACnC,OAAO,KAAK,WAAW,gCAA4B;AACnD,OAAO,KAAK,YAAY,iCAA6B;AACrD,OAAO,EAAE,UAAU,EAAE,gCAA4B;AACjD,OAAO,EAAE,gBAAgB,EAAE,KAAK,sBAAsB,EAAE,WAAW,EAAE,+BAA2B;AAEhG,OAAO,EAAE,cAAc,EAAE,wCAAoC;AAG7D;;GAEG;AACH,qBAAa,YAAa,SAAQ,WAAW;IAC3C
|
|
1
|
+
{"version":3,"file":"browser-pools.d.mts","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":"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"}
|
|
@@ -10,7 +10,10 @@ import { RequestOptions } from "../internal/request-options.js";
|
|
|
10
10
|
*/
|
|
11
11
|
export declare class BrowserPools extends APIResource {
|
|
12
12
|
/**
|
|
13
|
-
* Create a new browser pool with the specified configuration and size.
|
|
13
|
+
* Create a new browser pool with the specified configuration and size. Pooled
|
|
14
|
+
* browsers load their profile read-only: any save_changes on the profile is
|
|
15
|
+
* ignored (not rejected), so pooled browsers never persist changes back to the
|
|
16
|
+
* profile.
|
|
14
17
|
*
|
|
15
18
|
* @example
|
|
16
19
|
* ```ts
|
|
@@ -32,7 +35,9 @@ export declare class BrowserPools extends APIResource {
|
|
|
32
35
|
*/
|
|
33
36
|
retrieve(idOrName: string, options?: RequestOptions): APIPromise<BrowserPool>;
|
|
34
37
|
/**
|
|
35
|
-
* Updates the configuration used to create browsers in the pool.
|
|
38
|
+
* Updates the configuration used to create browsers in the pool. As with creation,
|
|
39
|
+
* save_changes on the pool profile is ignored (not rejected); pooled browsers
|
|
40
|
+
* never persist changes back to the profile.
|
|
36
41
|
*
|
|
37
42
|
* @example
|
|
38
43
|
* ```ts
|
|
@@ -173,11 +178,14 @@ export declare namespace BrowserPool {
|
|
|
173
178
|
*/
|
|
174
179
|
name?: string;
|
|
175
180
|
/**
|
|
176
|
-
* Profile selection for
|
|
177
|
-
*
|
|
178
|
-
*
|
|
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.
|
|
179
187
|
*/
|
|
180
|
-
profile?:
|
|
188
|
+
profile?: BrowserPoolConfig.Profile;
|
|
181
189
|
/**
|
|
182
190
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
183
191
|
* the same project as the browser session.
|
|
@@ -217,6 +225,27 @@ export declare namespace BrowserPool {
|
|
|
217
225
|
*/
|
|
218
226
|
viewport?: Shared.BrowserViewport;
|
|
219
227
|
}
|
|
228
|
+
namespace BrowserPoolConfig {
|
|
229
|
+
/**
|
|
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.
|
|
236
|
+
*/
|
|
237
|
+
interface Profile {
|
|
238
|
+
/**
|
|
239
|
+
* Profile ID to load for browsers in this pool
|
|
240
|
+
*/
|
|
241
|
+
id?: string;
|
|
242
|
+
/**
|
|
243
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
244
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
245
|
+
*/
|
|
246
|
+
name?: string;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
220
249
|
}
|
|
221
250
|
export interface BrowserPoolAcquireResponse {
|
|
222
251
|
/**
|
|
@@ -370,11 +399,14 @@ export interface BrowserPoolCreateParams {
|
|
|
370
399
|
*/
|
|
371
400
|
name?: string;
|
|
372
401
|
/**
|
|
373
|
-
* Profile selection for
|
|
374
|
-
*
|
|
375
|
-
*
|
|
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.
|
|
376
408
|
*/
|
|
377
|
-
profile?:
|
|
409
|
+
profile?: BrowserPoolCreateParams.Profile;
|
|
378
410
|
/**
|
|
379
411
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
380
412
|
* the same project as the browser session.
|
|
@@ -414,6 +446,27 @@ export interface BrowserPoolCreateParams {
|
|
|
414
446
|
*/
|
|
415
447
|
viewport?: Shared.BrowserViewport;
|
|
416
448
|
}
|
|
449
|
+
export declare namespace BrowserPoolCreateParams {
|
|
450
|
+
/**
|
|
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.
|
|
457
|
+
*/
|
|
458
|
+
interface Profile {
|
|
459
|
+
/**
|
|
460
|
+
* Profile ID to load for browsers in this pool
|
|
461
|
+
*/
|
|
462
|
+
id?: string;
|
|
463
|
+
/**
|
|
464
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
465
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
466
|
+
*/
|
|
467
|
+
name?: string;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
417
470
|
export interface BrowserPoolUpdateParams {
|
|
418
471
|
/**
|
|
419
472
|
* Custom Chrome enterprise policy overrides applied to all browsers in this pool.
|
|
@@ -453,11 +506,14 @@ export interface BrowserPoolUpdateParams {
|
|
|
453
506
|
*/
|
|
454
507
|
name?: string;
|
|
455
508
|
/**
|
|
456
|
-
* Profile selection for
|
|
457
|
-
*
|
|
458
|
-
*
|
|
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.
|
|
459
515
|
*/
|
|
460
|
-
profile?:
|
|
516
|
+
profile?: BrowserPoolUpdateParams.Profile;
|
|
461
517
|
/**
|
|
462
518
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
463
519
|
* the same project as the browser session.
|
|
@@ -503,6 +559,27 @@ export interface BrowserPoolUpdateParams {
|
|
|
503
559
|
*/
|
|
504
560
|
viewport?: Shared.BrowserViewport;
|
|
505
561
|
}
|
|
562
|
+
export declare namespace BrowserPoolUpdateParams {
|
|
563
|
+
/**
|
|
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.
|
|
570
|
+
*/
|
|
571
|
+
interface Profile {
|
|
572
|
+
/**
|
|
573
|
+
* Profile ID to load for browsers in this pool
|
|
574
|
+
*/
|
|
575
|
+
id?: string;
|
|
576
|
+
/**
|
|
577
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
578
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
579
|
+
*/
|
|
580
|
+
name?: string;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
506
583
|
export interface BrowserPoolListParams extends OffsetPaginationParams {
|
|
507
584
|
/**
|
|
508
585
|
* Search browser pools by name or ID.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browser-pools.d.ts","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,4BAAyB;AAC/C,OAAO,KAAK,MAAM,oBAAiB;AACnC,OAAO,KAAK,WAAW,+BAA4B;AACnD,OAAO,KAAK,YAAY,gCAA6B;AACrD,OAAO,EAAE,UAAU,EAAE,+BAA4B;AACjD,OAAO,EAAE,gBAAgB,EAAE,KAAK,sBAAsB,EAAE,WAAW,EAAE,8BAA2B;AAEhG,OAAO,EAAE,cAAc,EAAE,uCAAoC;AAG7D;;GAEG;AACH,qBAAa,YAAa,SAAQ,WAAW;IAC3C
|
|
1
|
+
{"version":3,"file":"browser-pools.d.ts","sourceRoot":"","sources":["../src/resources/browser-pools.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,7 +11,10 @@ const path_1 = require("../internal/utils/path.js");
|
|
|
11
11
|
*/
|
|
12
12
|
class BrowserPools extends resource_1.APIResource {
|
|
13
13
|
/**
|
|
14
|
-
* Create a new browser pool with the specified configuration and size.
|
|
14
|
+
* Create a new browser pool with the specified configuration and size. Pooled
|
|
15
|
+
* browsers load their profile read-only: any save_changes on the profile is
|
|
16
|
+
* ignored (not rejected), so pooled browsers never persist changes back to the
|
|
17
|
+
* profile.
|
|
15
18
|
*
|
|
16
19
|
* @example
|
|
17
20
|
* ```ts
|
|
@@ -37,7 +40,9 @@ class BrowserPools extends resource_1.APIResource {
|
|
|
37
40
|
return this._client.get((0, path_1.path) `/browser_pools/${idOrName}`, options);
|
|
38
41
|
}
|
|
39
42
|
/**
|
|
40
|
-
* Updates the configuration used to create browsers in the pool.
|
|
43
|
+
* Updates the configuration used to create browsers in the pool. As with creation,
|
|
44
|
+
* save_changes on the pool profile is ignored (not rejected); pooled browsers
|
|
45
|
+
* never persist changes back to the profile.
|
|
41
46
|
*
|
|
42
47
|
* @example
|
|
43
48
|
* ```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
|
|
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"}
|
|
@@ -8,7 +8,10 @@ import { path } from "../internal/utils/path.mjs";
|
|
|
8
8
|
*/
|
|
9
9
|
export class BrowserPools extends APIResource {
|
|
10
10
|
/**
|
|
11
|
-
* Create a new browser pool with the specified configuration and size.
|
|
11
|
+
* Create a new browser pool with the specified configuration and size. Pooled
|
|
12
|
+
* browsers load their profile read-only: any save_changes on the profile is
|
|
13
|
+
* ignored (not rejected), so pooled browsers never persist changes back to the
|
|
14
|
+
* profile.
|
|
12
15
|
*
|
|
13
16
|
* @example
|
|
14
17
|
* ```ts
|
|
@@ -34,7 +37,9 @@ export class BrowserPools extends APIResource {
|
|
|
34
37
|
return this._client.get(path `/browser_pools/${idOrName}`, options);
|
|
35
38
|
}
|
|
36
39
|
/**
|
|
37
|
-
* Updates the configuration used to create browsers in the pool.
|
|
40
|
+
* Updates the configuration used to create browsers in the pool. As with creation,
|
|
41
|
+
* save_changes on the pool profile is ignored (not rejected); pooled browsers
|
|
42
|
+
* never persist changes back to the profile.
|
|
38
43
|
*
|
|
39
44
|
* @example
|
|
40
45
|
* ```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
|
|
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"}
|
|
@@ -15,7 +15,10 @@ import { path } from '../internal/utils/path';
|
|
|
15
15
|
*/
|
|
16
16
|
export class BrowserPools extends APIResource {
|
|
17
17
|
/**
|
|
18
|
-
* Create a new browser pool with the specified configuration and size.
|
|
18
|
+
* Create a new browser pool with the specified configuration and size. Pooled
|
|
19
|
+
* browsers load their profile read-only: any save_changes on the profile is
|
|
20
|
+
* ignored (not rejected), so pooled browsers never persist changes back to the
|
|
21
|
+
* profile.
|
|
19
22
|
*
|
|
20
23
|
* @example
|
|
21
24
|
* ```ts
|
|
@@ -43,7 +46,9 @@ export class BrowserPools extends APIResource {
|
|
|
43
46
|
}
|
|
44
47
|
|
|
45
48
|
/**
|
|
46
|
-
* Updates the configuration used to create browsers in the pool.
|
|
49
|
+
* Updates the configuration used to create browsers in the pool. As with creation,
|
|
50
|
+
* save_changes on the pool profile is ignored (not rejected); pooled browsers
|
|
51
|
+
* never persist changes back to the profile.
|
|
47
52
|
*
|
|
48
53
|
* @example
|
|
49
54
|
* ```ts
|
|
@@ -236,11 +241,14 @@ export namespace BrowserPool {
|
|
|
236
241
|
name?: string;
|
|
237
242
|
|
|
238
243
|
/**
|
|
239
|
-
* Profile selection for
|
|
240
|
-
*
|
|
241
|
-
*
|
|
244
|
+
* Profile selection for browsers in a pool. Provide either id or name. The
|
|
245
|
+
* matching profile is loaded into every browser in the pool. Profiles must be
|
|
246
|
+
* created beforehand. Unlike single browser sessions, pools load the profile
|
|
247
|
+
* read-only and never persist changes back to it, so save_changes is omitted here.
|
|
248
|
+
* Any save_changes value sent on a pool profile is silently ignored rather than
|
|
249
|
+
* rejected, so callers reusing a single-session profile object will not error.
|
|
242
250
|
*/
|
|
243
|
-
profile?:
|
|
251
|
+
profile?: BrowserPoolConfig.Profile;
|
|
244
252
|
|
|
245
253
|
/**
|
|
246
254
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
@@ -285,6 +293,29 @@ export namespace BrowserPool {
|
|
|
285
293
|
*/
|
|
286
294
|
viewport?: Shared.BrowserViewport;
|
|
287
295
|
}
|
|
296
|
+
|
|
297
|
+
export namespace BrowserPoolConfig {
|
|
298
|
+
/**
|
|
299
|
+
* Profile selection for browsers in a pool. Provide either id or name. The
|
|
300
|
+
* matching profile is loaded into every browser in the pool. Profiles must be
|
|
301
|
+
* created beforehand. Unlike single browser sessions, pools load the profile
|
|
302
|
+
* read-only and never persist changes back to it, so save_changes is omitted here.
|
|
303
|
+
* Any save_changes value sent on a pool profile is silently ignored rather than
|
|
304
|
+
* rejected, so callers reusing a single-session profile object will not error.
|
|
305
|
+
*/
|
|
306
|
+
export interface Profile {
|
|
307
|
+
/**
|
|
308
|
+
* Profile ID to load for browsers in this pool
|
|
309
|
+
*/
|
|
310
|
+
id?: string;
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
314
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
315
|
+
*/
|
|
316
|
+
name?: string;
|
|
317
|
+
}
|
|
318
|
+
}
|
|
288
319
|
}
|
|
289
320
|
|
|
290
321
|
export interface BrowserPoolAcquireResponse {
|
|
@@ -464,11 +495,14 @@ export interface BrowserPoolCreateParams {
|
|
|
464
495
|
name?: string;
|
|
465
496
|
|
|
466
497
|
/**
|
|
467
|
-
* Profile selection for
|
|
468
|
-
*
|
|
469
|
-
*
|
|
498
|
+
* Profile selection for browsers in a pool. Provide either id or name. The
|
|
499
|
+
* matching profile is loaded into every browser in the pool. Profiles must be
|
|
500
|
+
* created beforehand. Unlike single browser sessions, pools load the profile
|
|
501
|
+
* read-only and never persist changes back to it, so save_changes is omitted here.
|
|
502
|
+
* Any save_changes value sent on a pool profile is silently ignored rather than
|
|
503
|
+
* rejected, so callers reusing a single-session profile object will not error.
|
|
470
504
|
*/
|
|
471
|
-
profile?:
|
|
505
|
+
profile?: BrowserPoolCreateParams.Profile;
|
|
472
506
|
|
|
473
507
|
/**
|
|
474
508
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
@@ -514,6 +548,29 @@ export interface BrowserPoolCreateParams {
|
|
|
514
548
|
viewport?: Shared.BrowserViewport;
|
|
515
549
|
}
|
|
516
550
|
|
|
551
|
+
export namespace BrowserPoolCreateParams {
|
|
552
|
+
/**
|
|
553
|
+
* Profile selection for browsers in a pool. Provide either id or name. The
|
|
554
|
+
* matching profile is loaded into every browser in the pool. Profiles must be
|
|
555
|
+
* created beforehand. Unlike single browser sessions, pools load the profile
|
|
556
|
+
* read-only and never persist changes back to it, so save_changes is omitted here.
|
|
557
|
+
* Any save_changes value sent on a pool profile is silently ignored rather than
|
|
558
|
+
* rejected, so callers reusing a single-session profile object will not error.
|
|
559
|
+
*/
|
|
560
|
+
export interface Profile {
|
|
561
|
+
/**
|
|
562
|
+
* Profile ID to load for browsers in this pool
|
|
563
|
+
*/
|
|
564
|
+
id?: string;
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
568
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
569
|
+
*/
|
|
570
|
+
name?: string;
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
|
|
517
574
|
export interface BrowserPoolUpdateParams {
|
|
518
575
|
/**
|
|
519
576
|
* Custom Chrome enterprise policy overrides applied to all browsers in this pool.
|
|
@@ -558,11 +615,14 @@ export interface BrowserPoolUpdateParams {
|
|
|
558
615
|
name?: string;
|
|
559
616
|
|
|
560
617
|
/**
|
|
561
|
-
* Profile selection for
|
|
562
|
-
*
|
|
563
|
-
*
|
|
618
|
+
* Profile selection for browsers in a pool. Provide either id or name. The
|
|
619
|
+
* matching profile is loaded into every browser in the pool. Profiles must be
|
|
620
|
+
* created beforehand. Unlike single browser sessions, pools load the profile
|
|
621
|
+
* read-only and never persist changes back to it, so save_changes is omitted here.
|
|
622
|
+
* Any save_changes value sent on a pool profile is silently ignored rather than
|
|
623
|
+
* rejected, so callers reusing a single-session profile object will not error.
|
|
564
624
|
*/
|
|
565
|
-
profile?:
|
|
625
|
+
profile?: BrowserPoolUpdateParams.Profile;
|
|
566
626
|
|
|
567
627
|
/**
|
|
568
628
|
* Optional proxy to associate to the browser session. Must reference a proxy in
|
|
@@ -615,6 +675,29 @@ export interface BrowserPoolUpdateParams {
|
|
|
615
675
|
viewport?: Shared.BrowserViewport;
|
|
616
676
|
}
|
|
617
677
|
|
|
678
|
+
export namespace BrowserPoolUpdateParams {
|
|
679
|
+
/**
|
|
680
|
+
* Profile selection for browsers in a pool. Provide either id or name. The
|
|
681
|
+
* matching profile is loaded into every browser in the pool. Profiles must be
|
|
682
|
+
* created beforehand. Unlike single browser sessions, pools load the profile
|
|
683
|
+
* read-only and never persist changes back to it, so save_changes is omitted here.
|
|
684
|
+
* Any save_changes value sent on a pool profile is silently ignored rather than
|
|
685
|
+
* rejected, so callers reusing a single-session profile object will not error.
|
|
686
|
+
*/
|
|
687
|
+
export interface Profile {
|
|
688
|
+
/**
|
|
689
|
+
* Profile ID to load for browsers in this pool
|
|
690
|
+
*/
|
|
691
|
+
id?: string;
|
|
692
|
+
|
|
693
|
+
/**
|
|
694
|
+
* Profile name to load for browsers in this pool (instead of id). Must be 1-255
|
|
695
|
+
* characters, using letters, numbers, dots, underscores, or hyphens.
|
|
696
|
+
*/
|
|
697
|
+
name?: string;
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
|
|
618
701
|
export interface BrowserPoolListParams extends OffsetPaginationParams {
|
|
619
702
|
/**
|
|
620
703
|
* Search browser pools by name or ID.
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.72.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.72.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.72.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.72.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|