API reference › @evolu/common › local‑first/Schema › UpdateValues
type UpdateValues<T> = {
id: InferOutput<T["id"]>;
} & { readonly [K in Exclude<keyof T, "id">]?: InferOutput<T[K]> } & {
isDeleted?: SqliteBoolean;
};
Defined in: packages/common/src/local-first/Schema.ts:276
Update values: id required, all other columns optional. Includes
isDeleted for soft deletes.
Type Declaration
| Name | Type | Defined in |
|---|---|---|
id | InferOutput<T["id"]> | packages/common/src/local-first/Schema.ts:277 |
Type Declaration
| Name | Type | Defined in |
|---|---|---|
isDeleted? | SqliteBoolean | packages/common/src/local-first/Schema.ts:281 |