bruce-models 6.8.8 → 6.8.9

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.
@@ -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.8.8";
16449
+ const VERSION = "6.8.9";
16443
16450
 
16444
16451
  exports.VERSION = VERSION;
16445
16452
  exports.AbstractApi = AbstractApi;