arvo-core 2.1.10 → 2.1.11
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.
@@ -81,7 +81,7 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
81
81
|
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
82
82
|
var validationResult = _this.contract.accepts.schema.safeParse(event.data);
|
83
83
|
if (!validationResult.success) {
|
84
|
-
throw new Error("
|
84
|
+
throw new Error("Init Event data validation failed: ".concat(validationResult.error.message));
|
85
85
|
}
|
86
86
|
var parentSubject = validationResult.data.parentSubject$$;
|
87
87
|
var newSubject = parentSubject
|
@@ -94,6 +94,9 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
94
94
|
orchestator: _this.contract.accepts.type,
|
95
95
|
initiator: event.source,
|
96
96
|
version: _this.contract.version,
|
97
|
+
meta: event.redirectto ? {
|
98
|
+
redirectto: event.redirectto
|
99
|
+
} : undefined
|
97
100
|
});
|
98
101
|
var generatedEvent = (0, helpers_1.createArvoEvent)(__assign(__assign({}, event), { subject: newSubject, traceparent: (_b = (_a = event.traceparent) !== null && _a !== void 0 ? _a : otelHeaders.traceparent) !== null && _b !== void 0 ? _b : undefined, tracestate: (_d = (_c = event.tracestate) !== null && _c !== void 0 ? _c : otelHeaders.tracestate) !== null && _d !== void 0 ? _d : undefined, type: _this.contract.accepts.type, datacontenttype: schema_1.ArvoDataContentType, dataschema: utils_1.EventDataschemaUtil.create(_this.contract), data: validationResult.data }), extensions, { disable: true });
|
99
102
|
span.setAttributes(generatedEvent.otelAttributes);
|
@@ -121,7 +124,7 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
121
124
|
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
122
125
|
var validationResult = (_b = (_a = _this.contract.emits) === null || _a === void 0 ? void 0 : _a[_this.contract.metadata.completeEventType]) === null || _b === void 0 ? void 0 : _b.safeParse(event.data);
|
123
126
|
if (!(validationResult === null || validationResult === void 0 ? void 0 : validationResult.success)) {
|
124
|
-
var msg = (_d = (_c = validationResult === null || validationResult === void 0 ? void 0 : validationResult.error) === null || _c === void 0 ? void 0 : _c.message) !== null && _d !== void 0 ? _d : "No
|
127
|
+
var msg = (_d = (_c = validationResult === null || validationResult === void 0 ? void 0 : validationResult.error) === null || _c === void 0 ? void 0 : _c.message) !== null && _d !== void 0 ? _d : "No schema available for ".concat(_this.contract.metadata.completeEventType);
|
125
128
|
throw new Error("Emit Event data validation failed: ".concat(msg));
|
126
129
|
}
|
127
130
|
var generatedEvent = (0, helpers_1.createArvoEvent)(__assign(__assign({}, event), { type: _this.contract.metadata.completeEventType, traceparent: (_f = (_e = event.traceparent) !== null && _e !== void 0 ? _e : otelHeaders.traceparent) !== null && _f !== void 0 ? _f : undefined, tracestate: (_h = (_g = event.tracestate) !== null && _g !== void 0 ? _g : otelHeaders.tracestate) !== null && _h !== void 0 ? _h : undefined, datacontenttype: schema_1.ArvoDataContentType, dataschema: utils_1.EventDataschemaUtil.create(_this.contract), data: validationResult.data }), extensions, { disable: true });
|