@tomtom-org/maps-sdk 0.45.12 → 0.46.1
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/CHANGELOG.md +27 -0
- package/core/dist/core.es.js +1 -1
- package/core/dist/core.es.js.map +1 -1
- package/core/dist/index.d.ts +285 -85
- package/core/package.json +0 -3
- package/map/dist/index.d.ts +34 -23
- package/map/dist/map.es.js +1 -1
- package/map/dist/map.es.js.map +1 -1
- package/package.json +5 -3
- package/services/dist/index.d.ts +703 -88
- package/services/dist/services.es.js +1 -1
- package/services/dist/services.es.js.map +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@tomtom-org/maps-sdk",
|
|
3
3
|
"author": "TomTom International B.V.",
|
|
4
4
|
"license": "See in LICENSE.txt",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.46.1",
|
|
6
6
|
"description": "TomTom Maps for JavaScript",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"tomtom",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"nodejs"
|
|
19
19
|
],
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@biomejs/biome": "^2.4.
|
|
21
|
+
"@biomejs/biome": "^2.4.6",
|
|
22
22
|
"@size-limit/file": "^11.2.0",
|
|
23
23
|
"@size-limit/preset-app": "^11.2.0",
|
|
24
24
|
"size-limit": "^11.2.0",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"@turf/turf": "^7.3.4",
|
|
30
30
|
"lodash-es": "^4.17.23",
|
|
31
|
-
"maplibre-gl": "^5.
|
|
31
|
+
"maplibre-gl": "^5.20.0",
|
|
32
32
|
"zod": "^4.3.6"
|
|
33
33
|
},
|
|
34
34
|
"size-limit": [
|
|
@@ -77,6 +77,8 @@
|
|
|
77
77
|
"build:api-reference": "typedoc",
|
|
78
78
|
"build:examples": "pnpm -F @tomtom-org/maps-sdk-examples build",
|
|
79
79
|
"build:sdk": "pnpm -F core build && pnpm -F services build && pnpm -F map build",
|
|
80
|
+
"eval:explorer": "pnpm -F @testing/ai-eval-explorer dev",
|
|
81
|
+
"eval:explorer:build": "pnpm -F @testing/ai-eval-explorer build",
|
|
80
82
|
"build:plugins": "pnpm -F './plugins/*' build",
|
|
81
83
|
"clean": "pnpm -r --no-bail clean:dist && pnpm -r --no-bail clean:cache",
|
|
82
84
|
"e2e-test:examples": "pnpm -F @tomtom-org/maps-sdk-examples test:e2e",
|