arvo-core 1.0.8 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +4 -0
- package/dist/ArvoEventFactory/index.d.ts +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -40,9 +40,7 @@ export default class ArvoEventFactory<TUri extends string = string, TType extend
|
|
40
40
|
* @returns The created ArvoEvent as per one of the emits records of the contract.
|
41
41
|
* @throws If the event data fails validation against the contract.
|
42
42
|
*/
|
43
|
-
emits<U extends keyof TEmits & string, TExtension extends Record<string, any>>(event: CreateArvoEvent<z.infer<TEmits[U]>, U>, extensions?: TExtension, telemetry?: TelemetryContext): import("..").ArvoEvent<z.TypeOf<
|
44
|
-
type: U;
|
45
|
-
}>["schema"]>, TExtension, string>;
|
43
|
+
emits<U extends keyof TEmits & string, TExtension extends Record<string, any>>(event: CreateArvoEvent<z.infer<TEmits[U]>, U>, extensions?: TExtension, telemetry?: TelemetryContext): import("..").ArvoEvent<z.TypeOf<z.TypeOf<TEmits[U]>>, TExtension, string>;
|
46
44
|
/**
|
47
45
|
* Creates a system error ArvoEvent.
|
48
46
|
*
|