@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface ResolvedAction

    One action a request body covers, plus the direction inference where the fine-grained vocabulary distinguishes increase/decrease or extend/shorten. touched_fields lists the dotted paths that triggered this entry (useful for debugging).

    interface ResolvedAction {
        action: MediaBuyValidAction;
        direction?:
            | "shift"
            | "increase"
            | "decrease"
            | "reallocate"
            | "extend"
            | "shorten";
        touched_fields: string[];
    }
    Index

    Properties

    action: MediaBuyValidAction
    direction?:
        | "shift"
        | "increase"
        | "decrease"
        | "reallocate"
        | "extend"
        | "shorten"

    Direction tag. Present when the resolver picked between fine-grained siblings (e.g. increase_budget vs decrease_budget).

    touched_fields: string[]