@konplit-services/common 1.0.230 → 1.0.231
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
|
@@ -515,6 +515,9 @@ class AppConfigs {
|
|
|
515
515
|
if (!this.env.NIBSS_NQRCODE_API_KEY) {
|
|
516
516
|
throw new Error("NIBSS_NQRCODE_API_KEY is required");
|
|
517
517
|
}
|
|
518
|
+
if (!this.env.NIBSS_NQRCODE_AUTH_API_KEY) {
|
|
519
|
+
throw new Error("NIBSS_NQRCODE_AUTH_API_KEY is required");
|
|
520
|
+
}
|
|
518
521
|
if (!this.env.NIBSS_BVN_CLIENT_ID) {
|
|
519
522
|
throw new Error("NIBSS_BVN_CLIENT_ID is required");
|
|
520
523
|
}
|
|
@@ -555,6 +558,7 @@ class AppConfigs {
|
|
|
555
558
|
nqrclientid: this.env.NIBSS_NQRCODE_CLIENT_ID,
|
|
556
559
|
nqrpluSecret: this.env.NIBSS_NQRCODE_SECRET,
|
|
557
560
|
nqrInstitutionId: this.env.NIBSS_NQRCODE_INSTITUTION_ID,
|
|
561
|
+
nqrAuthKey: this.env.NIBSS_NQRCODE_AUTH_API_KEY,
|
|
558
562
|
nqrApiKey: this.env.NIBSS_NQRCODE_API_KEY,
|
|
559
563
|
},
|
|
560
564
|
bvn: {
|