digipay-utility-payment 0.0.16 → 0.0.17
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
|
|
@@ -294,8 +294,8 @@ const PRODUCT_PRICE_TYPE = {
|
|
|
294
294
|
RANGE: 2,
|
|
295
295
|
};
|
|
296
296
|
const PROVIDER_CATEGORY_TYPE = {
|
|
297
|
-
RECHARGE:
|
|
298
|
-
BILL_PAYMENT:
|
|
297
|
+
RECHARGE: "RECHARGE",
|
|
298
|
+
BILL_PAYMENT: "BILL_PAYMENT",
|
|
299
299
|
};
|
|
300
300
|
const PROVIDER_CATEGORY_TYPE_NAME = {
|
|
301
301
|
RECHARGE: 'Recharge',
|
|
@@ -739,7 +739,8 @@ class TranslationService {
|
|
|
739
739
|
LABEL_NO_PROVIDERS_AVAILABLE: 'No providers available',
|
|
740
740
|
LABEL_ENTER_4_DIGIT_TRANSACTION_PIN: 'Enter your 4-digit transaction PIN',
|
|
741
741
|
AUTH_INVALID_TRANSACTION_PIN: "Invalid transaction PIN",
|
|
742
|
-
LABEL_INSUFFICIENT_BALANCE: 'Insufficient balance'
|
|
742
|
+
LABEL_INSUFFICIENT_BALANCE: 'Insufficient balance',
|
|
743
|
+
TOP_UP_COMPANY_BILL_PAYMENT_WORKFLOW_DATA_NOT_FOUND: 'Top-up company bill payment workflow data not found',
|
|
743
744
|
};
|
|
744
745
|
translate(key) {
|
|
745
746
|
return TranslationService.LABELS[key] ?? key;
|