@fiado/api-invoker 3.0.16 → 3.0.18
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.
|
@@ -170,7 +170,7 @@ let CentralPaymentsConnectorApi = class CentralPaymentsConnectorApi {
|
|
|
170
170
|
return await this.httpRequest.post(url, request);
|
|
171
171
|
}
|
|
172
172
|
async executeFinancialOperationReversal(request) {
|
|
173
|
-
const url = `${this.baseUrl}transactions/reversal`;
|
|
173
|
+
const url = `${this.baseUrl}/transactions/reversal`;
|
|
174
174
|
return await this.httpRequest.post(url, request);
|
|
175
175
|
}
|
|
176
176
|
/** PROCESSOR TRANSACTIONS **/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.18",
|
|
4
4
|
"description": "Sirve como un puente entre diferentes funciones lambda, facilitando la comunicación entre ellas a través de invocaciones http",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"types": "bin/index.d.ts",
|
|
@@ -257,7 +257,7 @@ export class CentralPaymentsConnectorApi implements ICentralPaymentsConnectorApi
|
|
|
257
257
|
}
|
|
258
258
|
|
|
259
259
|
async executeFinancialOperationReversal(request: ProviderTransactionReversalRequest): Promise<FiadoApiResponse<ProviderTransactionReversalResponse[]>> {
|
|
260
|
-
const url = `${this.baseUrl}transactions/reversal`;
|
|
260
|
+
const url = `${this.baseUrl}/transactions/reversal`;
|
|
261
261
|
return await this.httpRequest.post(url, request);
|
|
262
262
|
}
|
|
263
263
|
|