API reference › @evolu/common › local‑first/Schema › MutationChange
Defined in: packages/common/src/local-first/Schema.ts:565
Database change produced by a Mutation, attributed to the OwnerId that owns the row.
Extends
Properties
id
id: string & Brand<"Id">;
Inherited from
isDelete
isDelete: boolean | null;
Inherited from
isInsert
isInsert: boolean;
Inherited from
ownerId
readonly ownerId: string & Brand<"Id"> & Brand<"OwnerId">;
Defined in: packages/common/src/local-first/Schema.ts:566
table
table: string;
Inherited from
values
values: Readonly<
Partial<
Record<
string,
| string
| Uint8Array<ArrayBufferLike>
| (number & Brand<"NonNaN"> & Brand<"Finite">)
| null
>
>
> & Brand<"ValidDbChangeValues">;