@vellumai/plugin-api 0.11.9-dev.202609061013.dcf82c1 → 0.11.9-dev.202609061357.22f66f9
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/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2755,6 +2755,7 @@ declare const AssistantEventPublishOptionsSchema: z.ZodObject<{
|
|
|
2755
2755
|
host_bash: "host_bash";
|
|
2756
2756
|
host_file: "host_file";
|
|
2757
2757
|
host_cu: "host_cu";
|
|
2758
|
+
host_cu_window_capture: "host_cu_window_capture";
|
|
2758
2759
|
host_browser: "host_browser";
|
|
2759
2760
|
host_app_control: "host_app_control";
|
|
2760
2761
|
host_ui_snapshot: "host_ui_snapshot";
|
|
@@ -4847,7 +4848,7 @@ export declare const HOOKS: {
|
|
|
4847
4848
|
* of them, Windows and Linux withhold app control, and chrome-extension
|
|
4848
4849
|
* supports only host_browser through the Chrome DevTools Protocol proxy.
|
|
4849
4850
|
*/
|
|
4850
|
-
declare const HOST_PROXY_CAPABILITIES: readonly ["host_bash", "host_file", "host_cu", "host_browser", "host_app_control", "host_ui_snapshot"];
|
|
4851
|
+
declare const HOST_PROXY_CAPABILITIES: readonly ["host_bash", "host_file", "host_cu", "host_cu_window_capture", "host_browser", "host_app_control", "host_ui_snapshot"];
|
|
4851
4852
|
|
|
4852
4853
|
declare type HostProxyCapability = (typeof HOST_PROXY_CAPABILITIES)[number];
|
|
4853
4854
|
|
package/package.json
CHANGED