@shortcut/client
    Preparing search index...

    Interface Commit

    interface Commit {
        author?: MemberSlim | null;
        created_at?: string;
        entity_type?: "commit";
        external_url?: string;
        hash?: string;
        id?: number;
        message?: string;
        repository?: RepositorySlim;
        stories?: NestedStorySlimList;
        timestamp?: string;
        updated_at?: string | null;
        uri?: string;
    }
    Index

    Properties

    author?: MemberSlim | null

    The Member who created the Doc.

    created_at?: string

    The time/date the Commit was created.

    date-time

    entity_type?: "commit"

    The type of this entity.

    external_url?: string

    The URL of the Commit in the VCS provider.

    hash?: string

    The Commit hash.

    id?: number

    The unique ID of the Commit.

    int64

    message?: string

    The Commit message, truncated to the first line (up to 1024 characters).

    repository?: RepositorySlim

    The Repository that contains the Commit.

    A list of Stories associated with this Project.

    timestamp?: string

    The time/date the Commit was pushed.

    date-time

    updated_at?: string | null

    The time/date the Commit was updated.

    date-time

    uri?: string

    A resolvable URI for the entity that will return the full representation.

    2048

    ^https?://.+$