@fiado/api-invoker 1.5.20 → 1.5.21
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/bin/report-processor-business/api/IReportProcessorBusinessApi.d.ts +6 -0
- package/bin/report-processor-business/api/IReportProcessorBusinessApi.js +2 -0
- package/bin/report-processor-business/api/ReportProcessorBusinessApi.d.ts +2 -1
- package/bin/report-processor-business/index.d.ts +1 -1
- package/bin/report-processor-business/index.js +1 -1
- package/package.json +1 -1
- package/src/report-processor-business/api/IReportProcessorBusinessApi.ts +5 -0
- package/src/report-processor-business/api/ReportProcessorBusinessApi.ts +2 -1
- package/src/report-processor-business/index.ts +1 -1
- package/src/report-processor-business/api/IReportProcessorBusiness.ts +0 -5
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IHttpRequest } from "@fiado/http-client";
|
|
2
|
-
|
|
2
|
+
import { IReportProcessorBusinessApi } from "./IReportProcessorBusinessApi";
|
|
3
|
+
export default class ReportProcessorBusinessApi implements IReportProcessorBusinessApi {
|
|
3
4
|
private httpRequest;
|
|
4
5
|
private readonly baseUrl;
|
|
5
6
|
constructor(httpRequest: IHttpRequest);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './api/ReportProcessorBusinessApi';
|
|
2
|
-
export * from './api/
|
|
2
|
+
export * from './api/IReportProcessorBusinessApi';
|
|
@@ -15,4 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./api/ReportProcessorBusinessApi"), exports);
|
|
18
|
-
__exportStar(require("./api/
|
|
18
|
+
__exportStar(require("./api/IReportProcessorBusinessApi"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.21",
|
|
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",
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { IHttpRequest } from "@fiado/http-client";
|
|
2
2
|
import { inject, injectable } from "inversify";
|
|
3
|
+
import { IReportProcessorBusinessApi } from "./IReportProcessorBusinessApi";
|
|
3
4
|
|
|
4
5
|
@injectable()
|
|
5
|
-
export default class ReportProcessorBusinessApi {
|
|
6
|
+
export default class ReportProcessorBusinessApi implements IReportProcessorBusinessApi {
|
|
6
7
|
|
|
7
8
|
private readonly baseUrl = process.env.REPORT_PROCESSOR_LAMBDA_URL || "";
|
|
8
9
|
|