@tablecraft/adapter-next 0.1.0-beta.3 → 0.1.0-beta.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/README.md +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ export const GET = handler;
|
|
|
93
93
|
|
|
94
94
|
### Query from the client
|
|
95
95
|
|
|
96
|
-
```
|
|
96
|
+
```text
|
|
97
97
|
GET /api/data/users?page=1&pageSize=25&sort=-createdAt&filter[status]=active&search=john
|
|
98
98
|
GET /api/data/orders?export=csv
|
|
99
99
|
GET /api/data/products?filter[category]=electronics&filter[price][gte]=100
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tablecraft/adapter-next",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.5",
|
|
4
4
|
"description": "Next.js App Router adapter for TableCraft",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"module": "dist/index.js",
|
|
7
8
|
"types": "dist/index.d.ts",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
12
13
|
}
|
|
13
14
|
},
|
|
14
15
|
"files": [
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
"typecheck": "bun run --bun tsc --noEmit"
|
|
23
24
|
},
|
|
24
25
|
"peerDependencies": {
|
|
25
|
-
"@tablecraft/engine": "
|
|
26
|
+
"@tablecraft/engine": "^0.1.0-beta.3",
|
|
26
27
|
"next": ">=14.0.0"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|