@eventvisor/types 0.23.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 CHANGED
@@ -3,6 +3,17 @@
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
+
6
17
  # [0.23.0](https://github.com/eventvisor/eventvisor/compare/v0.22.0...v0.23.0) (2026-03-14)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eventvisor/types",
3
- "version": "0.23.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": "8e89c74cde2a35ab0cf76b00f964cf8e606d9b22"
39
+ "gitHead": "096858717cd056853c26ee059702dbb7c5d7c5ec"
40
40
  }
package/src/index.d.ts CHANGED
@@ -296,7 +296,7 @@ export interface Effect {
296
296
  description?: string;
297
297
  tags?: Tag[];
298
298
 
299
- on?: EffectOn;
299
+ on: EffectOn;
300
300
  state?: Value;
301
301
  conditions?: Condition | Condition[];
302
302
  steps?: Step[];