Cut Down Maps Fields (#5)
All checks were successful
continuous-integration/drone/push Build is passing

Remove fields from MapResponse and other structs that will not be used in embedded contexts.

Reviewed-on: #5
Co-authored-by: Rhys Lloyd <krakow20@gmail.com>
Co-committed-by: Rhys Lloyd <krakow20@gmail.com>
This commit was merged in pull request #5.
This commit is contained in:
2025-08-07 00:39:45 +00:00
committed by Quaternions
parent 889662bc99
commit 69aa45ffe6

View File

@@ -24,22 +24,19 @@ message IdMessage {
message MapResponse { message MapResponse {
int64 ID = 1; int64 ID = 1;
string DisplayName = 2; string DisplayName = 2;
string Creator = 3;
int32 GameID = 4; int32 GameID = 4;
int64 Date = 5; uint32 Thumbnail = 6;
} }
message MapRequest { message MapRequest {
int64 ID = 1; int64 ID = 1;
optional string DisplayName = 2; optional string DisplayName = 2;
optional string Creator = 3;
optional int32 GameID = 4; optional int32 GameID = 4;
optional int64 Date = 5; optional uint32 Thumbnail = 6;
} }
message MapFilter { message MapFilter {
optional string DisplayName = 2; optional string DisplayName = 2;
optional string Creator = 3;
optional int32 GameID = 4; optional int32 GameID = 4;
} }
@@ -58,5 +55,4 @@ message Pagination {
} }
message NullResponse { message NullResponse {
}
}