@geode/opengeodeweb-front 10.28.1-rc.2 → 10.28.1-rc.3

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.
@@ -76,7 +76,7 @@ export const useDataStore = defineStore("data", () => {
76
76
  async function registerObject(id, name) {
77
77
  const schema = viewer_generic_schemas.register;
78
78
  const params = { id, name };
79
- return await viewerStore.request({ schema, params });
79
+ return await viewerStore.request({ schema, params, timeout: 0 });
80
80
  }
81
81
 
82
82
  async function deregisterObject(id) {
@@ -67,7 +67,7 @@ export function api_fetch(
67
67
  });
68
68
  }
69
69
 
70
- if (timeout !== undefined && timeout > 0) {
70
+ if (timeout > 0) {
71
71
  return pTimeout(performCall(), {
72
72
  milliseconds: timeout,
73
73
  message: `${schema.$id}: Timed out after ${timeout}ms`,
@@ -49,7 +49,7 @@ export function viewer_call(
49
49
  }
50
50
  }
51
51
 
52
- if (timeout !== undefined && timeout > 0) {
52
+ if (timeout > 0) {
53
53
  return pTimeout(performCall(), {
54
54
  milliseconds: timeout,
55
55
  message: `${schema.$id}: Timed out after ${timeout}ms`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-front",
3
- "version": "10.28.1-rc.2",
3
+ "version": "10.28.1-rc.3",
4
4
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
5
5
  "homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
6
6
  "bugs": {