nexus-agents - v2.80.0
    Preparing search index...

    Interface ReviewResponseMessage

    Review response from a reviewer.

    interface ReviewResponseMessage {
        type: "review_response";
        reviewerId: string;
        requesterId: string;
        approved: boolean;
        feedback: string;
        suggestions?: string[];
        severity?: "none" | "critical" | "minor" | "major";
    }
    Index

    Properties

    type: "review_response"
    reviewerId: string
    requesterId: string
    approved: boolean
    feedback: string
    suggestions?: string[]
    severity?: "none" | "critical" | "minor" | "major"