@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 +1 -1
- package/types/settings.ts +14 -0
- package/types/users.ts +1 -0
package/package.json
CHANGED
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
|
}
|