@lucern/contracts 1.0.47 → 1.0.48

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
@@ -156,3 +156,6 @@ All notable changes to `@lucern/contracts` are tracked in this repository.
156
156
 
157
157
  ## [1.0.47] - 2026-06-27
158
158
  - Release notes pending.
159
+
160
+ ## [1.0.48] - 2026-06-27
161
+ - Release notes pending.
@@ -6458,7 +6458,7 @@ var codingContracts = [
6458
6458
  args: recordScopeLearningArgs,
6459
6459
  input: recordScopeLearningArgs,
6460
6460
  convex: {
6461
- module: "evidence",
6461
+ module: "evidenceCreate",
6462
6462
  functionName: "create",
6463
6463
  kind: "mutation",
6464
6464
  inputProjection: learningInput
@@ -6474,7 +6474,7 @@ var codingContracts = [
6474
6474
  sdkMethod: "manageWritePolicy",
6475
6475
  summary: "Manage MCP write policy rules.",
6476
6476
  convex: {
6477
- module: "evidence",
6477
+ module: "evidenceCreate",
6478
6478
  functionName: "create",
6479
6479
  kind: "mutation",
6480
6480
  inputProjection: (input, context) => learningInput(
@@ -6497,7 +6497,7 @@ var codingContracts = [
6497
6497
  sdkMethod: "getCodeContext",
6498
6498
  summary: "Read code context for graph-linked files.",
6499
6499
  convex: {
6500
- module: "evidence",
6500
+ module: "evidenceQueries",
6501
6501
  functionName: "getByTopic",
6502
6502
  kind: "query",
6503
6503
  inputProjection: (input) => compactRecord({
@@ -6519,7 +6519,7 @@ var codingContracts = [
6519
6519
  sdkMethod: "getChangeHistory",
6520
6520
  summary: "Read recorded code change attempts.",
6521
6521
  convex: {
6522
- module: "evidence",
6522
+ module: "evidenceQueries",
6523
6523
  functionName: "getByTopic",
6524
6524
  kind: "query",
6525
6525
  inputProjection: (input) => compactRecord({
@@ -6540,7 +6540,7 @@ var codingContracts = [
6540
6540
  sdkMethod: "recordAttempt",
6541
6541
  summary: "Record a code attempt for failure learning.",
6542
6542
  convex: {
6543
- module: "evidence",
6543
+ module: "evidenceCreate",
6544
6544
  functionName: "create",
6545
6545
  kind: "mutation",
6546
6546
  inputProjection: attemptInput
@@ -6557,7 +6557,7 @@ var codingContracts = [
6557
6557
  sdkMethod: "getFailureLog",
6558
6558
  summary: "Read code failure log entries.",
6559
6559
  convex: {
6560
- module: "evidence",
6560
+ module: "evidenceQueries",
6561
6561
  functionName: "getByTopic",
6562
6562
  kind: "query",
6563
6563
  inputProjection: (input) => compactRecord({
@@ -6532,7 +6532,7 @@ var contextContracts = [
6532
6532
  sdkMethod: "ingestObservation",
6533
6533
  summary: "Ingest a non-destructive observation.",
6534
6534
  convex: {
6535
- module: "evidence",
6535
+ module: "evidenceCreate",
6536
6536
  functionName: "create",
6537
6537
  kind: "mutation",
6538
6538
  inputProjection: observationInput,
@@ -6554,7 +6554,7 @@ var contextContracts = [
6554
6554
  sdkMethod: "getObservationContext",
6555
6555
  summary: "Read staged observation context.",
6556
6556
  convex: {
6557
- module: "evidence",
6557
+ module: "evidenceQueries",
6558
6558
  functionName: "getByTopic",
6559
6559
  kind: "query",
6560
6560
  inputProjection: (input) => compactRecord({
@@ -12908,7 +12908,7 @@ var evidenceContracts = [
12908
12908
  sdkMethod: "createEvidence",
12909
12909
  summary: "Create evidence.",
12910
12910
  convex: {
12911
- module: "evidence",
12911
+ module: "evidenceCreate",
12912
12912
  functionName: "create",
12913
12913
  kind: "mutation",
12914
12914
  inputProjection: createEvidenceInput
@@ -12926,7 +12926,7 @@ var evidenceContracts = [
12926
12926
  sdkMethod: "addEvidence",
12927
12927
  summary: "Legacy evidence creation alias that writes through create_evidence.",
12928
12928
  convex: {
12929
- module: "evidence",
12929
+ module: "evidenceCreate",
12930
12930
  functionName: "create",
12931
12931
  kind: "mutation",
12932
12932
  inputProjection: (input, context) => {
@@ -6215,7 +6215,7 @@ var judgmentsContracts = [
6215
6215
  sdkMethod: "recordJudgment",
6216
6216
  summary: "Record a judgment as evidence.",
6217
6217
  convex: {
6218
- module: "evidence",
6218
+ module: "evidenceCreate",
6219
6219
  functionName: "create",
6220
6220
  kind: "mutation",
6221
6221
  inputProjection: (input, context) => withUserId(
@@ -41,5 +41,5 @@
41
41
  "convex-validators",
42
42
  "proof-attestation"
43
43
  ],
44
- "signedAt": 1782558651694
44
+ "signedAt": 1782560258746
45
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucern/contracts",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",