@autobusal/providers 1.43.6 → 1.43.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/package.json +1 -1
- package/types/orders.ts +15 -0
- package/types/settings.ts +5 -0
package/package.json
CHANGED
package/types/orders.ts
CHANGED
|
@@ -66,6 +66,21 @@ export interface OrderData {
|
|
|
66
66
|
reference?: OrderData
|
|
67
67
|
updated_at: string
|
|
68
68
|
account?: any
|
|
69
|
+
/*
|
|
70
|
+
* Claude - 2026-09-07 (orders table redesign): how it was paid and who
|
|
71
|
+
* sold it - both computed by obtapi's Orders\BrowseController via
|
|
72
|
+
* Libraries\Orders\Seller, so only the listing carries them.
|
|
73
|
+
*/
|
|
74
|
+
paid_by?: string
|
|
75
|
+
payment?: {
|
|
76
|
+
method: string | null
|
|
77
|
+
label: string | null
|
|
78
|
+
}
|
|
79
|
+
seller?: {
|
|
80
|
+
name: string
|
|
81
|
+
kind: 'website' | 'own' | 'agent' | 'api' | 'operator' | 'admin'
|
|
82
|
+
domain: string | null
|
|
83
|
+
}
|
|
69
84
|
|
|
70
85
|
/*
|
|
71
86
|
* Edited: Ferjolt Ozuni - Date: 2026-08-07
|
package/types/settings.ts
CHANGED
|
@@ -417,6 +417,11 @@ export interface LabelSettings {
|
|
|
417
417
|
link?: string
|
|
418
418
|
}
|
|
419
419
|
|
|
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
|
+
|
|
420
425
|
// Edited: Ferjolt Ozuni - Date: 2026-08-08
|
|
421
426
|
// The label's chosen theme preset, or null/absent to keep reading colors
|
|
422
427
|
// straight out of settings.json exactly as before this existed - see
|