Creating Plot Twists
    Preparing search index...

    Type Alias NewScheduleOccurrence

    NewScheduleOccurrence: Pick<ScheduleOccurrence, "occurrence" | "start"> & Partial<
        Omit<ScheduleOccurrence, "occurrence" | "start" | "schedule" | "tags">,
    > & {
        tags?: NewTags;
        twistTags?: Partial<Record<Tag, boolean>>;
        unread?: boolean;
        contacts?: NewScheduleContact[];
    }

    Type for creating or updating schedule occurrences.

    Type Declaration

    • Optionaltags?: NewTags

      Tags for this occurrence

    • OptionaltwistTags?: Partial<Record<Tag, boolean>>

      Add or remove the twist's tags on this occurrence

    • Optionalunread?: boolean

      Whether this occurrence should be marked as unread

    • Optionalcontacts?: NewScheduleContact[]

      Contacts to upsert on this occurrence's schedule