Type Alias PlanUpdateData

PlanUpdateData: Partial<PlanData> & NonNullable<
    Partial<Pick<PlanData, "method" | "target">>,
>

Represents the data structure for updating a plan. All fields are optional, but method and target cannot be set to null or undefined.