Cerbos JavaScript SDK
    Preparing search index...

    Interface ChangeOriginGit

    Details of a change made to a store when syncing it with a Git repository.

    interface ChangeOriginGit {
        author?: string;
        authorDate?: Date;
        commitDate?: Date;
        committer?: string;
        from: "git";
        hash?: string;
        message?: string;
        ref?: string;
        repo?: string;
    }
    Index

    Properties

    author?: string

    The author of the commit with which the store was synced.

    authorDate?: Date

    The author date of the commit with which the store was synced.

    commitDate?: Date

    The commit date of the commit with which the store was synced.

    committer?: string

    The committer of the commit with which the store was synced.

    from: "git"

    Discriminator to mark the change as being made when syncing the store with a Git repository.

    hash?: string

    The hash of the commit with which the store was synced.

    message?: string

    The message of the commit with which the store was synced.

    ref?: string

    The Git ref with which the store was synced.

    repo?: string

    The Git repository with which the store was synced.