Creating Plot Twists
    Preparing search index...

    Type Alias PriorityUpdate

    PriorityUpdate: ({ id: Uuid } | { key: string }) & Partial<
        Pick<Priority, "title" | "archived">,
    > & { parent?: { id: Uuid } | { key: string } }

    Type for updating existing priorities. Must provide either id or key to identify the priority to update. Set parent to move the priority under a new parent (requires PriorityAccess.Full).

    Type Declaration

    • { id: Uuid }
    • { key: string }
    • Optionalparent?: { id: Uuid } | { key: string }

      Move the priority under a new parent. Requires PriorityAccess.Full.