@syncular/relay 0.0.2-143 → 0.0.3-12
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
|
-
:
|
|
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.
|
|
3
|
+
"version": "0.0.3-12",
|
|
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.
|
|
46
|
-
"@syncular/server": "0.0.
|
|
45
|
+
"@syncular/core": "0.0.3-12",
|
|
46
|
+
"@syncular/server": "0.0.3-12"
|
|
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.
|
|
54
|
+
"@syncular/server-dialect-sqlite": "0.0.3-12",
|
|
55
55
|
"kysely": "*"
|
|
56
56
|
},
|
|
57
57
|
"files": [
|
package/src/server-role/index.ts
CHANGED