@5minds/processcube_engine_sdk 4.0.0 → 4.0.1-feature-6064cb-loiottpf

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.
@@ -6,6 +6,7 @@ export type OnProcessIsExecutableChangedCallback = (message: ProcessIsExecutable
6
6
  export type OnCronjobEnabledChangedCallback = (message: CronjobEnabledChangedMessage) => void | Promise<void>;
7
7
  export type OnProcessUndeployedCallback = (message: ProcessDeploymentMessage) => void | Promise<void>;
8
8
  export type OnBoundaryEventTriggeredCallback = (boundaryEventTriggered: EventMessage) => void | Promise<void>;
9
+ export type OnBoundaryEventFinishedCallback = (boundaryEventFinished: EventMessage) => void | Promise<void>;
9
10
  export type OnIntermediateThrowEventTriggeredCallback = (intermediateThrowEventTriggered: EventMessage) => void | Promise<void>;
10
11
  export type OnIntermediateCatchEventReachedCallback = (intermediateCatchEventReached: EventMessage) => void | Promise<void>;
11
12
  export type OnIntermediateCatchEventFinishedCallback = (intermediateCatchEventFinished: EventMessage) => void | Promise<void>;
@@ -21,6 +21,10 @@ export interface IEventExtensionAdapter {
21
21
  subscribeOnce?: boolean;
22
22
  identity?: Identity;
23
23
  }): Promise<Subscription>;
24
+ onBoundaryEventFinished(callback: Messages.CallbackTypes.OnBoundaryEventFinishedCallback, options?: {
25
+ subscribeOnce?: boolean;
26
+ identity?: Identity;
27
+ }): Promise<Subscription>;
24
28
  onIntermediateThrowEventTriggered(callback: Messages.CallbackTypes.OnIntermediateThrowEventTriggeredCallback, options?: {
25
29
  subscribeOnce?: boolean;
26
30
  identity?: Identity;
@@ -113,6 +113,10 @@ export interface INotificationExtensionAdapter {
113
113
  subscribeOnce?: boolean;
114
114
  identity?: Identity;
115
115
  }): Promise<Subscription>;
116
+ onBoundaryEventFinished(callback: Messages.CallbackTypes.OnBoundaryEventFinishedCallback, options?: {
117
+ subscribeOnce?: boolean;
118
+ identity?: Identity;
119
+ }): Promise<Subscription>;
116
120
  onIntermediateThrowEventTriggered(callback: Messages.CallbackTypes.OnIntermediateThrowEventTriggeredCallback, options?: {
117
121
  subscribeOnce?: boolean;
118
122
  identity?: Identity;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@5minds/processcube_engine_sdk",
3
- "version": "4.0.0",
3
+ "version": "4.0.1-feature-6064cb-loiottpf",
4
4
  "description": "Software development kit for the Engine.",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "types": "dist/index.d.ts",