@fiado/api-invoker 1.3.45 → 1.3.47
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 +2 -0
- package/src/index.ts +1 -0
- package/src/order-collector-business/index.ts +1 -0
package/bin/container.config.js
CHANGED
|
@@ -56,6 +56,7 @@ const InvokerUtils_1 = require("./utils/InvokerUtils");
|
|
|
56
56
|
const pricelist_business_1 = require("./pricelist-business");
|
|
57
57
|
const service_business_1 = require("./service-business");
|
|
58
58
|
const document_image_processor_1 = require("./document-image-processor");
|
|
59
|
+
const order_collector_business_1 = require("./order-collector-business");
|
|
59
60
|
exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
|
|
60
61
|
// UTILS bindings
|
|
61
62
|
bind("InvokerUtils").to(InvokerUtils_1.InvokerUtils);
|
|
@@ -110,4 +111,5 @@ exports.apiInvokerBindings = new inversify_1.ContainerModule((bind) => {
|
|
|
110
111
|
bind("IPriceListApi").to(pricelist_business_1.PriceListApi);
|
|
111
112
|
bind("IServiceApi").to(service_business_1.ServiceApi);
|
|
112
113
|
bind("IDocumentImageProcessorApi").to(document_image_processor_1.DocumentImageProcessorApi);
|
|
114
|
+
bind("IOrderCollectorApi").to(order_collector_business_1.OrderCollectorApi);
|
|
113
115
|
});
|
package/bin/index.d.ts
CHANGED
package/bin/index.js
CHANGED
|
@@ -59,3 +59,4 @@ __exportStar(require("./service-business"), exports);
|
|
|
59
59
|
__exportStar(require("./pricelist-business"), exports);
|
|
60
60
|
__exportStar(require("./card"), exports);
|
|
61
61
|
__exportStar(require("./document-image-processor"), exports);
|
|
62
|
+
__exportStar(require("./order-collector-business"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.47",
|
|
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
|
@@ -71,6 +71,7 @@ import { InvokerUtils } from "./utils/InvokerUtils";
|
|
|
71
71
|
import { IPriceListApi, PriceListApi } from "./pricelist-business";
|
|
72
72
|
import { IServiceApi, ServiceApi } from "./service-business";
|
|
73
73
|
import { IDocumentImageProcessorApi, DocumentImageProcessorApi } from "./document-image-processor";
|
|
74
|
+
import { IOrderCollectorApi, OrderCollectorApi } from "./order-collector-business";
|
|
74
75
|
|
|
75
76
|
export const apiInvokerBindings = new ContainerModule((bind: interfaces.Bind) => {
|
|
76
77
|
// UTILS bindings
|
|
@@ -127,6 +128,7 @@ export const apiInvokerBindings = new ContainerModule((bind: interfaces.Bind) =>
|
|
|
127
128
|
bind<IPriceListApi>("IPriceListApi").to(PriceListApi);
|
|
128
129
|
bind<IServiceApi>("IServiceApi").to(ServiceApi);
|
|
129
130
|
bind<IDocumentImageProcessorApi>("IDocumentImageProcessorApi").to(DocumentImageProcessorApi);
|
|
131
|
+
bind<IOrderCollectorApi>("IOrderCollectorApi").to(OrderCollectorApi);
|
|
130
132
|
|
|
131
133
|
|
|
132
134
|
});
|
package/src/index.ts
CHANGED