@hashgraph/solo
    Preparing search index...

    Defines a schema which can be used to convert input data into a model instance.

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Properties

    mapper: ObjectMapper

    Accessors

    Methods

    • Transforms the plain javascript object into an instance of the model class. Applies any necessary migrations to the input data before creating the model instance.

      Parameters

      • data: object

        The plain javascript object to be transformed.

      • OptionalsourceVersion: Version<number>

        The version of the input data. If not provided, the version is introspected from or otherwise assumed based on the provided plain javascript object.

      Returns Promise<LocalConfig>

      an instance of the model class.

    • Validates the migrations for the schema. This method should be called during the application startup to ensure that the migrations are correctly defined.

      Due to the risk imposed by performing migrations on production data, we cannot afford to allow production code to ever perform a partial migration. A partial migration is defined as a series of migrations which result in the final migrated data being a version that is less than the current schema version. Executing a partial migration may leave the data in a state in which future modifications result in a corrupted object.

      Therefore, we should always ensure the migrations are correctly defined and that the migration sequence is unbroken. All actual migrations of data should validate the resulting object has reached the current schema version.

      The intent of this method is to ensure that the migrations are correctly defined during application startup and unit testing.

      Returns Promise<void>