chore(run-engine): export the waitpoint store coordinator surface

This commit is contained in:
Daniel Sutton
2026-08-21 21:27:21 +01:00
parent bedce8b763
commit ccd17ff0ba
+23
View File
@@ -38,3 +38,26 @@ export type {
ProcessBatchItemCallback,
BatchCompletionCallback,
} from "./batch-queue/types.js";
// Waitpoint store coordinator. Exported but not yet wired: a later ticket routes
// WaitpointSystem onto it behind a per-organisation flag.
export {
WaitpointStoreCoordinator,
WaitpointNotFoundError,
} from "./engine/waitpointCoordinator/storeCoordinator.js";
export type {
AbsorbResult,
BlockEdge,
BlockState,
BlockStateEdge,
CompleteResult,
CreateIfAbsentResult,
RegisterOrReportResult,
WaitpointCompletion,
WaitpointCompletionOutput,
WaitpointRecordInput,
WaitpointStatus,
WaitpointStoreCoordinatorOptions,
WatcherEntry,
} from "./engine/waitpointCoordinator/storeCoordinator.js";
export { WaitpointKeyTagError } from "./engine/waitpointCoordinator/keys.js";