@geode/opengeodeweb-front 9.14.1-rc.1 → 9.14.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.
@@ -1,4 +1,4 @@
1
- export default {
1
+ const Configuration = {
2
2
  extends: ["@commitlint/config-angular"],
3
3
  rules: {
4
4
  "scope-empty": [2, "never"],
@@ -12,5 +12,8 @@ export default {
12
12
  "subject-full-stop": [0],
13
13
  "type-case": [0],
14
14
  "type-empty": [0],
15
+ "type-enum": [2, "always", ["feat", "fix", "perf"]],
15
16
  },
16
17
  }
18
+
19
+ export default Configuration
package/package.json CHANGED
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
41
41
  "type": "module",
42
- "version": "9.14.1-rc.1",
42
+ "version": "9.14.1-rc.3",
43
43
  "main": "./nuxt.config.js",
44
44
  "dependencies": {
45
45
  "@geode/opengeodeweb-back": "next",
@@ -5,4 +5,4 @@
5
5
  # pip-compile --output-file=tests/integration/microservices/back/requirements.txt tests/integration/microservices/back/requirements.in
6
6
  #
7
7
 
8
- opengeodeweb-back==5.*,>=5.13.0
8
+ opengeodeweb-back==5.*,>=5.13.1rc1
@@ -12,7 +12,10 @@ async function importWorkflow(files) {
12
12
  console.log({ filename }, { geode_object })
13
13
  promise_array.push(importFile(filename, geode_object))
14
14
  }
15
- return Promise.all(promise_array)
15
+ const results = await Promise.all(promise_array)
16
+ const hybridViewerStore = useHybridViewerStore()
17
+ hybridViewerStore.remoteRender()
18
+ return results
16
19
  }
17
20
 
18
21
  function buildImportItemFromPayloadApi(value, geode_object) {
@@ -55,7 +58,6 @@ async function importItem(item) {
55
58
  }
56
59
 
57
60
  await dataStyleStore.applyDefaultStyle(item.id)
58
- hybridViewerStore.remoteRender()
59
61
  return item.id
60
62
  }
61
63