@bridge_gpt/mcp-server 0.2.9 → 0.2.10

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.
@@ -13,7 +13,7 @@ import { SEMANTIC_EVENT_TYPES } from "./taxonomy.js";
13
13
  import { ConductorValidationError, toConductorErrorEnvelope } from "./errors.js";
14
14
  import { emitConductorEvent, pollConductorEvents, waitForConductorEvent, getSupervisorSnapshot, sendWorkerMessage, checkWorkerMessages, } from "./store.js";
15
15
  import { normalizePrNumber, normalizeSha } from "./git-ci-types.js";
16
- import { waitForDoneGate } from "./pr-ci-producer.js";
16
+ import { waitForDoneGate, resolveDispatchRunIdForBinding } from "./pr-ci-producer.js";
17
17
  import { resolveConductorBridgeApiAccess, fetchEpicRunState, ConductorBridgeApiError } from "./bridge-api-client.js";
18
18
  /** Build a Zod enum from the semantic taxonomy so arbitrary types are rejected up front. */
19
19
  export function buildEventTypeZodEnum() {
@@ -249,7 +249,7 @@ function registerWaitForDoneGateTool(registerTool) {
249
249
  timeoutMs: args.timeout_ms,
250
250
  pollIntervalMs: args.poll_interval_ms,
251
251
  worktreePath: args.worktree_path,
252
- });
252
+ }, { resolveRunId: resolveDispatchRunIdForBinding });
253
253
  return jsonResult({
254
254
  gate_met: result.gate_met,
255
255
  timed_out: result.timed_out,