arvo-core 2.1.3 → 2.1.5
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/dist/ArvoEvent/helpers.d.ts +3 -17
- package/dist/ArvoEvent/helpers.js +7 -33
- package/dist/ArvoEventFactory/Orchestrator.d.ts +2 -5
- package/dist/ArvoEventFactory/Orchestrator.js +23 -49
- package/dist/ArvoEventFactory/index.d.ts +3 -7
- package/dist/ArvoEventFactory/index.js +34 -73
- package/dist/ArvoEventFactory/utils.d.ts +13 -0
- package/dist/ArvoEventFactory/utils.js +24 -0
- package/dist/OpenTelemetry/ArvoExecution/types.d.ts +2 -1
- package/dist/OpenTelemetry/ArvoExecution/types.js +2 -1
- package/dist/OpenTelemetry/OpenInference/types.d.ts +2 -1
- package/dist/OpenTelemetry/OpenInference/types.js +1 -0
- package/dist/OpenTelemetry/index.d.ts +44 -6
- package/dist/OpenTelemetry/index.js +86 -6
- package/dist/OpenTelemetry/types.d.ts +0 -16
- package/dist/index.d.ts +3 -5
- package/dist/index.js +2 -3
- package/package.json +1 -1
- package/dist/ArvoEventHttp/index.d.ts +0 -80
- package/dist/ArvoEventHttp/index.js +0 -265
- package/dist/ArvoEventHttp/types.d.ts +0 -9
- package/dist/ArvoEventHttp/types.js +0 -2
@@ -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?:
|
53
|
-
disable
|
54
|
-
}
|
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
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
return
|
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
|
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
|
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,9 +34,9 @@ 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"));
|
39
|
+
var utils_2 = require("./utils");
|
40
40
|
/**
|
41
41
|
* Factory class for creating and validating orchestrator-specific events with managed subject hierarchies.
|
42
42
|
* Extends ArvoEventFactory with parent-child subject relationship handling and orchestration flows.
|
@@ -67,22 +67,18 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
67
67
|
*
|
68
68
|
* @param event - Event configuration without type/schema/subject
|
69
69
|
* @param [extensions] - Optional additional properties
|
70
|
-
* @param [opentelemetry] - Optional telemetry configuration
|
71
70
|
* @returns Validated orchestration event with proper subject hierarchy
|
72
71
|
*
|
73
72
|
* @throws Error if event validation fails
|
74
73
|
*/
|
75
|
-
ArvoOrchestratorEventFactory.prototype.init = function (event, extensions
|
74
|
+
ArvoOrchestratorEventFactory.prototype.init = function (event, extensions) {
|
76
75
|
var _this = this;
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
84
|
-
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
85
|
-
try {
|
76
|
+
return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
|
77
|
+
name: "".concat(this._name, ".init"),
|
78
|
+
spanOptions: (0, utils_2.createSpanOptions)(this.contract),
|
79
|
+
fn: function (span) {
|
80
|
+
var _a, _b, _c, _d;
|
81
|
+
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
86
82
|
var validationResult = _this.contract.accepts.schema.safeParse(event.data);
|
87
83
|
if (!validationResult.success) {
|
88
84
|
throw new Error("Accept Event data validation failed: ".concat(validationResult.error.message));
|
@@ -99,19 +95,10 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
99
95
|
initiator: event.source,
|
100
96
|
version: _this.contract.version,
|
101
97
|
});
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
span.setStatus({
|
107
|
-
code: api_1.SpanStatusCode.ERROR,
|
108
|
-
message: error.message,
|
109
|
-
});
|
110
|
-
throw error;
|
111
|
-
}
|
112
|
-
finally {
|
113
|
-
span.end();
|
114
|
-
}
|
98
|
+
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
|
+
span.setAttributes(generatedEvent.otelAttributes);
|
100
|
+
return generatedEvent;
|
101
|
+
},
|
115
102
|
});
|
116
103
|
};
|
117
104
|
/**
|
@@ -120,40 +107,27 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
120
107
|
*
|
121
108
|
* @param event - Completion event configuration
|
122
109
|
* @param [extensions] - Optional additional properties
|
123
|
-
* @param [opentelemetry] - Optional telemetry configuration
|
124
110
|
* @returns Validated completion event
|
125
111
|
*
|
126
112
|
* @throws Error if event validation fails or complete event type not configured
|
127
113
|
*/
|
128
|
-
ArvoOrchestratorEventFactory.prototype.complete = function (event, extensions
|
114
|
+
ArvoOrchestratorEventFactory.prototype.complete = function (event, extensions) {
|
129
115
|
var _this = this;
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
137
|
-
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
138
|
-
try {
|
116
|
+
return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
|
117
|
+
name: "".concat(this._name, ".complete"),
|
118
|
+
spanOptions: (0, utils_2.createSpanOptions)(this.contract),
|
119
|
+
fn: function (span) {
|
120
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
121
|
+
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
139
122
|
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
123
|
if (!(validationResult === null || validationResult === void 0 ? void 0 : validationResult.success)) {
|
141
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);
|
142
125
|
throw new Error("Emit Event data validation failed: ".concat(msg));
|
143
126
|
}
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
span.setStatus({
|
149
|
-
code: api_1.SpanStatusCode.ERROR,
|
150
|
-
message: error.message,
|
151
|
-
});
|
152
|
-
throw error;
|
153
|
-
}
|
154
|
-
finally {
|
155
|
-
span.end();
|
156
|
-
}
|
127
|
+
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 });
|
128
|
+
span.setAttributes(generatedEvent.otelAttributes);
|
129
|
+
return generatedEvent;
|
130
|
+
},
|
157
131
|
});
|
158
132
|
};
|
159
133
|
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
|
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
|
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
|
89
|
+
}, extensions?: TExtension): import("..").ArvoEvent<{
|
94
90
|
errorName: string;
|
95
91
|
errorMessage: string;
|
96
92
|
errorStack: string | null;
|
@@ -25,8 +25,8 @@ 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");
|
29
|
+
var utils_2 = require("./utils");
|
30
30
|
/**
|
31
31
|
* Factory class for creating and validating events based on a versioned Arvo contract.
|
32
32
|
* Handles event creation, validation, and OpenTelemetry integration for a specific
|
@@ -58,7 +58,6 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
58
58
|
*
|
59
59
|
* @param event - The event configuration object
|
60
60
|
* @param [extensions] - Optional additional properties for the event
|
61
|
-
* @param [opentelemetry] - Optional OpenTelemetry configuration
|
62
61
|
*
|
63
62
|
* @returns A validated ArvoEvent matching the contract's accept specification
|
64
63
|
*
|
@@ -72,34 +71,22 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
72
71
|
* });
|
73
72
|
* ```
|
74
73
|
*/
|
75
|
-
ArvoEventFactory.prototype.accepts = function (event, extensions
|
74
|
+
ArvoEventFactory.prototype.accepts = function (event, extensions) {
|
76
75
|
var _this = this;
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
84
|
-
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
85
|
-
try {
|
76
|
+
return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
|
77
|
+
name: "".concat(this._name, ".accepts"),
|
78
|
+
spanOptions: (0, utils_2.createSpanOptions)(this.contract),
|
79
|
+
fn: function (span) {
|
80
|
+
var _a, _b, _c, _d;
|
81
|
+
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
86
82
|
var validationResult = _this.contract.accepts.schema.safeParse(event.data);
|
87
83
|
if (!validationResult.success) {
|
88
84
|
throw new Error("Accept Event data validation failed: ".concat(validationResult.error.message));
|
89
85
|
}
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
span.setStatus({
|
95
|
-
code: api_1.SpanStatusCode.ERROR,
|
96
|
-
message: error.message,
|
97
|
-
});
|
98
|
-
throw error;
|
99
|
-
}
|
100
|
-
finally {
|
101
|
-
span.end();
|
102
|
-
}
|
86
|
+
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 });
|
87
|
+
span.setAttributes(generatedEvent.otelAttributes);
|
88
|
+
return generatedEvent;
|
89
|
+
},
|
103
90
|
});
|
104
91
|
};
|
105
92
|
/**
|
@@ -107,7 +94,6 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
107
94
|
*
|
108
95
|
* @param event - The event configuration object
|
109
96
|
* @param [extensions] - Optional additional properties for the event
|
110
|
-
* @param [opentelemetry] - Optional OpenTelemetry configuration
|
111
97
|
*
|
112
98
|
* @returns A validated ArvoEvent matching the specified emit type
|
113
99
|
*
|
@@ -122,35 +108,23 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
122
108
|
* });
|
123
109
|
* ```
|
124
110
|
*/
|
125
|
-
ArvoEventFactory.prototype.emits = function (event, extensions
|
111
|
+
ArvoEventFactory.prototype.emits = function (event, extensions) {
|
126
112
|
var _this = this;
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
134
|
-
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
135
|
-
try {
|
113
|
+
return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
|
114
|
+
name: "".concat(this._name, ".emits<").concat(event.type, ">"),
|
115
|
+
spanOptions: (0, utils_2.createSpanOptions)(this.contract),
|
116
|
+
fn: function (span) {
|
117
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
118
|
+
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
136
119
|
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
120
|
if (!(validationResult === null || validationResult === void 0 ? void 0 : validationResult.success)) {
|
138
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(event.type);
|
139
122
|
throw new Error("Emit Event data validation failed: ".concat(msg));
|
140
123
|
}
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
span.setStatus({
|
146
|
-
code: api_1.SpanStatusCode.ERROR,
|
147
|
-
message: error.message,
|
148
|
-
});
|
149
|
-
throw error;
|
150
|
-
}
|
151
|
-
finally {
|
152
|
-
span.end();
|
153
|
-
}
|
124
|
+
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 });
|
125
|
+
span.setAttributes(generatedEvent.otelAttributes);
|
126
|
+
return generatedEvent;
|
127
|
+
},
|
154
128
|
});
|
155
129
|
};
|
156
130
|
/**
|
@@ -159,7 +133,6 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
159
133
|
* @param event - The error event configuration
|
160
134
|
* @param event.error - The Error instance to convert to an event
|
161
135
|
* @param [extensions] - Optional additional properties for the event
|
162
|
-
* @param [opentelemetry] - Optional OpenTelemetry configuration
|
163
136
|
*
|
164
137
|
* @returns A system error ArvoEvent
|
165
138
|
*
|
@@ -173,35 +146,23 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
173
146
|
* });
|
174
147
|
* ```
|
175
148
|
*/
|
176
|
-
ArvoEventFactory.prototype.systemError = function (event, extensions
|
149
|
+
ArvoEventFactory.prototype.systemError = function (event, extensions) {
|
177
150
|
var _this = this;
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
185
|
-
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
186
|
-
try {
|
151
|
+
return OpenTelemetry_1.ArvoOpenTelemetry.getInstance().startActiveSpan({
|
152
|
+
name: "".concat(this._name, ".systemError"),
|
153
|
+
spanOptions: (0, utils_2.createSpanOptions)(this.contract),
|
154
|
+
fn: function (span) {
|
155
|
+
var _a, _b, _c, _d, _e;
|
156
|
+
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
187
157
|
var error = event.error, _event = __rest(event, ["error"]);
|
188
|
-
|
158
|
+
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
159
|
errorName: error.name,
|
190
160
|
errorMessage: error.message,
|
191
161
|
errorStack: (_e = error.stack) !== null && _e !== void 0 ? _e : null,
|
192
162
|
}, datacontenttype: schema_1.ArvoDataContentType, dataschema: utils_1.EventDataschemaUtil.createWithWildCardVersion(_this.contract) }), extensions, { disable: true });
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
span.setStatus({
|
197
|
-
code: api_1.SpanStatusCode.ERROR,
|
198
|
-
message: error.message,
|
199
|
-
});
|
200
|
-
throw error;
|
201
|
-
}
|
202
|
-
finally {
|
203
|
-
span.end();
|
204
|
-
}
|
163
|
+
span.setAttributes(generatedEvent.otelAttributes);
|
164
|
+
return generatedEvent;
|
165
|
+
},
|
205
166
|
});
|
206
167
|
};
|
207
168
|
return ArvoEventFactory;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { SpanKind } from "@opentelemetry/api";
|
2
|
+
import { VersionedArvoContract } from "../ArvoContract/VersionedArvoContract";
|
3
|
+
import { ArvoExecutionSpanKind } from "../OpenTelemetry/ArvoExecution/types";
|
4
|
+
import { OpenInferenceSpanKind } from "../OpenTelemetry/OpenInference/types";
|
5
|
+
export declare const createSpanOptions: (contract: VersionedArvoContract<any, any>) => {
|
6
|
+
kind: SpanKind;
|
7
|
+
attributes: {
|
8
|
+
"arvo.span.kind": ArvoExecutionSpanKind;
|
9
|
+
"openinference.span.kind": OpenInferenceSpanKind;
|
10
|
+
'arvo.contract.uri': any;
|
11
|
+
'arvo.contract.version': any;
|
12
|
+
};
|
13
|
+
};
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.createSpanOptions = void 0;
|
7
|
+
var api_1 = require("@opentelemetry/api");
|
8
|
+
var ArvoExecution_1 = __importDefault(require("../OpenTelemetry/ArvoExecution"));
|
9
|
+
var OpenInference_1 = __importDefault(require("../OpenTelemetry/OpenInference"));
|
10
|
+
var types_1 = require("../OpenTelemetry/ArvoExecution/types");
|
11
|
+
var types_2 = require("../OpenTelemetry/OpenInference/types");
|
12
|
+
var createSpanOptions = function (contract) {
|
13
|
+
var _a;
|
14
|
+
return ({
|
15
|
+
kind: api_1.SpanKind.INTERNAL,
|
16
|
+
attributes: (_a = {},
|
17
|
+
_a[ArvoExecution_1.default.ATTR_SPAN_KIND] = types_1.ArvoExecutionSpanKind.INTERNAL,
|
18
|
+
_a[OpenInference_1.default.ATTR_SPAN_KIND] = types_2.OpenInferenceSpanKind.INTERNAL,
|
19
|
+
_a['arvo.contract.uri'] = contract.uri,
|
20
|
+
_a['arvo.contract.version'] = contract.version,
|
21
|
+
_a)
|
22
|
+
});
|
23
|
+
};
|
24
|
+
exports.createSpanOptions = createSpanOptions;
|
@@ -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["
|
7
|
+
ArvoExecutionSpanKind["ORCHESTRATOR"] = "ORCHESTRATOR";
|
8
|
+
ArvoExecutionSpanKind["INTERNAL"] = "INTERNAL";
|
8
9
|
})(ArvoExecutionSpanKind || (exports.ArvoExecutionSpanKind = ArvoExecutionSpanKind = {}));
|
@@ -15,4 +15,5 @@ var OpenInferenceSpanKind;
|
|
15
15
|
OpenInferenceSpanKind["TOOL"] = "TOOL";
|
16
16
|
OpenInferenceSpanKind["GUARDRAIL"] = "GUARDRAIL";
|
17
17
|
OpenInferenceSpanKind["EVALUATOR"] = "EVALUATOR";
|
18
|
+
OpenInferenceSpanKind["INTERNAL"] = "INTERNAL";
|
18
19
|
})(OpenInferenceSpanKind || (exports.OpenInferenceSpanKind = OpenInferenceSpanKind = {}));
|
@@ -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
|
-
*
|
4
|
+
* Singleton class for managing OpenTelemetry instrumentation across libraries
|
5
5
|
*/
|
6
|
-
export declare
|
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.
|
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
|
-
*
|
24
|
+
* Singleton class for managing OpenTelemetry instrumentation across libraries
|
20
25
|
*/
|
21
|
-
var
|
22
|
-
|
23
|
-
|
24
|
-
|
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
|
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 {
|
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 =
|
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,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;
|