bruce-models 6.8.8 → 6.9.0
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/bruce-models.es5.js +8 -1
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +8 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/mcp/navigator-chat.js +3 -0
- package/dist/lib/mcp/navigator-chat.js.map +1 -1
- package/dist/lib/mcp/navigator-mcp-websocket.js +4 -0
- package/dist/lib/mcp/navigator-mcp-websocket.js.map +1 -1
- package/dist/lib/tileset/tileset.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/mcp/navigator-chat.d.ts +1 -0
- package/dist/types/mcp/navigator-mcp-websocket.d.ts +1 -0
- package/dist/types/tileset/tileset.d.ts +1 -0
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -16235,6 +16235,9 @@
|
|
|
16235
16235
|
if (auth === null || auth === void 0 ? void 0 : auth.sessionId) {
|
|
16236
16236
|
headers["X-Session-Id"] = auth.sessionId;
|
|
16237
16237
|
}
|
|
16238
|
+
if (auth === null || auth === void 0 ? void 0 : auth.fingerprint) {
|
|
16239
|
+
headers["X-Fingerprint"] = auth.fingerprint;
|
|
16240
|
+
}
|
|
16238
16241
|
const response = yield fetchImpl(this.buildUrl(path), Object.assign(Object.assign({}, init), { headers }));
|
|
16239
16242
|
if (!response.ok) {
|
|
16240
16243
|
const message = yield this.safeReadResponseText(response);
|
|
@@ -16383,6 +16386,10 @@
|
|
|
16383
16386
|
if (this.currentAuth.sessionId) {
|
|
16384
16387
|
urlInstance.searchParams.set("sessionId", this.currentAuth.sessionId);
|
|
16385
16388
|
}
|
|
16389
|
+
// Only add fingerprint if it's provided
|
|
16390
|
+
if (this.currentAuth.fingerprint) {
|
|
16391
|
+
urlInstance.searchParams.set("fingerprint", this.currentAuth.fingerprint);
|
|
16392
|
+
}
|
|
16386
16393
|
// Preserve the hash (unlikely to be used, but consistent with URL semantics)
|
|
16387
16394
|
return urlInstance.toString();
|
|
16388
16395
|
}
|
|
@@ -16439,7 +16446,7 @@
|
|
|
16439
16446
|
}
|
|
16440
16447
|
|
|
16441
16448
|
// This is updated with the package.json version on build.
|
|
16442
|
-
const VERSION = "6.
|
|
16449
|
+
const VERSION = "6.9.0";
|
|
16443
16450
|
|
|
16444
16451
|
exports.VERSION = VERSION;
|
|
16445
16452
|
exports.AbstractApi = AbstractApi;
|