zibri
    Preparing search index...

    A version, consisting of the actual version value and a starts end end date.

    type Version = {
        endsAt?: Date | null;
        startsAt: Date;
        value: SemVerVersion;
    }
    Index

    Properties

    endsAt?: Date | null

    The end date of this version. Can be left open if the version is the current latest.

    startsAt: Date

    The date after which this should be the active version. Used for date based version resolution.

    The actual version value in the SemVer format.