removed legacy

This commit is contained in:
Priec
2026-07-29 22:00:19 +02:00
parent 4086f1c8e0
commit db827490ff
10 changed files with 16 additions and 32 deletions

View File

@@ -123,7 +123,6 @@ message PostTableDataRequest {
// - Some application-specific validations may apply (e.g., max length for
// certain fields like "telefon")
map<string, google.protobuf.Value> data = 3;
reserved 4;
}
// Insert response.
@@ -137,17 +136,14 @@ message PostTableDataResponse {
// The id of the inserted row.
int64 inserted_id = 3;
reserved 4;
// Revision committed for the inserted row.
int64 row_revision = 5;
int64 row_revision = 4;
}
// One row in a bulk insert request.
message PostTableDataBulkRow {
// Required. Same data payload as PostTableDataRequest.data.
map<string, google.protobuf.Value> data = 1;
reserved 2;
}
// Bulk insert request.
@@ -212,10 +208,8 @@ message PutTableDataResponse {
// The id of the updated row.
int64 updated_id = 3;
reserved 4;
// Revision committed for the updated row.
int64 row_revision = 5;
int64 row_revision = 4;
}
// Soft-delete a single row.
@@ -237,8 +231,6 @@ message DeleteTableDataRequest {
message DeleteTableDataResponse {
// True if a row was marked deleted (id existed and was not already deleted).
bool success = 1;
reserved 2;
}
// Fetch a single non-deleted row by id.