/** * ActivateInterface Handler - Activate ABAP Interface * * Uses AdtClient.activateInterface from @babamba2/mcp-abap-adt-clients. * Low-level handler: single method call. */ import type { HandlerContext } from '../../../lib/handlers/interfaces'; export declare const TOOL_DEFINITION: { readonly name: "ActivateInterfaceLow"; readonly available_in: readonly ["onprem", "cloud", "legacy"]; readonly description: "[low-level] Activate an ABAP interface. Returns activation status and any warnings/errors. Can use session_id and session_state from GetSession to maintain the same session."; readonly inputSchema: { readonly type: "object"; readonly properties: { readonly interface_name: { readonly type: "string"; readonly description: "Interface name (e.g., ZIF_MY_INTERFACE)."; }; readonly session_id: { readonly type: "string"; readonly description: "Session ID from GetSession. If not provided, a new session will be created."; }; readonly session_state: { readonly type: "object"; readonly description: "Session state from GetSession (cookies, csrf_token, cookie_store). Required if session_id is provided."; readonly properties: { readonly cookies: { readonly type: "string"; }; readonly csrf_token: { readonly type: "string"; }; readonly cookie_store: { readonly type: "object"; }; }; }; }; readonly required: readonly ["interface_name"]; }; }; interface ActivateInterfaceArgs { interface_name: string; session_id?: string; session_state?: { cookies?: string; csrf_token?: string; cookie_store?: Record; }; } /** * Main handler for ActivateInterface MCP tool * * Uses AdtClient.activateInterface - low-level single method call */ export declare function handleActivateInterface(context: HandlerContext, args: ActivateInterfaceArgs): Promise<{ isError: boolean; content: { type: string; text: any; }[]; }>; export {}; //# sourceMappingURL=handleActivateInterface.d.ts.map