@tangle-network/agent-eval 0.108.0 → 0.108.1
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 +10 -0
- package/dist/benchmarks/index.js +1 -1
- package/dist/campaign/index.d.ts +1 -0
- package/dist/campaign/index.js +1 -1
- package/dist/{chunk-4VLZEPJ3.js → chunk-6SKVFBTR.js} +1 -1
- package/dist/chunk-6SKVFBTR.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/openapi.json +1 -1
- package/package.json +1 -1
- package/dist/chunk-4VLZEPJ3.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to `@tangle-network/agent-eval` and its sibling `agent-eval-
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.108.1] — 2026-07-08 — public catalog docs patch
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Added the missing public TSDoc summary for `Lineage`, so downstream primitive catalogs can consume the latest campaign surface without tripping their undocumented-callable ratchet.
|
|
12
|
+
|
|
13
|
+
No behavior changes.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
7
17
|
## [0.108.0] — 2026-07-08 — placebo control reaches the facades
|
|
8
18
|
|
|
9
19
|
### Added
|
package/dist/benchmarks/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
runBenchmarkAdapter,
|
|
18
18
|
summarizeBenchmarkCampaign
|
|
19
19
|
} from "../chunk-T6W5ADLG.js";
|
|
20
|
-
import "../chunk-
|
|
20
|
+
import "../chunk-6SKVFBTR.js";
|
|
21
21
|
import "../chunk-OVPVM4JC.js";
|
|
22
22
|
import "../chunk-3PFZBGMR.js";
|
|
23
23
|
import "../chunk-VI2UW6B6.js";
|
package/dist/campaign/index.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ declare function lineageNodeId(input: {
|
|
|
107
107
|
type LineageNodeInput = Omit<LineageNode, 'id' | 'seq' | 'generation'> & {
|
|
108
108
|
generation?: number;
|
|
109
109
|
};
|
|
110
|
+
/** Deterministic improvement-candidate graph with mutation, merge, frontier, and persistence helpers. */
|
|
110
111
|
declare class Lineage {
|
|
111
112
|
private readonly byId;
|
|
112
113
|
private readonly childIds;
|
package/dist/campaign/index.js
CHANGED