@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 +1 -1
- package/types/settings.ts +15 -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
|
|
@@ -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 {
|