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.
Files changed (2) hide show
  1. package/dist/types.d.ts +12 -16
  2. 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 the complete contract structure from a versioned Arvo contract.
47
- * This provides type-safe access to all events, schemas, and metadata defined in a contract.
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
- accepts: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['accepts']['schema']>, {}, TVersion['accepts']['type']>>;
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
- emitMap: {
65
- [K in string & keyof TVersion['emits']]: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['emits'][K]>, {}, K>>;
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
- emits: Array<{
68
- [K in string & keyof TVersion['emits']]: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['emits'][K]>, {}, 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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
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": {