@autobusal/providers 1.17.0 → 1.18.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 +6 -0
- package/package.json +1 -1
- package/types/settings.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ adheres to [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
|
7
7
|
> Note: 1.8.0 through 1.11.0 were published without changelog entries. The
|
|
8
8
|
> gap is left as-is rather than reconstructed after the fact.
|
|
9
9
|
|
|
10
|
+
## 1.18.0
|
|
11
|
+
|
|
12
|
+
`LabelSettings.reviews` — the per-brand review moderation setting
|
|
13
|
+
(`auto_publish`, `threshold`). Absent or false means every review waits for a
|
|
14
|
+
human, which is the default for every brand.
|
|
15
|
+
|
|
10
16
|
## [1.17.0] - 2026-08-02
|
|
11
17
|
|
|
12
18
|
### Changed
|
package/package.json
CHANGED
package/types/settings.ts
CHANGED
|
@@ -252,6 +252,14 @@ export interface LabelSettings {
|
|
|
252
252
|
title?: string
|
|
253
253
|
message?: string
|
|
254
254
|
}
|
|
255
|
+
|
|
256
|
+
// Edited: Ferjolt Ozuni - Date: 2026-08-02
|
|
257
|
+
// Admin-managed review moderation. Absent or auto_publish=false means
|
|
258
|
+
// every review waits for a human, which is the default for every brand.
|
|
259
|
+
reviews?: {
|
|
260
|
+
auto_publish?: boolean
|
|
261
|
+
threshold?: number
|
|
262
|
+
}
|
|
255
263
|
}
|
|
256
264
|
|
|
257
265
|
// Edited: Ferjolt Ozuni - Date: 2026-07-18
|