@autobusal/providers 1.37.12 → 1.37.13
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 +12 -1
package/package.json
CHANGED
package/types/settings.ts
CHANGED
|
@@ -441,11 +441,22 @@ export interface LabelPayments {
|
|
|
441
441
|
password: string
|
|
442
442
|
}> & {
|
|
443
443
|
source: 'dedicated' | 'main'
|
|
444
|
+
|
|
445
|
+
// Edited: Claude - Date: 2026-08-21
|
|
446
|
+
// The charge currency, ISO 4217 alpha-3. Top-level rather than
|
|
447
|
+
// per-environment: a merchant account's currency is a property of the
|
|
448
|
+
// account, not of whether you are testing against it. Was a literal
|
|
449
|
+
// 'EUR' in obtapi, sent beside an amount denominated in the LABEL's
|
|
450
|
+
// currency - fine while every label is EUR, wrong the moment one is not.
|
|
451
|
+
currency: string
|
|
444
452
|
}
|
|
445
453
|
|
|
446
454
|
nexi: GatewayCredentials<{
|
|
447
455
|
api_key: string
|
|
448
|
-
}>
|
|
456
|
+
}> & {
|
|
457
|
+
// see the note on raiffeisen.currency above
|
|
458
|
+
currency: string
|
|
459
|
+
}
|
|
449
460
|
}
|
|
450
461
|
|
|
451
462
|
export interface UploadData {
|