@energy8platform/stake-math-tools 0.5.0 → 0.6.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energy8platform/stake-math-tools",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Node-only dev-time math utilities for the Energy8 Stake bridge: lookup-table (force matrix) builder",
5
5
  "author": "Energy8 Platform",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
@@ -13,6 +13,13 @@ export type {
13
13
  RefinementStats,
14
14
  } from './types.js';
15
15
  export { computeStakeReport, detectHitRateGaps } from './stake-report.js';
16
+ export { transformJsonlZst } from './transform-jsonl-zst.js';
17
+ export type {
18
+ TransformJsonlZstParams,
19
+ TransformJsonlZstResult,
20
+ LineMapper,
21
+ BinaryLineMapper,
22
+ } from './transform-jsonl-zst.js';
16
23
 
17
24
  // Lower-level pieces — exposed so callers can build alternative pipelines or test in isolation.
18
25
  export { computeMetrics, isNearMax } from './metrics.js';