From 3573ecae94aa328591d4b3a6e2d05e4fc9e261fc Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Feb 2026 23:32:50 +0100 Subject: Deduplicate and collapse routes with excessive short-name variants on stop arrivals (#137) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com> --- src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopsInfo.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Enmarcha.Sources.OpenTripPlannerGql/Queries') diff --git a/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopsInfo.cs b/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopsInfo.cs index 01557c0..f95de15 100644 --- a/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopsInfo.cs +++ b/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/StopsInfo.cs @@ -19,6 +19,7 @@ public class StopsInfoContent : IGraphRequest lat lon routes {{ + gtfsId shortName color textColor @@ -50,6 +51,7 @@ public class StopsInfoResponse : AbstractGraphResponse public class RouteDetails { + [JsonPropertyName("gtfsId")] public required string GtfsId { get; set; } [JsonPropertyName("shortName")] public string? ShortName { get; set; } [JsonPropertyName("color")] public string? Color { get; set; } [JsonPropertyName("textColor")] public string? TextColor { get; set; } -- cgit v1.3