@fiado/api-invoker 1.3.93 → 1.3.95

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/api-invoker",
3
- "version": "1.3.93",
3
+ "version": "1.3.95",
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",
@@ -255,7 +255,7 @@ export class CentralPaymentsConnectorApi implements ICentralPaymentsConnectorApi
255
255
 
256
256
  async executeFinancialOperationReversal(request: ProviderTransactionReversalRequest): Promise<FiadoApiResponse<ProviderTransactionReversalResponse[]>> {
257
257
  const url = `${this.baseUrl}/transactions/reversal`;
258
- return await this.httpRequest.delete(url, request);
258
+ return await this.httpRequest.post(url, request);
259
259
  }
260
260
 
261
261
  /** PROCESSOR TRANSACTIONS **/