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.es5.js
CHANGED
|
@@ -18745,6 +18745,10 @@ class NavigatorMcpWebSocketClient {
|
|
|
18745
18745
|
if (this.currentAuth.fingerprint) {
|
|
18746
18746
|
urlInstance.searchParams.set("fingerprint", this.currentAuth.fingerprint);
|
|
18747
18747
|
}
|
|
18748
|
+
// Plugin IDs the active Project View has switched on.
|
|
18749
|
+
if (this.currentAuth.enabledPluginIds) {
|
|
18750
|
+
urlInstance.searchParams.set("enabledPluginIds", this.currentAuth.enabledPluginIds.join(","));
|
|
18751
|
+
}
|
|
18748
18752
|
// Add apiBaseUrl if provided (for anonymous access)
|
|
18749
18753
|
if (this.currentAuth.apiBaseUrl) {
|
|
18750
18754
|
urlInstance.searchParams.set("apiBaseUrl", this.currentAuth.apiBaseUrl);
|
|
@@ -23516,7 +23520,7 @@ var UrlUtils;
|
|
|
23516
23520
|
})(UrlUtils || (UrlUtils = {}));
|
|
23517
23521
|
|
|
23518
23522
|
// This is updated with the package.json version on build.
|
|
23519
|
-
const VERSION = "7.1.
|
|
23523
|
+
const VERSION = "7.1.94";
|
|
23520
23524
|
|
|
23521
23525
|
export { VERSION, Account, AccountAudit, AccountConcept, AccountFeatures, AccountInvite, AccountLimits, AccountTemplate, AccountType, AnnDocument, AbstractApi, Api, ApiGetters, BruceApi, GlobalApi, GuardianApi, Assembly, Calculator, ChangeSet, ClientFile, ClientFileValueMap, Bounds, BruceEvent, BruceVariable, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, GeoJson, Geometry, LRUCache, UTC, CustomForm, DashboardView, DataFeed, DataLab, DataLabGroup, DataSource, DataTransform, Comment, Entity, EntityAttachment, EntityAttachmentType, EntityAttribute, EntityComment, EntityCoords, EntityHistoricData, EntityLink, EntityLod, EntityLodCategory, EntityRelation, EntityRelationType, EntitySource, EntityTableView, EntityTag, EntityType, EntityTypeRelation, EntityTypeTrigger, Ontology, OntologyDocument, ENVIRONMENT, ExportBrz, ExportCsv, ExportNsx, ExportUsd, Hexbin, ImportAssembly, ImportCad, ImportCsv, ImportGeoJson, ImportJson, ImportKml, ImportLcc, ImportTif, ImportedFile, Uploader, Markup, UIMarkup, NAVIGATOR_CHAT_EVENT_ENTITY_HIGHLIGHT_APPLIED, NAVIGATOR_CHAT_EVENT_SCENE_CONTEXT_PREFETCHED, NavigatorChatClient, NavigatorMcpWebSocketClient, Plugin, PluginAiTool, ProgramKey, MenuItem, ProjectView, ProjectViewBookmark, ProjectViewBookmarkGroup, ProjectViewLegacy, ProjectViewLegacyBookmark, ProjectViewLegacyTile, ProjectViewTile, ZoomControl, Scenario, HostingLocation, MessageBroker, PendingAction, RecordChangeFeed, Style, Tileset, Tracking, Permission, Session, User, UserGroup, UserMfaMethod, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils };
|
|
23522
23526
|
//# sourceMappingURL=bruce-models.es5.js.map
|