@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.
@@ -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
@@ -40,3 +40,4 @@ export * from "./legalDocument";
40
40
  export * from "./device";
41
41
  export * from "./observations";
42
42
  export * from "./service-business";
43
+ export * from "./pricelist-business";
package/bin/index.js CHANGED
@@ -56,3 +56,4 @@ __exportStar(require("./legalDocument"), exports);
56
56
  __exportStar(require("./device"), exports);
57
57
  __exportStar(require("./observations"), exports);
58
58
  __exportStar(require("./service-business"), exports);
59
+ __exportStar(require("./pricelist-business"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/api-invoker",
3
- "version": "1.2.94",
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",
@@ -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
@@ -39,4 +39,5 @@ export * from "./blacklist";
39
39
  export * from "./legalDocument";
40
40
  export * from "./device";
41
41
  export * from "./observations";
42
- export * from "./service-business";
42
+ export * from "./service-business";
43
+ export * from "./pricelist-business";