@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.
- package/CHANGELOG.md +29 -0
- package/package.json +1 -1
- package/resources/api-keys.d.mts +2 -1
- package/resources/api-keys.d.mts.map +1 -1
- package/resources/api-keys.d.ts +2 -1
- package/resources/api-keys.d.ts.map +1 -1
- package/resources/api-keys.js +2 -1
- package/resources/api-keys.js.map +1 -1
- package/resources/api-keys.mjs +2 -1
- package/resources/api-keys.mjs.map +1 -1
- package/resources/apps.d.mts +3 -1
- package/resources/apps.d.mts.map +1 -1
- package/resources/apps.d.ts +3 -1
- package/resources/apps.d.ts.map +1 -1
- package/resources/browser-pools.d.mts +107 -72
- package/resources/browser-pools.d.mts.map +1 -1
- package/resources/browser-pools.d.ts +107 -72
- package/resources/browser-pools.d.ts.map +1 -1
- package/resources/browser-pools.js +3 -1
- package/resources/browser-pools.js.map +1 -1
- package/resources/browser-pools.mjs +3 -1
- package/resources/browser-pools.mjs.map +1 -1
- package/resources/browsers/browsers.d.mts +40 -40
- package/resources/browsers/browsers.d.ts +40 -40
- package/resources/browsers/telemetry.d.mts +13 -4
- package/resources/browsers/telemetry.d.mts.map +1 -1
- package/resources/browsers/telemetry.d.ts +13 -4
- package/resources/browsers/telemetry.d.ts.map +1 -1
- package/resources/browsers/telemetry.js +4 -4
- package/resources/browsers/telemetry.mjs +4 -4
- package/resources/deployments.d.mts +14 -5
- package/resources/deployments.d.mts.map +1 -1
- package/resources/deployments.d.ts +14 -5
- package/resources/deployments.d.ts.map +1 -1
- package/resources/extensions.d.mts +24 -0
- package/resources/extensions.d.mts.map +1 -1
- package/resources/extensions.d.ts +24 -0
- package/resources/extensions.d.ts.map +1 -1
- package/resources/invocations.d.mts +8 -8
- package/resources/invocations.d.ts +8 -8
- package/resources/shared.d.mts +8 -8
- package/resources/shared.d.ts +8 -8
- package/src/resources/api-keys.ts +2 -1
- package/src/resources/apps.ts +3 -1
- package/src/resources/browser-pools.ts +112 -72
- package/src/resources/browsers/browsers.ts +40 -40
- package/src/resources/browsers/telemetry.ts +14 -4
- package/src/resources/deployments.ts +14 -5
- package/src/resources/extensions.ts +27 -0
- package/src/resources/invocations.ts +8 -8
- package/src/resources/shared.ts +8 -8
- 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
|
@@ -538,14 +538,14 @@ export namespace InvocationListBrowsersResponse {
|
|
|
538
538
|
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
539
539
|
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
540
540
|
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
541
|
-
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For
|
|
542
|
-
* presets use one of these resolutions with refresh rates
|
|
543
|
-
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
|
|
544
|
-
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
|
|
545
|
-
* Viewports outside this list may exhibit unstable live view
|
|
546
|
-
* behavior. If refresh_rate is not provided, it will be automatically
|
|
547
|
-
* based on the resolution (higher resolutions use lower refresh rates
|
|
548
|
-
* bandwidth reasonable).
|
|
541
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
|
|
542
|
+
* GPU images, recommended presets use one of these resolutions with refresh rates
|
|
543
|
+
* 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
|
|
544
|
+
* 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
|
|
545
|
+
* 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
|
|
546
|
+
* or recording behavior. If refresh_rate is not provided, it will be automatically
|
|
547
|
+
* determined based on the resolution (higher resolutions use lower refresh rates
|
|
548
|
+
* to keep bandwidth reasonable).
|
|
549
549
|
*/
|
|
550
550
|
viewport?: Shared.BrowserViewport;
|
|
551
551
|
}
|
package/src/resources/shared.ts
CHANGED
|
@@ -68,14 +68,14 @@ export interface BrowserProfile {
|
|
|
68
68
|
* image defaults apply (1920x1080@25). For GPU images, the default is
|
|
69
69
|
* 1920x1080@60. Arbitrary viewport dimensions and refresh rates are accepted.
|
|
70
70
|
* Known-good presets include: 2560x1440@10, 1920x1080@25, 1920x1200@25,
|
|
71
|
-
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60. For
|
|
72
|
-
* presets use one of these resolutions with refresh rates
|
|
73
|
-
* 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
|
|
74
|
-
* 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
|
|
75
|
-
* Viewports outside this list may exhibit unstable live view
|
|
76
|
-
* behavior. If refresh_rate is not provided, it will be automatically
|
|
77
|
-
* based on the resolution (higher resolutions use lower refresh rates
|
|
78
|
-
* bandwidth reasonable).
|
|
71
|
+
* 1440x900@25, 1280x800@60, 1024x768@60, 1200x800@60, 768x1024@60, 390x844@60. For
|
|
72
|
+
* GPU images, recommended presets use one of these resolutions with refresh rates
|
|
73
|
+
* 60, 30, 25, or 10: 800x600, 960x720, 1024x576, 1024x768, 1152x648, 1200x800,
|
|
74
|
+
* 1280x720, 1368x768, 1440x900, 1600x900, 1920x1080, 1920x1200, 390x844, 360x250,
|
|
75
|
+
* 768x1024, 800x1600. Viewports outside this list may exhibit unstable live view
|
|
76
|
+
* or recording behavior. If refresh_rate is not provided, it will be automatically
|
|
77
|
+
* determined based on the resolution (higher resolutions use lower refresh rates
|
|
78
|
+
* to keep bandwidth reasonable).
|
|
79
79
|
*/
|
|
80
80
|
export interface BrowserViewport {
|
|
81
81
|
/**
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.75.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.75.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.75.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.75.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|