@vellumai/plugin-api 0.10.11-dev.202607220859.296f4b0 → 0.10.11-dev.202607221047.dbf8bd2
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 +8 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3208,6 +3208,13 @@ export declare const HOOKS: {
|
|
|
3208
3208
|
readonly CONVERSATION_DELETED: "conversation-deleted";
|
|
3209
3209
|
};
|
|
3210
3210
|
|
|
3211
|
+
/**
|
|
3212
|
+
* Host proxy capabilities that an interface can support. The macOS client
|
|
3213
|
+
* supports all of them; the chrome-extension interface only supports
|
|
3214
|
+
* host_browser (via the Chrome DevTools Protocol proxy).
|
|
3215
|
+
*/
|
|
3216
|
+
declare const HOST_PROXY_CAPABILITIES: readonly ["host_bash", "host_file", "host_cu", "host_browser", "host_app_control", "host_ui_snapshot"];
|
|
3217
|
+
|
|
3211
3218
|
declare interface HostAppControlCancel {
|
|
3212
3219
|
type: "host_app_control_cancel";
|
|
3213
3220
|
requestId: string;
|
|
@@ -3428,12 +3435,7 @@ declare interface HostFileWriteRequest {
|
|
|
3428
3435
|
content: string;
|
|
3429
3436
|
}
|
|
3430
3437
|
|
|
3431
|
-
|
|
3432
|
-
* Host proxy capabilities that an interface can support. The macOS client
|
|
3433
|
-
* supports all of them; the chrome-extension interface only supports
|
|
3434
|
-
* host_browser (via the Chrome DevTools Protocol proxy).
|
|
3435
|
-
*/
|
|
3436
|
-
declare type HostProxyCapability = "host_bash" | "host_file" | "host_cu" | "host_browser" | "host_app_control" | "host_ui_snapshot";
|
|
3438
|
+
declare type HostProxyCapability = (typeof HOST_PROXY_CAPABILITIES)[number];
|
|
3437
3439
|
|
|
3438
3440
|
declare interface HostTransferCancelRequest {
|
|
3439
3441
|
type: "host_transfer_cancel";
|
package/package.json
CHANGED