bruce-models 7.1.93 → 7.1.95
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 +20 -1
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +20 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/data-lab/data-lab.js.map +1 -1
- package/dist/lib/entity/entity-type-trigger.js +18 -0
- package/dist/lib/entity/entity-type-trigger.js.map +1 -1
- package/dist/lib/mcp/navigator-mcp-websocket.js +1 -0
- package/dist/lib/mcp/navigator-mcp-websocket.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/data-lab/data-lab.d.ts +9 -9
- package/dist/types/entity/entity-type-trigger.d.ts +68 -0
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -16859,6 +16859,24 @@ var EntityTypeRelation;
|
|
|
16859
16859
|
*/
|
|
16860
16860
|
var EntityTypeTrigger;
|
|
16861
16861
|
(function (EntityTypeTrigger) {
|
|
16862
|
+
let EType;
|
|
16863
|
+
(function (EType) {
|
|
16864
|
+
EType["DataLabQuery"] = "DataLabQuery";
|
|
16865
|
+
EType["WorkflowTicket"] = "WorkflowTicket";
|
|
16866
|
+
})(EType = EntityTypeTrigger.EType || (EntityTypeTrigger.EType = {}));
|
|
16867
|
+
function BuildWorkflowTicketSettings(params) {
|
|
16868
|
+
var _a;
|
|
16869
|
+
const settings = Object.assign(Object.assign({}, ((_a = params.extraSettings) !== null && _a !== void 0 ? _a : {})), { Condition: params.condition, WorkflowTicket: {
|
|
16870
|
+
"Workflow.ItemType.ID": params.workflowItemTypeId,
|
|
16871
|
+
"Workflow.Queue.ID": params.queueId,
|
|
16872
|
+
"Workflow.ItemStatus.ID": params.statusId
|
|
16873
|
+
} });
|
|
16874
|
+
if (params.description != null && params.description !== "") {
|
|
16875
|
+
settings.WorkflowTicket.Description = params.description;
|
|
16876
|
+
}
|
|
16877
|
+
return settings;
|
|
16878
|
+
}
|
|
16879
|
+
EntityTypeTrigger.BuildWorkflowTicketSettings = BuildWorkflowTicketSettings;
|
|
16862
16880
|
/**
|
|
16863
16881
|
* Gets a single Entity Type Trigger record.
|
|
16864
16882
|
* @param params
|
|
@@ -18745,6 +18763,7 @@ class NavigatorMcpWebSocketClient {
|
|
|
18745
18763
|
if (this.currentAuth.fingerprint) {
|
|
18746
18764
|
urlInstance.searchParams.set("fingerprint", this.currentAuth.fingerprint);
|
|
18747
18765
|
}
|
|
18766
|
+
// Plugin IDs the active Project View has switched on.
|
|
18748
18767
|
// Add apiBaseUrl if provided (for anonymous access)
|
|
18749
18768
|
if (this.currentAuth.apiBaseUrl) {
|
|
18750
18769
|
urlInstance.searchParams.set("apiBaseUrl", this.currentAuth.apiBaseUrl);
|
|
@@ -23516,7 +23535,7 @@ var UrlUtils;
|
|
|
23516
23535
|
})(UrlUtils || (UrlUtils = {}));
|
|
23517
23536
|
|
|
23518
23537
|
// This is updated with the package.json version on build.
|
|
23519
|
-
const VERSION = "7.1.
|
|
23538
|
+
const VERSION = "7.1.95";
|
|
23520
23539
|
|
|
23521
23540
|
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
23541
|
//# sourceMappingURL=bruce-models.es5.js.map
|