bruce-models 7.1.92 → 7.1.94

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.
@@ -18464,6 +18464,10 @@
18464
18464
  if (this.currentAuth.fingerprint) {
18465
18465
  urlInstance.searchParams.set("fingerprint", this.currentAuth.fingerprint);
18466
18466
  }
18467
+ // Plugin IDs the active Project View has switched on.
18468
+ if (this.currentAuth.enabledPluginIds) {
18469
+ urlInstance.searchParams.set("enabledPluginIds", this.currentAuth.enabledPluginIds.join(","));
18470
+ }
18467
18471
  // Add apiBaseUrl if provided (for anonymous access)
18468
18472
  if (this.currentAuth.apiBaseUrl) {
18469
18473
  urlInstance.searchParams.set("apiBaseUrl", this.currentAuth.apiBaseUrl);
@@ -23137,7 +23141,7 @@
23137
23141
  })(exports.UrlUtils || (exports.UrlUtils = {}));
23138
23142
 
23139
23143
  // This is updated with the package.json version on build.
23140
- const VERSION = "7.1.92";
23144
+ const VERSION = "7.1.94";
23141
23145
 
23142
23146
  exports.VERSION = VERSION;
23143
23147
  exports.AbstractApi = AbstractApi;