Member Junction
    Preparing search index...

    Interface PayloadManagerResult<P>

    interface PayloadManagerResult<P = any> {
        analysis?: PayloadAnalysisResult;
        applied: { additions: number; deletions: number; updates: number };
        blockedOperations?: {
            from?: unknown;
            operation: "add" | "update" | "delete";
            path: string;
            reason: string;
            timestamp: string;
            to?: unknown;
        }[];
        diff?: DeepDiffResult;
        requiresFeedback?: boolean;
        result: P;
        timestamp: Date;
        warnings: string[];
    }

    Type Parameters

    • P = any
    Index

    Properties

    Detailed analysis of suspicious changes

    applied: { additions: number; deletions: number; updates: number }

    Counts of applied operations

    blockedOperations?: {
        from?: unknown;
        operation: "add" | "update" | "delete";
        path: string;
        reason: string;
        timestamp: string;
        to?: unknown;
    }[]

    Blocked operations with detailed tracking

    Diff between original and result payload

    requiresFeedback?: boolean

    Whether feedback is required from the agent

    result: P

    The resulting payload after changes

    timestamp: Date

    Timestamp of the operation

    warnings: string[]

    Basic warnings from the change process