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.umd.js
CHANGED
|
@@ -16619,6 +16619,24 @@
|
|
|
16619
16619
|
})(exports.EntityTypeRelation || (exports.EntityTypeRelation = {}));
|
|
16620
16620
|
|
|
16621
16621
|
(function (EntityTypeTrigger) {
|
|
16622
|
+
let EType;
|
|
16623
|
+
(function (EType) {
|
|
16624
|
+
EType["DataLabQuery"] = "DataLabQuery";
|
|
16625
|
+
EType["WorkflowTicket"] = "WorkflowTicket";
|
|
16626
|
+
})(EType = EntityTypeTrigger.EType || (EntityTypeTrigger.EType = {}));
|
|
16627
|
+
function BuildWorkflowTicketSettings(params) {
|
|
16628
|
+
var _a;
|
|
16629
|
+
const settings = Object.assign(Object.assign({}, ((_a = params.extraSettings) !== null && _a !== void 0 ? _a : {})), { Condition: params.condition, WorkflowTicket: {
|
|
16630
|
+
"Workflow.ItemType.ID": params.workflowItemTypeId,
|
|
16631
|
+
"Workflow.Queue.ID": params.queueId,
|
|
16632
|
+
"Workflow.ItemStatus.ID": params.statusId
|
|
16633
|
+
} });
|
|
16634
|
+
if (params.description != null && params.description !== "") {
|
|
16635
|
+
settings.WorkflowTicket.Description = params.description;
|
|
16636
|
+
}
|
|
16637
|
+
return settings;
|
|
16638
|
+
}
|
|
16639
|
+
EntityTypeTrigger.BuildWorkflowTicketSettings = BuildWorkflowTicketSettings;
|
|
16622
16640
|
/**
|
|
16623
16641
|
* Gets a single Entity Type Trigger record.
|
|
16624
16642
|
* @param params
|
|
@@ -18464,6 +18482,7 @@
|
|
|
18464
18482
|
if (this.currentAuth.fingerprint) {
|
|
18465
18483
|
urlInstance.searchParams.set("fingerprint", this.currentAuth.fingerprint);
|
|
18466
18484
|
}
|
|
18485
|
+
// Plugin IDs the active Project View has switched on.
|
|
18467
18486
|
// Add apiBaseUrl if provided (for anonymous access)
|
|
18468
18487
|
if (this.currentAuth.apiBaseUrl) {
|
|
18469
18488
|
urlInstance.searchParams.set("apiBaseUrl", this.currentAuth.apiBaseUrl);
|
|
@@ -23137,7 +23156,7 @@
|
|
|
23137
23156
|
})(exports.UrlUtils || (exports.UrlUtils = {}));
|
|
23138
23157
|
|
|
23139
23158
|
// This is updated with the package.json version on build.
|
|
23140
|
-
const VERSION = "7.1.
|
|
23159
|
+
const VERSION = "7.1.95";
|
|
23141
23160
|
|
|
23142
23161
|
exports.VERSION = VERSION;
|
|
23143
23162
|
exports.AbstractApi = AbstractApi;
|