arvo-core 1.0.18 → 1.0.19

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -36,7 +36,7 @@
36
36
 
37
37
  - Added ArvoEvent spec-ed extension getter for a more ergonomic experience
38
38
 
39
- ## [1.0.18] - 2024-09-07
39
+ ## [1.0.19] - 2024-09-07
40
40
 
41
41
  - Fix a type bug in ArvoEvent creation
42
42
 
@@ -44,7 +44,7 @@ export default class ArvoEventFactory<TUri extends string = string, TType extend
44
44
  */
45
45
  emits<U extends keyof TEmits & string, TExtension extends Record<string, any>>(event: CreateArvoEvent<z.infer<TEmits[U]>, U> & {
46
46
  to: string;
47
- }, extensions?: TExtension, telemetry?: TelemetryContext): import("..").ArvoEvent<z.TypeOf<z.TypeOf<TEmits[U]>>, TExtension, U>;
47
+ }, extensions?: TExtension, telemetry?: TelemetryContext): import("..").ArvoEvent<z.TypeOf<TEmits[U]>, TExtension, U>;
48
48
  /**
49
49
  * Creates a system error ArvoEvent.
50
50
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "This core package contains all the core classes and components of the Arvo Event Driven System",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {