@wemap/routers 11.8.1 → 11.8.3
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/index.ts +3 -3
- package/package.json +4 -4
package/index.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/* Model */
|
|
3
|
-
export { default as RouterResponse } from './src/model/RouterResponse.js';
|
|
4
|
-
export { default as Itinerary } from './src/model/Itinerary.js';
|
|
5
|
-
export { default as Leg } from './src/model/Leg.js';
|
|
3
|
+
export { default as RouterResponse, type RouterResponseJson } from './src/model/RouterResponse.js';
|
|
4
|
+
export { default as Itinerary, type ItineraryJson } from './src/model/Itinerary.js';
|
|
5
|
+
export { default as Leg, type LegJson } from './src/model/Leg.js';
|
|
6
6
|
export type { Step, MinStepInfo } from './src/model/Step.js';
|
|
7
7
|
export type { LevelChange } from './src/model/LevelChange.js';
|
|
8
8
|
export type { StepExtra } from './src/model/StepExtra.js';
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"directory": "packages/routers"
|
|
13
13
|
},
|
|
14
14
|
"name": "@wemap/routers",
|
|
15
|
-
"version": "11.8.
|
|
15
|
+
"version": "11.8.3",
|
|
16
16
|
"bugs": {
|
|
17
17
|
"url": "https://github.com/wemap/wemap-modules-js/issues"
|
|
18
18
|
},
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"@turf/convex": "^6.5.0",
|
|
35
35
|
"@turf/helpers": "^6.5.0",
|
|
36
36
|
"@types/mapbox__polyline": "^1.0.2",
|
|
37
|
-
"@wemap/geo": "^11.8.
|
|
37
|
+
"@wemap/geo": "^11.8.2",
|
|
38
38
|
"@wemap/logger": "^11.0.1",
|
|
39
39
|
"@wemap/maths": "^11.0.1",
|
|
40
|
-
"@wemap/osm": "^11.8.
|
|
40
|
+
"@wemap/osm": "^11.8.2",
|
|
41
41
|
"@wemap/salesman.js": "^2.1.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
},
|
|
53
53
|
"./helpers/*": "./helpers/*"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "397bf109830445141c90a8222bbcde98bc567f01"
|
|
56
56
|
}
|