@syncular/relay 0.0.2-2 → 0.0.3-14

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.
@@ -113,7 +113,7 @@ export function createRelayRoutes(options) {
113
113
  maxSnapshotPages: clampInt(typeof rawBody.maxSnapshotPages === 'number' &&
114
114
  Number.isInteger(rawBody.maxSnapshotPages)
115
115
  ? rawBody.maxSnapshotPages
116
- : 1, 1, 10),
116
+ : 4, 1, 10),
117
117
  dedupeRows: typeof rawBody.dedupeRows === 'boolean'
118
118
  ? rawBody.dedupeRows
119
119
  : undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncular/relay",
3
- "version": "0.0.2-2",
3
+ "version": "0.0.3-14",
4
4
  "description": "Edge relay for Syncular distributed sync",
5
5
  "license": "MIT",
6
6
  "author": "Benjamin Kniffler",
@@ -42,8 +42,8 @@
42
42
  "release": "bunx syncular-publish"
43
43
  },
44
44
  "dependencies": {
45
- "@syncular/core": "0.0.2-2",
46
- "@syncular/server": "0.0.2-2"
45
+ "@syncular/core": "0.0.3-14",
46
+ "@syncular/server": "0.0.3-14"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "hono": "^4.0.0",
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "devDependencies": {
53
53
  "@syncular/config": "0.0.0",
54
- "@syncular/server-dialect-sqlite": "0.0.2-2",
54
+ "@syncular/server-dialect-sqlite": "0.0.3-14",
55
55
  "kysely": "*"
56
56
  },
57
57
  "files": [
@@ -225,7 +225,7 @@ export function createRelayRoutes<DB extends RelayDatabase = RelayDatabase>(
225
225
  typeof rawBody.maxSnapshotPages === 'number' &&
226
226
  Number.isInteger(rawBody.maxSnapshotPages)
227
227
  ? rawBody.maxSnapshotPages
228
- : 1,
228
+ : 4,
229
229
  1,
230
230
  10
231
231
  ),