arvo-core 2.1.3 → 2.1.4

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.
@@ -1,6 +1,5 @@
1
1
  import ArvoEvent from '.';
2
2
  import { ArvoEventData, CloudEventExtension, CreateArvoEvent } from './types';
3
- import { ExecutionOpenTelemetryConfiguration } from '../OpenTelemetry/types';
4
3
  /**
5
4
  * Creates a strongly-typed ArvoEvent with configurable telemetry options.
6
5
  *
@@ -8,7 +7,6 @@ import { ExecutionOpenTelemetryConfiguration } from '../OpenTelemetry/types';
8
7
  * @param [extensions] - Optional cloud event extensions
9
8
  * @param [opentelemetry] - OpenTelemetry configuration with options:
10
9
  * - disable - Completely disables telemetry if true
11
- * - tracer - Custom OpenTelemetry tracer instance
12
10
  *
13
11
  * @throw {Error} In case any validation in {@link ArvoEvent} fails.
14
12
  *
@@ -35,20 +33,8 @@ import { ExecutionOpenTelemetryConfiguration } from '../OpenTelemetry/types';
35
33
  * undefined,
36
34
  * { disable: true }
37
35
  * );
38
- *
39
- * // With custom tracer
40
- * const event = createArvoEvent(
41
- * {
42
- * type: 'order.created',
43
- * source: '/orders',
44
- * subject: 'order-123',
45
- * data: orderData
46
- * },
47
- * undefined,
48
- * { tracer: customTracer }
49
- * );
50
36
  * ```
51
37
  */
52
- export declare const createArvoEvent: <TData extends ArvoEventData, TExtension extends CloudEventExtension, TType extends string>(event: CreateArvoEvent<TData, TType>, extensions?: TExtension, opentelemetry?: Partial<ExecutionOpenTelemetryConfiguration & {
53
- disable: boolean;
54
- }>) => ArvoEvent<TData, TExtension, TType>;
38
+ export declare const createArvoEvent: <TData extends ArvoEventData, TExtension extends CloudEventExtension, TType extends string>(event: CreateArvoEvent<TData, TType>, extensions?: TExtension, opentelemetry?: {
39
+ disable?: boolean;
40
+ }) => ArvoEvent<TData, TExtension, TType>;
@@ -4,7 +4,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.createArvoEvent = void 0;
7
- var api_1 = require("@opentelemetry/api");
8
7
  var _1 = __importDefault(require("."));
9
8
  var OpenTelemetry_1 = require("../OpenTelemetry");
10
9
  var utils_1 = require("../utils");
@@ -46,7 +45,6 @@ var generator = function (event, extensions, otelHeaders) {
46
45
  * @param [extensions] - Optional cloud event extensions
47
46
  * @param [opentelemetry] - OpenTelemetry configuration with options:
48
47
  * - disable - Completely disables telemetry if true
49
- * - tracer - Custom OpenTelemetry tracer instance
50
48
  *
51
49
  * @throw {Error} In case any validation in {@link ArvoEvent} fails.
52
50
  *
@@ -73,46 +71,22 @@ var generator = function (event, extensions, otelHeaders) {
73
71
  * undefined,
74
72
  * { disable: true }
75
73
  * );
76
- *
77
- * // With custom tracer
78
- * const event = createArvoEvent(
79
- * {
80
- * type: 'order.created',
81
- * source: '/orders',
82
- * subject: 'order-123',
83
- * data: orderData
84
- * },
85
- * undefined,
86
- * { tracer: customTracer }
87
- * );
88
74
  * ```
89
75
  */
90
76
  var createArvoEvent = function (event, extensions, opentelemetry) {
91
- var _a;
92
77
  if (opentelemetry === null || opentelemetry === void 0 ? void 0 : opentelemetry.disable) {
93
78
  return generator(event, extensions, {
94
79
  traceparent: null,
95
80
  tracestate: null,
96
81
  });
97
82
  }
98
- var tracer = (_a = opentelemetry === null || opentelemetry === void 0 ? void 0 : opentelemetry.tracer) !== null && _a !== void 0 ? _a : (0, OpenTelemetry_1.fetchOpenTelemetryTracer)();
99
- var span = tracer.startSpan("createArvoEvent<".concat(event.type, ">"), {});
100
- return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
101
- span.setStatus({ code: api_1.SpanStatusCode.OK });
102
- try {
103
- return generator(event, extensions, (0, OpenTelemetry_1.currentOpenTelemetryHeaders)());
104
- }
105
- catch (error) {
106
- (0, OpenTelemetry_1.exceptionToSpan)(error);
107
- span.setStatus({
108
- code: api_1.SpanStatusCode.ERROR,
109
- message: error.message,
110
- });
111
- throw error;
112
- }
113
- finally {
114
- span.end();
115
- }
83
+ return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
84
+ name: "createArvoEvent<".concat(event.type, ">"),
85
+ fn: function (span) {
86
+ var generatedEvent = generator(event, extensions, (0, OpenTelemetry_1.currentOpenTelemetryHeaders)());
87
+ span.setAttributes(generatedEvent.otelAttributes);
88
+ return generatedEvent;
89
+ },
116
90
  });
117
91
  };
118
92
  exports.createArvoEvent = createArvoEvent;
@@ -1,7 +1,6 @@
1
1
  import ArvoEventFactory from '.';
2
2
  import { z } from 'zod';
3
3
  import { CreateArvoEvent } from '../ArvoEvent/types';
4
- import { ExecutionOpenTelemetryConfiguration } from '../OpenTelemetry/types';
5
4
  import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
6
5
  /**
7
6
  * Factory class for creating and validating orchestrator-specific events with managed subject hierarchies.
@@ -24,22 +23,20 @@ export declare class ArvoOrchestratorEventFactory<TContract extends VersionedArv
24
23
  *
25
24
  * @param event - Event configuration without type/schema/subject
26
25
  * @param [extensions] - Optional additional properties
27
- * @param [opentelemetry] - Optional telemetry configuration
28
26
  * @returns Validated orchestration event with proper subject hierarchy
29
27
  *
30
28
  * @throws Error if event validation fails
31
29
  */
32
- init<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['accepts']['schema']>, TContract['accepts']['type']>, 'type' | 'datacontenttype' | 'dataschema' | 'subject'>, extensions?: TExtension, opentelemetry?: ExecutionOpenTelemetryConfiguration): import("..").ArvoEvent<z.TypeOf<TContract["accepts"]["schema"]>, TExtension, TContract["accepts"]["type"]>;
30
+ init<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['accepts']['schema']>, TContract['accepts']['type']>, 'type' | 'datacontenttype' | 'dataschema' | 'subject'>, extensions?: TExtension): import("..").ArvoEvent<z.TypeOf<TContract["accepts"]["schema"]>, TExtension, TContract["accepts"]["type"]>;
33
31
  /**
34
32
  * Creates a completion event for the orchestration flow.
35
33
  * Uses the contract's configured complete event type from metadata.
36
34
  *
37
35
  * @param event - Completion event configuration
38
36
  * @param [extensions] - Optional additional properties
39
- * @param [opentelemetry] - Optional telemetry configuration
40
37
  * @returns Validated completion event
41
38
  *
42
39
  * @throws Error if event validation fails or complete event type not configured
43
40
  */
44
- complete<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['emits'][TContract['metadata']['completeEventType']]>, TContract['metadata']['completeEventType']>, 'datacontenttype' | 'dataschema' | 'type'>, extensions?: TExtension, opentelemetry?: ExecutionOpenTelemetryConfiguration): import("..").ArvoEvent<z.TypeOf<TContract["emits"][TContract["metadata"]["completeEventType"]]>, TExtension, TContract["metadata"]["completeEventType"]>;
41
+ complete<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['emits'][TContract['metadata']['completeEventType']]>, TContract['metadata']['completeEventType']>, 'datacontenttype' | 'dataschema' | 'type'>, extensions?: TExtension): import("..").ArvoEvent<z.TypeOf<TContract["emits"][TContract["metadata"]["completeEventType"]]>, TExtension, TContract["metadata"]["completeEventType"]>;
45
42
  }
@@ -34,7 +34,6 @@ var _1 = __importDefault(require("."));
34
34
  var helpers_1 = require("../ArvoEvent/helpers");
35
35
  var schema_1 = require("../ArvoEvent/schema");
36
36
  var OpenTelemetry_1 = require("../OpenTelemetry");
37
- var api_1 = require("@opentelemetry/api");
38
37
  var utils_1 = require("../utils");
39
38
  var ArvoOrchestrationSubject_1 = __importDefault(require("../ArvoOrchestrationSubject"));
40
39
  /**
@@ -67,22 +66,17 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
67
66
  *
68
67
  * @param event - Event configuration without type/schema/subject
69
68
  * @param [extensions] - Optional additional properties
70
- * @param [opentelemetry] - Optional telemetry configuration
71
69
  * @returns Validated orchestration event with proper subject hierarchy
72
70
  *
73
71
  * @throws Error if event validation fails
74
72
  */
75
- ArvoOrchestratorEventFactory.prototype.init = function (event, extensions, opentelemetry) {
73
+ ArvoOrchestratorEventFactory.prototype.init = function (event, extensions) {
76
74
  var _this = this;
77
- opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
78
- tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
79
- };
80
- var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, "/").concat(this.contract.version, ">.init"));
81
- return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
82
- var _a, _b, _c, _d;
83
- span.setStatus({ code: api_1.SpanStatusCode.OK });
84
- var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
85
- try {
75
+ return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
76
+ name: "".concat(this._name, "<").concat(utils_1.EventDataschemaUtil.create(this.contract), ">.init"),
77
+ fn: function (span) {
78
+ var _a, _b, _c, _d;
79
+ var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
86
80
  var validationResult = _this.contract.accepts.schema.safeParse(event.data);
87
81
  if (!validationResult.success) {
88
82
  throw new Error("Accept Event data validation failed: ".concat(validationResult.error.message));
@@ -99,19 +93,10 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
99
93
  initiator: event.source,
100
94
  version: _this.contract.version,
101
95
  });
102
- return (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 });
103
- }
104
- catch (error) {
105
- (0, OpenTelemetry_1.exceptionToSpan)(error);
106
- span.setStatus({
107
- code: api_1.SpanStatusCode.ERROR,
108
- message: error.message,
109
- });
110
- throw error;
111
- }
112
- finally {
113
- span.end();
114
- }
96
+ 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 });
97
+ span.setAttributes(generatedEvent.otelAttributes);
98
+ return generatedEvent;
99
+ },
115
100
  });
116
101
  };
117
102
  /**
@@ -120,40 +105,26 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
120
105
  *
121
106
  * @param event - Completion event configuration
122
107
  * @param [extensions] - Optional additional properties
123
- * @param [opentelemetry] - Optional telemetry configuration
124
108
  * @returns Validated completion event
125
109
  *
126
110
  * @throws Error if event validation fails or complete event type not configured
127
111
  */
128
- ArvoOrchestratorEventFactory.prototype.complete = function (event, extensions, opentelemetry) {
112
+ ArvoOrchestratorEventFactory.prototype.complete = function (event, extensions) {
129
113
  var _this = this;
130
- opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
131
- tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
132
- };
133
- var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, "/").concat(this.contract.version, ">.complete"));
134
- return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
135
- var _a, _b, _c, _d, _e, _f, _g, _h;
136
- span.setStatus({ code: api_1.SpanStatusCode.OK });
137
- var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
138
- try {
114
+ return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
115
+ name: "".concat(this._name, "<").concat(utils_1.EventDataschemaUtil.create(this.contract), ">.complete"),
116
+ fn: function (span) {
117
+ var _a, _b, _c, _d, _e, _f, _g, _h;
118
+ var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
139
119
  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);
140
120
  if (!(validationResult === null || validationResult === void 0 ? void 0 : validationResult.success)) {
141
121
  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);
142
122
  throw new Error("Emit Event data validation failed: ".concat(msg));
143
123
  }
144
- return (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 });
145
- }
146
- catch (error) {
147
- (0, OpenTelemetry_1.exceptionToSpan)(error);
148
- span.setStatus({
149
- code: api_1.SpanStatusCode.ERROR,
150
- message: error.message,
151
- });
152
- throw error;
153
- }
154
- finally {
155
- span.end();
156
- }
124
+ 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 });
125
+ span.setAttributes(generatedEvent.otelAttributes);
126
+ return generatedEvent;
127
+ },
157
128
  });
158
129
  };
159
130
  return ArvoOrchestratorEventFactory;
@@ -1,6 +1,5 @@
1
1
  import { z } from 'zod';
2
2
  import { CreateArvoEvent } from '../ArvoEvent/types';
3
- import { ExecutionOpenTelemetryConfiguration } from '../OpenTelemetry/types';
4
3
  import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
5
4
  /**
6
5
  * Factory class for creating and validating events based on a versioned Arvo contract.
@@ -32,7 +31,6 @@ export default class ArvoEventFactory<TContract extends VersionedArvoContract<an
32
31
  *
33
32
  * @param event - The event configuration object
34
33
  * @param [extensions] - Optional additional properties for the event
35
- * @param [opentelemetry] - Optional OpenTelemetry configuration
36
34
  *
37
35
  * @returns A validated ArvoEvent matching the contract's accept specification
38
36
  *
@@ -46,13 +44,12 @@ export default class ArvoEventFactory<TContract extends VersionedArvoContract<an
46
44
  * });
47
45
  * ```
48
46
  */
49
- accepts<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['accepts']['schema']>, TContract['accepts']['type']>, 'type' | 'datacontenttype' | 'dataschema'>, extensions?: TExtension, opentelemetry?: ExecutionOpenTelemetryConfiguration): import("..").ArvoEvent<z.TypeOf<TContract["accepts"]["schema"]>, TExtension, TContract["accepts"]["type"]>;
47
+ accepts<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['accepts']['schema']>, TContract['accepts']['type']>, 'type' | 'datacontenttype' | 'dataschema'>, extensions?: TExtension): import("..").ArvoEvent<z.TypeOf<TContract["accepts"]["schema"]>, TExtension, TContract["accepts"]["type"]>;
50
48
  /**
51
49
  * Creates and validates an event matching one of the contract's emit specifications.
52
50
  *
53
51
  * @param event - The event configuration object
54
52
  * @param [extensions] - Optional additional properties for the event
55
- * @param [opentelemetry] - Optional OpenTelemetry configuration
56
53
  *
57
54
  * @returns A validated ArvoEvent matching the specified emit type
58
55
  *
@@ -67,14 +64,13 @@ export default class ArvoEventFactory<TContract extends VersionedArvoContract<an
67
64
  * });
68
65
  * ```
69
66
  */
70
- emits<U extends string & keyof TContract['emits'], TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['emits'][U]>, U>, 'datacontenttype' | 'dataschema'>, extensions?: TExtension, opentelemetry?: ExecutionOpenTelemetryConfiguration): import("..").ArvoEvent<z.TypeOf<TContract["emits"][U]>, TExtension, U>;
67
+ emits<U extends string & keyof TContract['emits'], TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['emits'][U]>, U>, 'datacontenttype' | 'dataschema'>, extensions?: TExtension): import("..").ArvoEvent<z.TypeOf<TContract["emits"][U]>, TExtension, U>;
71
68
  /**
72
69
  * Creates a system error event for error reporting and handling.
73
70
  *
74
71
  * @param event - The error event configuration
75
72
  * @param event.error - The Error instance to convert to an event
76
73
  * @param [extensions] - Optional additional properties for the event
77
- * @param [opentelemetry] - Optional OpenTelemetry configuration
78
74
  *
79
75
  * @returns A system error ArvoEvent
80
76
  *
@@ -90,7 +86,7 @@ export default class ArvoEventFactory<TContract extends VersionedArvoContract<an
90
86
  */
91
87
  systemError<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<any, any>, 'data' | 'type' | 'datacontenttype' | 'dataschema'> & {
92
88
  error: Error;
93
- }, extensions?: TExtension, opentelemetry?: ExecutionOpenTelemetryConfiguration): import("..").ArvoEvent<{
89
+ }, extensions?: TExtension): import("..").ArvoEvent<{
94
90
  errorName: string;
95
91
  errorMessage: string;
96
92
  errorStack: string | null;
@@ -25,7 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var helpers_1 = require("../ArvoEvent/helpers");
26
26
  var schema_1 = require("../ArvoEvent/schema");
27
27
  var OpenTelemetry_1 = require("../OpenTelemetry");
28
- var api_1 = require("@opentelemetry/api");
29
28
  var utils_1 = require("../utils");
30
29
  /**
31
30
  * Factory class for creating and validating events based on a versioned Arvo contract.
@@ -58,7 +57,6 @@ var ArvoEventFactory = /** @class */ (function () {
58
57
  *
59
58
  * @param event - The event configuration object
60
59
  * @param [extensions] - Optional additional properties for the event
61
- * @param [opentelemetry] - Optional OpenTelemetry configuration
62
60
  *
63
61
  * @returns A validated ArvoEvent matching the contract's accept specification
64
62
  *
@@ -72,34 +70,21 @@ var ArvoEventFactory = /** @class */ (function () {
72
70
  * });
73
71
  * ```
74
72
  */
75
- ArvoEventFactory.prototype.accepts = function (event, extensions, opentelemetry) {
73
+ ArvoEventFactory.prototype.accepts = function (event, extensions) {
76
74
  var _this = this;
77
- opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
78
- tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
79
- };
80
- var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, "/").concat(this.contract.version, ">.accepts"));
81
- return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
82
- var _a, _b, _c, _d;
83
- span.setStatus({ code: api_1.SpanStatusCode.OK });
84
- var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
85
- try {
75
+ return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
76
+ name: "".concat(this._name, "<").concat(utils_1.EventDataschemaUtil.create(this.contract), ">.accepts"),
77
+ fn: function (span) {
78
+ var _a, _b, _c, _d;
79
+ var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
86
80
  var validationResult = _this.contract.accepts.schema.safeParse(event.data);
87
81
  if (!validationResult.success) {
88
82
  throw new Error("Accept Event data validation failed: ".concat(validationResult.error.message));
89
83
  }
90
- return (0, helpers_1.createArvoEvent)(__assign(__assign({}, event), { 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 });
91
- }
92
- catch (error) {
93
- (0, OpenTelemetry_1.exceptionToSpan)(error);
94
- span.setStatus({
95
- code: api_1.SpanStatusCode.ERROR,
96
- message: error.message,
97
- });
98
- throw error;
99
- }
100
- finally {
101
- span.end();
102
- }
84
+ var generatedEvent = (0, helpers_1.createArvoEvent)(__assign(__assign({}, event), { 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 });
85
+ span.setAttributes(generatedEvent.otelAttributes);
86
+ return generatedEvent;
87
+ },
103
88
  });
104
89
  };
105
90
  /**
@@ -107,7 +92,6 @@ var ArvoEventFactory = /** @class */ (function () {
107
92
  *
108
93
  * @param event - The event configuration object
109
94
  * @param [extensions] - Optional additional properties for the event
110
- * @param [opentelemetry] - Optional OpenTelemetry configuration
111
95
  *
112
96
  * @returns A validated ArvoEvent matching the specified emit type
113
97
  *
@@ -122,35 +106,22 @@ var ArvoEventFactory = /** @class */ (function () {
122
106
  * });
123
107
  * ```
124
108
  */
125
- ArvoEventFactory.prototype.emits = function (event, extensions, opentelemetry) {
109
+ ArvoEventFactory.prototype.emits = function (event, extensions) {
126
110
  var _this = this;
127
- opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
128
- tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
129
- };
130
- var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, "/").concat(this.contract.version, ">.emits<").concat(event.type, ">"));
131
- return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
132
- var _a, _b, _c, _d, _e, _f, _g, _h;
133
- span.setStatus({ code: api_1.SpanStatusCode.OK });
134
- var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
135
- try {
111
+ return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
112
+ name: "".concat(this._name, "<").concat(utils_1.EventDataschemaUtil.create(this.contract), ">.emits<").concat(event.type, ">"),
113
+ fn: function (span) {
114
+ var _a, _b, _c, _d, _e, _f, _g, _h;
115
+ var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
136
116
  var validationResult = (_b = (_a = _this.contract.emits) === null || _a === void 0 ? void 0 : _a[event.type]) === null || _b === void 0 ? void 0 : _b.safeParse(event.data);
137
117
  if (!(validationResult === null || validationResult === void 0 ? void 0 : validationResult.success)) {
138
118
  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(event.type);
139
119
  throw new Error("Emit Event data validation failed: ".concat(msg));
140
120
  }
141
- return (0, helpers_1.createArvoEvent)(__assign(__assign({}, event), { 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 });
142
- }
143
- catch (error) {
144
- (0, OpenTelemetry_1.exceptionToSpan)(error);
145
- span.setStatus({
146
- code: api_1.SpanStatusCode.ERROR,
147
- message: error.message,
148
- });
149
- throw error;
150
- }
151
- finally {
152
- span.end();
153
- }
121
+ var generatedEvent = (0, helpers_1.createArvoEvent)(__assign(__assign({}, event), { 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 });
122
+ span.setAttributes(generatedEvent.otelAttributes);
123
+ return generatedEvent;
124
+ },
154
125
  });
155
126
  };
156
127
  /**
@@ -159,7 +130,6 @@ var ArvoEventFactory = /** @class */ (function () {
159
130
  * @param event - The error event configuration
160
131
  * @param event.error - The Error instance to convert to an event
161
132
  * @param [extensions] - Optional additional properties for the event
162
- * @param [opentelemetry] - Optional OpenTelemetry configuration
163
133
  *
164
134
  * @returns A system error ArvoEvent
165
135
  *
@@ -173,35 +143,22 @@ var ArvoEventFactory = /** @class */ (function () {
173
143
  * });
174
144
  * ```
175
145
  */
176
- ArvoEventFactory.prototype.systemError = function (event, extensions, opentelemetry) {
146
+ ArvoEventFactory.prototype.systemError = function (event, extensions) {
177
147
  var _this = this;
178
- opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
179
- tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
180
- };
181
- var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, ">.systemError"));
182
- return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
183
- var _a, _b, _c, _d, _e;
184
- span.setStatus({ code: api_1.SpanStatusCode.OK });
185
- var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
186
- try {
148
+ return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
149
+ name: "".concat(this._name, "<").concat(utils_1.EventDataschemaUtil.createWithWildCardVersion(this.contract), ">.systemError"),
150
+ fn: function (span) {
151
+ var _a, _b, _c, _d, _e;
152
+ var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
187
153
  var error = event.error, _event = __rest(event, ["error"]);
188
- return (0, helpers_1.createArvoEvent)(__assign(__assign({}, _event), { 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.systemError.type, data: {
154
+ var generatedEvent = (0, helpers_1.createArvoEvent)(__assign(__assign({}, _event), { 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.systemError.type, data: {
189
155
  errorName: error.name,
190
156
  errorMessage: error.message,
191
157
  errorStack: (_e = error.stack) !== null && _e !== void 0 ? _e : null,
192
158
  }, datacontenttype: schema_1.ArvoDataContentType, dataschema: utils_1.EventDataschemaUtil.createWithWildCardVersion(_this.contract) }), extensions, { disable: true });
193
- }
194
- catch (error) {
195
- (0, OpenTelemetry_1.exceptionToSpan)(error);
196
- span.setStatus({
197
- code: api_1.SpanStatusCode.ERROR,
198
- message: error.message,
199
- });
200
- throw error;
201
- }
202
- finally {
203
- span.end();
204
- }
159
+ span.setAttributes(generatedEvent.otelAttributes);
160
+ return generatedEvent;
161
+ },
205
162
  });
206
163
  };
207
164
  return ArvoEventFactory;
@@ -1,4 +1,5 @@
1
1
  export declare enum ArvoExecutionSpanKind {
2
2
  EVENT_HANDLER = "EVENT_HANDLER",
3
- COMMANDER = "COMMANDER"
3
+ ORCHESTRATOR = "ORCHESTRATOR",
4
+ INTERNAL = "INTERNAL"
4
5
  }
@@ -4,5 +4,6 @@ exports.ArvoExecutionSpanKind = void 0;
4
4
  var ArvoExecutionSpanKind;
5
5
  (function (ArvoExecutionSpanKind) {
6
6
  ArvoExecutionSpanKind["EVENT_HANDLER"] = "EVENT_HANDLER";
7
- ArvoExecutionSpanKind["COMMANDER"] = "COMMANDER";
7
+ ArvoExecutionSpanKind["ORCHESTRATOR"] = "ORCHESTRATOR";
8
+ ArvoExecutionSpanKind["INTERNAL"] = "INTERNAL";
8
9
  })(ArvoExecutionSpanKind || (exports.ArvoExecutionSpanKind = ArvoExecutionSpanKind = {}));
@@ -1,9 +1,49 @@
1
- import { Span } from '@opentelemetry/api';
1
+ import { Span, Tracer, Context, SpanOptions } from '@opentelemetry/api';
2
2
  import { TelemetryLogLevel, OpenTelemetryHeaders } from './types';
3
3
  /**
4
- * A tracer instance for the ArvoCore package.
4
+ * Singleton class for managing OpenTelemetry instrumentation across libraries
5
5
  */
6
- export declare const fetchOpenTelemetryTracer: () => import("@opentelemetry/api").Tracer;
6
+ export declare class ArvoOpenTelemetry {
7
+ /** OpenTelemetry tracer instance for creating spans */
8
+ readonly tracer: Tracer;
9
+ private static instance;
10
+ private constructor();
11
+ /**
12
+ * Gets the instance of ArvoOpenTelemetry
13
+ * @returns {ArvoOpenTelemetry} The singleton instance
14
+ */
15
+ static getInstance(): ArvoOpenTelemetry;
16
+ /**
17
+ * Creates and manages an active span for a given operation. This function provides two modes of operation:
18
+ * 1. Automatic span management (default): Handles span lifecycle, status, and error recording
19
+ * 2. Manual span management: Gives full control to the user when disableSpanManagement is true
20
+ *
21
+ * @template F - Function type that accepts a Span parameter and returns a value
22
+ * @param {Object} param - Configuration object for the span
23
+ * @param {string} param.name - Name of the span to be created
24
+ * @param {F} param.fn - Function to execute within the span context. Receives the span as a parameter
25
+ * @param {SpanOptions} [param.spanOptions] - Optional configuration for the span creation
26
+ * @param {boolean} [param.disableSpanManagement] - When true, disables automatic span lifecycle management
27
+ * @param {Object} [param.context] - Optional context configuration for span inheritance
28
+ * @param {string} param.context.inheritFrom - Specifies the type of context inheritance ('TRACE_HEADERS' | 'CONTEXT')
29
+ * @param {OpenTelemetryHeaders} param.context.traceHeaders - Required when inheritFrom is 'TRACE_HEADERS'
30
+ * @param {Context} param.context.context - Required when inheritFrom is 'CONTEXT'
31
+ * @returns {ReturnType<F>} The return value of the executed function
32
+ */
33
+ startActiveSpan<F extends (span: Span) => unknown>(param: {
34
+ name: string;
35
+ fn: F;
36
+ spanOptions?: SpanOptions;
37
+ context?: {
38
+ inheritFrom: 'TRACE_HEADERS';
39
+ traceHeaders: OpenTelemetryHeaders;
40
+ } | {
41
+ inheritFrom: 'CONTEXT';
42
+ context: Context;
43
+ };
44
+ disableSpanManagement?: boolean;
45
+ }): ReturnType<F>;
46
+ }
7
47
  /**
8
48
  * Logs a message to a span with additional parameters.
9
49
  * @param params - The parameters for the log message.
@@ -11,11 +51,8 @@ export declare const fetchOpenTelemetryTracer: () => import("@opentelemetry/api"
11
51
  * If no active span is available, the message is logged to the console.
12
52
  */
13
53
  export declare const logToSpan: (params: {
14
- /** The log level */
15
54
  level: TelemetryLogLevel;
16
- /** The log message */
17
55
  message: string;
18
- /** Other log parameters */
19
56
  [key: string]: string;
20
57
  }, span?: Span | undefined) => void;
21
58
  /**
@@ -34,3 +71,4 @@ export declare const OTelNull = "N/A";
34
71
  * @returns An object containing the traceparent and tracestate headers.
35
72
  */
36
73
  export declare function currentOpenTelemetryHeaders(): OpenTelemetryHeaders;
74
+ export declare const makeOpenTelemetryContextContext: (traceparent: string, tracestate: string | null) => Context;
@@ -10,18 +10,89 @@ var __assign = (this && this.__assign) || function () {
10
10
  };
11
11
  return __assign.apply(this, arguments);
12
12
  };
13
+ var __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
13
16
  Object.defineProperty(exports, "__esModule", { value: true });
14
- exports.OTelNull = exports.exceptionToSpan = exports.logToSpan = exports.fetchOpenTelemetryTracer = void 0;
17
+ exports.makeOpenTelemetryContextContext = exports.OTelNull = exports.exceptionToSpan = exports.logToSpan = exports.ArvoOpenTelemetry = void 0;
15
18
  exports.currentOpenTelemetryHeaders = currentOpenTelemetryHeaders;
16
19
  var api_1 = require("@opentelemetry/api");
17
20
  var core_1 = require("@opentelemetry/core");
21
+ var ArvoExecution_1 = __importDefault(require("./ArvoExecution"));
22
+ var types_1 = require("./ArvoExecution/types");
18
23
  /**
19
- * A tracer instance for the ArvoCore package.
24
+ * Singleton class for managing OpenTelemetry instrumentation across libraries
20
25
  */
21
- var fetchOpenTelemetryTracer = function () {
22
- return api_1.trace.getTracer('arvo-instrumentation');
23
- };
24
- exports.fetchOpenTelemetryTracer = fetchOpenTelemetryTracer;
26
+ var ArvoOpenTelemetry = /** @class */ (function () {
27
+ function ArvoOpenTelemetry() {
28
+ this.tracer = api_1.trace.getTracer('arvo-instrumentation', '1.0.0');
29
+ }
30
+ /**
31
+ * Gets the instance of ArvoOpenTelemetry
32
+ * @returns {ArvoOpenTelemetry} The singleton instance
33
+ */
34
+ ArvoOpenTelemetry.getInstance = function () {
35
+ if (ArvoOpenTelemetry.instance === null) {
36
+ ArvoOpenTelemetry.instance = new ArvoOpenTelemetry();
37
+ }
38
+ return ArvoOpenTelemetry.instance;
39
+ };
40
+ /**
41
+ * Creates and manages an active span for a given operation. This function provides two modes of operation:
42
+ * 1. Automatic span management (default): Handles span lifecycle, status, and error recording
43
+ * 2. Manual span management: Gives full control to the user when disableSpanManagement is true
44
+ *
45
+ * @template F - Function type that accepts a Span parameter and returns a value
46
+ * @param {Object} param - Configuration object for the span
47
+ * @param {string} param.name - Name of the span to be created
48
+ * @param {F} param.fn - Function to execute within the span context. Receives the span as a parameter
49
+ * @param {SpanOptions} [param.spanOptions] - Optional configuration for the span creation
50
+ * @param {boolean} [param.disableSpanManagement] - When true, disables automatic span lifecycle management
51
+ * @param {Object} [param.context] - Optional context configuration for span inheritance
52
+ * @param {string} param.context.inheritFrom - Specifies the type of context inheritance ('TRACE_HEADERS' | 'CONTEXT')
53
+ * @param {OpenTelemetryHeaders} param.context.traceHeaders - Required when inheritFrom is 'TRACE_HEADERS'
54
+ * @param {Context} param.context.context - Required when inheritFrom is 'CONTEXT'
55
+ * @returns {ReturnType<F>} The return value of the executed function
56
+ */
57
+ ArvoOpenTelemetry.prototype.startActiveSpan = function (param) {
58
+ var _a;
59
+ var _b, _c, _d;
60
+ var parentContext;
61
+ if (param.context) {
62
+ if (param.context.inheritFrom === 'TRACE_HEADERS' &&
63
+ param.context.traceHeaders.traceparent) {
64
+ parentContext = (0, exports.makeOpenTelemetryContextContext)(param.context.traceHeaders.traceparent, param.context.traceHeaders.tracestate);
65
+ }
66
+ else if (param.context.inheritFrom === 'CONTEXT') {
67
+ parentContext = param.context.context;
68
+ }
69
+ }
70
+ var span = this.tracer.startSpan(param.name, __assign(__assign({}, ((_b = param.spanOptions) !== null && _b !== void 0 ? _b : {})), { attributes: __assign((_a = {}, _a[ArvoExecution_1.default.ATTR_SPAN_KIND] = types_1.ArvoExecutionSpanKind.INTERNAL, _a), ((_d = (_c = param.spanOptions) === null || _c === void 0 ? void 0 : _c.attributes) !== null && _d !== void 0 ? _d : {})) }), parentContext);
71
+ return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
72
+ if (param.disableSpanManagement) {
73
+ return param.fn(span);
74
+ }
75
+ span.setStatus({ code: api_1.SpanStatusCode.OK });
76
+ try {
77
+ return param.fn(span);
78
+ }
79
+ catch (e) {
80
+ (0, exports.exceptionToSpan)(e);
81
+ span.setStatus({
82
+ code: api_1.SpanStatusCode.ERROR,
83
+ message: e.message,
84
+ });
85
+ throw e;
86
+ }
87
+ finally {
88
+ span.end();
89
+ }
90
+ });
91
+ };
92
+ ArvoOpenTelemetry.instance = null;
93
+ return ArvoOpenTelemetry;
94
+ }());
95
+ exports.ArvoOpenTelemetry = ArvoOpenTelemetry;
25
96
  /**
26
97
  * Logs a message to a span with additional parameters.
27
98
  * @param params - The parameters for the log message.
@@ -86,3 +157,12 @@ function currentOpenTelemetryHeaders() {
86
157
  tracestate: carrier.tracestate,
87
158
  };
88
159
  }
160
+ // Helper function to extract context from traceparent and tracestate
161
+ var makeOpenTelemetryContextContext = function (traceparent, tracestate) {
162
+ var extractedContext = api_1.propagation.extract(api_1.context.active(), {
163
+ traceparent: traceparent,
164
+ tracestate: tracestate !== null && tracestate !== void 0 ? tracestate : undefined,
165
+ });
166
+ return extractedContext;
167
+ };
168
+ exports.makeOpenTelemetryContextContext = makeOpenTelemetryContextContext;
@@ -1,4 +1,3 @@
1
- import { Tracer } from '@opentelemetry/api';
2
1
  /**
3
2
  * Represents the available log levels for telemetry.
4
3
  * - DEBUG: Used for detailed information, typically of interest only when diagnosing problems.
@@ -13,21 +12,6 @@ export type TelemetryLogLevel = 'DEBUG' | 'INFO' | 'WARNING' | 'ERROR' | 'CRITIC
13
12
  * See reference standard documentation [here](https://www.w3.org/TR/trace-context/#design-overview)
14
13
  */
15
14
  export type OpenTelemetryHeaders = {
16
- /** The traceparent header value */
17
15
  traceparent: string | null;
18
- /** The tracestate header value */
19
16
  tracestate: string | null;
20
17
  };
21
- /**
22
- * Configuration options for OpenTelemetry integration in execution context.
23
- *
24
- * This type defines how tracing should be configured and inherited within
25
- * the execution pipeline.
26
- */
27
- export type ExecutionOpenTelemetryConfiguration = {
28
- /**
29
- * OpenTelemetry tracer instance to use for creating spans.
30
- * If not provided, a default tracer may be used depending on the implementation.
31
- */
32
- tracer: Tracer;
33
- };
package/dist/index.d.ts CHANGED
@@ -2,8 +2,8 @@ import ArvoEvent from './ArvoEvent';
2
2
  import { ArvoDataContentType } from './ArvoEvent/schema';
3
3
  import { createArvoEvent } from './ArvoEvent/helpers';
4
4
  import { CloudEventContext, CloudEventExtension, ArvoEventData, ArvoExtension, OpenTelemetryExtension, CreateArvoEvent } from './ArvoEvent/types';
5
- import { exceptionToSpan, logToSpan, OTelNull, currentOpenTelemetryHeaders } from './OpenTelemetry';
6
- import { OpenTelemetryHeaders, TelemetryLogLevel, ExecutionOpenTelemetryConfiguration } from './OpenTelemetry/types';
5
+ import { exceptionToSpan, logToSpan, OTelNull, currentOpenTelemetryHeaders, ArvoOpenTelemetry } from './OpenTelemetry';
6
+ import { OpenTelemetryHeaders, TelemetryLogLevel } from './OpenTelemetry/types';
7
7
  import { validateURI, cleanString, compareSemanticVersions, parseSemanticVersion, EventDataschemaUtil } from './utils';
8
8
  import ArvoContract from './ArvoContract';
9
9
  import { createArvoContract } from './ArvoContract/helpers';
@@ -19,8 +19,6 @@ import { OpenInferenceSpanKind } from './OpenTelemetry/OpenInference/types';
19
19
  import ArvoOrchestrationSubject from './ArvoOrchestrationSubject';
20
20
  import { ArvoOrchestrationSubjectContentSchema } from './ArvoOrchestrationSubject/schema';
21
21
  import { ArvoOrchestrationSubjectContent } from './ArvoOrchestrationSubject/type';
22
- import ArvoEventHttp from './ArvoEventHttp';
23
- import { ArvoEventHttpConfig } from './ArvoEventHttp/types';
24
22
  import { InferArvoEvent, ArvoSemanticVersion, ArvoErrorType, InferVersionedArvoContract } from './types';
25
23
  import { createArvoOrchestratorContract } from './ArvoOrchestratorContract';
26
24
  import { ICreateArvoOrchestratorContract, ArvoOrchestratorContract } from './ArvoOrchestratorContract/types';
@@ -104,4 +102,4 @@ declare const ArvoEventSchema: {
104
102
  parentSubject$$: string | null;
105
103
  }>;
106
104
  };
107
- export { ArvoEventHttpConfig, ArvoEventHttp, ArvoEvent, createArvoEvent, ArvoDataContentType, ArvoEventData, CloudEventExtension, ArvoEventSchema, CloudEventContext, ArvoExtension, OpenTelemetryExtension, CreateArvoEvent, exceptionToSpan, logToSpan, OpenTelemetryHeaders, TelemetryLogLevel, OTelNull, validateURI, cleanString, ArvoContract, createArvoContract, ArvoContractValidators, ArvoContractRecord, IArvoContract, ResolveArvoContractRecord, ArvoEventFactory, createArvoEventFactory, currentOpenTelemetryHeaders, OpenInference, OpenInferenceSpanKind, ArvoExecution, ArvoExecutionSpanKind, ArvoContractJSONSchema, ArvoOrchestrationSubject, ArvoOrchestrationSubjectContent, ArvoSemanticVersion, InferArvoEvent, createArvoOrchestratorContract, ICreateArvoOrchestratorContract, ArvoOrchestratorEventTypeGen, ExecutionOpenTelemetryConfiguration, EventDataschemaUtil, ArvoOrchestrationSubjectContentSchema, ArvoSemanticVersionSchema, ArvoErrorSchema, ArvoErrorType, compareSemanticVersions, parseSemanticVersion, createSimpleArvoContract, ArvoOrchestratorContract, VersionedArvoContract, InferVersionedArvoContract, isWildCardArvoSematicVersion, WildCardArvoSemanticVersion, isValidArvoSemanticVersion, SimpleArvoContract, ArvoOrchestratorEventFactory, createArvoOrchestratorEventFactory, };
105
+ export { ArvoEvent, createArvoEvent, ArvoDataContentType, ArvoEventData, CloudEventExtension, ArvoEventSchema, CloudEventContext, ArvoExtension, OpenTelemetryExtension, CreateArvoEvent, exceptionToSpan, logToSpan, OpenTelemetryHeaders, TelemetryLogLevel, OTelNull, validateURI, cleanString, ArvoContract, createArvoContract, ArvoContractValidators, ArvoContractRecord, IArvoContract, ResolveArvoContractRecord, ArvoEventFactory, createArvoEventFactory, currentOpenTelemetryHeaders, OpenInference, OpenInferenceSpanKind, ArvoExecution, ArvoExecutionSpanKind, ArvoContractJSONSchema, ArvoOrchestrationSubject, ArvoOrchestrationSubjectContent, ArvoSemanticVersion, InferArvoEvent, createArvoOrchestratorContract, ICreateArvoOrchestratorContract, ArvoOrchestratorEventTypeGen, EventDataschemaUtil, ArvoOrchestrationSubjectContentSchema, ArvoSemanticVersionSchema, ArvoErrorSchema, ArvoErrorType, compareSemanticVersions, parseSemanticVersion, createSimpleArvoContract, ArvoOrchestratorContract, VersionedArvoContract, InferVersionedArvoContract, isWildCardArvoSematicVersion, WildCardArvoSemanticVersion, isValidArvoSemanticVersion, SimpleArvoContract, ArvoOrchestratorEventFactory, createArvoOrchestratorEventFactory, ArvoOpenTelemetry, };
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.createArvoOrchestratorEventFactory = exports.ArvoOrchestratorEventFactory = exports.isValidArvoSemanticVersion = exports.WildCardArvoSemanticVersion = exports.isWildCardArvoSematicVersion = exports.VersionedArvoContract = exports.createSimpleArvoContract = exports.parseSemanticVersion = exports.compareSemanticVersions = exports.ArvoErrorSchema = exports.ArvoSemanticVersionSchema = exports.ArvoOrchestrationSubjectContentSchema = exports.EventDataschemaUtil = exports.ArvoOrchestratorEventTypeGen = exports.createArvoOrchestratorContract = exports.ArvoOrchestrationSubject = exports.ArvoExecutionSpanKind = exports.ArvoExecution = exports.OpenInferenceSpanKind = exports.OpenInference = exports.currentOpenTelemetryHeaders = exports.createArvoEventFactory = exports.ArvoEventFactory = exports.ArvoContractValidators = exports.createArvoContract = exports.ArvoContract = exports.cleanString = exports.validateURI = exports.OTelNull = exports.logToSpan = exports.exceptionToSpan = exports.ArvoEventSchema = exports.ArvoDataContentType = exports.createArvoEvent = exports.ArvoEvent = exports.ArvoEventHttp = void 0;
6
+ exports.ArvoOpenTelemetry = exports.createArvoOrchestratorEventFactory = exports.ArvoOrchestratorEventFactory = exports.isValidArvoSemanticVersion = exports.WildCardArvoSemanticVersion = exports.isWildCardArvoSematicVersion = exports.VersionedArvoContract = exports.createSimpleArvoContract = exports.parseSemanticVersion = exports.compareSemanticVersions = exports.ArvoErrorSchema = exports.ArvoSemanticVersionSchema = exports.ArvoOrchestrationSubjectContentSchema = exports.EventDataschemaUtil = exports.ArvoOrchestratorEventTypeGen = exports.createArvoOrchestratorContract = exports.ArvoOrchestrationSubject = exports.ArvoExecutionSpanKind = exports.ArvoExecution = exports.OpenInferenceSpanKind = exports.OpenInference = exports.currentOpenTelemetryHeaders = exports.createArvoEventFactory = exports.ArvoEventFactory = exports.ArvoContractValidators = exports.createArvoContract = exports.ArvoContract = exports.cleanString = exports.validateURI = exports.OTelNull = exports.logToSpan = exports.exceptionToSpan = exports.ArvoEventSchema = exports.ArvoDataContentType = exports.createArvoEvent = exports.ArvoEvent = void 0;
7
7
  var ArvoEvent_1 = __importDefault(require("./ArvoEvent"));
8
8
  exports.ArvoEvent = ArvoEvent_1.default;
9
9
  var schema_1 = require("./ArvoEvent/schema");
@@ -15,6 +15,7 @@ Object.defineProperty(exports, "exceptionToSpan", { enumerable: true, get: funct
15
15
  Object.defineProperty(exports, "logToSpan", { enumerable: true, get: function () { return OpenTelemetry_1.logToSpan; } });
16
16
  Object.defineProperty(exports, "OTelNull", { enumerable: true, get: function () { return OpenTelemetry_1.OTelNull; } });
17
17
  Object.defineProperty(exports, "currentOpenTelemetryHeaders", { enumerable: true, get: function () { return OpenTelemetry_1.currentOpenTelemetryHeaders; } });
18
+ Object.defineProperty(exports, "ArvoOpenTelemetry", { enumerable: true, get: function () { return OpenTelemetry_1.ArvoOpenTelemetry; } });
18
19
  var utils_1 = require("./utils");
19
20
  Object.defineProperty(exports, "validateURI", { enumerable: true, get: function () { return utils_1.validateURI; } });
20
21
  Object.defineProperty(exports, "cleanString", { enumerable: true, get: function () { return utils_1.cleanString; } });
@@ -48,8 +49,6 @@ var ArvoOrchestrationSubject_1 = __importDefault(require("./ArvoOrchestrationSub
48
49
  exports.ArvoOrchestrationSubject = ArvoOrchestrationSubject_1.default;
49
50
  var schema_3 = require("./ArvoOrchestrationSubject/schema");
50
51
  Object.defineProperty(exports, "ArvoOrchestrationSubjectContentSchema", { enumerable: true, get: function () { return schema_3.ArvoOrchestrationSubjectContentSchema; } });
51
- var ArvoEventHttp_1 = __importDefault(require("./ArvoEventHttp"));
52
- exports.ArvoEventHttp = ArvoEventHttp_1.default;
53
52
  var ArvoOrchestratorContract_1 = require("./ArvoOrchestratorContract");
54
53
  Object.defineProperty(exports, "createArvoOrchestratorContract", { enumerable: true, get: function () { return ArvoOrchestratorContract_1.createArvoOrchestratorContract; } });
55
54
  var typegen_1 = require("./ArvoOrchestratorContract/typegen");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
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": {
@@ -1,80 +0,0 @@
1
- import ArvoEvent from '../ArvoEvent';
2
- import { ArvoEventHttpConfig } from './types';
3
- /**
4
- * A utility class for converting ArvoEvents to and from HTTP configurations.
5
- */
6
- export default class ArvoEventHttp {
7
- /**
8
- * Exports an ArvoEvent to a cloudevent binary-mode HTTP configuration.
9
- * @param event - The ArvoEvent to export.
10
- * @returns An ArvoEventHttpConfig object with headers and data.
11
- */
12
- static exportToBinary(event: ArvoEvent): ArvoEventHttpConfig;
13
- /**
14
- * Exports an ArvoEvent to a cloudevent structured-mode HTTP representation.
15
- * @param event - The ArvoEvent to export.
16
- * @returns An ArvoEventHttpConfig object with headers and data.
17
- */
18
- static exportToStructured(event: ArvoEvent): ArvoEventHttpConfig;
19
- /**
20
- * Imports an ArvoEvent from a binary-mode HTTP representation.
21
- * @param config - The ArvoEventHttpConfig object to import from.
22
- * @returns A new ArvoEvent instance.
23
- * @throws {Error} If required fields are missing or if there's an error parsing the input.
24
- */
25
- static importFromBinary(config: ArvoEventHttpConfig): ArvoEvent;
26
- /**
27
- * Imports an ArvoEvent from a structured-mode HTTP representation.
28
- * @param config - The ArvoEventHttpConfig object to import from.
29
- * @returns A new ArvoEvent instance.
30
- * @throws {Error} If required fields are missing or if there's an error parsing the input.
31
- */
32
- static importFromStructured(config: ArvoEventHttpConfig): ArvoEvent;
33
- /**
34
- * Validates the content type of the HTTP request.
35
- * @param actual - The actual content type from the request.
36
- * @param expected - The expected content type.
37
- * @throws {Error} If the actual content type doesn't match the expected one.
38
- */
39
- private static validateContentType;
40
- /**
41
- * Extracts event fields from the HTTP headers.
42
- * @param headers - The HTTP headers containing event information.
43
- * @returns An object with extracted event fields.
44
- */
45
- private static extractEventFieldsFromHeaders;
46
- /**
47
- * Creates an error message for a missing required field.
48
- * @param type - The type of the missing field.
49
- * @param isHeader - A flag to distinguish between headers and structured payload
50
- * @returns A formatted error message string.
51
- */
52
- private static createErrorMessageForMissingField;
53
- /**
54
- * Validates that all required fields are present in the event data.
55
- * @param event - The event data to validate.
56
- * @param isHeader - A flag to distinguish between headers and structured payload
57
- * @throws {Error} If any required field is missing.
58
- */
59
- private static validateRequiredFields;
60
- /**
61
- * Extracts extension fields from the HTTP headers.
62
- * @param headers - The HTTP headers containing event information.
63
- * @returns An object with extracted extension fields.
64
- */
65
- private static extractExtensions;
66
- /**
67
- * Creates an ArvoEvent instance from extracted event data, payload, and extensions.
68
- * @param event - The extracted event data.
69
- * @param data - The event payload.
70
- * @param extensions - The extracted extension fields.
71
- * @returns A new ArvoEvent instance.
72
- */
73
- private static createArvoEvent;
74
- /**
75
- * Creates an ArvoEvent instance from structured event data.
76
- * @param eventData - The structured event data.
77
- * @returns A new ArvoEvent instance.
78
- */
79
- private static createArvoEventFromStructured;
80
- }
@@ -1,265 +0,0 @@
1
- "use strict";
2
- var __assign = (this && this.__assign) || function () {
3
- __assign = Object.assign || function(t) {
4
- for (var s, i = 1, n = arguments.length; i < n; i++) {
5
- s = arguments[i];
6
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
- t[p] = s[p];
8
- }
9
- return t;
10
- };
11
- return __assign.apply(this, arguments);
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
- };
24
- var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
25
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
26
- if (ar || !(i in from)) {
27
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
28
- ar[i] = from[i];
29
- }
30
- }
31
- return to.concat(ar || Array.prototype.slice.call(from));
32
- };
33
- var __importDefault = (this && this.__importDefault) || function (mod) {
34
- return (mod && mod.__esModule) ? mod : { "default": mod };
35
- };
36
- Object.defineProperty(exports, "__esModule", { value: true });
37
- var ArvoEvent_1 = __importDefault(require("../ArvoEvent"));
38
- var schema_1 = require("../ArvoEvent/schema");
39
- var utils_1 = require("../utils");
40
- var uuid_1 = require("uuid");
41
- /**
42
- * A utility class for converting ArvoEvents to and from HTTP configurations.
43
- */
44
- var ArvoEventHttp = /** @class */ (function () {
45
- function ArvoEventHttp() {
46
- }
47
- /**
48
- * Exports an ArvoEvent to a cloudevent binary-mode HTTP configuration.
49
- * @param event - The ArvoEvent to export.
50
- * @returns An ArvoEventHttpConfig object with headers and data.
51
- */
52
- ArvoEventHttp.exportToBinary = function (event) {
53
- var headers = Object.assign.apply(Object, __spreadArray([{}], Object.entries(event.toJSON())
54
- .filter(function (_a) {
55
- var key = _a[0];
56
- return key !== 'data';
57
- })
58
- .map(function (_a) {
59
- var _b;
60
- var key = _a[0], value = _a[1];
61
- return (_b = {},
62
- _b["ce-".concat(key)] = value,
63
- _b);
64
- }), false));
65
- return {
66
- headers: __assign(__assign({}, headers), { 'content-type': 'application/json' }),
67
- data: __assign({}, event.data),
68
- };
69
- };
70
- /**
71
- * Exports an ArvoEvent to a cloudevent structured-mode HTTP representation.
72
- * @param event - The ArvoEvent to export.
73
- * @returns An ArvoEventHttpConfig object with headers and data.
74
- */
75
- ArvoEventHttp.exportToStructured = function (event) {
76
- return {
77
- headers: {
78
- 'content-type': event.datacontenttype,
79
- },
80
- data: event.toJSON(),
81
- };
82
- };
83
- /**
84
- * Imports an ArvoEvent from a binary-mode HTTP representation.
85
- * @param config - The ArvoEventHttpConfig object to import from.
86
- * @returns A new ArvoEvent instance.
87
- * @throws {Error} If required fields are missing or if there's an error parsing the input.
88
- */
89
- ArvoEventHttp.importFromBinary = function (config) {
90
- var _a, _b;
91
- this.validateContentType((_b = (_a = config.headers['content-type']) === null || _a === void 0 ? void 0 : _a.toString()) !== null && _b !== void 0 ? _b : '', 'application/json');
92
- var event = this.extractEventFieldsFromHeaders(config.headers);
93
- this.validateRequiredFields(event, true);
94
- var extensions = this.extractExtensions(config.headers);
95
- return this.createArvoEvent(event, config.data, extensions);
96
- };
97
- /**
98
- * Imports an ArvoEvent from a structured-mode HTTP representation.
99
- * @param config - The ArvoEventHttpConfig object to import from.
100
- * @returns A new ArvoEvent instance.
101
- * @throws {Error} If required fields are missing or if there's an error parsing the input.
102
- */
103
- ArvoEventHttp.importFromStructured = function (config) {
104
- var _a, _b;
105
- this.validateContentType((_b = (_a = config.headers['content-type']) === null || _a === void 0 ? void 0 : _a.toString()) !== null && _b !== void 0 ? _b : '', schema_1.ArvoDataContentType);
106
- var eventData = config.data;
107
- this.validateRequiredFields(eventData, false);
108
- return this.createArvoEventFromStructured(eventData);
109
- };
110
- /**
111
- * Validates the content type of the HTTP request.
112
- * @param actual - The actual content type from the request.
113
- * @param expected - The expected content type.
114
- * @throws {Error} If the actual content type doesn't match the expected one.
115
- */
116
- ArvoEventHttp.validateContentType = function (actual, expected) {
117
- if (actual !== expected) {
118
- throw new Error("Invalid content-type: ".concat(actual, ". Expected: ").concat(expected));
119
- }
120
- };
121
- /**
122
- * Extracts event fields from the HTTP headers.
123
- * @param headers - The HTTP headers containing event information.
124
- * @returns An object with extracted event fields.
125
- */
126
- ArvoEventHttp.extractEventFieldsFromHeaders = function (headers) {
127
- var eventFields = [
128
- 'id',
129
- 'type',
130
- 'accesscontrol',
131
- 'executionunits',
132
- 'traceparent',
133
- 'tracestate',
134
- 'datacontenttype',
135
- 'specversion',
136
- 'time',
137
- 'source',
138
- 'subject',
139
- 'to',
140
- 'redirectto',
141
- 'dataschema',
142
- ];
143
- return Object.fromEntries(eventFields
144
- .map(function (field) { return ["ce-".concat(field), headers["ce-".concat(field)]]; })
145
- .filter(function (_a) {
146
- var value = _a[1];
147
- return value !== undefined;
148
- })
149
- .map(function (_a) {
150
- var key = _a[0], value = _a[1];
151
- return [key.slice(3), value];
152
- }));
153
- };
154
- /**
155
- * Creates an error message for a missing required field.
156
- * @param type - The type of the missing field.
157
- * @param isHeader - A flag to distinguish between headers and structured payload
158
- * @returns A formatted error message string.
159
- */
160
- ArvoEventHttp.createErrorMessageForMissingField = function (type, isHeader) {
161
- if (isHeader) {
162
- return "Missing required header field(s): ".concat(type);
163
- }
164
- return "Missing required field(s): ".concat(type);
165
- };
166
- /**
167
- * Validates that all required fields are present in the event data.
168
- * @param event - The event data to validate.
169
- * @param isHeader - A flag to distinguish between headers and structured payload
170
- * @throws {Error} If any required field is missing.
171
- */
172
- ArvoEventHttp.validateRequiredFields = function (event, isHeader) {
173
- ['type', 'source', 'subject'].forEach(function (field) {
174
- if (!event[field]) {
175
- throw new Error(ArvoEventHttp.createErrorMessageForMissingField(isHeader ? "ce-".concat(field) : field, isHeader));
176
- }
177
- });
178
- };
179
- /**
180
- * Extracts extension fields from the HTTP headers.
181
- * @param headers - The HTTP headers containing event information.
182
- * @returns An object with extracted extension fields.
183
- */
184
- ArvoEventHttp.extractExtensions = function (headers) {
185
- var eventFields = [
186
- 'id',
187
- 'type',
188
- 'accesscontrol',
189
- 'executionunits',
190
- 'traceparent',
191
- 'tracestate',
192
- 'datacontenttype',
193
- 'specversion',
194
- 'time',
195
- 'source',
196
- 'subject',
197
- 'to',
198
- 'redirectto',
199
- 'dataschema',
200
- ];
201
- return Object.fromEntries(Object.entries(headers)
202
- .filter(function (_a) {
203
- var key = _a[0];
204
- return key.startsWith('ce-') && !eventFields.includes(key.slice(3));
205
- })
206
- .map(function (_a) {
207
- var key = _a[0], value = _a[1];
208
- return [key.slice(3), value];
209
- }));
210
- };
211
- /**
212
- * Creates an ArvoEvent instance from extracted event data, payload, and extensions.
213
- * @param event - The extracted event data.
214
- * @param data - The event payload.
215
- * @param extensions - The extracted extension fields.
216
- * @returns A new ArvoEvent instance.
217
- */
218
- ArvoEventHttp.createArvoEvent = function (event, data, extensions) {
219
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
220
- return new ArvoEvent_1.default({
221
- id: (_a = event.id) !== null && _a !== void 0 ? _a : (0, uuid_1.v4)(),
222
- type: event.type,
223
- accesscontrol: (_b = event.accesscontrol) !== null && _b !== void 0 ? _b : null,
224
- executionunits: event.executionunits
225
- ? Number(event.executionunits)
226
- : null,
227
- traceparent: (_c = event.traceparent) !== null && _c !== void 0 ? _c : null,
228
- tracestate: (_d = event.tracestate) !== null && _d !== void 0 ? _d : null,
229
- datacontenttype: (_e = event.datacontenttype) !== null && _e !== void 0 ? _e : schema_1.ArvoDataContentType,
230
- specversion: (_f = event.specversion) !== null && _f !== void 0 ? _f : '1.0',
231
- time: (_g = event.time) !== null && _g !== void 0 ? _g : (0, utils_1.createTimestamp)(),
232
- source: event.source,
233
- subject: event.subject,
234
- to: (_h = event.to) !== null && _h !== void 0 ? _h : null,
235
- redirectto: (_j = event.redirectto) !== null && _j !== void 0 ? _j : null,
236
- dataschema: (_k = event.dataschema) !== null && _k !== void 0 ? _k : null,
237
- }, data, extensions);
238
- };
239
- /**
240
- * Creates an ArvoEvent instance from structured event data.
241
- * @param eventData - The structured event data.
242
- * @returns A new ArvoEvent instance.
243
- */
244
- ArvoEventHttp.createArvoEventFromStructured = function (eventData) {
245
- var id = eventData.id, type = eventData.type, source = eventData.source, subject = eventData.subject, time = eventData.time, datacontenttype = eventData.datacontenttype, specversion = eventData.specversion, dataschema = eventData.dataschema, data = eventData.data, to = eventData.to, accesscontrol = eventData.accesscontrol, redirectto = eventData.redirectto, executionunits = eventData.executionunits, traceparent = eventData.traceparent, tracestate = eventData.tracestate, extensions = __rest(eventData, ["id", "type", "source", "subject", "time", "datacontenttype", "specversion", "dataschema", "data", "to", "accesscontrol", "redirectto", "executionunits", "traceparent", "tracestate"]);
246
- return ArvoEventHttp.createArvoEvent({
247
- id: id !== null && id !== void 0 ? id : (0, uuid_1.v4)(),
248
- type: type,
249
- source: source,
250
- subject: subject,
251
- time: time !== null && time !== void 0 ? time : (0, utils_1.createTimestamp)(),
252
- datacontenttype: datacontenttype !== null && datacontenttype !== void 0 ? datacontenttype : schema_1.ArvoDataContentType,
253
- specversion: specversion !== null && specversion !== void 0 ? specversion : '1.0',
254
- dataschema: dataschema !== null && dataschema !== void 0 ? dataschema : null,
255
- to: to !== null && to !== void 0 ? to : null,
256
- accesscontrol: accesscontrol !== null && accesscontrol !== void 0 ? accesscontrol : null,
257
- redirectto: redirectto !== null && redirectto !== void 0 ? redirectto : null,
258
- executionunits: executionunits ? Number(executionunits) : null,
259
- traceparent: traceparent !== null && traceparent !== void 0 ? traceparent : null,
260
- tracestate: tracestate !== null && tracestate !== void 0 ? tracestate : null,
261
- }, data !== null && data !== void 0 ? data : {}, extensions);
262
- };
263
- return ArvoEventHttp;
264
- }());
265
- exports.default = ArvoEventHttp;
@@ -1,9 +0,0 @@
1
- /**
2
- * Configuration object for ArvoEventHttp operations.
3
- */
4
- export type ArvoEventHttpConfig = {
5
- /** HTTP headers */
6
- headers: Record<string, string | number | boolean | null>;
7
- /** Event data */
8
- data: Record<string, any>;
9
- };
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });