@5minds/processcube_engine_sdk 5.0.0-develop-2d2342-lr4n5ttu → 5.0.0-develop-ff4c2a-lrkbsdtr
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.
|
@@ -5,6 +5,7 @@ export type OnProcessInstancesDeletedCallback = (message: ProcessInstancesDelete
|
|
|
5
5
|
export type OnProcessIsExecutableChangedCallback = (message: ProcessIsExecutableChangedMessage) => void | Promise<void>;
|
|
6
6
|
export type OnCronjobEnabledChangedCallback = (message: CronjobEnabledChangedMessage) => void | Promise<void>;
|
|
7
7
|
export type OnProcessUndeployedCallback = (message: ProcessDeploymentMessage) => void | Promise<void>;
|
|
8
|
+
export type OnBoundaryEventWaitingCallback = (boundaryEventWaiting: EventMessage) => void | Promise<void>;
|
|
8
9
|
export type OnBoundaryEventTriggeredCallback = (boundaryEventTriggered: EventMessage) => void | Promise<void>;
|
|
9
10
|
export type OnBoundaryEventFinishedCallback = (boundaryEventFinished: EventMessage) => void | Promise<void>;
|
|
10
11
|
export type OnIntermediateThrowEventTriggeredCallback = (intermediateThrowEventTriggered: EventMessage) => void | Promise<void>;
|
|
@@ -113,6 +113,10 @@ export interface INotificationExtensionAdapter {
|
|
|
113
113
|
subscribeOnce?: boolean;
|
|
114
114
|
identity?: Identity;
|
|
115
115
|
}): Promise<Subscription>;
|
|
116
|
+
onBoundaryEventWaiting(callback: Messages.CallbackTypes.OnBoundaryEventWaitingCallback, options?: {
|
|
117
|
+
subscribeOnce?: boolean;
|
|
118
|
+
identity?: Identity;
|
|
119
|
+
}): Promise<Subscription>;
|
|
116
120
|
onBoundaryEventTriggered(callback: Messages.CallbackTypes.OnBoundaryEventTriggeredCallback, options?: {
|
|
117
121
|
subscribeOnce?: boolean;
|
|
118
122
|
identity?: Identity;
|
package/package.json
CHANGED