sysone-api-mapper 1.0.73 → 1.0.74
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/package.json
CHANGED
|
@@ -665,6 +665,20 @@ const requestModule = {
|
|
|
665
665
|
}
|
|
666
666
|
},
|
|
667
667
|
|
|
668
|
+
GET_REQUEST_DETAIL: {
|
|
669
|
+
default: {
|
|
670
|
+
url: '{0}/v1/requests/{1}',
|
|
671
|
+
method: methods.GET,
|
|
672
|
+
requestMapper: (request) => ({ mappedParams: request }),
|
|
673
|
+
responseMapper: (response) => response
|
|
674
|
+
},
|
|
675
|
+
cnp: {
|
|
676
|
+
url: '/request/v1/request/savings/{0}',
|
|
677
|
+
method: methods.GET,
|
|
678
|
+
requestMapper: request => ({ mappedParams: request }),
|
|
679
|
+
responseMapper: (response) => response
|
|
680
|
+
}
|
|
681
|
+
},
|
|
668
682
|
|
|
669
683
|
POST_SEND_REQUEST: {
|
|
670
684
|
cnp: {
|