get by position in general endpoint is now working properly well

This commit is contained in:
filipriec
2025-03-05 18:59:19 +01:00
parent 1a3c063fdd
commit c27fa586d3
6 changed files with 187 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ service TablesData {
rpc DeleteTableData (DeleteTableDataRequest) returns (DeleteTableDataResponse);
rpc GetTableData(GetTableDataRequest) returns (GetTableDataResponse);
rpc GetTableDataCount(GetTableDataCountRequest) returns (multieko2.common.CountResponse);
rpc GetTableDataByPosition(GetTableDataByPositionRequest) returns (GetTableDataResponse);
}
message PostTableDataRequest {
@@ -62,3 +62,9 @@ message GetTableDataCountRequest {
string profile_name = 1;
string table_name = 2;
}
message GetTableDataByPositionRequest {
string profile_name = 1;
string table_name = 2;
int32 position = 3;
}