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
@@ -0,0 +1,10 @@
|
|
1
|
+
{
|
2
|
+
"editor.defaultFormatter": "biomejs.biome",
|
3
|
+
"editor.formatOnSave": true,
|
4
|
+
"editor.codeActionsOnSave": {
|
5
|
+
"quickfix.biome": "explicit"
|
6
|
+
},
|
7
|
+
"typescript.tsdk": "node_modules/typescript/lib",
|
8
|
+
"typescript.enablePromptUseWorkspaceTsdk": true,
|
9
|
+
"typescript.preferences.importModuleSpecifier": "non-relative"
|
10
|
+
}
|
package/CHANGELOG.md
CHANGED
package/biome.json
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
3
|
+
"vcs": {
|
4
|
+
"enabled": false,
|
5
|
+
"clientKind": "git",
|
6
|
+
"useIgnoreFile": false
|
7
|
+
},
|
8
|
+
"files": {
|
9
|
+
"ignoreUnknown": false,
|
10
|
+
"ignore": [
|
11
|
+
"**/dist/**",
|
12
|
+
"**/node_modules/**",
|
13
|
+
"**/.turbo/**",
|
14
|
+
"**/coverage/**",
|
15
|
+
"**/.github/**",
|
16
|
+
"**/docs/**",
|
17
|
+
"*.md"
|
18
|
+
]
|
19
|
+
},
|
20
|
+
"formatter": {
|
21
|
+
"enabled": true,
|
22
|
+
"formatWithErrors": false,
|
23
|
+
"ignore": [],
|
24
|
+
"attributePosition": "auto",
|
25
|
+
"indentStyle": "space",
|
26
|
+
"indentWidth": 2,
|
27
|
+
"lineWidth": 120,
|
28
|
+
"lineEnding": "lf"
|
29
|
+
},
|
30
|
+
"organizeImports": {
|
31
|
+
"enabled": true
|
32
|
+
},
|
33
|
+
"linter": {
|
34
|
+
"enabled": true,
|
35
|
+
"rules": {
|
36
|
+
"recommended": true,
|
37
|
+
"correctness": {
|
38
|
+
"noUnusedImports": "warn"
|
39
|
+
},
|
40
|
+
"suspicious": {
|
41
|
+
"noExplicitAny": "off"
|
42
|
+
}
|
43
|
+
}
|
44
|
+
},
|
45
|
+
"javascript": {
|
46
|
+
"jsxRuntime": "reactClassic",
|
47
|
+
"formatter": {
|
48
|
+
"quoteStyle": "single",
|
49
|
+
"arrowParentheses": "always",
|
50
|
+
"bracketSameLine": false,
|
51
|
+
"bracketSpacing": true,
|
52
|
+
"jsxQuoteStyle": "single",
|
53
|
+
"quoteProperties": "asNeeded",
|
54
|
+
"semicolons": "always",
|
55
|
+
"trailingCommas": "all"
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import { SimpleArvoContract } from './types';
|
1
|
+
import type { z } from 'zod';
|
2
|
+
import type { ArvoSemanticVersion } from '../../types';
|
3
|
+
import type { SimpleArvoContract } from './types';
|
4
4
|
/**
|
5
5
|
* Creates an ArvoContract with standardized naming conventions and a simplified event pattern.
|
6
6
|
* Use this to create contracts with one emit type only.
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
import ArvoContract from '..';
|
3
|
-
import { ArvoSemanticVersion } from '../../types';
|
1
|
+
import type { z } from 'zod';
|
2
|
+
import type ArvoContract from '..';
|
3
|
+
import type { ArvoSemanticVersion } from '../../types';
|
4
4
|
export type SimpleArvoContractEmitType<T extends string> = `evt.${T}.success`;
|
5
5
|
export type SimpleArvoContract<TUri extends string = string, TType extends string = string, TVersions extends Record<ArvoSemanticVersion, {
|
6
6
|
accepts: z.ZodTypeAny;
|
@@ -1,7 +1,9 @@
|
|
1
|
-
import ArvoContract from '..';
|
2
|
-
import { ArvoSemanticVersion } from '../../types';
|
3
|
-
import {
|
4
|
-
import {
|
1
|
+
import type ArvoContract from '..';
|
2
|
+
import type { ArvoSemanticVersion } from '../../types';
|
3
|
+
import { EventDataschemaUtil } from '../../utils';
|
4
|
+
import { WildCardArvoSemanticVersion } from '../WildCardArvoSemanticVersion';
|
5
|
+
import type { ArvoContractRecord } from '../types';
|
6
|
+
import type { IVersionedArvoContract, VersionedArvoContractJSONSchema } from './types';
|
5
7
|
import { transformEmitsToArray } from './utils';
|
6
8
|
/**
|
7
9
|
* Implements a version-specific view of an ArvoContract with type-safe schema validation
|
@@ -17,10 +19,13 @@ export declare class VersionedArvoContract<TContract extends ArvoContract, TVers
|
|
17
19
|
get version(): TVersion;
|
18
20
|
get description(): TContract['description'];
|
19
21
|
get metadata(): TContract['metadata'];
|
20
|
-
get systemError(): TContract['systemError']
|
22
|
+
get systemError(): TContract['systemError'] & {
|
23
|
+
dataschema: ReturnType<typeof EventDataschemaUtil.build<TContract['uri'], typeof WildCardArvoSemanticVersion>>;
|
24
|
+
};
|
21
25
|
get accepts(): ArvoContractRecord<TContract["type"], TContract["versions"][TVersion]["accepts"]>;
|
22
26
|
get emits(): TContract["versions"][TVersion]["emits"];
|
23
27
|
get emitList(): { [K in keyof TContract["versions"][TVersion]["emits"] & string]: ArvoContractRecord<K, TContract["versions"][TVersion]["emits"][K]>; }[keyof TContract["versions"][TVersion]["emits"] & string][];
|
28
|
+
get dataschema(): `${TContract["uri"]}/${TVersion}`;
|
24
29
|
constructor(param: IVersionedArvoContract<TContract, TVersion>);
|
25
30
|
/**
|
26
31
|
* Converts the contract to JSON Schema format
|
@@ -1,12 +1,25 @@
|
|
1
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
|
+
};
|
2
13
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
14
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
15
|
};
|
5
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
17
|
exports.VersionedArvoContract = void 0;
|
7
18
|
var zod_to_json_schema_1 = __importDefault(require("zod-to-json-schema"));
|
8
|
-
var utils_1 = require("./utils");
|
9
19
|
var OpenTelemetry_1 = require("../../OpenTelemetry");
|
20
|
+
var utils_1 = require("../../utils");
|
21
|
+
var WildCardArvoSemanticVersion_1 = require("../WildCardArvoSemanticVersion");
|
22
|
+
var utils_2 = require("./utils");
|
10
23
|
/**
|
11
24
|
* Implements a version-specific view of an ArvoContract with type-safe schema validation
|
12
25
|
* and JSON Schema generation capabilities.
|
@@ -20,7 +33,7 @@ var VersionedArvoContract = /** @class */ (function () {
|
|
20
33
|
schema: param.contract.versions[param.version].accepts,
|
21
34
|
};
|
22
35
|
this._emits = param.contract.versions[param.version].emits;
|
23
|
-
this._emitList = (0,
|
36
|
+
this._emitList = (0, utils_2.transformEmitsToArray)(this.emits);
|
24
37
|
}
|
25
38
|
Object.defineProperty(VersionedArvoContract.prototype, "uri", {
|
26
39
|
get: function () {
|
@@ -52,7 +65,7 @@ var VersionedArvoContract = /** @class */ (function () {
|
|
52
65
|
});
|
53
66
|
Object.defineProperty(VersionedArvoContract.prototype, "systemError", {
|
54
67
|
get: function () {
|
55
|
-
return this._contract.systemError;
|
68
|
+
return __assign(__assign({}, this._contract.systemError), { dataschema: utils_1.EventDataschemaUtil.build(this.uri, WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion) });
|
56
69
|
},
|
57
70
|
enumerable: false,
|
58
71
|
configurable: true
|
@@ -78,6 +91,13 @@ var VersionedArvoContract = /** @class */ (function () {
|
|
78
91
|
enumerable: false,
|
79
92
|
configurable: true
|
80
93
|
});
|
94
|
+
Object.defineProperty(VersionedArvoContract.prototype, "dataschema", {
|
95
|
+
get: function () {
|
96
|
+
return utils_1.EventDataschemaUtil.build(this.uri, this.version);
|
97
|
+
},
|
98
|
+
enumerable: false,
|
99
|
+
configurable: true
|
100
|
+
});
|
81
101
|
/**
|
82
102
|
* Converts the contract to JSON Schema format
|
83
103
|
* @returns Contract specification in JSON Schema format for documentation/serialization
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import zodToJsonSchema from 'zod-to-json-schema';
|
2
|
-
import ArvoContract from '..';
|
3
|
-
import { ArvoSemanticVersion } from '../../types';
|
1
|
+
import type zodToJsonSchema from 'zod-to-json-schema';
|
2
|
+
import type ArvoContract from '..';
|
3
|
+
import type { ArvoSemanticVersion } from '../../types';
|
4
4
|
/**
|
5
5
|
* Represents a version-specific view of an ArvoContract, providing type-safe access
|
6
6
|
* to contract specifications for a particular semantic version. This interface acts as
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import ArvoContract from '..';
|
2
|
-
import { ArvoSemanticVersion } from '../../types';
|
3
|
-
import { ArvoContractRecord } from '../types';
|
1
|
+
import type ArvoContract from '..';
|
2
|
+
import type { ArvoSemanticVersion } from '../../types';
|
3
|
+
import type { ArvoContractRecord } from '../types';
|
4
4
|
export declare const transformEmitsToArray: <T extends ArvoContract, V extends ArvoSemanticVersion>(emitMap: T["versions"][V]["emits"]) => Array<{ [K in keyof T["versions"][V]["emits"] & string]: ArvoContractRecord<K, T["versions"][V]["emits"][K]>; }[keyof T["versions"][V]["emits"] & string]>;
|
@@ -15,7 +15,6 @@ exports.WildCardArvoSemanticVersion = '0.0.0';
|
|
15
15
|
* @returns True if version is the wildcard version, false otherwise
|
16
16
|
*/
|
17
17
|
var isWildCardArvoSematicVersion = function (version) {
|
18
|
-
return (0, schema_1.isValidArvoSemanticVersion)(version) &&
|
19
|
-
version === exports.WildCardArvoSemanticVersion;
|
18
|
+
return (0, schema_1.isValidArvoSemanticVersion)(version) && version === exports.WildCardArvoSemanticVersion;
|
20
19
|
};
|
21
20
|
exports.isWildCardArvoSematicVersion = isWildCardArvoSematicVersion;
|
@@ -1,6 +1,6 @@
|
|
1
|
+
import type { z } from 'zod';
|
1
2
|
import ArvoContract from '.';
|
2
|
-
import { ArvoSemanticVersion } from '../types';
|
3
|
-
import { z } from 'zod';
|
3
|
+
import type { ArvoSemanticVersion } from '../types';
|
4
4
|
/**
|
5
5
|
* Creates a validated ArvoContract instance with full control over event types and schemas.
|
6
6
|
*
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
import { ArvoContractJSONSchema, ArvoContractRecord, IArvoContract } from './types';
|
1
|
+
import type { z } from 'zod';
|
3
2
|
import { ArvoErrorSchema } from '../schema';
|
4
|
-
import { ArvoSemanticVersion } from '../types';
|
3
|
+
import type { ArvoSemanticVersion } from '../types';
|
5
4
|
import { VersionedArvoContract } from './VersionedArvoContract';
|
5
|
+
import type { ArvoContractJSONSchema, ArvoContractRecord, IArvoContract } from './types';
|
6
6
|
/**
|
7
7
|
* Represents a contract with defined input and output schemas for event-driven architectures.
|
8
8
|
* The ArvoContract class provides type-safe validation and versioning capabilities for event handling,
|
@@ -1,11 +1,11 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
var OpenTelemetry_1 = require("../OpenTelemetry");
|
3
4
|
var schema_1 = require("../schema");
|
4
5
|
var utils_1 = require("../utils");
|
5
6
|
var VersionedArvoContract_1 = require("./VersionedArvoContract");
|
6
|
-
var validators_1 = require("./validators");
|
7
7
|
var WildCardArvoSemanticVersion_1 = require("./WildCardArvoSemanticVersion");
|
8
|
-
var
|
8
|
+
var validators_1 = require("./validators");
|
9
9
|
/**
|
10
10
|
* Represents a contract with defined input and output schemas for event-driven architectures.
|
11
11
|
* The ArvoContract class provides type-safe validation and versioning capabilities for event handling,
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
import { ArvoSemanticVersion } from '../types';
|
3
|
-
import { VersionedArvoContractJSONSchema } from './VersionedArvoContract/types';
|
1
|
+
import type { z } from 'zod';
|
2
|
+
import type { ArvoSemanticVersion } from '../types';
|
3
|
+
import type { VersionedArvoContractJSONSchema } from './VersionedArvoContract/types';
|
4
4
|
/**
|
5
5
|
* Represents a record in an Arvo contract, containing a type identifier and its validation schema.
|
6
6
|
*
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import ArvoEvent from '.';
|
2
|
-
import { ArvoEventData, CloudEventExtension, CreateArvoEvent } from './types';
|
2
|
+
import type { ArvoEventData, CloudEventExtension, CreateArvoEvent } from './types';
|
3
3
|
/**
|
4
4
|
* Creates a strongly-typed ArvoEvent with configurable telemetry options.
|
5
5
|
*
|
@@ -4,11 +4,11 @@ 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 uuid_1 = require("uuid");
|
7
8
|
var _1 = __importDefault(require("."));
|
8
9
|
var OpenTelemetry_1 = require("../OpenTelemetry");
|
9
10
|
var utils_1 = require("../utils");
|
10
11
|
var schema_1 = require("./schema");
|
11
|
-
var uuid_1 = require("uuid");
|
12
12
|
/**
|
13
13
|
* Internal generator function for creating instances.
|
14
14
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import type { InferArvoEvent } from '../types';
|
2
|
+
import type { ArvoEventData, ArvoExtension, CloudEventContext, CloudEventExtension, OpenTelemetryExtension } from './types';
|
3
3
|
/**
|
4
4
|
* Represents an ArvoEvent, which extends the CloudEvent specification.
|
5
5
|
*/
|
package/dist/ArvoEvent/index.js
CHANGED
@@ -22,8 +22,8 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
22
22
|
return t;
|
23
23
|
};
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
25
|
-
var schema_1 = require("./schema");
|
26
25
|
var OpenTelemetry_1 = require("../OpenTelemetry");
|
26
|
+
var schema_1 = require("./schema");
|
27
27
|
/**
|
28
28
|
* Represents an ArvoEvent, which extends the CloudEvent specification.
|
29
29
|
*/
|
@@ -50,9 +50,7 @@ var ArvoEvent = /** @class */ (function () {
|
|
50
50
|
this.data = schema_1.ArvoDataSchema.parse(data);
|
51
51
|
var arvoExtension = schema_1.ArvoExtensionSchema.parse(context);
|
52
52
|
var otelExtension = schema_1.OpenTelemetryExtensionSchema.parse(context);
|
53
|
-
this._extensions = __assign(__assign({}, (extensions
|
54
|
-
? schema_1.CloudEventExtensionSchema.parse(extensions)
|
55
|
-
: {})), { to: arvoExtension.to, accesscontrol: arvoExtension.accesscontrol, redirectto: arvoExtension.redirectto, executionunits: arvoExtension.executionunits, traceparent: otelExtension.traceparent, tracestate: otelExtension.tracestate });
|
53
|
+
this._extensions = __assign(__assign({}, (extensions ? schema_1.CloudEventExtensionSchema.parse(extensions) : {})), { to: arvoExtension.to, accesscontrol: arvoExtension.accesscontrol, redirectto: arvoExtension.redirectto, executionunits: arvoExtension.executionunits, traceparent: otelExtension.traceparent, tracestate: otelExtension.tracestate });
|
56
54
|
if (this.datacontenttype === schema_1.ArvoDataContentType) {
|
57
55
|
if (!this._extensions.to) {
|
58
56
|
throw new Error("The ArvoEvent must have a non-empty 'to' field");
|
@@ -195,7 +193,8 @@ var ArvoEvent = /** @class */ (function () {
|
|
195
193
|
* For accessing the basic CloudEvent fields, use `<ArvoEvent>.cloudevent.default`.
|
196
194
|
*/
|
197
195
|
get: function () {
|
198
|
-
var _a = this
|
196
|
+
var _a = this
|
197
|
+
._extensions, traceparent = _a.traceparent, tracestate = _a.tracestate, to = _a.to, redirectto = _a.redirectto, accesscontrol = _a.accesscontrol, executionunits = _a.executionunits, rest = __rest(_a, ["traceparent", "tracestate", "to", "redirectto", "accesscontrol", "executionunits"]);
|
199
198
|
return rest;
|
200
199
|
},
|
201
200
|
enumerable: false,
|
@@ -21,20 +21,20 @@ export declare const CloudEventContextSchema: z.ZodObject<{
|
|
21
21
|
}, "strip", z.ZodTypeAny, {
|
22
22
|
type: string;
|
23
23
|
id: string;
|
24
|
+
time: string;
|
24
25
|
source: string;
|
25
26
|
specversion: "1.0";
|
26
27
|
subject: string;
|
27
28
|
datacontenttype: string;
|
28
29
|
dataschema: string | null;
|
29
|
-
time: string;
|
30
30
|
}, {
|
31
31
|
type: string;
|
32
32
|
id: string;
|
33
|
+
time: string;
|
33
34
|
source: string;
|
34
35
|
specversion: string;
|
35
36
|
subject: string;
|
36
37
|
dataschema: string | null;
|
37
|
-
time: string;
|
38
38
|
datacontenttype?: string | undefined;
|
39
39
|
}>;
|
40
40
|
/**
|
package/dist/ArvoEvent/schema.js
CHANGED
@@ -16,10 +16,7 @@ exports.ArvoDataContentType = 'application/cloudevents+json;charset=UTF-8;profil
|
|
16
16
|
*/
|
17
17
|
exports.CloudEventContextSchema = zod_1.z
|
18
18
|
.object({
|
19
|
-
id: zod_1.z
|
20
|
-
.string()
|
21
|
-
.min(1, 'ID must be a non-empty string')
|
22
|
-
.describe('Unique identifier of the event.'),
|
19
|
+
id: zod_1.z.string().min(1, 'ID must be a non-empty string').describe('Unique identifier of the event.'),
|
23
20
|
time: zod_1.z
|
24
21
|
.string()
|
25
22
|
.datetime({ offset: true })
|
@@ -47,10 +44,7 @@ exports.CloudEventContextSchema = zod_1.z
|
|
47
44
|
datacontenttype: zod_1.z
|
48
45
|
.string()
|
49
46
|
.min(1, 'Data content type must be a non-empty string')
|
50
|
-
.refine(function (val) {
|
51
|
-
return Boolean(val === null || val === void 0 ? void 0 : val.includes('application/cloudevents+json')) ||
|
52
|
-
Boolean(val === null || val === void 0 ? void 0 : val.includes('application/json'));
|
53
|
-
}, (0, utils_1.cleanString)("\n The content type must be a valid JSON e.g. it must contain \n 'application/cloudevents+json' or 'application/json'. \n Arvo recommends using '".concat(exports.ArvoDataContentType, "'\n ")))
|
47
|
+
.refine(function (val) { return Boolean(val === null || val === void 0 ? void 0 : val.includes('application/cloudevents+json')) || Boolean(val === null || val === void 0 ? void 0 : val.includes('application/json')); }, (0, utils_1.cleanString)("\n The content type must be a valid JSON e.g. it must contain \n 'application/cloudevents+json' or 'application/json'. \n Arvo recommends using '".concat(exports.ArvoDataContentType, "'\n ")))
|
54
48
|
.default(exports.ArvoDataContentType)
|
55
49
|
.describe('Content type of the data value. Must adhere to RFC 2046 format if present.'),
|
56
50
|
dataschema: zod_1.z
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
import {
|
1
|
+
import type { z } from 'zod';
|
2
|
+
import type { ArvoDataSchema, ArvoExtensionSchema, CloudEventContextSchema, CloudEventExtensionSchema, OpenTelemetryExtensionSchema } from './schema';
|
3
3
|
/**
|
4
4
|
* Represents the core properties of a CloudEvent.
|
5
5
|
*/
|
@@ -1,7 +1,7 @@
|
|
1
|
+
import type { z } from 'zod';
|
1
2
|
import ArvoEventFactory from '.';
|
2
|
-
import {
|
3
|
-
import { CreateArvoEvent } from '../ArvoEvent/types';
|
4
|
-
import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
3
|
+
import type { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
4
|
+
import type { CreateArvoEvent } from '../ArvoEvent/types';
|
5
5
|
/**
|
6
6
|
* Factory class for creating and validating orchestrator-specific events with managed subject hierarchies.
|
7
7
|
* Extends ArvoEventFactory with parent-child subject relationship handling and orchestration flows.
|
@@ -33,9 +33,9 @@ exports.ArvoOrchestratorEventFactory = void 0;
|
|
33
33
|
var _1 = __importDefault(require("."));
|
34
34
|
var helpers_1 = require("../ArvoEvent/helpers");
|
35
35
|
var schema_1 = require("../ArvoEvent/schema");
|
36
|
+
var ArvoOrchestrationSubject_1 = __importDefault(require("../ArvoOrchestrationSubject"));
|
36
37
|
var OpenTelemetry_1 = require("../OpenTelemetry");
|
37
38
|
var utils_1 = require("../utils");
|
38
|
-
var ArvoOrchestrationSubject_1 = __importDefault(require("../ArvoOrchestrationSubject"));
|
39
39
|
var utils_2 = require("./utils");
|
40
40
|
/**
|
41
41
|
* Factory class for creating and validating orchestrator-specific events with managed subject hierarchies.
|
@@ -54,7 +54,7 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
54
54
|
var _this = this;
|
55
55
|
var _a;
|
56
56
|
if (((_a = contract.metadata) === null || _a === void 0 ? void 0 : _a.contractType) !== 'ArvoOrchestratorContract') {
|
57
|
-
throw new Error(
|
57
|
+
throw new Error('This factory can only be used for ArvoOrchestratorContract');
|
58
58
|
}
|
59
59
|
_this = _super.call(this, contract) || this;
|
60
60
|
_this._name = 'ArvoOrchestratorEventFactory';
|
@@ -90,8 +90,7 @@ var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
|
90
90
|
subject: parentSubject,
|
91
91
|
version: _this.contract.version,
|
92
92
|
meta: Object.fromEntries(Object.entries({
|
93
|
-
redirectto: (_a = event.redirectto) !== null && _a !== void 0 ? _a : ArvoOrchestrationSubject_1.default.parse(parentSubject).execution
|
94
|
-
.initiator,
|
93
|
+
redirectto: (_a = event.redirectto) !== null && _a !== void 0 ? _a : ArvoOrchestrationSubject_1.default.parse(parentSubject).execution.initiator,
|
95
94
|
}).filter(function (item) { return Boolean(item[1]); })),
|
96
95
|
})
|
97
96
|
: ArvoOrchestrationSubject_1.default.new({
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import ArvoEventFactory from '.';
|
2
|
-
import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
2
|
+
import type { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
3
3
|
import { ArvoOrchestratorEventFactory } from './Orchestrator';
|
4
4
|
/**
|
5
5
|
* Creates an ArvoEventFactory for a specific version of a contract.
|
@@ -19,7 +19,9 @@ var Orchestrator_1 = require("./Orchestrator");
|
|
19
19
|
* const factory = createArvoEventFactory(v1Contract);
|
20
20
|
* ```
|
21
21
|
*/
|
22
|
-
var createArvoEventFactory = function (contract) {
|
22
|
+
var createArvoEventFactory = function (contract) {
|
23
|
+
return new _1.default(contract);
|
24
|
+
};
|
23
25
|
exports.createArvoEventFactory = createArvoEventFactory;
|
24
26
|
/**
|
25
27
|
* Creates an ArvoOrchestratorEventFactory instance for handling orchestration events.
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
import {
|
3
|
-
import {
|
1
|
+
import type { z } from 'zod';
|
2
|
+
import type { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
3
|
+
import type { CreateArvoEvent } from '../ArvoEvent/types';
|
4
4
|
/**
|
5
5
|
* Factory class for creating and validating events based on a versioned Arvo contract.
|
6
6
|
* Handles event creation, validation, and OpenTelemetry integration for a specific
|
@@ -152,14 +152,10 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
152
152
|
name: "".concat(this._name, ".systemError"),
|
153
153
|
spanOptions: (0, utils_2.createSpanOptions)(this.contract),
|
154
154
|
fn: function (span) {
|
155
|
-
var _a, _b, _c, _d
|
155
|
+
var _a, _b, _c, _d;
|
156
156
|
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
157
157
|
var error = event.error, _event = __rest(event, ["error"]);
|
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: {
|
159
|
-
errorName: error.name,
|
160
|
-
errorMessage: error.message,
|
161
|
-
errorStack: (_e = error.stack) !== null && _e !== void 0 ? _e : null,
|
162
|
-
}, datacontenttype: schema_1.ArvoDataContentType, dataschema: utils_1.EventDataschemaUtil.createWithWildCardVersion(_this.contract) }), extensions, { disable: true });
|
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: (0, utils_1.createArvoError)(error), datacontenttype: schema_1.ArvoDataContentType, dataschema: utils_1.EventDataschemaUtil.createWithWildCardVersion(_this.contract) }), extensions, { disable: true });
|
163
159
|
span.setAttributes(generatedEvent.otelAttributes);
|
164
160
|
return generatedEvent;
|
165
161
|
},
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { SpanKind } from '@opentelemetry/api';
|
2
|
-
import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
2
|
+
import type { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
3
3
|
import { ArvoExecutionSpanKind } from '../OpenTelemetry/ArvoExecution/types';
|
4
4
|
import { OpenInferenceSpanKind } from '../OpenTelemetry/OpenInference/types';
|
5
5
|
export declare const createSpanOptions: (contract: VersionedArvoContract<any, any>) => {
|
@@ -6,8 +6,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.createSpanOptions = void 0;
|
7
7
|
var api_1 = require("@opentelemetry/api");
|
8
8
|
var ArvoExecution_1 = __importDefault(require("../OpenTelemetry/ArvoExecution"));
|
9
|
-
var OpenInference_1 = __importDefault(require("../OpenTelemetry/OpenInference"));
|
10
9
|
var types_1 = require("../OpenTelemetry/ArvoExecution/types");
|
10
|
+
var OpenInference_1 = __importDefault(require("../OpenTelemetry/OpenInference"));
|
11
11
|
var types_2 = require("../OpenTelemetry/OpenInference/types");
|
12
12
|
var createSpanOptions = function (contract) {
|
13
13
|
var _a;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import type { ArvoSemanticVersion } from '../types';
|
2
|
+
import type { ArvoOrchestrationSubjectContent } from './type';
|
3
3
|
/**
|
4
4
|
* Handles the creation and parsing of Arvo orchestration subjects.
|
5
5
|
*/
|
@@ -120,4 +120,19 @@ export default class ArvoOrchestrationSubject {
|
|
120
120
|
* ```
|
121
121
|
*/
|
122
122
|
static parse(subject: string): ArvoOrchestrationSubjectContent;
|
123
|
+
/**
|
124
|
+
* Validates if a string represents a valid Arvo orchestration subject.
|
125
|
+
* A valid subject must:
|
126
|
+
* - Be base64 encoded
|
127
|
+
* - Contain zlib-compressed JSON data
|
128
|
+
* - Match the ArvoOrchestrationSubjectContent schema when decoded
|
129
|
+
* - Include valid orchestrator and execution details
|
130
|
+
*
|
131
|
+
* Use this method for validating subjects before processing them in
|
132
|
+
* orchestration workflows or when receiving subjects from external sources.
|
133
|
+
*
|
134
|
+
* @param data - The string to validate as an orchestration subject
|
135
|
+
* @returns boolean - True if string is a valid orchestration subject, false otherwise
|
136
|
+
*/
|
137
|
+
static isValid(data: string): boolean;
|
123
138
|
}
|