agentic-openapi-parser
    Preparing search index...

    Interface MockExecutor

    interface MockExecutor {
        calls: MockExecutorCall[];
        execute(
            spec: Record<string, unknown>,
            toolName: string,
            args: Record<string, unknown>,
            options?: ExecuteToolOptions,
        ): Promise<unknown>;
        executeMany(
            spec: Record<string, unknown>,
            calls: ToolCallRequest[],
            options?: ExecuteToolOptions,
        ): Promise<ToolCallOutcome[]>;
    }

    Hierarchy (View Summary)

    Index

    Every execute() call received so far, in call order — inspect to assert what a consumer's adapter wiring actually called.