arvo-core 2.1.10 → 2.1.12

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,3 +80,7 @@
80
80
 
81
81
  - Refactored code implementation architecture for better maintainability
82
82
 
83
+ ## [2.1.12] - 2024-12-19
84
+
85
+ - Tested Snyk upgrade, added more test coverage and added support for redirectto in orchestrator subject generation in init factory function
86
+
@@ -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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "2.1.10",
3
+ "version": "2.1.12",
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": {
@@ -47,7 +47,7 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@opentelemetry/api": "^1.9.0",
50
- "@opentelemetry/core": "^1.27.0",
50
+ "@opentelemetry/core": "^1.28.0",
51
51
  "uuid": "^10.0.0",
52
52
  "zod": "^3.23.8",
53
53
  "zod-to-json-schema": "^3.23.5"