@autobusal/providers 1.43.5 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.43.5",
3
+ "version": "1.43.7",
4
4
  "author": "Ferjolt Ozuni",
5
5
  "type": "module",
6
6
  "main": "index.ts",
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
@@ -542,6 +542,10 @@ export interface LabelPayments {
542
542
  nexi: GatewayCredentials<{
543
543
  api_key: string
544
544
  }> & {
545
+ // see the note on raiffeisen.currency above
546
+ currency: string
547
+ }
548
+
545
549
  /*
546
550
  * Claude - 2026-09-07: the Magus Pay Hub. A site id and secret per mode
547
551
  * (issued by the hub's site:create); `url` is optional and points a
@@ -555,9 +559,6 @@ export interface LabelPayments {
555
559
  surcharge?: number
556
560
  currency?: string
557
561
  }
558
- // see the note on raiffeisen.currency above
559
- currency: string
560
- }
561
562
  }
562
563
 
563
564
  export interface UploadData {