bpmn-engine 15.1.2 → 15.1.3
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/types/bpmn-engine.d.ts +3 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/types/bpmn-engine.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ declare module 'bpmn-engine' {
|
|
|
44
44
|
*/
|
|
45
45
|
export type BpmnSequenceFlowEvent = 'flow.take' | 'flow.discard' | 'flow.looped';
|
|
46
46
|
export type BpmnEngineVariable = Record<string, any>;
|
|
47
|
+
export type BpmnEngineSetting = Record<string, any>;
|
|
47
48
|
|
|
48
49
|
export interface BpmnLogger {
|
|
49
50
|
debug(...args: any[]): void;
|
|
@@ -216,6 +217,7 @@ declare module 'bpmn-engine' {
|
|
|
216
217
|
*/
|
|
217
218
|
sourceContext?: any;
|
|
218
219
|
variables?: BpmnEngineVariable;
|
|
220
|
+
settings?: BpmnEngineSetting;
|
|
219
221
|
/**
|
|
220
222
|
* optional Logger factory, defaults to debug logger
|
|
221
223
|
*/
|
|
@@ -498,7 +500,7 @@ declare module 'bpmn-engine' {
|
|
|
498
500
|
readonly output: any;
|
|
499
501
|
readonly variables: BpmnEngineVariable;
|
|
500
502
|
|
|
501
|
-
readonly settings:
|
|
503
|
+
readonly settings: BpmnEngineSetting;
|
|
502
504
|
|
|
503
505
|
readonly Logger: BpmnLogger;
|
|
504
506
|
readonly services: BpmnEngineService;
|