Compare commits

..

3 Commits

Author SHA1 Message Date
2186c5cb96 Remove Map ID filter (previously it was just 0) (#3)
All checks were successful
continuous-integration/drone/push Build is passing
ID is unused and unwanted for MapFilter.

Reviewed-on: #3
Reviewed-by: itzaname <itzaname@noreply@itzana.me>
Co-authored-by: Quaternions <krakow20@gmail.com>
Co-committed-by: Quaternions <krakow20@gmail.com>
2024-07-22 00:40:43 +00: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 1 additions and 2 deletions

View File

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

View File

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