@adcp/sdk API Reference - v10.0.1
    Preparing search index...

    Interface WebhookParseSuccess

    interface WebhookParseSuccess {
        ok: true;
        protocol: "mcp" | "a2a";
        envelope: MCPWebhookPayload | Task | TaskStatusUpdateEvent;
        result: unknown;
        metadata: {
            taskId: string;
            taskType: string;
            operationId: string;
            contextId?: string;
            idempotencyKey?: string;
            status: TaskStatus;
            timestamp?: string;
            message?: string;
        };
    }
    Index

    Properties

    ok: true
    protocol: "mcp" | "a2a"
    envelope: MCPWebhookPayload | Task | TaskStatusUpdateEvent
    result: unknown
    metadata: {
        taskId: string;
        taskType: string;
        operationId: string;
        contextId?: string;
        idempotencyKey?: string;
        status: TaskStatus;
        timestamp?: string;
        message?: string;
    }