@konplit-services/common 1.12.0 → 1.13.0
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 +6 -0
- package/package.json +1 -1
package/build/app.configs.d.ts
CHANGED
package/build/app.configs.js
CHANGED
|
@@ -203,6 +203,12 @@ class AppConfigs {
|
|
|
203
203
|
}
|
|
204
204
|
return this.env.CARD_EXPIRY_INTERVAL;
|
|
205
205
|
}
|
|
206
|
+
getRequeryTransactionInterval() {
|
|
207
|
+
if (!this.env.REQUERY_TRANSACTION) {
|
|
208
|
+
throw new Error("REQUERY_TRANSACTION is required");
|
|
209
|
+
}
|
|
210
|
+
return this.env.REQUERY_TRANSACTION;
|
|
211
|
+
}
|
|
206
212
|
getNodeMAilDetails() {
|
|
207
213
|
if (!this.env.MAIL_HOST) {
|
|
208
214
|
throw new Error("MAIL_HOST is required");
|