strings not used internally11

This commit is contained in:
Priec
2026-09-07 10:25:14 +02:00
parent 042993fafc
commit 082b77d35a
10 changed files with 147 additions and 31 deletions

View File

@@ -78,13 +78,19 @@ message GetDocumentsRequest {
optional string source_table_name = 5;
}
enum DocumentDataChangeKind {
DOCUMENT_DATA_CHANGE_KIND_UNSPECIFIED = 0;
DOCUMENT_DATA_CHANGE_KIND_GENERATED = 1;
DOCUMENT_DATA_CHANGE_KIND_USER_ADJUSTMENT = 2;
}
message Document {
int64 snapshot_id = 1;
int64 document_id = 2;
int64 schema_id = 3;
repeated SourceRecord source_records = 4;
string data_json = 5;
string change_kind = 6;
DocumentDataChangeKind change_kind = 6;
int32 version_number = 7;
string created_at = 8;
string updated_at = 9;