bruce-models 7.1.31 → 7.1.32

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.
@@ -17113,6 +17113,8 @@
17113
17113
 
17114
17114
  const DEFAULT_JOB_POLL_INTERVAL_MS = 1000;
17115
17115
  const DEFAULT_JOB_POLL_TIMEOUT_MS = 10 * 60 * 1000; // match server timeout (10 minutes)
17116
+ const NAVIGATOR_CHAT_EVENT_ENTITY_HIGHLIGHT_APPLIED = "entity_highlight_applied";
17117
+ const NAVIGATOR_CHAT_EVENT_SCENE_CONTEXT_PREFETCHED = "scene_context_prefetched";
17116
17118
  const DEFAULT_BASE_URL = "http://localhost:8888";
17117
17119
  /**
17118
17120
  * Lightweight client for the Navigator MCP chat HTTP endpoints.
@@ -17409,6 +17411,13 @@
17409
17411
  setAuth(auth) {
17410
17412
  this.currentAuth = auth;
17411
17413
  }
17414
+ sendChatEvent(event) {
17415
+ this.send({
17416
+ jsonrpc: "2.0",
17417
+ method: "chat/event",
17418
+ params: event
17419
+ });
17420
+ }
17412
17421
  logger() {
17413
17422
  var _a;
17414
17423
  return (_a = this.options.logger) !== null && _a !== void 0 ? _a : console;
@@ -17689,7 +17698,7 @@
17689
17698
  })(exports.ChangeSet || (exports.ChangeSet = {}));
17690
17699
 
17691
17700
  // This is updated with the package.json version on build.
17692
- const VERSION = "7.1.31";
17701
+ const VERSION = "7.1.32";
17693
17702
 
17694
17703
  exports.VERSION = VERSION;
17695
17704
  exports.AbstractApi = AbstractApi;
@@ -17698,6 +17707,8 @@
17698
17707
  exports.CacheControl = CacheControl;
17699
17708
  exports.DelayQueue = DelayQueue;
17700
17709
  exports.LRUCache = LRUCache;
17710
+ exports.NAVIGATOR_CHAT_EVENT_ENTITY_HIGHLIGHT_APPLIED = NAVIGATOR_CHAT_EVENT_ENTITY_HIGHLIGHT_APPLIED;
17711
+ exports.NAVIGATOR_CHAT_EVENT_SCENE_CONTEXT_PREFETCHED = NAVIGATOR_CHAT_EVENT_SCENE_CONTEXT_PREFETCHED;
17701
17712
  exports.NavigatorChatClient = NavigatorChatClient;
17702
17713
  exports.NavigatorMcpWebSocketClient = NavigatorMcpWebSocketClient;
17703
17714