digipay-utility-payment 0.0.14 → 0.0.15
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.
|
Binary file
|
|
@@ -290,11 +290,12 @@ const TOPUP_BILL_PAYMENT_FIELD_ACTIONS = {
|
|
|
290
290
|
GET_ESIM_PRODUCT: 'GET_ESIM_PRODUCT',
|
|
291
291
|
};
|
|
292
292
|
const PRODUCT_PRICE_TYPE = {
|
|
293
|
-
FIXED:
|
|
294
|
-
RANGE:
|
|
293
|
+
FIXED: 1,
|
|
294
|
+
RANGE: 2,
|
|
295
295
|
};
|
|
296
296
|
const PROVIDER_CATEGORY_TYPE = {
|
|
297
|
-
RECHARGE:
|
|
297
|
+
RECHARGE: 1,
|
|
298
|
+
BILL_PAYMENT: 2,
|
|
298
299
|
};
|
|
299
300
|
const PROVIDER_CATEGORY_TYPE_NAME = {
|
|
300
301
|
RECHARGE: 'Recharge',
|
|
@@ -738,6 +739,7 @@ class TranslationService {
|
|
|
738
739
|
LABEL_NO_PROVIDERS_AVAILABLE: 'No providers available',
|
|
739
740
|
LABEL_ENTER_4_DIGIT_TRANSACTION_PIN: 'Enter your 4-digit transaction PIN',
|
|
740
741
|
AUTH_INVALID_TRANSACTION_PIN: "Invalid transaction PIN",
|
|
742
|
+
LABEL_INSUFFICIENT_BALANCE: 'Insufficient balance'
|
|
741
743
|
};
|
|
742
744
|
translate(key) {
|
|
743
745
|
return TranslationService.LABELS[key] ?? key;
|