@konplit-services/common 1.0.171 → 1.0.172
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
|
@@ -579,8 +579,12 @@ class AppConfigs {
|
|
|
579
579
|
if (!this.env.INTERSWITCH_BASE_URL) {
|
|
580
580
|
throw new Error("INTERSWITCH_BASE_URL is required");
|
|
581
581
|
}
|
|
582
|
+
if (!this.env.INTERSWITCH_TRANSFER_REQUESTPREFIX) {
|
|
583
|
+
throw new Error("INTERSWITCH_TRANSFER_REQUESTPREFIX is required");
|
|
584
|
+
}
|
|
582
585
|
return {
|
|
583
586
|
client_id: this.env.INTERSWITCH_TRANSFER_CLIENT_ID,
|
|
587
|
+
requestPrefix: this.env.INTERSWITCH_TRANSFER_REQUESTPREFIX,
|
|
584
588
|
secret_key: this.env.INTERSWITCH_TRANSFER_SECRET_KEY,
|
|
585
589
|
access_token_url: this.env.INTERSWITCH_ACCESS_TOKEN_URL,
|
|
586
590
|
base_url: this.env.INTERSWITCH_BASE_URL,
|