@teamdigipay/dgepay-customer-transaction-package 0.0.1 → 0.0.2
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.
|
@@ -39,8 +39,8 @@ export declare namespace API_ENDPOINTS {
|
|
|
39
39
|
const PROFILE_THRESHOLD_DETAILS = "profile_threshold/threshold";
|
|
40
40
|
}
|
|
41
41
|
namespace PAYMENT_GATEWAY_DOCKER {
|
|
42
|
-
const BANK_PAYMENT_FOR_MERCHANT = "payment_gateway/
|
|
43
|
-
const BANK_SETTLEMENT_FOR_MERCHANT = "payment_gateway/
|
|
42
|
+
const BANK_PAYMENT_FOR_MERCHANT = "payment_gateway/nrb_bank_payment_merchant";
|
|
43
|
+
const BANK_SETTLEMENT_FOR_MERCHANT = "payment_gateway/nrb_bank_settlement_merchant";
|
|
44
44
|
}
|
|
45
45
|
namespace SUB_WALLET_DOCKER {
|
|
46
46
|
const SUB_WALLET_CATEGORY = "base/sub_wallet_category";
|
|
@@ -47,8 +47,8 @@ var API_ENDPOINTS;
|
|
|
47
47
|
})(PROFILE_THRESHOLD_DOCKER = API_ENDPOINTS.PROFILE_THRESHOLD_DOCKER || (API_ENDPOINTS.PROFILE_THRESHOLD_DOCKER = {}));
|
|
48
48
|
let PAYMENT_GATEWAY_DOCKER;
|
|
49
49
|
(function (PAYMENT_GATEWAY_DOCKER) {
|
|
50
|
-
PAYMENT_GATEWAY_DOCKER.BANK_PAYMENT_FOR_MERCHANT = "payment_gateway/
|
|
51
|
-
PAYMENT_GATEWAY_DOCKER.BANK_SETTLEMENT_FOR_MERCHANT = "payment_gateway/
|
|
50
|
+
PAYMENT_GATEWAY_DOCKER.BANK_PAYMENT_FOR_MERCHANT = "payment_gateway/nrb_bank_payment_merchant";
|
|
51
|
+
PAYMENT_GATEWAY_DOCKER.BANK_SETTLEMENT_FOR_MERCHANT = "payment_gateway/nrb_bank_settlement_merchant";
|
|
52
52
|
})(PAYMENT_GATEWAY_DOCKER = API_ENDPOINTS.PAYMENT_GATEWAY_DOCKER || (API_ENDPOINTS.PAYMENT_GATEWAY_DOCKER = {}));
|
|
53
53
|
let SUB_WALLET_DOCKER;
|
|
54
54
|
(function (SUB_WALLET_DOCKER) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamdigipay/dgepay-customer-transaction-package",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"author": "RM (peerbits)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"lodash": "^4.17.21",
|
|
21
21
|
"typescript": "^4.9.4"
|
|
22
22
|
},
|
|
23
|
-
"description": "> This package contains all the necessary Transaction controllers, helpers and constants for
|
|
23
|
+
"description": "> This package contains all the necessary Transaction controllers, helpers and constants for DGePay Customer Application.",
|
|
24
24
|
"devDependencies": {},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
@@ -46,13 +46,13 @@ export namespace API_ENDPOINTS {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
export namespace PAYMENT_GATEWAY_DOCKER {
|
|
49
|
-
export const BANK_PAYMENT_FOR_MERCHANT = "payment_gateway/
|
|
50
|
-
export const BANK_SETTLEMENT_FOR_MERCHANT = "payment_gateway/
|
|
49
|
+
export const BANK_PAYMENT_FOR_MERCHANT = "payment_gateway/nrb_bank_payment_merchant";
|
|
50
|
+
export const BANK_SETTLEMENT_FOR_MERCHANT = "payment_gateway/nrb_bank_settlement_merchant";
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
export namespace SUB_WALLET_DOCKER {
|
|
55
55
|
export const SUB_WALLET_CATEGORY = "base/sub_wallet_category";
|
|
56
|
-
|
|
56
|
+
|
|
57
57
|
}
|
|
58
|
-
}
|
|
58
|
+
}
|