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.
@@ -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.93";
23159
+ const VERSION = "7.1.95";
23141
23160
 
23142
23161
  exports.VERSION = VERSION;
23143
23162
  exports.AbstractApi = AbstractApi;