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.
- package/dist/bruce-models.es5.js +5 -1
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +5 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +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/types/bruce-models.d.ts +1 -1
- package/dist/types/custom-form/custom-form-content.d.ts +11 -4
- package/dist/types/mcp/navigator-mcp-websocket.d.ts +4 -0
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -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.
|
|
23144
|
+
const VERSION = "7.1.94";
|
|
23141
23145
|
|
|
23142
23146
|
exports.VERSION = VERSION;
|
|
23143
23147
|
exports.AbstractApi = AbstractApi;
|