@overmap-ai/core 1.0.71-remove-login-timeout.0 → 1.0.71-remove-login-timeout.2
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.
|
@@ -264,9 +264,9 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
264
264
|
ret = responseBody.error;
|
|
265
265
|
} else if (typeof responseBody.message === "string") {
|
|
266
266
|
ret = responseBody.message;
|
|
267
|
-
} else
|
|
267
|
+
} else {
|
|
268
268
|
try {
|
|
269
|
-
ret = Object.entries(responseBody
|
|
269
|
+
ret = Object.entries(responseBody).map(([key, value]) => {
|
|
270
270
|
if (typeof value === "string") {
|
|
271
271
|
if (_SPECIAL_KEYS.includes(key)) return value;
|
|
272
272
|
return `${key}: ${value}`;
|
|
@@ -3655,6 +3655,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3655
3655
|
payload,
|
|
3656
3656
|
isAuthNeeded: false,
|
|
3657
3657
|
checkAuth: false,
|
|
3658
|
+
immediate: true,
|
|
3658
3659
|
blockers: [],
|
|
3659
3660
|
blocks: []
|
|
3660
3661
|
}).then((tokens) => {
|