@opentripplanner/core-utils 9.0.0-alpha.31 → 9.0.0-alpha.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,7 +9,6 @@ query Plan(
9
9
  $carReluctance: Float
10
10
  $walkReluctance: Float
11
11
  $arriveBy: Boolean
12
- $intermediatePlaces: [InputCoordinates]
13
12
  $preferred: InputPreferred
14
13
  $unpreferred: InputUnpreferred
15
14
  $banned: InputBanned
@@ -22,7 +21,6 @@ query Plan(
22
21
  carReluctance: $carReluctance
23
22
  date: $date
24
23
  fromPlace: $fromPlace
25
- intermediatePlaces: $intermediatePlaces
26
24
  # Currently only supporting EN locale, used for times and text
27
25
  locale: "en"
28
26
  numItineraries: $numItineraries
@@ -205,6 +203,20 @@ query Plan(
205
203
  }
206
204
  transitLeg
207
205
  trip {
206
+ arrivalStoptime {
207
+ stop {
208
+ gtfsId
209
+ id
210
+ }
211
+ stopPosition
212
+ }
213
+ departureStoptime {
214
+ stop {
215
+ gtfsId
216
+ id
217
+ }
218
+ stopPosition
219
+ }
208
220
  gtfsId
209
221
  id
210
222
  tripHeadsign
package/src/profile.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export function filterProfileOptions(response) {
2
- // Filter out similar options. TODO: handle on server?
2
+ // Filter out similar options. TODO: handle on server??
3
3
  const optStrs = [];
4
4
  const filteredIndices = [];
5
5