@konplit-services/common 1.0.287 → 1.0.288
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
|
@@ -489,6 +489,9 @@ class AppConfigs {
|
|
|
489
489
|
if (!this.env.VALUEPAY_VISA_REDIRECT_URL) {
|
|
490
490
|
throw new Error("VALUEPAY_VISA_REDIRECT_URL is required");
|
|
491
491
|
}
|
|
492
|
+
if (!this.env.VALUEPAY_VISA_FAIL_REDIRECT_URL) {
|
|
493
|
+
throw new Error("VALUEPAY_VISA_FAIL_REDIRECT_URL is required");
|
|
494
|
+
}
|
|
492
495
|
if (!this.env.VALUEPAY_VISA_CALLBACK_URL) {
|
|
493
496
|
throw new Error("VALUEPAY_VISA_CALLBACK_URL is required");
|
|
494
497
|
}
|
|
@@ -515,6 +518,7 @@ class AppConfigs {
|
|
|
515
518
|
}
|
|
516
519
|
return {
|
|
517
520
|
visa_redirect_url: this.env.VALUEPAY_VISA_REDIRECT_URL,
|
|
521
|
+
visa_redirect_fail_url: this.env.VALUEPAY_VISA_FAIL_REDIRECT_URL,
|
|
518
522
|
visa_callback_url: this.env.VALUEPAY_VISA_CALLBACK_URL,
|
|
519
523
|
valuepay_ceo: this.env.VALUEPAY_CEO,
|
|
520
524
|
support_email: this.env.VALUEPAY_SUPPORT_EMAIL,
|