@fiado/api-invoker 1.5.21 → 1.5.22
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/container.config.js
CHANGED
|
@@ -66,6 +66,7 @@ const OnboardingBusinessApi_1 = __importDefault(require("./onboarding-business/a
|
|
|
66
66
|
const payroll_business_1 = require("./payroll-business");
|
|
67
67
|
const referral_business_1 = require("./referral-business");
|
|
68
68
|
const event_history_business_1 = require("./event-history-business");
|
|
69
|
+
const ReportProcessorBusinessApi_1 = __importDefault(require("./report-processor-business/api/ReportProcessorBusinessApi"));
|
|
69
70
|
exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
|
|
70
71
|
// UTILS bindings
|
|
71
72
|
bind("InvokerUtils").to(InvokerUtils_1.InvokerUtils);
|
|
@@ -130,4 +131,5 @@ exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
|
|
|
130
131
|
bind("IPayrollApi").to(payroll_business_1.PayrollApi);
|
|
131
132
|
bind("IReferralBusinessApi").to(referral_business_1.ReferralBusinessApi);
|
|
132
133
|
bind("IEventHistoryApi").to(event_history_business_1.EventHistoryApi);
|
|
134
|
+
bind("IReportProcessorBusinessApi").to(ReportProcessorBusinessApi_1.default);
|
|
133
135
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.22",
|
|
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",
|
package/src/container.config.ts
CHANGED
|
@@ -84,6 +84,8 @@ import { IOnboardingBusinessApi } from "./onboarding-business";
|
|
|
84
84
|
import { IPayrollApi, PayrollApi } from "./payroll-business";
|
|
85
85
|
import { IReferralBusinessApi, ReferralBusinessApi } from "./referral-business";
|
|
86
86
|
import { EventHistoryApi, IEventHistoryApi } from "./event-history-business";
|
|
87
|
+
import ReportProcessorBusinessApi from "./report-processor-business/api/ReportProcessorBusinessApi";
|
|
88
|
+
import { IReportProcessorBusinessApi } from "./report-processor-business";
|
|
87
89
|
|
|
88
90
|
export const apiInvokerBindings = new ContainerModule((bind: interfaces.Bind) => {
|
|
89
91
|
// UTILS bindings
|
|
@@ -150,4 +152,5 @@ export const apiInvokerBindings = new ContainerModule((bind: interfaces.Bind) =>
|
|
|
150
152
|
bind<IPayrollApi>("IPayrollApi").to(PayrollApi);
|
|
151
153
|
bind<IReferralBusinessApi>("IReferralBusinessApi").to(ReferralBusinessApi);
|
|
152
154
|
bind<IEventHistoryApi>("IEventHistoryApi").to(EventHistoryApi);
|
|
155
|
+
bind<IReportProcessorBusinessApi>("IReportProcessorBusinessApi").to(ReportProcessorBusinessApi);
|
|
153
156
|
});
|