arvo-core 2.1.13 → 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.
package/CHANGELOG.md
CHANGED
@@ -80,7 +80,7 @@
|
|
80
80
|
|
81
81
|
- Refactored code implementation architecture for better maintainability
|
82
82
|
|
83
|
-
## [2.1.
|
83
|
+
## [2.1.14] - 2024-12-19
|
84
84
|
|
85
85
|
- Tested Snyk upgrade, added more test coverage and added support for redirectto in orchestrator subject generation in init factory function
|
86
86
|
|
@@ -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[
|
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
|
15
|
+
[K in SimpleArvoContractEmitType<TType>]: TVersions[V]['emits'];
|
15
16
|
};
|
16
17
|
};
|
17
18
|
}, TMetaData & {
|
@@ -89,9 +89,9 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
89
89
|
orchestator: _this.contract.accepts.type,
|
90
90
|
subject: parentSubject,
|
91
91
|
version: _this.contract.version,
|
92
|
-
meta: {
|
92
|
+
meta: Object.fromEntries(Object.entries({
|
93
93
|
redirectto: (_a = event.redirectto) !== null && _a !== void 0 ? _a : ArvoOrchestrationSubject_1.default.parse(parentSubject).execution.initiator
|
94
|
-
}
|
94
|
+
}).filter(function (item) { return Boolean(item[1]); }))
|
95
95
|
})
|
96
96
|
: ArvoOrchestrationSubject_1.default.new({
|
97
97
|
orchestator: _this.contract.accepts.type,
|