arvo-core 2.2.5 → 2.2.7

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.
Files changed (51) hide show
  1. package/.vscode/settings.json +10 -0
  2. package/CHANGELOG.md +4 -0
  3. package/biome.json +58 -0
  4. package/dist/ArvoContract/SimpleArvoContract/index.d.ts +3 -3
  5. package/dist/ArvoContract/SimpleArvoContract/types.d.ts +3 -3
  6. package/dist/ArvoContract/VersionedArvoContract/index.d.ts +10 -5
  7. package/dist/ArvoContract/VersionedArvoContract/index.js +23 -3
  8. package/dist/ArvoContract/VersionedArvoContract/types.d.ts +3 -3
  9. package/dist/ArvoContract/VersionedArvoContract/utils.d.ts +3 -3
  10. package/dist/ArvoContract/WildCardArvoSemanticVersion.d.ts +1 -1
  11. package/dist/ArvoContract/WildCardArvoSemanticVersion.js +1 -2
  12. package/dist/ArvoContract/helpers.d.ts +2 -2
  13. package/dist/ArvoContract/index.d.ts +3 -3
  14. package/dist/ArvoContract/index.js +2 -2
  15. package/dist/ArvoContract/types.d.ts +3 -3
  16. package/dist/ArvoEvent/helpers.d.ts +1 -1
  17. package/dist/ArvoEvent/helpers.js +1 -1
  18. package/dist/ArvoEvent/index.d.ts +2 -2
  19. package/dist/ArvoEvent/index.js +4 -5
  20. package/dist/ArvoEvent/schema.d.ts +2 -2
  21. package/dist/ArvoEvent/schema.js +2 -8
  22. package/dist/ArvoEvent/types.d.ts +2 -2
  23. package/dist/ArvoEventFactory/Orchestrator.d.ts +3 -3
  24. package/dist/ArvoEventFactory/Orchestrator.js +3 -4
  25. package/dist/ArvoEventFactory/helpers.d.ts +1 -1
  26. package/dist/ArvoEventFactory/helpers.js +3 -1
  27. package/dist/ArvoEventFactory/index.d.ts +3 -3
  28. package/dist/ArvoEventFactory/index.js +2 -6
  29. package/dist/ArvoEventFactory/utils.d.ts +1 -1
  30. package/dist/ArvoEventFactory/utils.js +1 -1
  31. package/dist/ArvoOrchestrationSubject/index.d.ts +17 -2
  32. package/dist/ArvoOrchestrationSubject/index.js +33 -28
  33. package/dist/ArvoOrchestrationSubject/schema.js +1 -1
  34. package/dist/ArvoOrchestrationSubject/type.d.ts +1 -1
  35. package/dist/ArvoOrchestratorContract/index.d.ts +3 -3
  36. package/dist/ArvoOrchestratorContract/index.js +2 -2
  37. package/dist/ArvoOrchestratorContract/typegen.js +1 -0
  38. package/dist/ArvoOrchestratorContract/types.d.ts +5 -5
  39. package/dist/OpenTelemetry/ArvoExecution/index.js +1 -0
  40. package/dist/OpenTelemetry/OpenInference/index.js +1 -0
  41. package/dist/OpenTelemetry/index.d.ts +2 -2
  42. package/dist/OpenTelemetry/index.js +2 -4
  43. package/dist/errors.d.ts +1 -21
  44. package/dist/errors.js +1 -21
  45. package/dist/index.d.ts +22 -22
  46. package/dist/index.js +38 -37
  47. package/dist/schema.js +1 -3
  48. package/dist/types.d.ts +8 -7
  49. package/dist/utils.d.ts +26 -6
  50. package/dist/utils.js +39 -5
  51. package/package.json +7 -12
package/dist/utils.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EventDataschemaUtil = exports.createTimestamp = exports.validateURI = void 0;
3
+ exports.createArvoError = exports.EventDataschemaUtil = exports.createTimestamp = exports.validateURI = void 0;
4
4
  exports.cleanString = cleanString;
5
5
  exports.parseSemanticVersion = parseSemanticVersion;
6
6
  exports.compareSemanticVersions = compareSemanticVersions;
@@ -84,8 +84,8 @@ var createTimestamp = function (offsetHours) {
84
84
  exports.createTimestamp = createTimestamp;
85
85
  function parseSemanticVersion(version) {
86
86
  var _a = version.split('.').map(function (part) {
87
- var num = parseInt(part, 10);
88
- if (isNaN(num)) {
87
+ var num = Number.parseInt(part, 10);
88
+ if (Number.isNaN(num)) {
89
89
  throw new Error("Invalid version number in ".concat(version));
90
90
  }
91
91
  return num;
@@ -117,9 +117,13 @@ function compareSemanticVersions(version1, version2) {
117
117
  * Manages event dataschema strings for versioned contracts.
118
118
  * Handles creation and parsing of dataschema identifiers.
119
119
  */
120
+ // biome-ignore lint/complexity/noStaticOnlyClass: This needs to be a static class to group methods together
120
121
  var EventDataschemaUtil = /** @class */ (function () {
121
122
  function EventDataschemaUtil() {
122
123
  }
124
+ EventDataschemaUtil.build = function (uri, version) {
125
+ return "".concat(uri, "/").concat(version);
126
+ };
123
127
  /**
124
128
  * Creates a dataschema string from a versioned contract.
125
129
  * Format: `{contract.uri}/{contract.version}`
@@ -134,7 +138,7 @@ var EventDataschemaUtil = /** @class */ (function () {
134
138
  * ```
135
139
  */
136
140
  EventDataschemaUtil.create = function (contract) {
137
- return "".concat(contract.uri, "/").concat(contract.version);
141
+ return EventDataschemaUtil.build(contract.uri, contract.version);
138
142
  };
139
143
  /**
140
144
  * Creates dataschema string with wildcard version.
@@ -142,7 +146,7 @@ var EventDataschemaUtil = /** @class */ (function () {
142
146
  * @returns `{contract.uri}/{WildCardArvoSemanticVersion}`
143
147
  */
144
148
  EventDataschemaUtil.createWithWildCardVersion = function (contract) {
145
- return "".concat(contract.uri, "/").concat(WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion);
149
+ return EventDataschemaUtil.build(contract.uri, WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion);
146
150
  };
147
151
  /**
148
152
  * Extracts URI and version from dataschema string.
@@ -176,6 +180,36 @@ var EventDataschemaUtil = /** @class */ (function () {
176
180
  return null;
177
181
  }
178
182
  };
183
+ /**
184
+ * Validates if a given ArvoEvent or dataschema string represents a valid dataschema.
185
+ * A valid dataschema must:
186
+ * - Follow the format {uri}/{version}
187
+ * - Have a valid semantic version component
188
+ * - Contain a non-empty URI
189
+ *
190
+ * @param data - ArvoEvent object or dataschema string to validate
191
+ * @returns boolean - True if dataschema is valid, false otherwise
192
+ */
193
+ EventDataschemaUtil.isValid = function (data) {
194
+ return Boolean(EventDataschemaUtil.parse(data));
195
+ };
179
196
  return EventDataschemaUtil;
180
197
  }());
181
198
  exports.EventDataschemaUtil = EventDataschemaUtil;
199
+ /**
200
+ * Creates a standardized ArvoError payload from an Error object. This utility
201
+ * ensures consistent error reporting across the event system by extracting and
202
+ * structuring key error information.
203
+ *
204
+ * @param error - The source Error object to convert
205
+ * @returns ArvoErrorType - The standardized error payload
206
+ */
207
+ var createArvoError = function (error) {
208
+ var _a;
209
+ return ({
210
+ errorName: error.name,
211
+ errorMessage: error.message,
212
+ errorStack: (_a = error.stack) !== null && _a !== void 0 ? _a : null,
213
+ });
214
+ };
215
+ exports.createArvoError = createArvoError;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "2.2.5",
3
+ "version": "2.2.7",
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": {
@@ -8,21 +8,15 @@
8
8
  "start": "node ./dist/index.js",
9
9
  "dev": "ts-node ./src/index.ts",
10
10
  "test": "jest --passWithNoTests --runInBand --detectOpenHandles --forceExit",
11
- "format": "npx prettier --write .",
11
+ "lint": "biome check --fix",
12
+ "format": "biome format --fix",
12
13
  "doc": "npx typedoc"
13
14
  },
14
- "keywords": [
15
- "arvo",
16
- "event-driven architecture",
17
- "xorca",
18
- "core",
19
- "cloudevent",
20
- "opentelemetry",
21
- "orchestrator"
22
- ],
15
+ "keywords": ["arvo", "event-driven architecture", "xorca", "core", "cloudevent", "opentelemetry", "orchestrator"],
23
16
  "author": "Saad Ahmad <saadkwi12@hotmail.com>",
24
17
  "license": "MIT",
25
18
  "devDependencies": {
19
+ "@biomejs/biome": "^1.9.4",
26
20
  "@jest/globals": "^29.7.0",
27
21
  "@opentelemetry/auto-instrumentations-node": "^0.49.1",
28
22
  "@opentelemetry/exporter-metrics-otlp-proto": "^0.52.1",
@@ -34,10 +28,10 @@
34
28
  "@opentelemetry/semantic-conventions": "^1.25.1",
35
29
  "@types/jest": "^29.5.12",
36
30
  "@types/node": "^22.5.0",
31
+ "@types/pako": "^2.0.3",
37
32
  "@types/uuid": "^10.0.0",
38
33
  "dotenv": "^16.4.5",
39
34
  "jest": "^29.7.0",
40
- "prettier": "^3.3.3",
41
35
  "ts-jest": "^29.2.5",
42
36
  "ts-node": "^10.9.2",
43
37
  "typedoc": "^0.26.6",
@@ -48,6 +42,7 @@
48
42
  "dependencies": {
49
43
  "@opentelemetry/api": "^1.9.0",
50
44
  "@opentelemetry/core": "^1.28.0",
45
+ "pako": "^2.1.0",
51
46
  "uuid": "^10.0.0",
52
47
  "zod": "^3.23.8",
53
48
  "zod-to-json-schema": "^3.23.5"