node-paytmpg 5.2.4 → 5.2.5

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.
@@ -676,6 +676,7 @@ module.exports = function (app, callbacks) {
676
676
  }
677
677
 
678
678
  module.callback = async (req, res) => {
679
+ console.log("request_data ", req.originalUrl, req.body)
679
680
 
680
681
  var result = false;
681
682
  let isCancelled = false;
@@ -738,6 +739,10 @@ module.exports = function (app, callbacks) {
738
739
  }
739
740
 
740
741
  module.webhook = (req, res) => {
742
+
743
+
744
+ console.log("request_data ", req.originalUrl, req.body)
745
+
741
746
  if (config.paytm_url) {
742
747
  module.callback(req, res)
743
748
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-paytmpg",
3
- "version": "5.2.4",
3
+ "version": "5.2.5",
4
4
  "description": "Payment Gateway Integration using NodeJS",
5
5
  "main": "index.js",
6
6
  "scripts": {