From 1f5668308c4b7edd38fb4e00230bde7f180ab576 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Sat, 21 Jun 2025 19:34:49 -0700 Subject: [PATCH 1/3] add new fields to maps --- maps.proto | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/maps.proto b/maps.proto index 5b1954d..4e90607 100644 --- a/maps.proto +++ b/maps.proto @@ -27,6 +27,10 @@ message MapResponse { string Creator = 3; int32 GameID = 4; int64 Date = 5; + int64 CreatedAt = 6; + int64 UpdatedAt = 7; + int64 Submitter = 8; + int64 Thumbnail = 9; } message MapRequest { @@ -35,12 +39,15 @@ message MapRequest { optional string Creator = 3; optional int32 GameID = 4; optional int64 Date = 5; + optional int64 Submitter = 6; + optional int64 Thumbnail = 7; } message MapFilter { optional string DisplayName = 2; optional string Creator = 3; optional int32 GameID = 4; + optional int64 Submitter = 5; } message MapList { @@ -58,5 +65,4 @@ message Pagination { } message NullResponse { - -} \ No newline at end of file +} -- 2.49.1 From bbfa1cad3b790b54ade9865ef49c42e4dff790b8 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Sat, 21 Jun 2025 19:36:55 -0700 Subject: [PATCH 2/3] thumbnail doesn't make sense as a filter option --- maps.proto | 1 - 1 file changed, 1 deletion(-) diff --git a/maps.proto b/maps.proto index 4e90607..123b76a 100644 --- a/maps.proto +++ b/maps.proto @@ -40,7 +40,6 @@ message MapRequest { optional int32 GameID = 4; optional int64 Date = 5; optional int64 Submitter = 6; - optional int64 Thumbnail = 7; } message MapFilter { -- 2.49.1 From 67fb7fc74ebb973a4d0a94897e650995e9802bb5 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Sat, 21 Jun 2025 20:06:43 -0700 Subject: [PATCH 3/3] include AssetVersion --- maps.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/maps.proto b/maps.proto index 123b76a..d670692 100644 --- a/maps.proto +++ b/maps.proto @@ -31,6 +31,7 @@ message MapResponse { int64 UpdatedAt = 7; int64 Submitter = 8; int64 Thumbnail = 9; + int64 AssetVersion = 10; } message MapRequest { -- 2.49.1