@autobusal/providers 1.43.8 → 1.43.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/package.json +1 -1
- package/types/settings.ts +12 -5
package/package.json
CHANGED
package/types/settings.ts
CHANGED
|
@@ -25,6 +25,18 @@ export interface SettingsData {
|
|
|
25
25
|
// machine-readable currency the frontend has.
|
|
26
26
|
currency: string | null
|
|
27
27
|
|
|
28
|
+
// Claude - 2026-09-10: the brand's designed share preview (og:image), a
|
|
29
|
+
// 1200x630 JPEG uploaded on the admin's Visual tab, or null when none has
|
|
30
|
+
// been - Meta then falls back to the homepage hero as it always did.
|
|
31
|
+
share_image?: string | null
|
|
32
|
+
|
|
33
|
+
// Claude - 2026-09-12: the mobile app's launch artwork (1080x2400 WebP,
|
|
34
|
+
// uploaded on the admin's Visual tab), or null when the brand has not
|
|
35
|
+
// set one - the app then shows the artwork compiled into it. The web
|
|
36
|
+
// frontend does not render this; it travels here because the app reads
|
|
37
|
+
// the same public settings payload.
|
|
38
|
+
launch_artwork?: string | null
|
|
39
|
+
|
|
28
40
|
// Edited: Ferjolt Ozuni - Date: 2026-08-01
|
|
29
41
|
// Present ONLY while the brand is under construction - obtapi omits it
|
|
30
42
|
// entirely on a live site, so its presence is the switch itself and there
|
|
@@ -417,11 +429,6 @@ export interface LabelSettings {
|
|
|
417
429
|
link?: string
|
|
418
430
|
}
|
|
419
431
|
|
|
420
|
-
// Claude - 2026-09-10: the brand's designed share preview (og:image), a
|
|
421
|
-
// 1200x630 JPEG uploaded on the admin's Visual tab, or null when none has
|
|
422
|
-
// been - Meta then falls back to the homepage hero as it always did.
|
|
423
|
-
share_image?: string | null
|
|
424
|
-
|
|
425
432
|
// Edited: Ferjolt Ozuni - Date: 2026-08-08
|
|
426
433
|
// The label's chosen theme preset, or null/absent to keep reading colors
|
|
427
434
|
// straight out of settings.json exactly as before this existed - see
|