@syncular/server-workers 0.15.43 → 0.15.45
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/realtime-do.d.ts +1 -1
- package/dist/realtime-do.js +1 -1
- package/package.json +4 -5
- package/src/index.ts +1 -1
- package/src/realtime-do.ts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @syncular/server-workers
|
|
2
2
|
|
|
3
|
-
The Cloudflare Workers entry for the Syncular sync server
|
|
3
|
+
The Cloudflare Workers entry for the Syncular sync server. It
|
|
4
4
|
wires the runtime-neutral server core to Workers bindings — **D1** for
|
|
5
5
|
storage, **R2** for durable segment/blob bytes, secrets for signing and
|
|
6
6
|
auth — behind a standard Workers module `fetch` handler.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* `@syncular/server-workers` — the Cloudflare Workers entry
|
|
2
|
+
* `@syncular/server-workers` — the Cloudflare Workers entry.
|
|
3
3
|
*
|
|
4
4
|
* This is deliberately thin. `createSyncularHono` (server-hono) is already
|
|
5
5
|
* Workers-native: it routes with Hono (which runs unmodified on `workerd`)
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* `@syncular/server-workers` — the Cloudflare Workers entry
|
|
2
|
+
* `@syncular/server-workers` — the Cloudflare Workers entry.
|
|
3
3
|
*
|
|
4
4
|
* This is deliberately thin. `createSyncularHono` (server-hono) is already
|
|
5
5
|
* Workers-native: it routes with Hono (which runs unmodified on `workerd`)
|
package/dist/realtime-do.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* `SyncularRealtimeDO` — the Cloudflare Durable Object realtime host (§8, the
|
|
3
|
-
* second binding of §1.1).
|
|
3
|
+
* second binding of §1.1). The deferred half of
|
|
4
4
|
* the Workers deployment matrix, now built.
|
|
5
5
|
*
|
|
6
6
|
* ## The shape
|
package/dist/realtime-do.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* `SyncularRealtimeDO` — the Cloudflare Durable Object realtime host (§8, the
|
|
3
|
-
* second binding of §1.1).
|
|
3
|
+
* second binding of §1.1). The deferred half of
|
|
4
4
|
* the Workers deployment matrix, now built.
|
|
5
5
|
*
|
|
6
6
|
* ## The shape
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncular/server-workers",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.45",
|
|
4
4
|
"description": "Cloudflare Workers adapter for the Syncular sync server",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Benjamin Kniffler",
|
|
@@ -45,11 +45,10 @@
|
|
|
45
45
|
"!dist/**/*.test.d.ts"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@syncular/server": "0.15.
|
|
49
|
-
"@syncular/server-hono": "0.15.
|
|
50
|
-
"hono": "^4.11.0"
|
|
48
|
+
"@syncular/server": "0.15.45",
|
|
49
|
+
"@syncular/server-hono": "0.15.45"
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"@syncular/core": "0.15.
|
|
52
|
+
"@syncular/core": "0.15.45"
|
|
54
53
|
}
|
|
55
54
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* `@syncular/server-workers` — the Cloudflare Workers entry
|
|
2
|
+
* `@syncular/server-workers` — the Cloudflare Workers entry.
|
|
3
3
|
*
|
|
4
4
|
* This is deliberately thin. `createSyncularHono` (server-hono) is already
|
|
5
5
|
* Workers-native: it routes with Hono (which runs unmodified on `workerd`)
|
package/src/realtime-do.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* `SyncularRealtimeDO` — the Cloudflare Durable Object realtime host (§8, the
|
|
3
|
-
* second binding of §1.1).
|
|
3
|
+
* second binding of §1.1). The deferred half of
|
|
4
4
|
* the Workers deployment matrix, now built.
|
|
5
5
|
*
|
|
6
6
|
* ## The shape
|