2 Commits

Author SHA1 Message Date
9e280a3285 add DisplayNameSubstring to map filter 2026-03-24 19:27:41 -07:00
2cdd6874b4 Typo fix
All checks were successful
continuous-integration/drone/push Build is passing
2026-03-01 16:10:29 -05:00
2 changed files with 3 additions and 2 deletions

View File

@@ -38,6 +38,7 @@ message MapRequest {
message MapFilter {
optional string DisplayName = 2;
optional int32 GameID = 4;
optional string DisplayNameSubstring = 5;
}
message MapList {

View File

@@ -12,10 +12,10 @@ service MapsService {
rpc Delete(MapId) returns (NullResponse);
rpc List(ListRequest) returns (MapList);
rpc IncrementLoadCount(MapId) returns (NullResponse);
rpc GetSnmfDownloadUrl(MapId) returns (SnmfDownloadUrl);
rpc GetSnfmDownloadUrl(MapId) returns (SnfmDownloadUrl);
}
message SnmfDownloadUrl { string Url = 1; }
message SnfmDownloadUrl { string Url = 1; }
message MapIdList { repeated int64 ID = 1; }