@lunora/runtime 1.0.0-alpha.60 → 1.0.0-alpha.62

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/dist/index.d.mts CHANGED
@@ -4140,8 +4140,8 @@ type FrameworkWorkerOptionsInput = ((env: unknown) => FrameworkWorkerOptions) |
4140
4140
  /**
4141
4141
  * Compose a meta-framework's Cloudflare Worker handler with Lunora's realtime
4142
4142
  * plane into one `{ fetch, scheduled }` Worker — the **single, shared** class-B
4143
- * (own-CF-adapter, hook-injection) composer behind `@lunora/svelte/worker`,
4144
- * `@lunora/vue/worker`, and `@lunora/astro`'s `withLunora` (PLAN4 §3). It wraps
4143
+ * (own-CF-adapter, hook-injection) composer behind `@lunora/astro`'s
4144
+ * `withLunora` and codegen's `buildFrameworkWorker` (PLAN4 §3). It wraps
4145
4145
  * the framework handler as {@link composeWorker}'s `httpRouter`, so the reserved
4146
4146
  * realtime endpoints (`/_lunora/rpc`, `/_lunora/ws`, `/_lunora/admin/*`) plus
4147
4147
  * auth/explicit `routes` go to Lunora and **everything else** delegates to the
package/dist/index.d.ts CHANGED
@@ -4140,8 +4140,8 @@ type FrameworkWorkerOptionsInput = ((env: unknown) => FrameworkWorkerOptions) |
4140
4140
  /**
4141
4141
  * Compose a meta-framework's Cloudflare Worker handler with Lunora's realtime
4142
4142
  * plane into one `{ fetch, scheduled }` Worker — the **single, shared** class-B
4143
- * (own-CF-adapter, hook-injection) composer behind `@lunora/svelte/worker`,
4144
- * `@lunora/vue/worker`, and `@lunora/astro`'s `withLunora` (PLAN4 §3). It wraps
4143
+ * (own-CF-adapter, hook-injection) composer behind `@lunora/astro`'s
4144
+ * `withLunora` and codegen's `buildFrameworkWorker` (PLAN4 §3). It wraps
4145
4145
  * the framework handler as {@link composeWorker}'s `httpRouter`, so the reserved
4146
4146
  * realtime endpoints (`/_lunora/rpc`, `/_lunora/ws`, `/_lunora/admin/*`) plus
4147
4147
  * auth/explicit `routes` go to Lunora and **everything else** delegates to the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunora/runtime",
3
- "version": "1.0.0-alpha.60",
3
+ "version": "1.0.0-alpha.62",
4
4
  "description": "Lunora Worker runtime: the RPC router, shard resolver, and query coordinator",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -46,9 +46,9 @@
46
46
  "access": "public"
47
47
  },
48
48
  "dependencies": {
49
- "@lunora/bindings": "1.0.0-alpha.27",
50
- "@lunora/errors": "1.0.0-alpha.20",
51
- "@lunora/platform": "1.0.0-alpha.9"
49
+ "@lunora/bindings": "1.0.0-alpha.28",
50
+ "@lunora/errors": "1.0.0-alpha.21",
51
+ "@lunora/platform": "1.0.0-alpha.10"
52
52
  },
53
53
  "engines": {
54
54
  "node": "^22.15.0 || >=24.11.0"