@baeta/plugin-pagination 2.0.0-next.3 → 2.0.0-next.7

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
@@ -1,5 +1,7 @@
1
1
  # @baeta/plugin-pagination
2
2
 
3
+ ## 2.0.0-next.7
4
+
3
5
  ## 2.0.0-next.3
4
6
 
5
7
  ### Patch Changes
package/README.md CHANGED
@@ -131,7 +131,7 @@ const userQuery = Query.user
131
131
  });
132
132
 
133
133
  const updateUserMutation = Mutation.updateUser
134
- .use(async (next) => {
134
+ .$use(async (next) => {
135
135
  const user = await next();
136
136
  await userCache.save(user);
137
137
  return user;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baeta/plugin-pagination",
3
- "version": "2.0.0-next.3",
3
+ "version": "2.0.0-next.7",
4
4
  "keywords": [
5
5
  "baeta",
6
6
  "graphql",
@@ -40,16 +40,24 @@
40
40
  "build": "builder build",
41
41
  "prepack": "builder prepare",
42
42
  "postpack": "builder prepare --clean",
43
+ "test": "builder test",
44
+ "test:circular": "builder test-circular",
43
45
  "types": "tsc --noEmit"
44
46
  },
47
+ "ava": {
48
+ "extensions": {
49
+ "ts": "module"
50
+ }
51
+ },
45
52
  "dependencies": {
46
53
  "@baeta/generator-sdk": "^2.0.0-next.3",
47
54
  "@baeta/util-path": "^2.0.0-next.2"
48
55
  },
49
56
  "devDependencies": {
50
57
  "@baeta/builder": "^0.0.0",
58
+ "@baeta/testing": "^0.0.0",
51
59
  "@baeta/tsconfig": "^0.0.0",
52
- "@types/node": "^22.18.13",
60
+ "@types/node": "^22.19.1",
53
61
  "graphql": "^16.12.0",
54
62
  "typescript": "^5.9.3"
55
63
  },