@autobusal/providers 1.43.4 → 1.43.6

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.4",
3
+ "version": "1.43.6",
4
4
  "author": "Ferjolt Ozuni",
5
5
  "type": "module",
6
6
  "main": "index.ts",
package/types/settings.ts CHANGED
@@ -482,6 +482,7 @@ export interface LabelPayments {
482
482
  mollie: boolean
483
483
  raiffeisen: boolean
484
484
  nexi: boolean
485
+ mgpay?: boolean
485
486
  }
486
487
 
487
488
  // Edited: Ferjolt Ozuni - Date: 2026-07-18
@@ -544,6 +545,20 @@ export interface LabelPayments {
544
545
  // see the note on raiffeisen.currency above
545
546
  currency: string
546
547
  }
548
+
549
+ /*
550
+ * Claude - 2026-09-07: the Magus Pay Hub. A site id and secret per mode
551
+ * (issued by the hub's site:create); `url` is optional and points a
552
+ * development label at a hub on another host.
553
+ */
554
+ mgpay?: GatewayCredentials<{
555
+ site_id: string
556
+ secret: string
557
+ url?: string
558
+ }> & {
559
+ surcharge?: number
560
+ currency?: string
561
+ }
547
562
  }
548
563
 
549
564
  export interface UploadData {
package/types/users.ts CHANGED
@@ -66,6 +66,7 @@ export interface ApiData {
66
66
  mollie: number
67
67
  raiffeisen: number
68
68
  nexi: number
69
+ mgpay?: number
69
70
  }
70
71
 
71
72
  export interface SubscribedData {