@fiado/api-invoker 1.2.94 → 1.2.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/bin/container.config.js +2 -0
- package/bin/index.d.ts +1 -0
- package/bin/index.js +1 -0
- package/package.json +1 -1
- package/src/container.config.ts +3 -0
- package/src/index.ts +2 -1
package/bin/container.config.js
CHANGED
|
@@ -54,6 +54,7 @@ const CognitoConnectorV2_1 = __importDefault(require("./cognitoConnector/Cognito
|
|
|
54
54
|
const centralPayments_1 = require("./centralPayments");
|
|
55
55
|
const InvokerUtils_1 = require("./utils/InvokerUtils");
|
|
56
56
|
const service_business_1 = require("./service-business");
|
|
57
|
+
const pricelist_business_1 = require("./pricelist-business");
|
|
57
58
|
exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
|
|
58
59
|
// UTILS bindings
|
|
59
60
|
bind("InvokerUtils").to(InvokerUtils_1.InvokerUtils);
|
|
@@ -106,4 +107,5 @@ exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
|
|
|
106
107
|
bind("ICentralPaymentsConnectorApi").to(centralPayments_1.CentralPaymentsConnectorApi);
|
|
107
108
|
bind("IServiceApi").to(service_business_1.ServiceApi);
|
|
108
109
|
bind("IPublisher").to(account_fiadoinc_1.Publisher);
|
|
110
|
+
bind("IPriceListApi").to(pricelist_business_1.PriceListApi);
|
|
109
111
|
});
|
package/bin/index.d.ts
CHANGED
package/bin/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.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",
|
package/src/container.config.ts
CHANGED
|
@@ -69,6 +69,7 @@ import CognitoApi from "./cognitoConnector/CognitoConnectorV2";
|
|
|
69
69
|
import {CentralPaymentsConnectorApi, ICentralPaymentsConnectorApi} from "./centralPayments";
|
|
70
70
|
import {InvokerUtils} from "./utils/InvokerUtils";
|
|
71
71
|
import { IServiceApi, ServiceApi } from "./service-business";
|
|
72
|
+
import { IPriceListApi, PriceListApi } from "./pricelist-business";
|
|
72
73
|
|
|
73
74
|
export const apiInvokerBindings = new ContainerModule((bind: interfaces.Bind) => {
|
|
74
75
|
// UTILS bindings
|
|
@@ -123,5 +124,7 @@ export const apiInvokerBindings = new ContainerModule((bind: interfaces.Bind) =>
|
|
|
123
124
|
bind<ICentralPaymentsConnectorApi>("ICentralPaymentsConnectorApi").to(CentralPaymentsConnectorApi);
|
|
124
125
|
bind<IServiceApi>("IServiceApi").to(ServiceApi);
|
|
125
126
|
bind<IPublisher>("IPublisher").to(Publisher);
|
|
127
|
+
bind<IPriceListApi>("IPriceListApi").to(PriceListApi);
|
|
128
|
+
|
|
126
129
|
|
|
127
130
|
});
|
package/src/index.ts
CHANGED