@fiado/api-invoker 1.1.65 → 1.1.66

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.
@@ -16,7 +16,7 @@ const inversify_1 = require("inversify");
16
16
  let TransactionApi = class TransactionApi {
17
17
  constructor(httpRequest) {
18
18
  this.httpRequest = httpRequest;
19
- this.baseUrl = process.env.TERN_LAMBDA_URL || "";
19
+ this.baseUrl = process.env.TRANSACTION_LAMBDA_URL || "";
20
20
  }
21
21
  async getTransactionsByDirectoryIdAndSource(params) {
22
22
  let queryParams = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/api-invoker",
3
- "version": "1.1.65",
3
+ "version": "1.1.66",
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",
@@ -6,7 +6,7 @@ import { TransactionSourceEnum } from "@fiado/type-kit/bin/transaction";
6
6
 
7
7
  @injectable()
8
8
  export default class TransactionApi implements ITransactionApi {
9
- private readonly baseUrl = process.env.TERN_LAMBDA_URL || "";
9
+ private readonly baseUrl = process.env.TRANSACTION_LAMBDA_URL || "";
10
10
 
11
11
  constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
12
12
  }