Interface BBTHistory

Change history of building block types

interface BBTHistory {
    getAttributeChanges(): AttributeChange[];
    getAuthor(): string;
    getDeletedBBs(): BBTChange[];
    getInsertedBBs(): BBTChange[];
    getTimestamp(): Date;
    getUpdatedBBs(): BBTChange[];
}

Methods

  • Get name of change's author

    Returns string

  • Get an array of objects that represent deleted Building Blocks

    Returns BBTChange[]

  • Get an array of objects that represent inserted Building Blocks

    Returns BBTChange[]

  • Get timestamp of changes

    Returns Date

  • Get an array of objects that represent updated Building Blocks

    Returns BBTChange[]