Table of contents

A diff describing the changes to a record.

interface RecordsDiff<R extends UnknownRecord> {}

Properties

added

added: Record<IdOf<R>, R>

removed

removed: Record<IdOf<R>, R>

updated

updated: Record<IdOf<R>, [from: R, to: R]>

MigrationSequenceSerializedSchemaV1