@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
13 lines (12 loc) • 354 B
TypeScript
export type StoreDataObjectValueRequest<TValue extends object> = {
dataObjectId: string;
processDefinitionId: string;
processModelId: string;
embeddedProcessModelId?: string;
processInstanceId: string;
flowNodeInstanceId: string;
value: TValue;
};
export type DataObjectValueCollection = {
[dataObjectId: string]: any;
};