@autobusal/providers 1.43.6 → 1.43.7
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/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
|