@autobusal/providers 1.37.1 → 1.37.2

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.37.2
4
+
5
+ ### Added
6
+
7
+ - **`OperatorData` gains the payout bank detail fields** (`bank_name`, `bank_address`, `iban`, `swift`, `bank_currency`, `account_owner`, `bank_document_url`) - see `@autobusal/account-update` 1.2.1.
8
+
3
9
  ## 1.37.1
4
10
 
5
11
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.37.1",
3
+ "version": "1.37.2",
4
4
  "author": "Ferjolt Ozuni",
5
5
  "type": "module",
6
6
  "main": "index.ts"
@@ -51,6 +51,17 @@ export interface OperatorData {
51
51
  // already being published for shipping_enabled.
52
52
  mobile_access?: boolean
53
53
  shipping_enabled?: boolean
54
+ // Edited: Ferjolt Ozuni - Date: 2026-08-10
55
+ // Payout bank details - self-editable, see account-update's
56
+ // operatorDetails.tsx. bank_document is never sent raw (see
57
+ // Operator::$hidden), only its downloadable bank_document_url.
58
+ bank_name?: string
59
+ bank_address?: string
60
+ iban?: string
61
+ swift?: string
62
+ bank_currency?: string
63
+ account_owner?: string
64
+ bank_document_url?: string
54
65
  }
55
66
 
56
67
  export interface GalleryData {