@runloop/remote-agents-sdk
    Preparing search index...

    Type Alias ApplyPatchApprovalParams

    type ApplyPatchApprovalParams = {
        callId: string;
        conversationId: ThreadId;
        fileChanges: { [key in string]?: FileChange };
        grantRoot: string | null;
        reason: string | null;
    }
    Index

    Properties

    callId: string

    Use to correlate this with [codex_protocol::protocol::PatchApplyBeginEvent] and [codex_protocol::protocol::PatchApplyEndEvent].

    conversationId: ThreadId
    fileChanges: { [key in string]?: FileChange }
    grantRoot: string | null

    When set, the agent is asking the user to allow writes under this root for the remainder of the session (unclear if this is honored today).

    reason: string | null

    Optional explanatory reason (e.g. request for extra write access).