arvo-core 2.2.5 → 2.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +10 -0
- package/CHANGELOG.md +4 -0
- package/biome.json +58 -0
- package/dist/ArvoContract/SimpleArvoContract/index.d.ts +3 -3
- package/dist/ArvoContract/SimpleArvoContract/types.d.ts +3 -3
- package/dist/ArvoContract/VersionedArvoContract/index.d.ts +10 -5
- package/dist/ArvoContract/VersionedArvoContract/index.js +23 -3
- package/dist/ArvoContract/VersionedArvoContract/types.d.ts +3 -3
- package/dist/ArvoContract/VersionedArvoContract/utils.d.ts +3 -3
- package/dist/ArvoContract/WildCardArvoSemanticVersion.d.ts +1 -1
- package/dist/ArvoContract/WildCardArvoSemanticVersion.js +1 -2
- package/dist/ArvoContract/helpers.d.ts +2 -2
- package/dist/ArvoContract/index.d.ts +3 -3
- package/dist/ArvoContract/index.js +2 -2
- package/dist/ArvoContract/types.d.ts +3 -3
- package/dist/ArvoEvent/helpers.d.ts +1 -1
- package/dist/ArvoEvent/helpers.js +1 -1
- package/dist/ArvoEvent/index.d.ts +2 -2
- package/dist/ArvoEvent/index.js +4 -5
- package/dist/ArvoEvent/schema.d.ts +2 -2
- package/dist/ArvoEvent/schema.js +2 -8
- package/dist/ArvoEvent/types.d.ts +2 -2
- package/dist/ArvoEventFactory/Orchestrator.d.ts +3 -3
- package/dist/ArvoEventFactory/Orchestrator.js +3 -4
- package/dist/ArvoEventFactory/helpers.d.ts +1 -1
- package/dist/ArvoEventFactory/helpers.js +3 -1
- package/dist/ArvoEventFactory/index.d.ts +3 -3
- package/dist/ArvoEventFactory/index.js +2 -6
- package/dist/ArvoEventFactory/utils.d.ts +1 -1
- package/dist/ArvoEventFactory/utils.js +1 -1
- package/dist/ArvoOrchestrationSubject/index.d.ts +17 -2
- package/dist/ArvoOrchestrationSubject/index.js +33 -28
- package/dist/ArvoOrchestrationSubject/schema.js +1 -1
- package/dist/ArvoOrchestrationSubject/type.d.ts +1 -1
- package/dist/ArvoOrchestratorContract/index.d.ts +3 -3
- package/dist/ArvoOrchestratorContract/index.js +2 -2
- package/dist/ArvoOrchestratorContract/typegen.js +1 -0
- package/dist/ArvoOrchestratorContract/types.d.ts +5 -5
- package/dist/OpenTelemetry/ArvoExecution/index.js +1 -0
- package/dist/OpenTelemetry/OpenInference/index.js +1 -0
- package/dist/OpenTelemetry/index.d.ts +2 -2
- package/dist/OpenTelemetry/index.js +2 -4
- package/dist/errors.d.ts +1 -21
- package/dist/errors.js +1 -21
- package/dist/index.d.ts +22 -22
- package/dist/index.js +38 -37
- package/dist/schema.js +1 -3
- package/dist/types.d.ts +8 -7
- package/dist/utils.d.ts +26 -6
- package/dist/utils.js +39 -5
- package/package.json +7 -12
@@ -10,38 +10,19 @@ var __assign = (this && this.__assign) || function () {
|
|
10
10
|
};
|
11
11
|
return __assign.apply(this, arguments);
|
12
12
|
};
|
13
|
-
var
|
14
|
-
|
15
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
16
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
17
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
18
|
-
}
|
19
|
-
Object.defineProperty(o, k2, desc);
|
20
|
-
}) : (function(o, m, k, k2) {
|
21
|
-
if (k2 === undefined) k2 = k;
|
22
|
-
o[k2] = m[k];
|
23
|
-
}));
|
24
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
25
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
26
|
-
}) : function(o, v) {
|
27
|
-
o["default"] = v;
|
28
|
-
});
|
29
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
30
|
-
if (mod && mod.__esModule) return mod;
|
31
|
-
var result = {};
|
32
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
33
|
-
__setModuleDefault(result, mod);
|
34
|
-
return result;
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
35
15
|
};
|
36
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
37
|
-
var
|
38
|
-
var zlib = __importStar(require("node:zlib"));
|
39
|
-
var utils_1 = require("../utils");
|
17
|
+
var pako_1 = __importDefault(require("pako"));
|
40
18
|
var uuid_1 = require("uuid");
|
41
19
|
var WildCardArvoSemanticVersion_1 = require("../ArvoContract/WildCardArvoSemanticVersion");
|
20
|
+
var utils_1 = require("../utils");
|
21
|
+
var schema_1 = require("./schema");
|
42
22
|
/**
|
43
23
|
* Handles the creation and parsing of Arvo orchestration subjects.
|
44
24
|
*/
|
25
|
+
// biome-ignore lint/complexity/noStaticOnlyClass: This needs to be a static class to group methods together
|
45
26
|
var ArvoOrchestrationSubject = /** @class */ (function () {
|
46
27
|
function ArvoOrchestrationSubject() {
|
47
28
|
}
|
@@ -163,8 +144,8 @@ var ArvoOrchestrationSubject = /** @class */ (function () {
|
|
163
144
|
throw new Error("Invalid ArvoOrchestrationContextType: ".concat(validationResult.error));
|
164
145
|
}
|
165
146
|
var jsonString = JSON.stringify(param);
|
166
|
-
var compressed =
|
167
|
-
return compressed.toString('base64');
|
147
|
+
var compressed = pako_1.default.deflate(new TextEncoder().encode(jsonString));
|
148
|
+
return Buffer.from(compressed).toString('base64');
|
168
149
|
}
|
169
150
|
catch (e) {
|
170
151
|
throw new Error((0, utils_1.cleanString)("\n Error creating orchestration subject string from the provided context. \n Error -> ".concat(e.message, " \n Context -> ").concat(JSON.stringify(param, null, 2), "\n ")));
|
@@ -188,7 +169,8 @@ var ArvoOrchestrationSubject = /** @class */ (function () {
|
|
188
169
|
ArvoOrchestrationSubject.parse = function (subject) {
|
189
170
|
try {
|
190
171
|
var compressed = Buffer.from(subject, 'base64');
|
191
|
-
var
|
172
|
+
var decompressed = pako_1.default.inflate(compressed);
|
173
|
+
var jsonString = new TextDecoder().decode(decompressed);
|
192
174
|
var parsed = JSON.parse(jsonString);
|
193
175
|
var validationResult = schema_1.ArvoOrchestrationSubjectContentSchema.safeParse(parsed);
|
194
176
|
if (!validationResult.success) {
|
@@ -200,6 +182,29 @@ var ArvoOrchestrationSubject = /** @class */ (function () {
|
|
200
182
|
throw new Error((0, utils_1.cleanString)("\n Error parsing orchestration subject string to the context. \n Error -> ".concat(e.message, " \n subject -> ").concat(subject, "\n ")));
|
201
183
|
}
|
202
184
|
};
|
185
|
+
/**
|
186
|
+
* Validates if a string represents a valid Arvo orchestration subject.
|
187
|
+
* A valid subject must:
|
188
|
+
* - Be base64 encoded
|
189
|
+
* - Contain zlib-compressed JSON data
|
190
|
+
* - Match the ArvoOrchestrationSubjectContent schema when decoded
|
191
|
+
* - Include valid orchestrator and execution details
|
192
|
+
*
|
193
|
+
* Use this method for validating subjects before processing them in
|
194
|
+
* orchestration workflows or when receiving subjects from external sources.
|
195
|
+
*
|
196
|
+
* @param data - The string to validate as an orchestration subject
|
197
|
+
* @returns boolean - True if string is a valid orchestration subject, false otherwise
|
198
|
+
*/
|
199
|
+
ArvoOrchestrationSubject.isValid = function (data) {
|
200
|
+
try {
|
201
|
+
ArvoOrchestrationSubject.parse(data);
|
202
|
+
return false;
|
203
|
+
}
|
204
|
+
catch (_a) {
|
205
|
+
return false;
|
206
|
+
}
|
207
|
+
};
|
203
208
|
return ArvoOrchestrationSubject;
|
204
209
|
}());
|
205
210
|
exports.default = ArvoOrchestrationSubject;
|
@@ -2,8 +2,8 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.ArvoOrchestrationSubjectContentSchema = void 0;
|
4
4
|
var zod_1 = require("zod");
|
5
|
-
var utils_1 = require("../utils");
|
6
5
|
var schema_1 = require("../schema");
|
6
|
+
var utils_1 = require("../utils");
|
7
7
|
// Zod schema for ArvoOrchestrationSubjectContent
|
8
8
|
exports.ArvoOrchestrationSubjectContentSchema = zod_1.z
|
9
9
|
.object({
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
import {
|
3
|
-
import {
|
1
|
+
import type { z } from 'zod';
|
2
|
+
import type { ArvoSemanticVersion } from '../types';
|
3
|
+
import type { ArvoOrchestratorContract, ICreateArvoOrchestratorContract } from './types';
|
4
4
|
/**
|
5
5
|
* Creates an ArvoOrchestratorContract with specified parameters.
|
6
6
|
*
|
@@ -15,9 +15,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
17
|
exports.createArvoOrchestratorContract = void 0;
|
18
|
-
var typegen_1 = require("./typegen");
|
19
|
-
var schema_1 = require("./schema");
|
20
18
|
var ArvoContract_1 = __importDefault(require("../ArvoContract"));
|
19
|
+
var schema_1 = require("./schema");
|
20
|
+
var typegen_1 = require("./typegen");
|
21
21
|
/**
|
22
22
|
* Validates if a string contains only uppercase or lowercase alphanumeric characters.
|
23
23
|
*
|
@@ -14,6 +14,7 @@ exports.ArvoOrchestratorEventTypeGen = void 0;
|
|
14
14
|
* const errorEvent = ArvoOrchestratorEventTypeGen.systemError('payment') // 'sys.arvo.orc.payment.error'
|
15
15
|
* ```
|
16
16
|
*/
|
17
|
+
// biome-ignore lint/complexity/noStaticOnlyClass: This needs to be a static class to group methods together
|
17
18
|
var ArvoOrchestratorEventTypeGen = /** @class */ (function () {
|
18
19
|
function ArvoOrchestratorEventTypeGen() {
|
19
20
|
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
import
|
3
|
-
import
|
4
|
-
import {
|
5
|
-
import {
|
1
|
+
import type { z } from 'zod';
|
2
|
+
import type ArvoContract from '../ArvoContract';
|
3
|
+
import type { ArvoSemanticVersion } from '../types';
|
4
|
+
import type { OrchestrationInitEventBaseSchema } from './schema';
|
5
|
+
import type { ArvoOrchestratorEventTypeGen } from './typegen';
|
6
6
|
/**
|
7
7
|
* A specialized ArvoContract type for orchestrating complex event flows.
|
8
8
|
* Automatically generates appropriately typed init and complete events.
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
/**
|
4
4
|
* ArvoExection class containing attribute constants for OpenTelemetry.
|
5
5
|
*/
|
6
|
+
// biome-ignore lint/complexity/noStaticOnlyClass: This needs to be a static class to group methods together
|
6
7
|
var ArvoExecution = /** @class */ (function () {
|
7
8
|
function ArvoExecution() {
|
8
9
|
}
|
@@ -5,6 +5,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
* These attribute names are defined as per the OpenInference specification:
|
6
6
|
* @see https://github.com/Arize-ai/openinference/blob/main/spec/semantic_conventions.md
|
7
7
|
*/
|
8
|
+
// biome-ignore lint/complexity/noStaticOnlyClass: This needs to be a static class to group methods together
|
8
9
|
var OpenInference = /** @class */ (function () {
|
9
10
|
function OpenInference() {
|
10
11
|
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import { type Context, type Span, type SpanOptions, type Tracer } from '@opentelemetry/api';
|
2
|
+
import type { OpenTelemetryHeaders, TelemetryLogLevel } from './types';
|
3
3
|
/**
|
4
4
|
* Singleton class for managing OpenTelemetry instrumentation across libraries
|
5
5
|
*/
|
@@ -91,8 +91,7 @@ var ArvoOpenTelemetry = /** @class */ (function () {
|
|
91
91
|
if (!config.force) {
|
92
92
|
var activeSpan = api_1.trace.getActiveSpan();
|
93
93
|
if (activeSpan) {
|
94
|
-
throw new Error('Cannot reinitialize while spans are active. ' +
|
95
|
-
'Either end all spans or use force: true (not recommended)');
|
94
|
+
throw new Error('Cannot reinitialize while spans are active. ' + 'Either end all spans or use force: true (not recommended)');
|
96
95
|
}
|
97
96
|
}
|
98
97
|
// Create new instance
|
@@ -120,8 +119,7 @@ var ArvoOpenTelemetry = /** @class */ (function () {
|
|
120
119
|
var _b, _c, _d;
|
121
120
|
var parentContext;
|
122
121
|
if (param.context) {
|
123
|
-
if (param.context.inheritFrom === 'TRACE_HEADERS' &&
|
124
|
-
param.context.traceHeaders.traceparent) {
|
122
|
+
if (param.context.inheritFrom === 'TRACE_HEADERS' && param.context.traceHeaders.traceparent) {
|
125
123
|
parentContext = (0, exports.makeOpenTelemetryContextContext)(param.context.traceHeaders.traceparent, param.context.traceHeaders.tracestate);
|
126
124
|
}
|
127
125
|
else if (param.context.inheritFrom === 'CONTEXT') {
|
package/dist/errors.d.ts
CHANGED
@@ -16,30 +16,10 @@ export type ViolationErrorParam<T extends string = string> = {
|
|
16
16
|
* violation of service contracts or explict retry handling
|
17
17
|
*
|
18
18
|
* Common violation scenarios include:
|
19
|
-
* -
|
19
|
+
* - Execution error like rate limit exceeded on external API calls
|
20
20
|
* - Contract violations (invalid input/output)
|
21
21
|
* - Configuration errors
|
22
22
|
* - Permission/authorization failures
|
23
|
-
*
|
24
|
-
* @example
|
25
|
-
* ```typescript
|
26
|
-
* // Creating a rate limit violation
|
27
|
-
* throw new ViolationError({
|
28
|
-
* type: 'RATE_LIMIT_EXCEEDED',
|
29
|
-
* message: 'API rate limit reached, retry after 60 seconds',
|
30
|
-
* metadata: { retryAfter: 60 }
|
31
|
-
* });
|
32
|
-
*
|
33
|
-
* // Handling violations
|
34
|
-
* try {
|
35
|
-
* await apiCall();
|
36
|
-
* } catch (error) {
|
37
|
-
* if (error instanceof ViolationError && error.type === 'RATE_LIMIT_EXCEEDED') {
|
38
|
-
* const retryAfter = error.metadata?.retryAfter;
|
39
|
-
* // Handle rate limiting...
|
40
|
-
* }
|
41
|
-
* }
|
42
|
-
* ```
|
43
23
|
*/
|
44
24
|
export declare class ViolationError<T extends string = string> extends Error {
|
45
25
|
/** The specific type/category of the violation */
|
package/dist/errors.js
CHANGED
@@ -23,30 +23,10 @@ exports.ViolationError = void 0;
|
|
23
23
|
* violation of service contracts or explict retry handling
|
24
24
|
*
|
25
25
|
* Common violation scenarios include:
|
26
|
-
* -
|
26
|
+
* - Execution error like rate limit exceeded on external API calls
|
27
27
|
* - Contract violations (invalid input/output)
|
28
28
|
* - Configuration errors
|
29
29
|
* - Permission/authorization failures
|
30
|
-
*
|
31
|
-
* @example
|
32
|
-
* ```typescript
|
33
|
-
* // Creating a rate limit violation
|
34
|
-
* throw new ViolationError({
|
35
|
-
* type: 'RATE_LIMIT_EXCEEDED',
|
36
|
-
* message: 'API rate limit reached, retry after 60 seconds',
|
37
|
-
* metadata: { retryAfter: 60 }
|
38
|
-
* });
|
39
|
-
*
|
40
|
-
* // Handling violations
|
41
|
-
* try {
|
42
|
-
* await apiCall();
|
43
|
-
* } catch (error) {
|
44
|
-
* if (error instanceof ViolationError && error.type === 'RATE_LIMIT_EXCEEDED') {
|
45
|
-
* const retryAfter = error.metadata?.retryAfter;
|
46
|
-
* // Handle rate limiting...
|
47
|
-
* }
|
48
|
-
* }
|
49
|
-
* ```
|
50
30
|
*/
|
51
31
|
var ViolationError = /** @class */ (function (_super) {
|
52
32
|
__extends(ViolationError, _super);
|
package/dist/index.d.ts
CHANGED
@@ -1,34 +1,34 @@
|
|
1
|
+
import ArvoContract from './ArvoContract';
|
2
|
+
import { createArvoContract } from './ArvoContract/helpers';
|
1
3
|
import ArvoEvent from './ArvoEvent';
|
2
|
-
import { ArvoDataContentType } from './ArvoEvent/schema';
|
3
4
|
import { createArvoEvent } from './ArvoEvent/helpers';
|
4
|
-
import {
|
5
|
-
import {
|
5
|
+
import { ArvoDataContentType } from './ArvoEvent/schema';
|
6
|
+
import { ArvoEventData, ArvoExtension, CloudEventContext, CloudEventExtension, CreateArvoEvent, OpenTelemetryExtension } from './ArvoEvent/types';
|
7
|
+
import { ArvoOpenTelemetry, OTelNull, currentOpenTelemetryHeaders, exceptionToSpan, logToSpan } from './OpenTelemetry';
|
6
8
|
import { OpenTelemetryHeaders, TelemetryLogLevel } from './OpenTelemetry/types';
|
7
|
-
import {
|
8
|
-
import
|
9
|
-
import {
|
9
|
+
import { EventDataschemaUtil, cleanString, compareSemanticVersions, createArvoError, parseSemanticVersion, validateURI } from './utils';
|
10
|
+
import { createSimpleArvoContract } from './ArvoContract/SimpleArvoContract';
|
11
|
+
import { SimpleArvoContract } from './ArvoContract/SimpleArvoContract/types';
|
12
|
+
import { VersionedArvoContract } from './ArvoContract/VersionedArvoContract';
|
13
|
+
import { WildCardArvoSemanticVersion, isWildCardArvoSematicVersion } from './ArvoContract/WildCardArvoSemanticVersion';
|
14
|
+
import { ArvoContractJSONSchema, ArvoContractRecord, IArvoContract, ResolveArvoContractRecord } from './ArvoContract/types';
|
10
15
|
import { ArvoContractValidators } from './ArvoContract/validators';
|
11
|
-
import { ArvoContractRecord, IArvoContract, ResolveArvoContractRecord, ArvoContractJSONSchema } from './ArvoContract/types';
|
12
16
|
import ArvoEventFactory from './ArvoEventFactory';
|
17
|
+
import { ArvoOrchestratorEventFactory } from './ArvoEventFactory/Orchestrator';
|
13
18
|
import { createArvoEventFactory, createArvoOrchestratorEventFactory } from './ArvoEventFactory/helpers';
|
14
|
-
import { ArvoErrorSchema, ArvoSemanticVersionSchema, isValidArvoSemanticVersion } from './schema';
|
15
|
-
import OpenInference from './OpenTelemetry/OpenInference';
|
16
|
-
import ArvoExecution from './OpenTelemetry/ArvoExecution';
|
17
|
-
import { ArvoExecutionSpanKind } from './OpenTelemetry/ArvoExecution/types';
|
18
|
-
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 { InferArvoEvent, ArvoSemanticVersion, ArvoErrorType, InferVersionedArvoContract } from './types';
|
23
22
|
import { createArvoOrchestratorContract } from './ArvoOrchestratorContract';
|
24
|
-
import { ICreateArvoOrchestratorContract, ArvoOrchestratorContract } from './ArvoOrchestratorContract/types';
|
25
23
|
import { ArvoOrchestratorEventTypeGen } from './ArvoOrchestratorContract/typegen';
|
26
|
-
import {
|
27
|
-
import
|
28
|
-
import {
|
29
|
-
import
|
30
|
-
import {
|
24
|
+
import { ArvoOrchestratorContract, ICreateArvoOrchestratorContract } from './ArvoOrchestratorContract/types';
|
25
|
+
import ArvoExecution from './OpenTelemetry/ArvoExecution';
|
26
|
+
import { ArvoExecutionSpanKind } from './OpenTelemetry/ArvoExecution/types';
|
27
|
+
import OpenInference from './OpenTelemetry/OpenInference';
|
28
|
+
import { OpenInferenceSpanKind } from './OpenTelemetry/OpenInference/types';
|
31
29
|
import { ViolationError, ViolationErrorParam } from './errors';
|
30
|
+
import { ArvoErrorSchema, ArvoSemanticVersionSchema, isValidArvoSemanticVersion } from './schema';
|
31
|
+
import { ArvoErrorType, ArvoSemanticVersion, InferArvoEvent, InferVersionedArvoContract } from './types';
|
32
32
|
/**
|
33
33
|
* Collection of Zod schemas for validating various aspects of Arvo events.
|
34
34
|
* @property {z.ZodObject} CloudEventContextSchema - Schema for core CloudEvent properties.
|
@@ -51,20 +51,20 @@ declare const ArvoEventSchema: {
|
|
51
51
|
}, "strip", import("zod").ZodTypeAny, {
|
52
52
|
type: string;
|
53
53
|
id: string;
|
54
|
+
time: string;
|
54
55
|
source: string;
|
55
56
|
specversion: "1.0";
|
56
57
|
subject: string;
|
57
58
|
datacontenttype: string;
|
58
59
|
dataschema: string | null;
|
59
|
-
time: string;
|
60
60
|
}, {
|
61
61
|
type: string;
|
62
62
|
id: string;
|
63
|
+
time: string;
|
63
64
|
source: string;
|
64
65
|
specversion: string;
|
65
66
|
subject: string;
|
66
67
|
dataschema: string | null;
|
67
|
-
time: string;
|
68
68
|
datacontenttype?: string | undefined;
|
69
69
|
}>;
|
70
70
|
CloudEventExtensionSchema: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodNumber, import("zod").ZodNull]>>;
|
@@ -103,4 +103,4 @@ declare const ArvoEventSchema: {
|
|
103
103
|
parentSubject$$: string | null;
|
104
104
|
}>;
|
105
105
|
};
|
106
|
-
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, ViolationError, ViolationErrorParam, };
|
106
|
+
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, ViolationError, ViolationErrorParam, createArvoError, };
|
package/dist/index.js
CHANGED
@@ -3,68 +3,69 @@ 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.ViolationError = 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;
|
6
|
+
exports.createArvoError = exports.ViolationError = 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
|
+
var ArvoContract_1 = __importDefault(require("./ArvoContract"));
|
8
|
+
exports.ArvoContract = ArvoContract_1.default;
|
9
|
+
var helpers_1 = require("./ArvoContract/helpers");
|
10
|
+
Object.defineProperty(exports, "createArvoContract", { enumerable: true, get: function () { return helpers_1.createArvoContract; } });
|
7
11
|
var ArvoEvent_1 = __importDefault(require("./ArvoEvent"));
|
8
12
|
exports.ArvoEvent = ArvoEvent_1.default;
|
13
|
+
var helpers_2 = require("./ArvoEvent/helpers");
|
14
|
+
Object.defineProperty(exports, "createArvoEvent", { enumerable: true, get: function () { return helpers_2.createArvoEvent; } });
|
9
15
|
var schema_1 = require("./ArvoEvent/schema");
|
10
16
|
Object.defineProperty(exports, "ArvoDataContentType", { enumerable: true, get: function () { return schema_1.ArvoDataContentType; } });
|
11
|
-
var helpers_1 = require("./ArvoEvent/helpers");
|
12
|
-
Object.defineProperty(exports, "createArvoEvent", { enumerable: true, get: function () { return helpers_1.createArvoEvent; } });
|
13
17
|
var OpenTelemetry_1 = require("./OpenTelemetry");
|
14
|
-
Object.defineProperty(exports, "
|
15
|
-
Object.defineProperty(exports, "logToSpan", { enumerable: true, get: function () { return OpenTelemetry_1.logToSpan; } });
|
18
|
+
Object.defineProperty(exports, "ArvoOpenTelemetry", { enumerable: true, get: function () { return OpenTelemetry_1.ArvoOpenTelemetry; } });
|
16
19
|
Object.defineProperty(exports, "OTelNull", { enumerable: true, get: function () { return OpenTelemetry_1.OTelNull; } });
|
17
20
|
Object.defineProperty(exports, "currentOpenTelemetryHeaders", { enumerable: true, get: function () { return OpenTelemetry_1.currentOpenTelemetryHeaders; } });
|
18
|
-
Object.defineProperty(exports, "
|
21
|
+
Object.defineProperty(exports, "exceptionToSpan", { enumerable: true, get: function () { return OpenTelemetry_1.exceptionToSpan; } });
|
22
|
+
Object.defineProperty(exports, "logToSpan", { enumerable: true, get: function () { return OpenTelemetry_1.logToSpan; } });
|
19
23
|
var utils_1 = require("./utils");
|
20
|
-
Object.defineProperty(exports, "
|
24
|
+
Object.defineProperty(exports, "EventDataschemaUtil", { enumerable: true, get: function () { return utils_1.EventDataschemaUtil; } });
|
21
25
|
Object.defineProperty(exports, "cleanString", { enumerable: true, get: function () { return utils_1.cleanString; } });
|
22
26
|
Object.defineProperty(exports, "compareSemanticVersions", { enumerable: true, get: function () { return utils_1.compareSemanticVersions; } });
|
27
|
+
Object.defineProperty(exports, "createArvoError", { enumerable: true, get: function () { return utils_1.createArvoError; } });
|
23
28
|
Object.defineProperty(exports, "parseSemanticVersion", { enumerable: true, get: function () { return utils_1.parseSemanticVersion; } });
|
24
|
-
Object.defineProperty(exports, "
|
25
|
-
var
|
26
|
-
exports
|
27
|
-
var
|
28
|
-
Object.defineProperty(exports, "
|
29
|
+
Object.defineProperty(exports, "validateURI", { enumerable: true, get: function () { return utils_1.validateURI; } });
|
30
|
+
var SimpleArvoContract_1 = require("./ArvoContract/SimpleArvoContract");
|
31
|
+
Object.defineProperty(exports, "createSimpleArvoContract", { enumerable: true, get: function () { return SimpleArvoContract_1.createSimpleArvoContract; } });
|
32
|
+
var VersionedArvoContract_1 = require("./ArvoContract/VersionedArvoContract");
|
33
|
+
Object.defineProperty(exports, "VersionedArvoContract", { enumerable: true, get: function () { return VersionedArvoContract_1.VersionedArvoContract; } });
|
34
|
+
var WildCardArvoSemanticVersion_1 = require("./ArvoContract/WildCardArvoSemanticVersion");
|
35
|
+
Object.defineProperty(exports, "WildCardArvoSemanticVersion", { enumerable: true, get: function () { return WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion; } });
|
36
|
+
Object.defineProperty(exports, "isWildCardArvoSematicVersion", { enumerable: true, get: function () { return WildCardArvoSemanticVersion_1.isWildCardArvoSematicVersion; } });
|
29
37
|
var validators_1 = require("./ArvoContract/validators");
|
30
38
|
Object.defineProperty(exports, "ArvoContractValidators", { enumerable: true, get: function () { return validators_1.ArvoContractValidators; } });
|
31
39
|
var ArvoEventFactory_1 = __importDefault(require("./ArvoEventFactory"));
|
32
40
|
exports.ArvoEventFactory = ArvoEventFactory_1.default;
|
41
|
+
var Orchestrator_1 = require("./ArvoEventFactory/Orchestrator");
|
42
|
+
Object.defineProperty(exports, "ArvoOrchestratorEventFactory", { enumerable: true, get: function () { return Orchestrator_1.ArvoOrchestratorEventFactory; } });
|
33
43
|
var helpers_3 = require("./ArvoEventFactory/helpers");
|
34
44
|
Object.defineProperty(exports, "createArvoEventFactory", { enumerable: true, get: function () { return helpers_3.createArvoEventFactory; } });
|
35
45
|
Object.defineProperty(exports, "createArvoOrchestratorEventFactory", { enumerable: true, get: function () { return helpers_3.createArvoOrchestratorEventFactory; } });
|
36
|
-
var schema_2 = require("./schema");
|
37
|
-
Object.defineProperty(exports, "ArvoErrorSchema", { enumerable: true, get: function () { return schema_2.ArvoErrorSchema; } });
|
38
|
-
Object.defineProperty(exports, "ArvoSemanticVersionSchema", { enumerable: true, get: function () { return schema_2.ArvoSemanticVersionSchema; } });
|
39
|
-
Object.defineProperty(exports, "isValidArvoSemanticVersion", { enumerable: true, get: function () { return schema_2.isValidArvoSemanticVersion; } });
|
40
|
-
var OpenInference_1 = __importDefault(require("./OpenTelemetry/OpenInference"));
|
41
|
-
exports.OpenInference = OpenInference_1.default;
|
42
|
-
var ArvoExecution_1 = __importDefault(require("./OpenTelemetry/ArvoExecution"));
|
43
|
-
exports.ArvoExecution = ArvoExecution_1.default;
|
44
|
-
var types_1 = require("./OpenTelemetry/ArvoExecution/types");
|
45
|
-
Object.defineProperty(exports, "ArvoExecutionSpanKind", { enumerable: true, get: function () { return types_1.ArvoExecutionSpanKind; } });
|
46
|
-
var types_2 = require("./OpenTelemetry/OpenInference/types");
|
47
|
-
Object.defineProperty(exports, "OpenInferenceSpanKind", { enumerable: true, get: function () { return types_2.OpenInferenceSpanKind; } });
|
48
46
|
var ArvoOrchestrationSubject_1 = __importDefault(require("./ArvoOrchestrationSubject"));
|
49
47
|
exports.ArvoOrchestrationSubject = ArvoOrchestrationSubject_1.default;
|
50
|
-
var
|
51
|
-
Object.defineProperty(exports, "ArvoOrchestrationSubjectContentSchema", { enumerable: true, get: function () { return
|
48
|
+
var schema_2 = require("./ArvoOrchestrationSubject/schema");
|
49
|
+
Object.defineProperty(exports, "ArvoOrchestrationSubjectContentSchema", { enumerable: true, get: function () { return schema_2.ArvoOrchestrationSubjectContentSchema; } });
|
52
50
|
var ArvoOrchestratorContract_1 = require("./ArvoOrchestratorContract");
|
53
51
|
Object.defineProperty(exports, "createArvoOrchestratorContract", { enumerable: true, get: function () { return ArvoOrchestratorContract_1.createArvoOrchestratorContract; } });
|
52
|
+
var schema_3 = require("./ArvoOrchestratorContract/schema");
|
54
53
|
var typegen_1 = require("./ArvoOrchestratorContract/typegen");
|
55
54
|
Object.defineProperty(exports, "ArvoOrchestratorEventTypeGen", { enumerable: true, get: function () { return typegen_1.ArvoOrchestratorEventTypeGen; } });
|
56
|
-
var
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
var
|
63
|
-
Object.defineProperty(exports, "
|
64
|
-
var Orchestrator_1 = require("./ArvoEventFactory/Orchestrator");
|
65
|
-
Object.defineProperty(exports, "ArvoOrchestratorEventFactory", { enumerable: true, get: function () { return Orchestrator_1.ArvoOrchestratorEventFactory; } });
|
55
|
+
var ArvoExecution_1 = __importDefault(require("./OpenTelemetry/ArvoExecution"));
|
56
|
+
exports.ArvoExecution = ArvoExecution_1.default;
|
57
|
+
var types_1 = require("./OpenTelemetry/ArvoExecution/types");
|
58
|
+
Object.defineProperty(exports, "ArvoExecutionSpanKind", { enumerable: true, get: function () { return types_1.ArvoExecutionSpanKind; } });
|
59
|
+
var OpenInference_1 = __importDefault(require("./OpenTelemetry/OpenInference"));
|
60
|
+
exports.OpenInference = OpenInference_1.default;
|
61
|
+
var types_2 = require("./OpenTelemetry/OpenInference/types");
|
62
|
+
Object.defineProperty(exports, "OpenInferenceSpanKind", { enumerable: true, get: function () { return types_2.OpenInferenceSpanKind; } });
|
66
63
|
var errors_1 = require("./errors");
|
67
64
|
Object.defineProperty(exports, "ViolationError", { enumerable: true, get: function () { return errors_1.ViolationError; } });
|
65
|
+
var schema_4 = require("./schema");
|
66
|
+
Object.defineProperty(exports, "ArvoErrorSchema", { enumerable: true, get: function () { return schema_4.ArvoErrorSchema; } });
|
67
|
+
Object.defineProperty(exports, "ArvoSemanticVersionSchema", { enumerable: true, get: function () { return schema_4.ArvoSemanticVersionSchema; } });
|
68
|
+
Object.defineProperty(exports, "isValidArvoSemanticVersion", { enumerable: true, get: function () { return schema_4.isValidArvoSemanticVersion; } });
|
68
69
|
/**
|
69
70
|
* Collection of Zod schemas for validating various aspects of Arvo events.
|
70
71
|
* @property {z.ZodObject} CloudEventContextSchema - Schema for core CloudEvent properties.
|
@@ -80,6 +81,6 @@ var ArvoEventSchema = {
|
|
80
81
|
ArvoDataSchema: schema_1.ArvoDataSchema,
|
81
82
|
ArvoExtensionSchema: schema_1.ArvoExtensionSchema,
|
82
83
|
OpenTelemetryExtensionSchema: schema_1.OpenTelemetryExtensionSchema,
|
83
|
-
OrchestrationInitEventBaseSchema:
|
84
|
+
OrchestrationInitEventBaseSchema: schema_3.OrchestrationInitEventBaseSchema,
|
84
85
|
};
|
85
86
|
exports.ArvoEventSchema = ArvoEventSchema;
|
package/dist/schema.js
CHANGED
@@ -19,7 +19,5 @@ exports.ArvoSemanticVersionSchema = zod_1.z
|
|
19
19
|
.regex(/^\d+\.\d+\.\d+$/, 'Invalid version format of the semantic version')
|
20
20
|
.describe('Semantic version of the Arvo component in the format X.Y.Z');
|
21
21
|
// Check is the provided version is a valid arvo semantic version
|
22
|
-
var isValidArvoSemanticVersion = function (version) {
|
23
|
-
return exports.ArvoSemanticVersionSchema.safeParse(version).success;
|
24
|
-
};
|
22
|
+
var isValidArvoSemanticVersion = function (version) { return exports.ArvoSemanticVersionSchema.safeParse(version).success; };
|
25
23
|
exports.isValidArvoSemanticVersion = isValidArvoSemanticVersion;
|
package/dist/types.d.ts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
import
|
3
|
-
import
|
4
|
-
import {
|
5
|
-
import {
|
1
|
+
import type { z } from 'zod';
|
2
|
+
import type { VersionedArvoContract } from './ArvoContract/VersionedArvoContract';
|
3
|
+
import type ArvoEvent from './ArvoEvent';
|
4
|
+
import type { CloudEventExtensionSchema } from './ArvoEvent/schema';
|
5
|
+
import type { ArvoExtension, OpenTelemetryExtension } from './ArvoEvent/types';
|
6
|
+
import type { ArvoErrorSchema } from './schema';
|
6
7
|
/**
|
7
8
|
* Represents a semantic version string following the SemVer format (MAJOR.MINOR.PATCH).
|
8
9
|
*/
|
@@ -56,8 +57,8 @@ export type InferVersionedArvoContract<TVersion extends VersionedArvoContract<an
|
|
56
57
|
version: TVersion['version'];
|
57
58
|
description: TVersion['description'];
|
58
59
|
metadata: TVersion['metadata'];
|
59
|
-
systemError: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['systemError']['schema']>,
|
60
|
-
accepts: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['accepts']['schema']>,
|
60
|
+
systemError: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['systemError']['schema']>, z.infer<typeof CloudEventExtensionSchema>, TVersion['systemError']['type']>>;
|
61
|
+
accepts: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['accepts']['schema']>, z.infer<typeof CloudEventExtensionSchema>, TVersion['accepts']['type']>>;
|
61
62
|
emits: {
|
62
63
|
[K in string & keyof TVersion['emits']]: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['emits'][K]>, Record<string, any>, K>>;
|
63
64
|
};
|
package/dist/utils.d.ts
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
import { VersionedArvoContract } from './ArvoContract/VersionedArvoContract';
|
2
|
-
import
|
3
|
-
import
|
4
|
-
import { ArvoSemanticVersion } from './types';
|
1
|
+
import type { VersionedArvoContract } from './ArvoContract/VersionedArvoContract';
|
2
|
+
import type ArvoEvent from './ArvoEvent';
|
3
|
+
import type { ArvoErrorType, ArvoSemanticVersion } from './types';
|
5
4
|
/**
|
6
5
|
* Cleans a string by removing leading/trailing whitespace from each line,
|
7
6
|
* removing empty lines, and joining the remaining lines with newline characters.
|
@@ -76,6 +75,7 @@ export declare function compareSemanticVersions(version1: ArvoSemanticVersion, v
|
|
76
75
|
* Handles creation and parsing of dataschema identifiers.
|
77
76
|
*/
|
78
77
|
export declare class EventDataschemaUtil {
|
78
|
+
static build<TUri extends string, TVersion extends ArvoSemanticVersion>(uri: TUri, version: TVersion): `${TUri}/${TVersion}`;
|
79
79
|
/**
|
80
80
|
* Creates a dataschema string from a versioned contract.
|
81
81
|
* Format: `{contract.uri}/{contract.version}`
|
@@ -89,13 +89,13 @@ export declare class EventDataschemaUtil {
|
|
89
89
|
* // Returns: "my-contract/1.0.0"
|
90
90
|
* ```
|
91
91
|
*/
|
92
|
-
static create<T extends VersionedArvoContract<any, any>>(contract: T): `${T[
|
92
|
+
static create<T extends VersionedArvoContract<any, any>>(contract: T): `${T["uri"]}/${T["version"]}`;
|
93
93
|
/**
|
94
94
|
* Creates dataschema string with wildcard version.
|
95
95
|
* @param contract Versioned contract
|
96
96
|
* @returns `{contract.uri}/{WildCardArvoSemanticVersion}`
|
97
97
|
*/
|
98
|
-
static createWithWildCardVersion<T extends VersionedArvoContract<any, any>>(contract: T): `${T[
|
98
|
+
static createWithWildCardVersion<T extends VersionedArvoContract<any, any>>(contract: T): `${T["uri"]}/0.0.0`;
|
99
99
|
/**
|
100
100
|
* Extracts URI and version from dataschema string.
|
101
101
|
*
|
@@ -115,5 +115,25 @@ export declare class EventDataschemaUtil {
|
|
115
115
|
uri: string;
|
116
116
|
version: ArvoSemanticVersion;
|
117
117
|
} | null;
|
118
|
+
/**
|
119
|
+
* Validates if a given ArvoEvent or dataschema string represents a valid dataschema.
|
120
|
+
* A valid dataschema must:
|
121
|
+
* - Follow the format {uri}/{version}
|
122
|
+
* - Have a valid semantic version component
|
123
|
+
* - Contain a non-empty URI
|
124
|
+
*
|
125
|
+
* @param data - ArvoEvent object or dataschema string to validate
|
126
|
+
* @returns boolean - True if dataschema is valid, false otherwise
|
127
|
+
*/
|
128
|
+
static isValid(data: ArvoEvent | string): boolean;
|
118
129
|
}
|
130
|
+
/**
|
131
|
+
* Creates a standardized ArvoError payload from an Error object. This utility
|
132
|
+
* ensures consistent error reporting across the event system by extracting and
|
133
|
+
* structuring key error information.
|
134
|
+
*
|
135
|
+
* @param error - The source Error object to convert
|
136
|
+
* @returns ArvoErrorType - The standardized error payload
|
137
|
+
*/
|
138
|
+
export declare const createArvoError: (error: Error) => ArvoErrorType;
|
119
139
|
export {};
|