@tanstack/solid-query 4.32.5 → 4.33.0
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.
|
@@ -2792,7 +2792,7 @@
|
|
|
2792
2792
|
// then we'll need to update the properties as well
|
|
2793
2793
|
|
|
2794
2794
|
|
|
2795
|
-
if (observer.getCurrentResult()
|
|
2795
|
+
if (!shallowEqualObjects(observer.getCurrentResult(), optimisticResult)) {
|
|
2796
2796
|
return true;
|
|
2797
2797
|
} // basically, just keep previous properties if nothing changed
|
|
2798
2798
|
|
|
@@ -3631,6 +3631,7 @@
|
|
|
3631
3631
|
exports.MutationCache = MutationCache;
|
|
3632
3632
|
exports.MutationObserver = MutationObserver;
|
|
3633
3633
|
exports.QueriesObserver = QueriesObserver;
|
|
3634
|
+
exports.Query = Query;
|
|
3634
3635
|
exports.QueryCache = QueryCache;
|
|
3635
3636
|
exports.QueryClient = QueryClient;
|
|
3636
3637
|
exports.QueryClientProvider = QueryClientProvider;
|