@autobusal/providers 1.37.9 → 1.37.10
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/reviews.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.37.10
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- `ReviewData.published_on` - the review's date as ISO 8601, beside the localized display string. Structured data needs a machine date, and reversing a printed `d/m/Y` back into one would couple the schema to a locale format.
|
|
8
|
+
|
|
3
9
|
## 1.37.9
|
|
4
10
|
|
|
5
11
|
### Added
|
package/package.json
CHANGED
package/types/reviews.ts
CHANGED
|
@@ -39,5 +39,9 @@ export interface ReviewData {
|
|
|
39
39
|
// first name plus an initial, built server-side
|
|
40
40
|
author: string
|
|
41
41
|
published: string | null
|
|
42
|
+
// Edited: Claude - Date: 2026-08-20
|
|
43
|
+
// the same day as `published` but plain ISO 8601 (YYYY-MM-DD) - schema.org's
|
|
44
|
+
// datePublished refuses the d/m/Y display string above
|
|
45
|
+
published_on: string | null
|
|
42
46
|
reply: ReviewReplyData | null
|
|
43
47
|
}
|