@konplit-services/common 1.0.231 → 1.0.233
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/build/app.configs.d.ts +1 -0
- package/build/app.configs.js +4 -0
- package/package.json +1 -1
package/build/app.configs.d.ts
CHANGED
package/build/app.configs.js
CHANGED
|
@@ -488,6 +488,9 @@ class AppConfigs {
|
|
|
488
488
|
if (!this.env.NIBSS_EASYPAY_MANDATE_REF) {
|
|
489
489
|
throw new Error("NIBSS_EASYPAY_MANDATE_REF is required");
|
|
490
490
|
}
|
|
491
|
+
if (!this.env.NIBSS_EASYPAY_AUTH_KEY) {
|
|
492
|
+
throw new Error("NIBSS_EASYPAY_AUTH_KEY is required");
|
|
493
|
+
}
|
|
491
494
|
if (!this.env.NIBSS_EASYPAY_CLIENT_CODE) {
|
|
492
495
|
throw new Error("NIBSS_EASYPAY_CLIENT_CODE is required");
|
|
493
496
|
}
|
|
@@ -547,6 +550,7 @@ class AppConfigs {
|
|
|
547
550
|
easyPayBillerID: this.env.NIBSS_EASYPAY_BILLER_ID,
|
|
548
551
|
easyPayMandateRef: this.env.NIBSS_EASYPAY_MANDATE_REF,
|
|
549
552
|
easyPayClientCode: this.env.NIBSS_EASYPAY_CLIENT_CODE,
|
|
553
|
+
easyPayAuthKey: this.env.NIBSS_EASYPAY_AUTH_KEY,
|
|
550
554
|
},
|
|
551
555
|
payplus: {
|
|
552
556
|
base_url: this.env.NIBSS_PAYPLUS_BASE_URL,
|