@zauru-sdk/utils 2.0.108 → 2.0.110

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.
@@ -11,7 +11,7 @@ export const getInvoicesByLabAgency = async (headers, session) => {
11
11
  const { lab_agency_id } = await getVariablesByName(headers, session, [
12
12
  "lab_agency_id",
13
13
  ]);
14
- const response = await getInvoicesByAgencyId(session, lab_agency_id);
14
+ const response = await getInvoicesByAgencyId(session, lab_agency_id, {});
15
15
  if (response.error) {
16
16
  const msg = `Ocurrió un error al consultar las órdenes/facturas por agencia de laboratorio: ${response.userMsg}`;
17
17
  console.error(msg);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zauru-sdk/utils",
3
- "version": "2.0.108",
3
+ "version": "2.0.110",
4
4
  "description": "Utilidades, parseo de request y demás para desarrollo de webapps de Zauru",
5
5
  "main": "./dist/esm/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -24,11 +24,11 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@remix-run/node": "^2.8.1",
27
- "@zauru-sdk/common": "^2.0.94",
27
+ "@zauru-sdk/common": "^2.0.109",
28
28
  "@zauru-sdk/config": "^2.0.100",
29
- "@zauru-sdk/graphql": "^2.0.93",
30
- "@zauru-sdk/services": "^2.0.108",
31
- "@zauru-sdk/types": "^2.0.92"
29
+ "@zauru-sdk/graphql": "^2.0.110",
30
+ "@zauru-sdk/services": "^2.0.110",
31
+ "@zauru-sdk/types": "^2.0.109"
32
32
  },
33
- "gitHead": "23095b77237b31d798f93cd8812ed221fcd862f0"
33
+ "gitHead": "48da37315a5c24db0135c55e41c8fa1aa0f0adf5"
34
34
  }