@zauru-sdk/services 2.0.104 → 2.0.105
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.
|
@@ -12,7 +12,7 @@ export const getGeneralQuery = async (session, query, queryKey // Clave dinámic
|
|
|
12
12
|
return handlePossibleAxiosErrors(async () => {
|
|
13
13
|
const headers = await getGraphQLAPIHeaders(session);
|
|
14
14
|
// Respuesta con clave dinámica basada en queryKey
|
|
15
|
-
const response = await httpGraphQLAPI.post("", {
|
|
15
|
+
const response = await httpGraphQLAPI.post("/api/graphql", {
|
|
16
16
|
query,
|
|
17
17
|
}, { headers });
|
|
18
18
|
if (response.data.errors) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zauru-sdk/services",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.105",
|
|
4
4
|
"description": "Servicios de consulta a Zauru",
|
|
5
5
|
"main": "./dist/esm/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"axios": "^1.6.7",
|
|
32
32
|
"chalk": "5.3.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "29901653df02b442fd4dc03de27b5f3d70412742"
|
|
35
35
|
}
|