@raclettejs/core 0.1.4 → 0.1.5
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.
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.5] - 11.09.2025
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- "refresh all queries" functionallity in user menu now works as expected
|
|
15
|
+
- issue was introduced during query api update in v0.1.3
|
|
16
|
+
|
|
10
17
|
## [0.1.4] - 10.09.2025
|
|
11
18
|
|
|
12
19
|
### Fixed
|
package/package.json
CHANGED
|
@@ -108,7 +108,7 @@ const itemDispatcher = async (
|
|
|
108
108
|
// Cache Management Functions
|
|
109
109
|
const cacheOperations = {
|
|
110
110
|
async setupCache(actionId, target, params, options) {
|
|
111
|
-
if (options
|
|
111
|
+
if (options?.useStore === false)
|
|
112
112
|
return { cachedQuery: null, actionIdentifier: { actionId } }
|
|
113
113
|
const cachedQuery = getCacheQueryAndHash(target, params)
|
|
114
114
|
const actionIdentifier = {
|
|
@@ -175,7 +175,7 @@ const finishRemoteQuery = (actionIdentifier, result, params, options) => {
|
|
|
175
175
|
resultBody.items.forEach((item) => resultObj.result.push(item))
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
if (options
|
|
178
|
+
if (options?.useStore === false) {
|
|
179
179
|
$store.dispatch({
|
|
180
180
|
type: "queries/update/loading",
|
|
181
181
|
payload: {
|