3 Commits

Author SHA1 Message Date
442e7724ed Remove map ID from MapFilter 2024-07-21 17:21:00 -07:00
f8d480e834 fix inconsistency (#2)
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #2
Co-authored-by: Quaternions <krakow20@gmail.com>
Co-committed-by: Quaternions <krakow20@gmail.com>
2024-07-19 19:00:53 +00:00
5cfa6745a6 need serde rename or else everything is wrong
All checks were successful
continuous-integration/drone/push Build is passing
we really out here doing codegen
2024-07-18 15:11:53 -07:00
2 changed files with 4 additions and 5 deletions

View File

@@ -38,10 +38,9 @@ message MapRequest {
}
message MapFilter {
int64 ID = 1;
optional string DisplayName = 2;
optional string Creator = 3;
optional int32 GameID = 4;
optional string DisplayName = 1;
optional string Creator = 2;
optional int32 GameID = 3;
}
message MapList {

View File

@@ -27,7 +27,7 @@ message TransactionCreate {
message TransactionUpdate {
string ID = 1;
optional int64 Value = 2;
optional int64 StateID = 3;
optional int32 StateID = 3;
optional google.protobuf.Struct Data = 4;
}