From ac5b2618d5841e3e76892a1ab94b3120858b73d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l=20Edman?= Date: Mon, 10 Jun 2024 07:33:01 +0200 Subject: [PATCH] patch smqp@9.0.1 --- CHANGELOG.md | 3 ++- package.json | 4 ++-- types/types.d.ts | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67ec176..85774ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ # 15.0.0 -- Use Set and Map where feasible to increase performance +- use Set and Map where feasible to increase performance +- bump [smqp@9](https://github.com/paed01/smqp/blob/default/CHANGELOG.md) # 14.1.0 diff --git a/package.json b/package.json index 5ddd582..dae356d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bpmn-elements", - "version": "14.1.0", + "version": "15.0.0", "description": "Executable workflow elements based on BPMN 2.0", "type": "module", "main": "./dist/index.js", @@ -89,6 +89,6 @@ }, "dependencies": { "@0dep/piso": "^0.1.3", - "smqp": "^9.0.0" + "smqp": "^9.0.1" } } diff --git a/types/types.d.ts b/types/types.d.ts index d221583..a364cb7 100644 --- a/types/types.d.ts +++ b/types/types.d.ts @@ -220,7 +220,7 @@ declare interface DefinitionExecution { getProcessByExecutionId(processExecutionId: string): Process; getRunningProcesses(): Process[]; getExecutableProcesses(): Process[]; - getPostponed(filterFn: filterPostponed): Api[]; + getPostponed(filterFn?: filterPostponed): Api[]; } declare interface ActivityExecution {