@eventvisor/types 0.21.0 → 0.23.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 +19 -0
- package/package.json +2 -2
- package/src/index.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.23.0](https://github.com/eventvisor/eventvisor/compare/v0.22.0...v0.23.0) (2026-03-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* skip validation for events ([#41](https://github.com/eventvisor/eventvisor/issues/41)) ([fc92c74](https://github.com/eventvisor/eventvisor/commit/fc92c743df5842444e716811e5bd897df71bb09a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.22.0](https://github.com/eventvisor/eventvisor/compare/v0.21.1...v0.22.0) (2026-02-06)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @eventvisor/types
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [0.21.0](https://github.com/eventvisor/eventvisor/compare/v0.18.0...v0.21.0) (2026-02-06)
|
|
7
26
|
|
|
8
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eventvisor/types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.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": "8e89c74cde2a35ab0cf76b00f964cf8e606d9b22"
|
|
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[];
|