@hardkas/core 0.8.16-alpha → 0.8.19-alpha

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/dist/index.d.ts CHANGED
@@ -656,6 +656,11 @@ interface RuntimeContext {
656
656
  telemetry: TelemetryManager;
657
657
  workflowId?: string;
658
658
  assumptionLevel?: string;
659
+ utxoSelection?: {
660
+ totalUtxosSeen: number;
661
+ selectedUtxos: number;
662
+ selectionStrategy: string;
663
+ };
659
664
  }
660
665
  /**
661
666
  * A default system runtime context (for non-deterministic contexts like dev server or CLI entry points)
@@ -788,7 +793,7 @@ declare class AppendCoordinator {
788
793
  };
789
794
  }
790
795
 
791
- declare const CURRENT_RUNTIME_VERSION = "0.8.16-alpha";
796
+ declare const CURRENT_RUNTIME_VERSION = "0.8.19-alpha";
792
797
  declare const MIN_SUPPORTED_VERSION = "0.5.0-alpha";
793
798
  interface MigrationStatus {
794
799
  needsMigration: boolean;
package/dist/index.js CHANGED
@@ -956,7 +956,7 @@ async function createSnapshot(options) {
956
956
  const manifest = {
957
957
  snapshotVersion: 1,
958
958
  createdAt: (/* @__PURE__ */ new Date()).toISOString(),
959
- hardkasVersion: "0.8.16-alpha",
959
+ hardkasVersion: "0.8.19-alpha",
960
960
  stateAuthority: "filesystem",
961
961
  projectionAuthority: "sqlite",
962
962
  deterministicScope,
@@ -1205,7 +1205,7 @@ Resolution Command: ${report.exactReplayCommand}`
1205
1205
  // src/migrations.ts
1206
1206
  import fs6 from "fs";
1207
1207
  import path8 from "path";
1208
- var CURRENT_RUNTIME_VERSION = "0.8.16-alpha";
1208
+ var CURRENT_RUNTIME_VERSION = "0.8.19-alpha";
1209
1209
  var MIN_SUPPORTED_VERSION = "0.5.0-alpha";
1210
1210
  var MigrationManager = class {
1211
1211
  static checkVersion(rootDir) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hardkas/core",
3
- "version": "0.8.16-alpha",
3
+ "version": "0.8.19-alpha",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",