@lucern/sdk 1.0.15 → 1.0.16

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,9 @@ 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.16] - 2026-06-01
9
+ - Release notes pending.
10
+
8
11
  ## [1.0.15] - 2026-06-01
9
12
  - Release notes pending.
10
13
 
@@ -29,6 +29,13 @@ export type CompileContextInput = {
29
29
  packWeightOverrides?: PackWeightOverride[];
30
30
  tokenBudget?: number;
31
31
  rankingProfile?: ContextRankingProfile;
32
+ /**
33
+ * Dimension-seeded compiles synthesize every scoped worktree but bound raw
34
+ * belief/question/evidence enrichment to a ranked carrier-topic sample.
35
+ * Raise this, up to the hosted maximum, when callers need denser raw
36
+ * enrichment in the returned pack.
37
+ */
38
+ contentTopicLimit?: number;
32
39
  };
33
40
  export type PublicContextBelief = {
34
41
  beliefId: string;
@@ -475,6 +475,12 @@ export type ContextPackRequestV1 = {
475
475
  sessionId?: string;
476
476
  /** Pack weight overrides from domain pack binding (RS-2). */
477
477
  packWeightOverrides?: PackWeightOverride[];
478
+ /**
479
+ * Maximum carrier topics to enrich with raw belief/question/evidence rows for
480
+ * explicit dimension-seeded compiles. The full dimension is still synthesized
481
+ * through worktrees and receipts; this only bounds raw content fan-out.
482
+ */
483
+ contentTopicLimit?: number;
478
484
  };
479
485
  /**
480
486
  * Question statuses that are considered "resolved" (not open).
@@ -41,5 +41,5 @@
41
41
  "convex-validators",
42
42
  "proof-attestation"
43
43
  ],
44
- "signedAt": 1780312208587
44
+ "signedAt": 1780319940570
45
45
  }
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.15";
2
+ export declare const LUCERN_SDK_VERSION = "1.0.16";
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.15";
2
+ export const LUCERN_SDK_VERSION = "1.0.16";
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.15",
3
+ "version": "1.0.16",
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.15",
117
- "@lucern/reasoning-kernel": "1.0.15",
118
- "@lucern/secrets": "1.0.15",
119
- "@lucern/transport-core": "1.0.15",
116
+ "@lucern/contracts": "1.0.16",
117
+ "@lucern/reasoning-kernel": "1.0.16",
118
+ "@lucern/secrets": "1.0.16",
119
+ "@lucern/transport-core": "1.0.16",
120
120
  "effect": "^3.21.2",
121
121
  "zod": "^3.25.76"
122
122
  },