@5minds/processcube_engine_sdk 7.1.0-develop-ea7f15-mbd5sdkt → 7.1.0-develop-6b9ad7-mbeujiki
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.
- package/dist/ExtensionAdapter/CorrelationExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/CronjobExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/DataObjectInstanceExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/EventExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/FlowNodeInstanceExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/ManualTaskExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/ProcessDefinitionExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/ProcessInstanceExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/ProcessModelExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/UntypedTaskExtensionAdapter.d.ts +1 -0
- package/dist/ExtensionAdapter/UserTaskExtensionAdapter.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ export interface ICorrelationExtensionAdapter {
|
|
|
6
6
|
offset?: number;
|
|
7
7
|
limit?: number;
|
|
8
8
|
sortSettings?: DataModels.Correlation.CorrelationSortSettings;
|
|
9
|
+
includeCount?: boolean;
|
|
9
10
|
}): Promise<DataModels.Correlation.CorrelationList>;
|
|
10
11
|
getById(correlationId: string, options?: {
|
|
11
12
|
identity?: Identity;
|
|
@@ -5,6 +5,7 @@ export interface ICronjobExtensionAdapter {
|
|
|
5
5
|
offset?: number;
|
|
6
6
|
limit?: number;
|
|
7
7
|
sortSettings?: CronjobSortSettings;
|
|
8
|
+
includeCount?: boolean;
|
|
8
9
|
}): Promise<DeployedCronjobList>;
|
|
9
10
|
enableCronjob(processModelId: string, flowNodeId: string, identity?: Identity): Promise<void>;
|
|
10
11
|
disableCronjob(processModelId: string, flowNodeId: string, identity?: Identity): Promise<void>;
|
|
@@ -6,6 +6,7 @@ export interface IEventExtensionAdapter {
|
|
|
6
6
|
offset?: number;
|
|
7
7
|
limit?: number;
|
|
8
8
|
sortSettings?: DataModels.FlowNodeInstances.FlowNodeInstanceSortSettings;
|
|
9
|
+
includeCount?: boolean;
|
|
9
10
|
}): Promise<EventList>;
|
|
10
11
|
triggerMessageEvent<TPayload>(messageName: string, options?: {
|
|
11
12
|
processInstanceId?: string;
|
|
@@ -5,6 +5,7 @@ export interface IFlowNodeInstanceExtensionAdapter {
|
|
|
5
5
|
offset?: number;
|
|
6
6
|
limit?: number;
|
|
7
7
|
sortSettings?: DataModels.FlowNodeInstances.FlowNodeInstanceSortSettings;
|
|
8
|
+
includeCount?: boolean;
|
|
8
9
|
}): Promise<DataModels.FlowNodeInstances.FlowNodeInstanceList>;
|
|
9
10
|
finishUntypedTask(taskInstanceId: string, identity?: Identity): Promise<void>;
|
|
10
11
|
finishManualTask(manualTaskInstanceId: string, identity?: Identity): Promise<void>;
|
|
@@ -6,6 +6,7 @@ export interface IManualTaskExtensionAdapter {
|
|
|
6
6
|
offset?: number;
|
|
7
7
|
limit?: number;
|
|
8
8
|
sortSettings?: DataModels.FlowNodeInstances.FlowNodeInstanceSortSettings;
|
|
9
|
+
includeCount?: boolean;
|
|
9
10
|
}): Promise<ManualTaskList>;
|
|
10
11
|
finishManualTask(manualTaskInstanceId: string, identity?: Identity): Promise<void>;
|
|
11
12
|
onManualTaskWaiting(callback: Messages.CallbackTypes.OnManualTaskWaitingCallback, options?: {
|
|
@@ -7,6 +7,7 @@ export interface IProcessDefinitionExtensionAdapter {
|
|
|
7
7
|
offset?: number;
|
|
8
8
|
limit?: number;
|
|
9
9
|
includeXml?: boolean;
|
|
10
|
+
includeCount?: boolean;
|
|
10
11
|
}): Promise<DataModels.ProcessDefinitions.ProcessDefinitionList>;
|
|
11
12
|
getById(processDefinitionId: string, options?: {
|
|
12
13
|
identity?: Identity;
|
|
@@ -6,6 +6,7 @@ export interface IProcessInstanceExtensionAdapter {
|
|
|
6
6
|
offset?: number;
|
|
7
7
|
limit?: number;
|
|
8
8
|
sortSettings?: DataModels.ProcessInstances.ProcessInstanceSortSettings;
|
|
9
|
+
includeCount?: boolean;
|
|
9
10
|
}): Promise<DataModels.ProcessInstances.ProcessInstanceList>;
|
|
10
11
|
getProcessDefinition(processInstanceId: string, options?: {
|
|
11
12
|
identity?: Identity;
|
|
@@ -6,6 +6,7 @@ export interface IProcessModelExtensionAdapter {
|
|
|
6
6
|
identity?: Identity;
|
|
7
7
|
offset?: number;
|
|
8
8
|
limit?: number;
|
|
9
|
+
includeCount?: boolean;
|
|
9
10
|
}): Promise<DataModels.ProcessDefinitions.ProcessModelList>;
|
|
10
11
|
getById(processModelId: string, identity?: Identity): Promise<DataModels.ProcessDefinitions.ProcessModel>;
|
|
11
12
|
getByProcessInstanceId(processInstanceId: string, identity?: Identity): Promise<DataModels.ProcessDefinitions.ProcessModel>;
|
|
@@ -5,6 +5,7 @@ export interface IUntypedTaskExtensionAdapter {
|
|
|
5
5
|
offset?: number;
|
|
6
6
|
limit?: number;
|
|
7
7
|
sortSettings?: FlowNodeInstanceSortSettings;
|
|
8
|
+
includeCount?: boolean;
|
|
8
9
|
}): Promise<UntypedTaskList>;
|
|
9
10
|
finishTask(taskInstanceId: string, identity?: Identity): Promise<void>;
|
|
10
11
|
onUntypedTaskWaiting(callback: Messages.CallbackTypes.OnUntypedTaskWaitingCallback, options?: {
|
|
@@ -6,6 +6,7 @@ export interface IUserTaskExtensionAdapter {
|
|
|
6
6
|
offset?: number;
|
|
7
7
|
limit?: number;
|
|
8
8
|
sortSettings?: DataModels.FlowNodeInstances.FlowNodeInstanceSortSettings;
|
|
9
|
+
includeCount?: boolean;
|
|
9
10
|
}): Promise<UserTaskList>;
|
|
10
11
|
reserveUserTaskInstance(identity: Identity, flowNodeInstanceId: string, actualOwnerId: string): Promise<void>;
|
|
11
12
|
cancelUserTaskInstanceReservation(identity: Identity, flowNodeInstanceId: string): Promise<void>;
|
package/package.json
CHANGED