arvo-core 2.1.14 → 2.1.15

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.
@@ -58,6 +58,7 @@ var helpers_1 = require("../helpers");
58
58
  var createSimpleArvoContract = function (param) {
59
59
  var _a;
60
60
  var mergedMetadata = __assign(__assign({}, ((_a = param.metadata) !== null && _a !== void 0 ? _a : {})), { contractType: 'SimpleArvoContract', rootType: param.type });
61
+ var emitType = "evt.".concat(param.type, ".success");
61
62
  return (0, helpers_1.createArvoContract)({
62
63
  uri: param.uri,
63
64
  type: "com.".concat(param.type),
@@ -71,7 +72,7 @@ var createSimpleArvoContract = function (param) {
71
72
  {
72
73
  accepts: contract.accepts,
73
74
  emits: (_b = {},
74
- _b["evt.".concat(param.type, ".success")] = contract.emits,
75
+ _b[emitType] = contract.emits,
75
76
  _b),
76
77
  },
77
78
  ];
@@ -1,6 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  import ArvoContract from '..';
3
3
  import { ArvoSemanticVersion } from '../../types';
4
+ export type SimpleArvoContractEmitType<T extends string> = `evt.${T}.success`;
4
5
  export type SimpleArvoContract<TUri extends string = string, TType extends string = string, TVersions extends Record<ArvoSemanticVersion, {
5
6
  accepts: z.ZodTypeAny;
6
7
  emits: z.ZodTypeAny;
@@ -11,7 +12,7 @@ export type SimpleArvoContract<TUri extends string = string, TType extends strin
11
12
  [V in ArvoSemanticVersion & keyof TVersions]: {
12
13
  accepts: TVersions[V]['accepts'];
13
14
  emits: {
14
- [K in `evt.${TType}.succes`]: TVersions[V]['emits'];
15
+ [K in SimpleArvoContractEmitType<TType>]: TVersions[V]['emits'];
15
16
  };
16
17
  };
17
18
  }, TMetaData & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "2.1.14",
3
+ "version": "2.1.15",
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": {