bruce-models 7.1.94 → 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
@@ -18465,9 +18483,6 @@
18465
18483
  urlInstance.searchParams.set("fingerprint", this.currentAuth.fingerprint);
18466
18484
  }
18467
18485
  // Plugin IDs the active Project View has switched on.
18468
- if (this.currentAuth.enabledPluginIds) {
18469
- urlInstance.searchParams.set("enabledPluginIds", this.currentAuth.enabledPluginIds.join(","));
18470
- }
18471
18486
  // Add apiBaseUrl if provided (for anonymous access)
18472
18487
  if (this.currentAuth.apiBaseUrl) {
18473
18488
  urlInstance.searchParams.set("apiBaseUrl", this.currentAuth.apiBaseUrl);
@@ -23141,7 +23156,7 @@
23141
23156
  })(exports.UrlUtils || (exports.UrlUtils = {}));
23142
23157
 
23143
23158
  // This is updated with the package.json version on build.
23144
- const VERSION = "7.1.94";
23159
+ const VERSION = "7.1.95";
23145
23160
 
23146
23161
  exports.VERSION = VERSION;
23147
23162
  exports.AbstractApi = AbstractApi;