mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-24 10:39:08 -06:00
12 lines
541 B
TypeScript
12 lines
541 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { JsonValue } from "./serde_json/JsonValue";
|
|
|
|
export type UpdateRowRequest = { primary_key_column: string, primary_key_value: Object,
|
|
/**
|
|
* Row data, which is expected to be a map from column name to value.
|
|
*
|
|
* Note that the row is represented as a map to allow selective cells as opposed to
|
|
* Vec<serde_json::Value>. Absence is different from setting a column to NULL.
|
|
*/
|
|
row: { [key in string]?: JsonValue }, };
|