arvo-core 2.1.9 → 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("Accept Event data validation failed: ".concat(validationResult.error.message));
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 contract available for ".concat(_this.contract.metadata.completeEventType);
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 });
@@ -10,6 +10,17 @@ var __assign = (this && this.__assign) || function () {
10
10
  };
11
11
  return __assign.apply(this, arguments);
12
12
  };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
13
24
  var __importDefault = (this && this.__importDefault) || function (mod) {
14
25
  return (mod && mod.__esModule) ? mod : { "default": mod };
15
26
  };
@@ -101,7 +112,8 @@ exports.ArvoOpenTelemetry = ArvoOpenTelemetry;
101
112
  */
102
113
  var logToSpan = function (params, span) {
103
114
  if (span === void 0) { span = api_1.trace.getActiveSpan(); }
104
- var toLog = __assign(__assign({}, params), { 'log.severity': params.level, 'log.message': params.message, 'log.timestamp': performance.now() });
115
+ var level = params.level, message = params.message, restParams = __rest(params, ["level", "message"]);
116
+ var toLog = __assign({ 'log.severity': level, 'log.message': message, 'log.timestamp': performance.now() }, restParams);
105
117
  if (span) {
106
118
  span.addEvent('log', toLog);
107
119
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "2.1.9",
3
+ "version": "2.1.11",
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": {