@hardkas/core 0.8.13-alpha → 0.8.15-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 +2 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -655,6 +655,7 @@ interface RuntimeContext {
|
|
|
655
655
|
ids: IdProvider;
|
|
656
656
|
telemetry: TelemetryManager;
|
|
657
657
|
workflowId?: string;
|
|
658
|
+
assumptionLevel?: string;
|
|
658
659
|
}
|
|
659
660
|
/**
|
|
660
661
|
* A default system runtime context (for non-deterministic contexts like dev server or CLI entry points)
|
|
@@ -787,7 +788,7 @@ declare class AppendCoordinator {
|
|
|
787
788
|
};
|
|
788
789
|
}
|
|
789
790
|
|
|
790
|
-
declare const CURRENT_RUNTIME_VERSION = "0.8.
|
|
791
|
+
declare const CURRENT_RUNTIME_VERSION = "0.8.15-alpha";
|
|
791
792
|
declare const MIN_SUPPORTED_VERSION = "0.5.0-alpha";
|
|
792
793
|
interface MigrationStatus {
|
|
793
794
|
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.
|
|
959
|
+
hardkasVersion: "0.8.15-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.
|
|
1208
|
+
var CURRENT_RUNTIME_VERSION = "0.8.15-alpha";
|
|
1209
1209
|
var MIN_SUPPORTED_VERSION = "0.5.0-alpha";
|
|
1210
1210
|
var MigrationManager = class {
|
|
1211
1211
|
static checkVersion(rootDir) {
|