@autobusal/providers 1.37.7 → 1.37.8
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 +6 -0
- package/package.json +1 -1
- package/types/settings.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.37.8
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- **`SettingsData.map.tile_url`** - the basemap route maps draw on, from `/settings/get`. `null` until a commercial tile provider is configured server-side, which every client reads as "keep your built-in OpenStreetMap default". Served rather than built in because the mobile app shares this switch, and a compiled-in tile URL there could only be changed by shipping a store release.
|
|
8
|
+
|
|
3
9
|
## 1.37.7
|
|
4
10
|
|
|
5
11
|
### Added
|
package/package.json
CHANGED
package/types/settings.ts
CHANGED
|
@@ -7,6 +7,16 @@ export interface SettingsData {
|
|
|
7
7
|
|
|
8
8
|
url: string
|
|
9
9
|
|
|
10
|
+
// Edited: Claude (audit) - Date: 2026-08-17
|
|
11
|
+
// The basemap route maps draw on (common's Map/Tiles.tsx). null until a
|
|
12
|
+
// commercial tile provider is configured server-side, which every client
|
|
13
|
+
// reads as "keep your built-in OpenStreetMap default". Served rather than
|
|
14
|
+
// built in because the mobile app shares this one switch, and a compiled-in
|
|
15
|
+
// tile URL there could only be changed by shipping a store release.
|
|
16
|
+
map?: {
|
|
17
|
+
tile_url: string | null
|
|
18
|
+
}
|
|
19
|
+
|
|
10
20
|
// Edited: Ferjolt Ozuni - Date: 2026-08-11
|
|
11
21
|
// The label's ISO 4217 currency code, e.g. "EUR" - the same source
|
|
12
22
|
// Facts already trusts for its own Offer schema. null on a label that
|