@autobusal/providers 1.22.0 → 1.23.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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/types/locations.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.23.0
|
|
4
|
+
|
|
5
|
+
- `CountryData.timezone` — the IANA zone, so the date picker can floor itself on the departure city's date rather than ours or the buyer's. Carried on `/api/cities/browse`, which the search form already loads.
|
|
6
|
+
|
|
3
7
|
## 1.22.0
|
|
4
8
|
|
|
5
9
|
**Flexible Ticket, and the `policies` rename.**
|
package/package.json
CHANGED
package/types/locations.ts
CHANGED
|
@@ -26,6 +26,11 @@ export interface CountryData {
|
|
|
26
26
|
available?: number
|
|
27
27
|
stats?: CountryStats
|
|
28
28
|
|
|
29
|
+
// Edited: Ferjolt Ozuni - Date: 2026-08-03
|
|
30
|
+
// IANA zone, so the date picker can floor itself on today WHERE THE COACH
|
|
31
|
+
// LEAVES rather than on our clock or the buyer's.
|
|
32
|
+
timezone?: string | null
|
|
33
|
+
|
|
29
34
|
// Edited: Ferjolt Ozuni - Date: 2026-07-31
|
|
30
35
|
// Optional hand-written override for the public country page's title/
|
|
31
36
|
// description/keywords - see LocationCountry.tsx for the fallback-to-
|