@konplit-services/common 1.0.43 → 1.0.44
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
|
@@ -201,6 +201,9 @@ class AppConfigs {
|
|
|
201
201
|
if (!this.env.EMAIL_TEMPLATE_INVOICE) {
|
|
202
202
|
throw new Error("EMAIL_TEMPLATE_INVOICE is required");
|
|
203
203
|
}
|
|
204
|
+
if (!this.env.EMAIL_TEMPLATE_TOKEN) {
|
|
205
|
+
throw new Error("EMAIL_TEMPLATE_TOKEN is required");
|
|
206
|
+
}
|
|
204
207
|
return {
|
|
205
208
|
forgot_password: this.env.EMAIL_TEMPLATE_FORGET_PASSWORD,
|
|
206
209
|
verify_account: this.env.EMAIL_TEMPLATE_VERIFY_ACCOUNT,
|
|
@@ -216,6 +219,7 @@ class AppConfigs {
|
|
|
216
219
|
refund_update: this.env.EMAIL_TEMPLATE_REFUND_UPDATE,
|
|
217
220
|
refund_resolved: this.env.EMAIL_TEMPLATE_REFUND_RESOLVED,
|
|
218
221
|
invoice: this.env.EMAIL_TEMPLATE_INVOICE,
|
|
222
|
+
token: this.env.EMAIL_TEMPLATE_TOKEN,
|
|
219
223
|
};
|
|
220
224
|
}
|
|
221
225
|
getCloudinaryKey() {
|