preview pane in client

This commit is contained in:
Priec
2026-08-14 08:46:08 +02:00
parent 85602159f4
commit aa8b36014e
5 changed files with 10 additions and 2 deletions

2
client

Submodule client updated: 75221c3adb...7027c47443

View File

@@ -386,6 +386,10 @@ message GetTableDataResponse {
// The generation returned by this response. Zero is never returned.
int64 row_version = 5;
// Active journal containing this row's automatic accounting line, when the
// table is ACCOUNTING-enabled and the row has been posted.
optional int64 journal_id = 6;
}
// Count non-deleted rows.

Binary file not shown.

View File

@@ -350,6 +350,10 @@ pub struct GetTableDataResponse {
/// The generation returned by this response. Zero is never returned.
#[prost(int64, tag = "5")]
pub row_version: i64,
/// Active journal containing this row's automatic accounting line, when the
/// table is ACCOUNTING-enabled and the row has been posted.
#[prost(int64, optional, tag = "6")]
pub journal_id: ::core::option::Option<i64>,
}
/// Count non-deleted rows.
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]

2
server

Submodule server updated: f57088e548...e17f92785a