@lucern/sdk 1.0.27 → 1.0.29

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
@@ -5,6 +5,23 @@ All notable changes to `@lucern/sdk` will be documented in this file.
5
5
  ## [Unreleased]
6
6
  - No unreleased changes yet.
7
7
 
8
+ ## [1.0.29] - 2026-06-15
9
+ - Coherent with `@lucern/reasoning-kernel` 1.0.29: access-control consolidation
10
+ (FR.12e/g singular write gateway + CQ.11 gate de-duplication) plus
11
+ structured-error hardening (FR.13 `create_topic` out-of-enum 400, FR.60
12
+ structured-error-contract enforcement). Function/runtime-contract line, not a
13
+ schema line; component table manifests are unchanged from 1.0.28.
14
+
15
+ ## [1.0.28] - 2026-06-14
16
+ - Coherent with `@lucern/reasoning-kernel` 1.0.28: FR.12d access-control
17
+ completion — the definitive creator-grant 403 cure (#1361). The project
18
+ overlay now accepts epistemicNode-backed topics (node-only UUIDv7 self-key
19
+ and dual-backed `t17` doc-id shapes) and `tenant_api_key` service principals
20
+ resolve through the same grant-evaluation path, so a real non-admin
21
+ granted principal can `create_question` (and the rest of the project-scoped
22
+ write surface) without a spurious `PROJECT_ACCESS_DENIED` 403.
23
+ Function/runtime-contract line, not a schema line.
24
+
8
25
  ## [1.0.27] - 2026-06-14
9
26
  - FR.12c access-control completion. Coherent with `@lucern/reasoning-kernel`
10
27
  1.0.27: the kernel default `getProject` is now a real overlay materializer
@@ -41,5 +41,5 @@
41
41
  "convex-validators",
42
42
  "proof-attestation"
43
43
  ],
44
- "signedAt": 1781409932489
44
+ "signedAt": 1781580937826
45
45
  }
@@ -9,5 +9,13 @@ import { anyApi } from "convex/server";
9
9
  *
10
10
  * Client consumers should continue importing from `@lucern/sdk/realtime`.
11
11
  */
12
+ // TODO(FR.11-structural): `AnyApi`/`anyApi` is the SDK's public, consumer-facing
13
+ // escape hatch for referencing deployed functions — it is NOT a mechanical swap
14
+ // to a generated typed surface. Eliminating it requires the SDK to ship a
15
+ // published typed platform-API `.d.ts` (a typed function-reference manifest)
16
+ // that consumers import in place of `anyApi`. Until that typed surface is
17
+ // generated and bundled into the package, this remains the only typed way for
18
+ // SDK consumers to reference platform functions. Deferred to the FR.11 closing
19
+ // pass (needs a new generated artifact + public-API contract change).
12
20
  export const platformApi = anyApi;
13
21
  //# sourceMappingURL=refs.js.map
package/dist/version.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  /** Current SDK package version. */
2
- export declare const LUCERN_SDK_VERSION = "1.0.27";
2
+ export declare const LUCERN_SDK_VERSION = "1.0.29";
3
3
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  /** Current SDK package version. */
2
- export const LUCERN_SDK_VERSION = "1.0.27";
2
+ export const LUCERN_SDK_VERSION = "1.0.29";
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucern/sdk",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -113,10 +113,10 @@
113
113
  "typecheck": "tsc --project tsconfig.typecheck.json --noEmit"
114
114
  },
115
115
  "dependencies": {
116
- "@lucern/contracts": "1.0.27",
117
- "@lucern/reasoning-kernel": "1.0.27",
118
- "@lucern/secrets": "1.0.27",
119
- "@lucern/transport-core": "1.0.27",
116
+ "@lucern/contracts": "1.0.29",
117
+ "@lucern/reasoning-kernel": "1.0.29",
118
+ "@lucern/secrets": "1.0.29",
119
+ "@lucern/transport-core": "1.0.29",
120
120
  "effect": "^3.21.2",
121
121
  "zod": "^3.25.76"
122
122
  },