@autobusal/providers 1.3.7 → 1.3.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 +9 -0
- package/package.json +1 -1
- package/types/settings.ts +13 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to `@autobusal/providers` are documented here. This project
|
|
|
4
4
|
adheres to [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.3.8] - 2026-07-29
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `LabelSettings.share`: admin-editable footer social-share links
|
|
12
|
+
(Facebook/X/Instagram/TikTok/LinkedIn/Trustpilot URLs), distinct from
|
|
13
|
+
the existing `LabelSettings.social` (OAuth login credentials). Feeds
|
|
14
|
+
the public `SettingsData.preferences.social` shape, unchanged.
|
|
15
|
+
|
|
7
16
|
## [1.3.7] - 2026-07-27
|
|
8
17
|
|
|
9
18
|
### Added
|
package/package.json
CHANGED
package/types/settings.ts
CHANGED
|
@@ -181,6 +181,19 @@ export interface LabelSettings {
|
|
|
181
181
|
template_language?: string
|
|
182
182
|
display_phone?: string
|
|
183
183
|
}
|
|
184
|
+
|
|
185
|
+
// Edited: Ferjolt Ozuni - Date: 2026-07-29
|
|
186
|
+
// Admin-managed footer social-share links (public preferences.social
|
|
187
|
+
// above is populated from this) - distinct from `social` above, which
|
|
188
|
+
// holds OAuth login credentials, not share URLs.
|
|
189
|
+
share?: {
|
|
190
|
+
facebook?: string
|
|
191
|
+
x?: string
|
|
192
|
+
instagram?: string
|
|
193
|
+
tiktok?: string
|
|
194
|
+
linkedin?: string
|
|
195
|
+
trustpilot?: string
|
|
196
|
+
}
|
|
184
197
|
}
|
|
185
198
|
|
|
186
199
|
// Edited: Ferjolt Ozuni - Date: 2026-07-18
|