@octanejs/tanstack-query 0.1.2 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +9 -2
package/README.md CHANGED
@@ -79,3 +79,9 @@ restored, and `QueryErrorResetBoundary` / `useQueryErrorResetBoundary` coordinat
79
79
  error-boundary retries with `@catch` / `<ErrorBoundary>` — call the boundary's
80
80
  `reset()` alongside `useQueryErrorResetBoundary().reset()` so a `throwOnError` query
81
81
  refetches instead of immediately re-throwing.
82
+
83
+ ## Status
84
+
85
+ Current scope, known divergences, and verification status are tracked in the
86
+ generated [bindings status table](../../docs/bindings-status.md), sourced from
87
+ this package's [`status.json`](./status.json).
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@octanejs/tanstack-query",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
+ "octane": {
7
+ "hookSlots": {
8
+ "manual": [
9
+ "src"
10
+ ]
11
+ }
12
+ },
6
13
  "description": "TanStack Query bindings for the octane renderer — reuses @tanstack/query-core and swaps the React binding for octane's hooks.",
7
14
  "author": {
8
15
  "name": "Dominic Gannaway",
@@ -28,7 +35,7 @@
28
35
  },
29
36
  "dependencies": {
30
37
  "@tanstack/query-core": "^5.0.0",
31
- "octane": "0.1.3"
38
+ "octane": "0.1.4"
32
39
  },
33
40
  "devDependencies": {
34
41
  "@tanstack/react-query": "^5.0.0",