@fiado/api-invoker 1.1.84 → 1.1.85
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.
|
@@ -35,7 +35,7 @@ let TransactionProcessorApi = class TransactionProcessorApi {
|
|
|
35
35
|
return await this.httpRequest.post(url, request);
|
|
36
36
|
}
|
|
37
37
|
async authorizePagoConfiadoSpeiTransaction(request) {
|
|
38
|
-
const url = `${this.baseUrl}spei/
|
|
38
|
+
const url = `${this.baseUrl}spei/pagoconfiado/authorize`;
|
|
39
39
|
return await this.httpRequest.post(url, request);
|
|
40
40
|
}
|
|
41
41
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.85",
|
|
4
4
|
"description": "Sirve como un puente entre diferentes funciones lambda, facilitando la comunicación entre ellas a traves de invocaciones http",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"types": "bin/index.d.ts",
|
|
@@ -36,7 +36,7 @@ export default class TransactionProcessorApi implements ITransactionProcessorApi
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
async authorizePagoConfiadoSpeiTransaction(request: AuthorizeSpeiBankTransferNcRequest): Promise<any> {
|
|
39
|
-
const url: string = `${this.baseUrl}spei/
|
|
39
|
+
const url: string = `${this.baseUrl}spei/pagoconfiado/authorize`;
|
|
40
40
|
return await this.httpRequest.post(url, request);
|
|
41
41
|
}
|
|
42
42
|
|