@5minds/processcube_engine_sdk 5.0.0-develop-a28555-lpqp2iet → 5.0.0-develop-6ab5d3-lps84kyx

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.
@@ -17,6 +17,7 @@ export type OnStartEventFinishedCallback = (startEventFinished: EventMessage) =>
17
17
  export type OnEndEventFinishedCallback = (endEventFinished: EventMessage) => void | Promise<void>;
18
18
  export type OnActivityReachedCallback = (activityReached: EventMessage) => void | Promise<void>;
19
19
  export type OnActivityFinishedCallback = (activityFinished: EventMessage) => void | Promise<void>;
20
+ export type OnActivityCanceledCallback = (activityCanceled: EventMessage) => void | Promise<void>;
20
21
  export type OnUntypedTaskWaitingCallback = (userTaskWaiting: EventMessage) => void | Promise<void>;
21
22
  export type OnUntypedTaskFinishedCallback = (userTaskFinished: EventMessage) => void | Promise<void>;
22
23
  export type OnManualTaskWaitingCallback = (manualTaskWaiting: EventMessage) => void | Promise<void>;
@@ -81,6 +81,10 @@ export interface INotificationExtensionAdapter {
81
81
  subscribeOnce?: boolean;
82
82
  identity?: Identity;
83
83
  }): Promise<Subscription>;
84
+ onActivityCanceled(callback: Messages.CallbackTypes.OnActivityCanceledCallback, options?: {
85
+ subscribeOnce?: boolean;
86
+ identity?: Identity;
87
+ }): Promise<Subscription>;
84
88
  onUntypedTaskFinished(callback: Messages.CallbackTypes.OnUntypedTaskFinishedCallback, options?: {
85
89
  subscribeOnce?: boolean;
86
90
  identity?: Identity;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@5minds/processcube_engine_sdk",
3
- "version": "5.0.0-develop-a28555-lpqp2iet",
3
+ "version": "5.0.0-develop-6ab5d3-lps84kyx",
4
4
  "description": "Software development kit for the Engine.",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "types": "dist/index.d.ts",