@zauru-sdk/utils 2.0.218 → 2.0.220
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.
|
@@ -26,7 +26,7 @@ export const getBitacorasPOMassive = (headers, session) => {
|
|
|
26
26
|
const { bitacora_ediciones_masivas_web_app_table_id } = await getVariablesByName(headers, session, [
|
|
27
27
|
"bitacora_ediciones_masivas_web_app_table_id",
|
|
28
28
|
]);
|
|
29
|
-
const response = await getWebAppTableRegisters(session, bitacora_ediciones_masivas_web_app_table_id);
|
|
29
|
+
const response = await getWebAppTableRegisters(session, bitacora_ediciones_masivas_web_app_table_id, 1000);
|
|
30
30
|
if (response.error || !response.data) {
|
|
31
31
|
throw new Error(response.userMsg);
|
|
32
32
|
}
|
|
@@ -9,7 +9,7 @@ import { createWebAppTableRegister, getVariablesByName, getWebAppTableRegisters,
|
|
|
9
9
|
export const getDischargeHistories = (headers, session) => {
|
|
10
10
|
return handlePossibleAxiosErrors(async () => {
|
|
11
11
|
const { discharge_history_web_app_table_id } = await getVariablesByName(headers, session, ["discharge_history_web_app_table_id"]);
|
|
12
|
-
const response = await getWebAppTableRegisters(session, discharge_history_web_app_table_id);
|
|
12
|
+
const response = await getWebAppTableRegisters(session, discharge_history_web_app_table_id, 1000);
|
|
13
13
|
if (response.error) {
|
|
14
14
|
throw new Error(`Ocurrió un error al consultar el historial de discharges: ${response.userMsg}`);
|
|
15
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zauru-sdk/utils",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.220",
|
|
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.
|
|
28
|
-
"@zauru-sdk/config": "^2.0.
|
|
29
|
-
"@zauru-sdk/graphql": "^2.0.
|
|
30
|
-
"@zauru-sdk/services": "^2.0.
|
|
31
|
-
"@zauru-sdk/types": "^2.0.
|
|
27
|
+
"@zauru-sdk/common": "^2.0.220",
|
|
28
|
+
"@zauru-sdk/config": "^2.0.220",
|
|
29
|
+
"@zauru-sdk/graphql": "^2.0.220",
|
|
30
|
+
"@zauru-sdk/services": "^2.0.220",
|
|
31
|
+
"@zauru-sdk/types": "^2.0.220"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "c8ca154d7c11e35c916f2e7f7bfc27f5ba2c14f1"
|
|
34
34
|
}
|