/** * connect-update command * * agentlaunch connect-update [options] * * Updates the HTTP connect configuration for a deployed Agentverse agent. * Agents registered as HTTP connect agents forward inbound messages to an external * endpoint, optionally authenticating with a custom header/secret pair. * * Options: * --endpoint HTTPS URL the agent connects requests to * --auth-header Name of the auth header sent to the endpoint * --auth-secret Value of the auth header (treated as a secret) * --timeout Request timeout in milliseconds (default: 30000) * --json Output only JSON (machine-readable) * * Example: * agentlaunch connect-update agent1qxyz... \ * --endpoint https://my-service.example.com/webhook \ * --auth-header X-Webhook-Secret \ * --auth-secret mysecret123 \ * --timeout 15000 * */ import { Command } from "commander"; export interface ConnectUpdateOptions { endpoint?: string; authHeader?: string; authSecret?: string; timeout?: string; json?: boolean; } /** * Shape of the request body built from CLI options before calling the SDK. */ export interface ConnectUpdateInput { agentAddress: string; endpoint?: string; authHeader?: string; authSecret?: string; timeoutMs?: number; } /** * Shape of the data surfaced in the success output after the SDK call. */ export interface ConnectUpdateResult { agentAddress: string; endpoint?: string; authHeader?: string; timeoutMs?: number; updatedAt?: string; } export declare function registerConnectUpdateCommand(program: Command): void; //# sourceMappingURL=connect-update.d.ts.map