@eo-sdk/client 8.14.0-rc.1 → 8.14.0

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.
@@ -22,7 +22,7 @@ export declare class WorkflowComponent implements ActionComponent {
22
22
  id: string;
23
23
  type: string;
24
24
  }[];
25
- private pendingTaskId;
25
+ pendingTaskIds: string[];
26
26
  private _executableProcess;
27
27
  dialog: EoDialogComponent;
28
28
  bpmForm: ObjectFormComponent;
@@ -288,7 +288,7 @@
288
288
  "eo.state.settings.language": "Language",
289
289
  "eo.state.settings.language.client": "Application",
290
290
  "eo.state.settings.language.schema": "Definitions",
291
- "eo.state.settings.language.error": "The selected language is not supported.",
291
+ "eo.state.settings.language.error": "The language you selected is not supported.",
292
292
  "eo.state.settings.roles": "Roles",
293
293
  "eo.state.settings.agent": "Agent",
294
294
  "eo.state.settings.agent.use": "Use installed agent",
@@ -3274,6 +3274,8 @@
3274
3274
  return this.backend.get(uri).pipe(operators.map(function (res) { return res; }), operators.tap(function (res) {
3275
3275
  // Extend existing processes with additional data, instead of overwriting all processes
3276
3276
  if (additionalData) {
3277
+ if (!_this.executableProcesses)
3278
+ _this.executableProcesses = [];
3277
3279
  res.forEach(function (proc) {
3278
3280
  var existingProcIndex = _this.executableProcesses.findIndex(function (item) { return item.id == proc.id; });
3279
3281
  if (existingProcIndex == -1)