qlogicagent 2.13.2 → 2.13.3
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/dist/cli.js +229 -229
- package/dist/index.js +228 -228
- package/dist/types/cli/handlers/settings-handler.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2,11 +2,13 @@ import { type AgentRpcError, type AgentRpcRequest } from "../../protocol/wire/in
|
|
|
2
2
|
export interface SettingsHandlerHost {
|
|
3
3
|
sendError?(id: string | number, code: number, message: string): void;
|
|
4
4
|
sendResponse(id: string | number, result?: unknown, error?: AgentRpcError): void;
|
|
5
|
+
writeClipboard?(text: string): Promise<void>;
|
|
5
6
|
}
|
|
6
7
|
export declare function handleSettingsListProviders(this: SettingsHandlerHost, msg: AgentRpcRequest): Promise<void>;
|
|
7
8
|
export declare function handleSettingsAddKey(this: SettingsHandlerHost, msg: AgentRpcRequest): Promise<void>;
|
|
8
9
|
export declare function handleSettingsRemoveKey(this: SettingsHandlerHost, msg: AgentRpcRequest): void;
|
|
9
10
|
export declare function handleSettingsGetKey(this: SettingsHandlerHost, msg: AgentRpcRequest): void;
|
|
11
|
+
export declare function handleSettingsCopyKey(this: SettingsHandlerHost, msg: AgentRpcRequest): Promise<void>;
|
|
10
12
|
export declare function handleSettingsToggleKey(this: SettingsHandlerHost, msg: AgentRpcRequest): void;
|
|
11
13
|
export declare function handleSettingsToggleModel(this: SettingsHandlerHost, msg: AgentRpcRequest): void;
|
|
12
14
|
export declare function handleSettingsListModels(this: SettingsHandlerHost, msg: AgentRpcRequest): Promise<void>;
|