SerializedSchema
Public Interface
Table of Contents
Signature
interface SerializedSchema {}
Properties
recordVersions
Public PropertySignature
Record versions are the versions for each record type. e.g. adding a new field to a record
Signature
recordVersions: Record<
  string,
  | {
      version: number
      subTypeVersions: Record<string, number>
      subTypeKey: string
    }
  | {
      version: number
    }
>
References
schemaVersion
Public PropertySignature
Schema version is the version for this type you're looking at right now
Signature
schemaVersion: number
storeVersion
Public PropertySignature
Store version is the version for the structure of the store. e.g. higher level structure like removing or renaming a record type.
Signature
storeVersion: number