@eo-sdk/client 8.10.2 → 8.10.3

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.
@@ -3224,6 +3224,11 @@
3224
3224
  return rxjs.of([]);
3225
3225
  }
3226
3226
  };
3227
+ BpmService.prototype.initExecutableProcesses = function () {
3228
+ var _this = this;
3229
+ var uri = '/bpm/process/executable';
3230
+ return this.backend.get(uri).pipe(operators.tap(function (res) { return _this.hasMainExecutableProcesses = res === null || res === void 0 ? void 0 : res.length; }));
3231
+ };
3227
3232
  /**
3228
3233
  * Gets executable Processes for a given set of dms object.You'll get
3229
3234
  * only the processes that are executable for all of them.
@@ -3901,7 +3906,7 @@
3901
3906
  this.prepareService.refreshPreparedItemsCount();
3902
3907
  }
3903
3908
  var todo = [
3904
- this.bpmService.getExecutableProcesses(),
3909
+ this.bpmService.initExecutableProcesses(),
3905
3910
  this.systemService.getSystemDefinition(currUser)
3906
3911
  ];
3907
3912
  return rxjs.forkJoin(todo).pipe(operators.map(function () { return currUser; }));