@5minds/processcube_engine_sdk 7.2.0-feature-4668f2-mbgl023x → 7.2.0-feature-bcdb02-mbhvn4ed

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.
@@ -13,15 +13,6 @@ export interface IProcessDefinitionExtensionAdapter {
13
13
  identity?: Identity;
14
14
  includeXml?: boolean;
15
15
  }): Promise<DataModels.ProcessDefinitions.ProcessDefinition>;
16
- getHistoryById(processDefinitionId: string, options?: {
17
- identity?: Identity;
18
- includeXml?: boolean;
19
- includeCount?: boolean;
20
- }): Promise<DataModels.ProcessDefinitions.ProcessDefinitionList>;
21
- getByHash(processDefinitionHash: string, options?: {
22
- identity?: Identity;
23
- includeXml?: boolean;
24
- }): Promise<DataModels.ProcessDefinitions.ProcessDefinition>;
25
16
  getByProcessModelId(processModelId: string, options?: {
26
17
  identity?: Identity;
27
18
  includeXml?: boolean;
@@ -24,4 +24,5 @@ export type Activity = FlowNode & {
24
24
  * Contains an expression that has to result in a number value describing the maximum amount of allowed iterations. If exceeded an error will be thrown
25
25
  */
26
26
  maxLoopIterations?: string;
27
+ triggeredByEvent?: Boolean;
27
28
  };
@@ -1,6 +1,6 @@
1
1
  import { BaseElement } from '../Base/BaseElement';
2
2
  import { EventType } from '../Constants';
3
- import { BoundaryEvent, EndEvent, Event, EventDefinition } from './EventBase';
3
+ import { BoundaryEvent, EndEvent, Event, EventDefinition, StartEvent } from './EventBase';
4
4
  /**
5
5
  * Describes a BPMN error used by Error End Events and Error Boundary Events.
6
6
  */
@@ -25,4 +25,5 @@ export type ErrorEvent = Event & {
25
25
  errorEventDefinition: ErrorEventDefinition;
26
26
  };
27
27
  export type ErrorBoundaryEvent = BoundaryEvent & ErrorEvent;
28
+ export type ErrorStartEvent = StartEvent & ErrorEvent;
28
29
  export type ErrorEndEvent = EndEvent & ErrorEvent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@5minds/processcube_engine_sdk",
3
- "version": "7.2.0-feature-4668f2-mbgl023x",
3
+ "version": "7.2.0-feature-bcdb02-mbhvn4ed",
4
4
  "description": "Software development kit for the Engine.",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "types": "dist/index.d.ts",