@opentripplanner/core-utils 14.2.3 → 14.3.0
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.
- package/esm/__tests__/__mocks__/complex-fares.json +1698 -0
- package/esm/complex-fares.json +1698 -0
- package/esm/itinerary.js +9 -4
- package/esm/itinerary.js.map +1 -1
- package/esm/otpSchema.json +17765 -14884
- package/esm/planQuery.graphql +1 -3
- package/esm/query-gen.js +1 -1
- package/esm/query-gen.js.map +1 -1
- package/lib/__tests__/__mocks__/complex-fares.json +1698 -0
- package/lib/itinerary.d.ts.map +1 -1
- package/lib/itinerary.js +4 -3
- package/lib/itinerary.js.map +1 -1
- package/lib/otpSchema.json +17765 -14884
- package/lib/planQuery.graphql +1 -3
- package/package.json +2 -2
- package/src/__tests__/__mocks__/complex-fares.json +1698 -0
- package/src/__tests__/itinerary.ts +5 -0
- package/src/itinerary.ts +10 -3
- package/src/otpSchema.json +17765 -14884
- package/src/planQuery.graphql +1 -3
- package/tsconfig.tsbuildinfo +1 -1
package/lib/planQuery.graphql
CHANGED
|
@@ -7,7 +7,6 @@ query Plan(
|
|
|
7
7
|
$fromPlace: String!
|
|
8
8
|
$modes: [TransportMode]
|
|
9
9
|
$numItineraries: Int
|
|
10
|
-
$preferred: InputPreferred
|
|
11
10
|
$time: String
|
|
12
11
|
$toPlace: String!
|
|
13
12
|
$unpreferred: InputUnpreferred
|
|
@@ -25,7 +24,6 @@ query Plan(
|
|
|
25
24
|
# Currently only supporting EN locale, used for times and text
|
|
26
25
|
locale: "en"
|
|
27
26
|
numItineraries: $numItineraries
|
|
28
|
-
preferred: $preferred
|
|
29
27
|
time: $time
|
|
30
28
|
toPlace: $toPlace
|
|
31
29
|
transportModes: $modes
|
|
@@ -237,7 +235,7 @@ query Plan(
|
|
|
237
235
|
}
|
|
238
236
|
stopCalls {
|
|
239
237
|
stopLocation {
|
|
240
|
-
|
|
238
|
+
__typename
|
|
241
239
|
}
|
|
242
240
|
}
|
|
243
241
|
to {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentripplanner/core-utils",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.3.0",
|
|
4
4
|
"description": "Core functionality that is shared among numerous UI components",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=13"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"gitHead": "0af1b7cda60bd4252b219dcf893e01c2acb2ed5d",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@opentripplanner/types": "8.
|
|
29
|
+
"@opentripplanner/types": "8.3.0"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"tsc": "tsc"
|