@zauru-sdk/utils 2.0.114 → 2.0.117

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.
@@ -173,7 +173,7 @@ export const getLastMuestra = (headers, session) => {
173
173
  export const getMuestrasByInvoiceId = (headers, session, invoice_id) => {
174
174
  return handlePossibleAxiosErrors(async () => {
175
175
  const { lab_muestras_form_zid } = await getVariablesByName(headers, session, ["lab_muestras_form_zid"]);
176
- const response = await getInvoiceFormSubmissionsByInvoiceId(session, invoice_id, { formZid: Number(lab_muestras_form_zid) });
176
+ const response = await getInvoiceFormSubmissionsByInvoiceId(headers, session, invoice_id, false, { formZid: Number(lab_muestras_form_zid) });
177
177
  if (response.error || !response.data) {
178
178
  throw new Error(`Ocurrió un error al intentar obtener las muestras de la remisión: ${response.userMsg}`);
179
179
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zauru-sdk/utils",
3
- "version": "2.0.114",
3
+ "version": "2.0.117",
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",
@@ -26,9 +26,9 @@
26
26
  "@remix-run/node": "^2.8.1",
27
27
  "@zauru-sdk/common": "^2.0.109",
28
28
  "@zauru-sdk/config": "^2.0.100",
29
- "@zauru-sdk/graphql": "^2.0.113",
30
- "@zauru-sdk/services": "^2.0.113",
29
+ "@zauru-sdk/graphql": "^2.0.117",
30
+ "@zauru-sdk/services": "^2.0.117",
31
31
  "@zauru-sdk/types": "^2.0.109"
32
32
  },
33
- "gitHead": "8d4c13cbf928873304a52c5870c6ccba7cabbcc2"
33
+ "gitHead": "21371efc5be5d92965693d1818c000e0592d8aef"
34
34
  }