@autobusal/providers 1.43.4 → 1.43.5

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.5",
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
@@ -541,6 +542,19 @@ export interface LabelPayments {
541
542
  nexi: GatewayCredentials<{
542
543
  api_key: string
543
544
  }> & {
545
+ /*
546
+ * Claude - 2026-09-07: the Magus Pay Hub. A site id and secret per mode
547
+ * (issued by the hub's site:create); `url` is optional and points a
548
+ * development label at a hub on another host.
549
+ */
550
+ mgpay?: GatewayCredentials<{
551
+ site_id: string
552
+ secret: string
553
+ url?: string
554
+ }> & {
555
+ surcharge?: number
556
+ currency?: string
557
+ }
544
558
  // see the note on raiffeisen.currency above
545
559
  currency: string
546
560
  }
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 {