@eventvisor/types 0.22.0 → 0.24.0
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 +22 -0
- package/package.json +2 -2
- package/src/index.d.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.24.0](https://github.com/eventvisor/eventvisor/compare/v0.23.0...v0.24.0) (2026-03-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* lint test specs ([#42](https://github.com/eventvisor/eventvisor/issues/42)) ([1a0d34f](https://github.com/eventvisor/eventvisor/commit/1a0d34ffde02416d5af9e22a3c30e89def5b7b3b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.23.0](https://github.com/eventvisor/eventvisor/compare/v0.22.0...v0.23.0) (2026-03-14)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* skip validation for events ([#41](https://github.com/eventvisor/eventvisor/issues/41)) ([fc92c74](https://github.com/eventvisor/eventvisor/commit/fc92c743df5842444e716811e5bd897df71bb09a))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [0.22.0](https://github.com/eventvisor/eventvisor/compare/v0.21.1...v0.22.0) (2026-02-06)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @eventvisor/types
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eventvisor/types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.0",
|
|
4
4
|
"description": "Common Typescript types for Eventvisor",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"url": "https://github.com/eventvisor/eventvisor/issues"
|
|
37
37
|
},
|
|
38
38
|
"license": "MIT",
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "096858717cd056853c26ee059702dbb7c5d7c5ec"
|
|
40
40
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -241,7 +241,9 @@ export type Event = JSONSchema & {
|
|
|
241
241
|
tags?: Tag[];
|
|
242
242
|
|
|
243
243
|
// @TODO: meta
|
|
244
|
+
// @TODO: conitnueOnValidationFailure?: boolean;
|
|
244
245
|
|
|
246
|
+
skipValidation?: boolean | { conditions: Condition | Condition[] };
|
|
245
247
|
level?: EventLevel;
|
|
246
248
|
requiredAttributes?: string[];
|
|
247
249
|
conditions?: Condition | Condition[];
|
|
@@ -294,7 +296,7 @@ export interface Effect {
|
|
|
294
296
|
description?: string;
|
|
295
297
|
tags?: Tag[];
|
|
296
298
|
|
|
297
|
-
on
|
|
299
|
+
on: EffectOn;
|
|
298
300
|
state?: Value;
|
|
299
301
|
conditions?: Condition | Condition[];
|
|
300
302
|
steps?: Step[];
|