arvo-core 2.1.2 → 2.1.3
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/dist/types.d.ts +12 -16
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
@@ -43,30 +43,26 @@ type InferZodSchema<T extends z.ZodTypeAny> = z.infer<T>;
|
|
43
43
|
*/
|
44
44
|
export type ArvoErrorType = z.infer<typeof ArvoErrorSchema>;
|
45
45
|
/**
|
46
|
-
* Infers
|
47
|
-
*
|
48
|
-
*
|
49
|
-
* @remarks
|
50
|
-
* The inferred contract includes:
|
51
|
-
* - `accepts`: Events the contract can receive
|
52
|
-
* - `systemError`: Standard error events
|
53
|
-
* - `emitMap`: Dictionary of all possible emit events
|
54
|
-
* - `emits`: Array type containing all possible emit events
|
55
|
-
* - `metadata`: Contract metadata
|
46
|
+
* Infers that complete ArvoEvent structure for all the events
|
47
|
+
* that can be accepted and emitted by the handler bound to the
|
48
|
+
* provided versioned ArvoContract.
|
56
49
|
*
|
57
50
|
* @see {@link VersionedArvoContract} for the input contract structure
|
58
51
|
* @see {@link InferArvoEvent} for the event inference utility
|
59
52
|
* @see {@link ArvoEvent} for the base event structure
|
60
53
|
*/
|
61
54
|
export type InferVersionedArvoContract<TVersion extends VersionedArvoContract<any, any>> = {
|
62
|
-
|
55
|
+
uri: TVersion['uri'];
|
56
|
+
version: TVersion['version'];
|
57
|
+
description: TVersion['description'];
|
58
|
+
metadata: TVersion['metadata'];
|
63
59
|
systemError: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['systemError']['schema']>, {}, TVersion['systemError']['type']>>;
|
64
|
-
|
65
|
-
|
60
|
+
accepts: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['accepts']['schema']>, {}, TVersion['accepts']['type']>>;
|
61
|
+
emits: {
|
62
|
+
[K in string & keyof TVersion['emits']]: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['emits'][K]>, Record<string, any>, K>>;
|
66
63
|
};
|
67
|
-
|
68
|
-
[K in string & keyof TVersion['emits']]: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['emits'][K]>,
|
64
|
+
emitList: Array<{
|
65
|
+
[K in string & keyof TVersion['emits']]: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['emits'][K]>, Record<string, any>, K>>;
|
69
66
|
}[string & keyof TVersion['emits']]>;
|
70
|
-
metadata: TVersion['metadata'];
|
71
67
|
};
|
72
68
|
export {};
|