@onkernel/sdk 0.78.0 → 0.78.1
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 +8 -0
- package/package.json +1 -1
- package/resources/browser-pools.d.mts +1 -1
- package/resources/browser-pools.d.ts +1 -1
- package/src/resources/browser-pools.ts +1 -1
- 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,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.78.1 (2026-07-15)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.78.0...v0.78.1](https://github.com/kernel/kernel-node-sdk/compare/v0.78.0...v0.78.1)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Default dashboard browser pools to 25% fill rate ([55708d5](https://github.com/kernel/kernel-node-sdk/commit/55708d5e414392e2748e747be931e5d9dafdf62e))
|
|
10
|
+
|
|
3
11
|
## 0.78.0 (2026-07-13)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.76.0...v0.78.0](https://github.com/kernel/kernel-node-sdk/compare/v0.76.0...v0.78.0)
|
package/package.json
CHANGED
|
@@ -401,7 +401,7 @@ export interface BrowserPoolCreateParams {
|
|
|
401
401
|
*/
|
|
402
402
|
extensions?: Array<Shared.BrowserExtension>;
|
|
403
403
|
/**
|
|
404
|
-
* Percentage of the pool to fill per minute. Defaults to
|
|
404
|
+
* Percentage of the pool to fill per minute. Defaults to 25. The cap is 25 for
|
|
405
405
|
* most organizations but can be raised per-organization, so only the lower bound
|
|
406
406
|
* is enforced here.
|
|
407
407
|
*/
|
|
@@ -401,7 +401,7 @@ export interface BrowserPoolCreateParams {
|
|
|
401
401
|
*/
|
|
402
402
|
extensions?: Array<Shared.BrowserExtension>;
|
|
403
403
|
/**
|
|
404
|
-
* Percentage of the pool to fill per minute. Defaults to
|
|
404
|
+
* Percentage of the pool to fill per minute. Defaults to 25. The cap is 25 for
|
|
405
405
|
* most organizations but can be raised per-organization, so only the lower bound
|
|
406
406
|
* is enforced here.
|
|
407
407
|
*/
|
|
@@ -496,7 +496,7 @@ export interface BrowserPoolCreateParams {
|
|
|
496
496
|
extensions?: Array<Shared.BrowserExtension>;
|
|
497
497
|
|
|
498
498
|
/**
|
|
499
|
-
* Percentage of the pool to fill per minute. Defaults to
|
|
499
|
+
* Percentage of the pool to fill per minute. Defaults to 25. The cap is 25 for
|
|
500
500
|
* most organizations but can be raised per-organization, so only the lower bound
|
|
501
501
|
* is enforced here.
|
|
502
502
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.78.
|
|
1
|
+
export const VERSION = '0.78.1'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.78.
|
|
1
|
+
export declare const VERSION = "0.78.1";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.78.
|
|
1
|
+
export declare const VERSION = "0.78.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.78.
|
|
1
|
+
export const VERSION = '0.78.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|