arvo-core 2.0.10 → 2.1.0
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/CHANGELOG.md +4 -0
- package/dist/ArvoContract/SimpleArvoContract/index.d.ts +55 -0
- package/dist/ArvoContract/SimpleArvoContract/index.js +81 -0
- package/dist/ArvoContract/SimpleArvoContract/types.d.ts +20 -0
- package/dist/ArvoContract/VersionedArvoContract/index.d.ts +32 -0
- package/dist/ArvoContract/VersionedArvoContract/index.js +120 -0
- package/dist/ArvoContract/VersionedArvoContract/types.d.ts +44 -0
- package/dist/ArvoContract/VersionedArvoContract/types.js +2 -0
- package/dist/ArvoContract/VersionedArvoContract/utils.d.ts +4 -0
- package/dist/ArvoContract/VersionedArvoContract/utils.js +13 -0
- package/dist/ArvoContract/WildCardArvoSemanticVersion.d.ts +14 -0
- package/dist/ArvoContract/WildCardArvoSemanticVersion.js +21 -0
- package/dist/ArvoContract/helpers.d.ts +18 -106
- package/dist/ArvoContract/helpers.js +29 -134
- package/dist/ArvoContract/index.d.ts +28 -29
- package/dist/ArvoContract/index.js +86 -57
- package/dist/ArvoContract/types.d.ts +14 -37
- package/dist/ArvoEvent/helpers.d.ts +3 -36
- package/dist/ArvoEvent/helpers.js +4 -52
- package/dist/ArvoEvent/index.d.ts +5 -39
- package/dist/ArvoEvent/index.js +5 -39
- package/dist/ArvoEvent/schema.d.ts +2 -2
- package/dist/ArvoEventFactory/helpers.d.ts +1 -29
- package/dist/ArvoEventFactory/helpers.js +1 -41
- package/dist/ArvoEventFactory/index.d.ts +3 -14
- package/dist/ArvoEventFactory/index.js +5 -17
- package/dist/ArvoOrchestrationSubject/index.d.ts +2 -7
- package/dist/ArvoOrchestrationSubject/index.js +5 -9
- package/dist/ArvoOrchestrationSubject/schema.d.ts +4 -4
- package/dist/ArvoOrchestratorContract/index.d.ts +4 -13
- package/dist/ArvoOrchestratorContract/index.js +32 -23
- package/dist/ArvoOrchestratorContract/typegen.d.ts +8 -0
- package/dist/ArvoOrchestratorContract/typegen.js +10 -0
- package/dist/ArvoOrchestratorContract/types.d.ts +28 -35
- package/dist/index.d.ts +13 -8
- package/dist/index.js +10 -3
- package/dist/schema.d.ts +3 -2
- package/dist/schema.js +6 -1
- package/dist/types.d.ts +28 -148
- package/dist/utils.d.ts +48 -0
- package/dist/utils.js +70 -1
- package/package.json +1 -1
- package/dist/ArvoContract/VersionedArvoContract.d.ts +0 -39
- /package/dist/ArvoContract/{VersionedArvoContract.js → SimpleArvoContract/types.js} +0 -0
@@ -3,29 +3,32 @@ 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.
|
6
|
+
exports.createArvoContract = void 0;
|
7
7
|
var _1 = __importDefault(require("."));
|
8
8
|
var typegen_1 = require("../ArvoOrchestratorContract/typegen");
|
9
9
|
var utils_1 = require("../utils");
|
10
|
-
var validators_1 = require("./validators");
|
11
|
-
var schema_1 = require("../schema");
|
12
|
-
var ArvoOrchestrationSubject_1 = __importDefault(require("../ArvoOrchestrationSubject"));
|
13
10
|
/**
|
14
|
-
* Creates
|
11
|
+
* Creates a validated ArvoContract instance with full control over event types and schemas.
|
15
12
|
*
|
16
|
-
* @
|
17
|
-
*
|
18
|
-
* @throws {Error} If
|
19
|
-
* @throws {Error} If
|
20
|
-
*
|
13
|
+
* @param contract - Contract specification object
|
14
|
+
*
|
15
|
+
* @throws {Error} If the event types contain reserved prefix ({@link ArvoOrchestratorEventTypeGen})
|
16
|
+
* @throws {Error} If any of the ArvoContract's internal validations fail. See {@link ArvoContract}
|
17
|
+
*
|
18
|
+
* @returns A fully typed and validated ArvoContract instance
|
21
19
|
*
|
22
20
|
* @example
|
23
21
|
* ```typescript
|
24
22
|
* const contract = createArvoContract({
|
25
23
|
* uri: 'com.example.contract',
|
26
24
|
* type: 'input.event',
|
25
|
+
* description: "Some example contract",
|
26
|
+
* metadata: {
|
27
|
+
* owner: 'team-a',
|
28
|
+
* priority: 'high'
|
29
|
+
* },
|
27
30
|
* versions: {
|
28
|
-
* '0.0
|
31
|
+
* '1.0.0': {
|
29
32
|
* accepts: z.object({ data: z.string() }),
|
30
33
|
* emits: {
|
31
34
|
* 'output.event': z.object({ result: z.number() })
|
@@ -35,138 +38,30 @@ var ArvoOrchestrationSubject_1 = __importDefault(require("../ArvoOrchestrationSu
|
|
35
38
|
* });
|
36
39
|
* ```
|
37
40
|
*/
|
38
|
-
var createArvoContract = function (contract
|
39
|
-
|
41
|
+
var createArvoContract = function (contract) {
|
42
|
+
var _a, _b;
|
40
43
|
var createErrorMessage = function (source, type, version) {
|
41
44
|
var versionString = version ? ", version=".concat(version) : '';
|
42
45
|
return (0, utils_1.cleanString)("\n In contract (uri=".concat(contract.uri).concat(versionString, "), the '").concat(source, "' event (type=").concat(type, ") must not start\n with '").concat(typegen_1.ArvoOrchestratorEventTypeGen.prefix, "' because this is a reserved pattern\n for Arvo orchestrators.\n "));
|
43
46
|
};
|
44
|
-
|
45
|
-
return !isOrchestrationContract &&
|
46
|
-
value.startsWith(typegen_1.ArvoOrchestratorEventTypeGen.prefix);
|
47
|
-
};
|
48
|
-
if (isReservedPrefix(contract.type)) {
|
47
|
+
if (typegen_1.ArvoOrchestratorEventTypeGen.isOrchestratorEventType(contract.type)) {
|
49
48
|
throw new Error(createErrorMessage('accepts', contract.type, null));
|
50
49
|
}
|
51
|
-
|
52
|
-
|
53
|
-
var
|
54
|
-
|
55
|
-
|
56
|
-
throw new Error("The version cannot be ".concat(ArvoOrchestrationSubject_1.default.WildCardMachineVersion));
|
57
|
-
}
|
58
|
-
for (var _c = 0, _d = Object.keys(versionContract.emits); _c < _d.length; _c++) {
|
59
|
-
var emitType = _d[_c];
|
60
|
-
validators_1.ArvoContractValidators.record.type.parse(emitType);
|
61
|
-
if (isReservedPrefix(emitType)) {
|
50
|
+
for (var _i = 0, _c = Object.entries(contract.versions); _i < _c.length; _i++) {
|
51
|
+
var _d = _c[_i], version = _d[0], versionContract = _d[1];
|
52
|
+
for (var _e = 0, _f = Object.keys(versionContract['emits']); _e < _f.length; _e++) {
|
53
|
+
var emitType = _f[_e];
|
54
|
+
if (typegen_1.ArvoOrchestratorEventTypeGen.isOrchestratorEventType(emitType)) {
|
62
55
|
throw new Error(createErrorMessage('emits', emitType, version));
|
63
56
|
}
|
64
57
|
}
|
65
58
|
}
|
66
|
-
return new _1.default(
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
* - Accept types are prefixed with "com."
|
73
|
-
* - Emit types are prefixed with "evt." and suffixed with ".success"
|
74
|
-
*
|
75
|
-
* @template TUri - The URI type for the contract
|
76
|
-
* @template TType - The base type name (without prefixes) for the contract
|
77
|
-
* @template TVersions - Record of versions containing accept and emit schemas
|
78
|
-
*
|
79
|
-
* @param param - The configuration object for creating the contract
|
80
|
-
* @param param.uri - The URI identifying the contract
|
81
|
-
* @param param.type - The base type name (will be prefixed with "com.")
|
82
|
-
* @param param.versions - Version-specific schema definitions
|
83
|
-
* @param param.versions[version].accepts - Zod schema for validating incoming events
|
84
|
-
* @param param.versions[version].emits - Zod schema for validating outgoing events
|
85
|
-
*
|
86
|
-
* @returns An ArvoContract instance with standardized type formatting:
|
87
|
-
* - Accept type will be "com.[type]"
|
88
|
-
* - Emit type will be "evt.[type].success"
|
89
|
-
*
|
90
|
-
* @example
|
91
|
-
* ```typescript
|
92
|
-
* const contract = createSimpleArvoContract({
|
93
|
-
* uri: 'example.com/contracts/processor',
|
94
|
-
* type: 'document.process',
|
95
|
-
* versions: {
|
96
|
-
* '1.0.0': {
|
97
|
-
* accepts: z.object({
|
98
|
-
* documentId: z.string(),
|
99
|
-
* options: z.object({ format: z.string() })
|
100
|
-
* }),
|
101
|
-
* emits: z.object({
|
102
|
-
* processedDocument: z.string(),
|
103
|
-
* metadata: z.object({ size: z.number() })
|
104
|
-
* })
|
105
|
-
* }
|
106
|
-
* }
|
107
|
-
* });
|
108
|
-
*
|
109
|
-
* // Results in a contract where:
|
110
|
-
* // - Accept type is "com.document.process"
|
111
|
-
* // - Emit type is "evt.document.process.success"
|
112
|
-
* ```
|
113
|
-
*
|
114
|
-
* @example
|
115
|
-
* ```typescript
|
116
|
-
* // Multiple versions example
|
117
|
-
* const contract = createSimpleArvoContract({
|
118
|
-
* uri: 'api.example/contracts/user',
|
119
|
-
* type: 'user.create',
|
120
|
-
* versions: {
|
121
|
-
* '1.0.0': {
|
122
|
-
* accepts: z.object({ name: z.string() }),
|
123
|
-
* emits: z.object({ id: z.string() })
|
124
|
-
* },
|
125
|
-
* '2.0.0': {
|
126
|
-
* accepts: z.object({
|
127
|
-
* name: z.string(),
|
128
|
-
* email: z.string().email()
|
129
|
-
* }),
|
130
|
-
* emits: z.object({
|
131
|
-
* id: z.string(),
|
132
|
-
* created: z.date()
|
133
|
-
* })
|
134
|
-
* }
|
135
|
-
* }
|
136
|
-
* });
|
137
|
-
* ```
|
138
|
-
*
|
139
|
-
* @remarks
|
140
|
-
* This function simplifies contract creation by:
|
141
|
-
* 1. Automatically prefixing accept types with "com."
|
142
|
-
* 2. Creating a single emit type prefixed with "evt." and suffixed with ".success"
|
143
|
-
* 3. Maintaining type safety and schema validation
|
144
|
-
*
|
145
|
-
* Use this when you have a simple contract pattern with:
|
146
|
-
* - A single accept type
|
147
|
-
* - A single success emit type
|
148
|
-
* - Standard type naming conventions
|
149
|
-
*
|
150
|
-
* For more complex contracts with multiple emit types or custom type naming,
|
151
|
-
* use {@link createArvoContract} instead.
|
152
|
-
*/
|
153
|
-
var createSimpleArvoContract = function (param) {
|
154
|
-
return (0, exports.createArvoContract)({
|
155
|
-
uri: param.uri,
|
156
|
-
type: "com.".concat(param.type),
|
157
|
-
versions: Object.fromEntries(Object.entries(param.versions).map(function (_a) {
|
158
|
-
var _b;
|
159
|
-
var version = _a[0], contract = _a[1];
|
160
|
-
return [
|
161
|
-
version,
|
162
|
-
{
|
163
|
-
accepts: contract.accepts,
|
164
|
-
emits: (_b = {},
|
165
|
-
_b["evt.".concat(param.type, ".success")] = contract.emits,
|
166
|
-
_b),
|
167
|
-
},
|
168
|
-
];
|
169
|
-
})),
|
59
|
+
return new _1.default({
|
60
|
+
uri: contract.uri,
|
61
|
+
type: contract.type,
|
62
|
+
description: (_a = contract.description) !== null && _a !== void 0 ? _a : null,
|
63
|
+
metadata: (_b = contract.metadata) !== null && _b !== void 0 ? _b : {},
|
64
|
+
versions: contract.versions,
|
170
65
|
});
|
171
66
|
};
|
172
|
-
exports.
|
67
|
+
exports.createArvoContract = createArvoContract;
|
@@ -8,21 +8,27 @@ import { VersionedArvoContract } from './VersionedArvoContract';
|
|
8
8
|
* The ArvoContract class provides type-safe validation and versioning capabilities for event handling,
|
9
9
|
* ensuring consistency in message passing between different parts of the system.
|
10
10
|
*
|
11
|
-
* @template TUri - The URI identifier for the contract, must be a string type
|
12
|
-
* @template TType - The accept type for the contract, must be a string type
|
13
|
-
* @template TVersions - Record of versioned schemas defining contract structure per version
|
14
|
-
*
|
15
11
|
* @example
|
16
12
|
* ```typescript
|
17
13
|
* const contract = createArvoContract({
|
18
14
|
* uri: '#/my/service/data',
|
19
15
|
* type: 'com.process.data',
|
16
|
+
* description: 'An example contract',
|
17
|
+
* metadata: {
|
18
|
+
* visibility: "public"
|
19
|
+
* }
|
20
20
|
* versions: {
|
21
21
|
* '1.0.0': {
|
22
22
|
* accepts: z.object({ data: z.string() }),
|
23
23
|
* emits: {
|
24
24
|
* 'data.processed': z.object({ result: z.string() })
|
25
25
|
* }
|
26
|
+
* },
|
27
|
+
* '2.0.0': {
|
28
|
+
* accepts: z.object({ data: z.number() }),
|
29
|
+
* emits: {
|
30
|
+
* 'data.processed': z.object({ result: z.number() })
|
31
|
+
* }
|
26
32
|
* }
|
27
33
|
* }
|
28
34
|
* });
|
@@ -34,25 +40,30 @@ export default class ArvoContract<TUri extends string = string, TType extends st
|
|
34
40
|
}> = Record<ArvoSemanticVersion, {
|
35
41
|
accepts: z.ZodTypeAny;
|
36
42
|
emits: Record<string, z.ZodTypeAny>;
|
37
|
-
}>> {
|
43
|
+
}>, TMetaData extends Record<string, any> = Record<string, any>> {
|
38
44
|
private readonly _uri;
|
39
45
|
private readonly _type;
|
40
46
|
private readonly _versions;
|
41
|
-
readonly
|
42
|
-
|
43
|
-
/**
|
44
|
-
* Gets the URI of the contract.
|
45
|
-
*/
|
47
|
+
private readonly _description;
|
48
|
+
private readonly _metadata;
|
46
49
|
get uri(): TUri;
|
47
|
-
/**
|
48
|
-
* Get the type of the event the handler
|
49
|
-
* bound to the contract accepts
|
50
|
-
*/
|
51
50
|
get type(): TType;
|
51
|
+
get versions(): TVersions;
|
52
|
+
get description(): string | null;
|
53
|
+
get metadata(): TMetaData;
|
52
54
|
/**
|
53
|
-
*
|
55
|
+
* Creates a new ArvoContract instance with validated parameters.
|
56
|
+
*
|
57
|
+
* @param params - Contract configuration parameters
|
58
|
+
*
|
59
|
+
* @throws {Error} When URI format is invalid
|
60
|
+
* @throws {Error} When event type format is invalid
|
61
|
+
* @throws {Error} When version string is not valid semantic version
|
62
|
+
* @throws {Error} When version is a reserved wildcard version
|
63
|
+
* @throws {Error} When emit type format is invalid
|
64
|
+
* @throws {Error} When no versions are provided
|
54
65
|
*/
|
55
|
-
|
66
|
+
constructor(params: IArvoContract<TUri, TType, TVersions, TMetaData>);
|
56
67
|
/**
|
57
68
|
* Gets the system error event specification for this contract.
|
58
69
|
* System errors follow a standardized format to handle exceptional conditions
|
@@ -73,9 +84,6 @@ export default class ArvoContract<TUri extends string = string, TType extends st
|
|
73
84
|
/**
|
74
85
|
* Retrieves a specific version of the contract or resolves special version identifiers.
|
75
86
|
*
|
76
|
-
* @template V - Type parameter constrained to valid semantic versions in TVersions
|
77
|
-
* @template S - Type parameter for special version identifiers
|
78
|
-
*
|
79
87
|
* @param option - Version identifier or special version string
|
80
88
|
* - Specific version (e.g., "1.0.0")
|
81
89
|
* - "latest" or "any" for the most recent version
|
@@ -85,30 +93,21 @@ export default class ArvoContract<TUri extends string = string, TType extends st
|
|
85
93
|
*
|
86
94
|
* @throws {Error} When an invalid or non-existent version is requested
|
87
95
|
*/
|
88
|
-
version<V extends ArvoSemanticVersion & keyof TVersions
|
96
|
+
version<V extends (ArvoSemanticVersion & keyof TVersions) | 'any' | 'latest' | 'oldest'>(option: V): V extends ArvoSemanticVersion & keyof TVersions ? VersionedArvoContract<typeof this, V, TMetaData> : VersionedArvoContract<any, any, any>;
|
89
97
|
/**
|
90
98
|
* Retrieves version numbers in sorted order based on semantic versioning rules.
|
91
|
-
*
|
92
|
-
* @param ordering - Sort direction for versions
|
93
|
-
* - 'ASC' - Ascending order (oldest to newest)
|
94
|
-
* - 'DESC' - Descending order (newest to oldest)
|
95
|
-
*
|
96
99
|
* @returns Array of semantic versions sorted according to specified ordering
|
97
100
|
*/
|
98
101
|
getSortedVersionNumbers(ordering: 'ASC' | 'DESC'): `${number}.${number}.${number}`[];
|
99
102
|
/**
|
100
103
|
* Exports the ArvoContract instance as a plain object conforming to the IArvoContract interface.
|
101
104
|
* This method can be used to serialize the contract or to create a new instance with the same parameters.
|
102
|
-
*
|
103
|
-
* @returns An object representing the contract, including its URI, accepts, and emits properties.
|
104
105
|
*/
|
105
106
|
export(): IArvoContract<TUri, TType, TVersions>;
|
106
107
|
/**
|
107
108
|
* Converts the ArvoContract instance to a JSON Schema representation.
|
108
109
|
* This method provides a way to represent the contract's structure and validation rules
|
109
110
|
* in a format that conforms to the JSON Schema specification.
|
110
|
-
*
|
111
|
-
* @returns An object representing the contract in JSON Schema format:
|
112
111
|
*/
|
113
112
|
toJsonSchema(): ArvoContractJSONSchema;
|
114
113
|
}
|
@@ -1,48 +1,80 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
var zod_to_json_schema_1 = require("zod-to-json-schema");
|
4
3
|
var schema_1 = require("../schema");
|
5
4
|
var utils_1 = require("../utils");
|
5
|
+
var VersionedArvoContract_1 = require("./VersionedArvoContract");
|
6
|
+
var validators_1 = require("./validators");
|
7
|
+
var WildCardArvoSemanticVersion_1 = require("./WildCardArvoSemanticVersion");
|
8
|
+
var OpenTelemetry_1 = require("../OpenTelemetry");
|
6
9
|
/**
|
7
10
|
* Represents a contract with defined input and output schemas for event-driven architectures.
|
8
11
|
* The ArvoContract class provides type-safe validation and versioning capabilities for event handling,
|
9
12
|
* ensuring consistency in message passing between different parts of the system.
|
10
13
|
*
|
11
|
-
* @template TUri - The URI identifier for the contract, must be a string type
|
12
|
-
* @template TType - The accept type for the contract, must be a string type
|
13
|
-
* @template TVersions - Record of versioned schemas defining contract structure per version
|
14
|
-
*
|
15
14
|
* @example
|
16
15
|
* ```typescript
|
17
16
|
* const contract = createArvoContract({
|
18
17
|
* uri: '#/my/service/data',
|
19
18
|
* type: 'com.process.data',
|
19
|
+
* description: 'An example contract',
|
20
|
+
* metadata: {
|
21
|
+
* visibility: "public"
|
22
|
+
* }
|
20
23
|
* versions: {
|
21
24
|
* '1.0.0': {
|
22
25
|
* accepts: z.object({ data: z.string() }),
|
23
26
|
* emits: {
|
24
27
|
* 'data.processed': z.object({ result: z.string() })
|
25
28
|
* }
|
29
|
+
* },
|
30
|
+
* '2.0.0': {
|
31
|
+
* accepts: z.object({ data: z.number() }),
|
32
|
+
* emits: {
|
33
|
+
* 'data.processed': z.object({ result: z.number() })
|
34
|
+
* }
|
26
35
|
* }
|
27
36
|
* }
|
28
37
|
* });
|
29
38
|
* ```
|
30
39
|
*/
|
31
40
|
var ArvoContract = /** @class */ (function () {
|
41
|
+
/**
|
42
|
+
* Creates a new ArvoContract instance with validated parameters.
|
43
|
+
*
|
44
|
+
* @param params - Contract configuration parameters
|
45
|
+
*
|
46
|
+
* @throws {Error} When URI format is invalid
|
47
|
+
* @throws {Error} When event type format is invalid
|
48
|
+
* @throws {Error} When version string is not valid semantic version
|
49
|
+
* @throws {Error} When version is a reserved wildcard version
|
50
|
+
* @throws {Error} When emit type format is invalid
|
51
|
+
* @throws {Error} When no versions are provided
|
52
|
+
*/
|
32
53
|
function ArvoContract(params) {
|
33
54
|
var _a;
|
34
55
|
this._uri = params.uri;
|
35
56
|
this._type = params.type;
|
36
57
|
this._versions = params.versions;
|
37
|
-
this.
|
58
|
+
this._description = (_a = params.description) !== null && _a !== void 0 ? _a : null;
|
59
|
+
this._metadata = params.metadata;
|
60
|
+
validators_1.ArvoContractValidators.contract.uri.parse(params.uri);
|
61
|
+
validators_1.ArvoContractValidators.record.type.parse(params.type);
|
62
|
+
for (var _i = 0, _b = Object.entries(params.versions); _i < _b.length; _i++) {
|
63
|
+
var _c = _b[_i], version = _c[0], versionContract = _c[1];
|
64
|
+
schema_1.ArvoSemanticVersionSchema.parse(version);
|
65
|
+
if ((0, WildCardArvoSemanticVersion_1.isWildCardArvoSematicVersion)(version)) {
|
66
|
+
throw new Error("For contract (uri=".concat(params.uri, "), the version cannot be '").concat(WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion, "'. It is a reserved version type."));
|
67
|
+
}
|
68
|
+
for (var _d = 0, _e = Object.keys(versionContract.emits); _d < _e.length; _d++) {
|
69
|
+
var emitType = _e[_d];
|
70
|
+
validators_1.ArvoContractValidators.record.type.parse(emitType);
|
71
|
+
}
|
72
|
+
}
|
38
73
|
if (!Object.keys(this._versions).length) {
|
39
74
|
throw new Error("An ArvoContract (uri=".concat(this._uri, ") must have at least one version"));
|
40
75
|
}
|
41
76
|
}
|
42
77
|
Object.defineProperty(ArvoContract.prototype, "uri", {
|
43
|
-
/**
|
44
|
-
* Gets the URI of the contract.
|
45
|
-
*/
|
46
78
|
get: function () {
|
47
79
|
return this._uri;
|
48
80
|
},
|
@@ -50,10 +82,6 @@ var ArvoContract = /** @class */ (function () {
|
|
50
82
|
configurable: true
|
51
83
|
});
|
52
84
|
Object.defineProperty(ArvoContract.prototype, "type", {
|
53
|
-
/**
|
54
|
-
* Get the type of the event the handler
|
55
|
-
* bound to the contract accepts
|
56
|
-
*/
|
57
85
|
get: function () {
|
58
86
|
return this._type;
|
59
87
|
},
|
@@ -61,15 +89,26 @@ var ArvoContract = /** @class */ (function () {
|
|
61
89
|
configurable: true
|
62
90
|
});
|
63
91
|
Object.defineProperty(ArvoContract.prototype, "versions", {
|
64
|
-
/**
|
65
|
-
* Gets the version of the contract
|
66
|
-
*/
|
67
92
|
get: function () {
|
68
93
|
return this._versions;
|
69
94
|
},
|
70
95
|
enumerable: false,
|
71
96
|
configurable: true
|
72
97
|
});
|
98
|
+
Object.defineProperty(ArvoContract.prototype, "description", {
|
99
|
+
get: function () {
|
100
|
+
return this._description;
|
101
|
+
},
|
102
|
+
enumerable: false,
|
103
|
+
configurable: true
|
104
|
+
});
|
105
|
+
Object.defineProperty(ArvoContract.prototype, "metadata", {
|
106
|
+
get: function () {
|
107
|
+
return this._metadata;
|
108
|
+
},
|
109
|
+
enumerable: false,
|
110
|
+
configurable: true
|
111
|
+
});
|
73
112
|
Object.defineProperty(ArvoContract.prototype, "systemError", {
|
74
113
|
/**
|
75
114
|
* Gets the system error event specification for this contract.
|
@@ -99,9 +138,6 @@ var ArvoContract = /** @class */ (function () {
|
|
99
138
|
/**
|
100
139
|
* Retrieves a specific version of the contract or resolves special version identifiers.
|
101
140
|
*
|
102
|
-
* @template V - Type parameter constrained to valid semantic versions in TVersions
|
103
|
-
* @template S - Type parameter for special version identifiers
|
104
|
-
*
|
105
141
|
* @param option - Version identifier or special version string
|
106
142
|
* - Specific version (e.g., "1.0.0")
|
107
143
|
* - "latest" or "any" for the most recent version
|
@@ -125,9 +161,9 @@ var ArvoContract = /** @class */ (function () {
|
|
125
161
|
else {
|
126
162
|
resolvedVersion = option;
|
127
163
|
}
|
128
|
-
return {
|
164
|
+
return new VersionedArvoContract_1.VersionedArvoContract({
|
129
165
|
uri: this._uri,
|
130
|
-
description: this.
|
166
|
+
description: this._description,
|
131
167
|
version: resolvedVersion,
|
132
168
|
accepts: {
|
133
169
|
type: this._type,
|
@@ -135,15 +171,11 @@ var ArvoContract = /** @class */ (function () {
|
|
135
171
|
},
|
136
172
|
systemError: this.systemError,
|
137
173
|
emits: this._versions[resolvedVersion].emits,
|
138
|
-
|
174
|
+
metadata: this._metadata,
|
175
|
+
}); // needed due to TypeScript limitations with conditional types
|
139
176
|
};
|
140
177
|
/**
|
141
178
|
* Retrieves version numbers in sorted order based on semantic versioning rules.
|
142
|
-
*
|
143
|
-
* @param ordering - Sort direction for versions
|
144
|
-
* - 'ASC' - Ascending order (oldest to newest)
|
145
|
-
* - 'DESC' - Descending order (newest to oldest)
|
146
|
-
*
|
147
179
|
* @returns Array of semantic versions sorted according to specified ordering
|
148
180
|
*/
|
149
181
|
ArvoContract.prototype.getSortedVersionNumbers = function (ordering) {
|
@@ -153,51 +185,48 @@ var ArvoContract = /** @class */ (function () {
|
|
153
185
|
/**
|
154
186
|
* Exports the ArvoContract instance as a plain object conforming to the IArvoContract interface.
|
155
187
|
* This method can be used to serialize the contract or to create a new instance with the same parameters.
|
156
|
-
*
|
157
|
-
* @returns An object representing the contract, including its URI, accepts, and emits properties.
|
158
188
|
*/
|
159
189
|
ArvoContract.prototype.export = function () {
|
160
190
|
return {
|
161
191
|
uri: this._uri,
|
162
192
|
type: this._type,
|
163
|
-
description: this.
|
193
|
+
description: this._description,
|
164
194
|
versions: this._versions,
|
195
|
+
metadata: this._metadata,
|
165
196
|
};
|
166
197
|
};
|
167
198
|
/**
|
168
199
|
* Converts the ArvoContract instance to a JSON Schema representation.
|
169
200
|
* This method provides a way to represent the contract's structure and validation rules
|
170
201
|
* in a format that conforms to the JSON Schema specification.
|
171
|
-
*
|
172
|
-
* @returns An object representing the contract in JSON Schema format:
|
173
202
|
*/
|
174
203
|
ArvoContract.prototype.toJsonSchema = function () {
|
175
204
|
var _this = this;
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
}
|
205
|
+
try {
|
206
|
+
return {
|
207
|
+
uri: this._uri,
|
208
|
+
description: this._description,
|
209
|
+
metadata: this._metadata,
|
210
|
+
versions: Object.keys(this._versions).map(function (version) {
|
211
|
+
var jsonSchema = _this.version(version).toJsonSchema();
|
212
|
+
return {
|
213
|
+
version: jsonSchema.version,
|
214
|
+
accepts: jsonSchema.accepts,
|
215
|
+
systemError: jsonSchema.systemError,
|
216
|
+
emits: jsonSchema.emits,
|
217
|
+
metadata: jsonSchema.metadata,
|
218
|
+
};
|
219
|
+
}),
|
220
|
+
};
|
221
|
+
}
|
222
|
+
catch (e) {
|
223
|
+
var errorMessage = "ArvoContract.toJsonSchema failed: ".concat(e.message);
|
224
|
+
(0, OpenTelemetry_1.logToSpan)({
|
225
|
+
level: 'ERROR',
|
226
|
+
message: errorMessage,
|
227
|
+
});
|
228
|
+
throw new Error(errorMessage);
|
229
|
+
}
|
201
230
|
};
|
202
231
|
return ArvoContract;
|
203
232
|
}());
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { z } from 'zod';
|
2
|
-
import zodToJsonSchema from 'zod-to-json-schema';
|
3
2
|
import { ArvoSemanticVersion } from '../types';
|
3
|
+
import { 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
|
*
|
@@ -13,12 +13,19 @@ export type ArvoContractRecord<TType extends string = string, TSchema extends z.
|
|
13
13
|
/** The Zod schema used for validating data associated with this record */
|
14
14
|
schema: TSchema;
|
15
15
|
};
|
16
|
+
/**
|
17
|
+
* Utility type that resolves the inferred TypeScript type from an ArvoContractRecord's schema.
|
18
|
+
*
|
19
|
+
* @template T - The ArvoContractRecord whose schema type should be inferred
|
20
|
+
*/
|
21
|
+
export type ResolveArvoContractRecord<T extends ArvoContractRecord> = z.infer<T['schema']>;
|
16
22
|
/**
|
17
23
|
* Defines the structure of an Arvo contract, including its identifier, type, and versioned schemas.
|
18
24
|
*
|
19
25
|
* @template TUri - The unique URI identifier for the contract
|
20
26
|
* @template TType - The event type that the contract's handler accepts
|
21
27
|
* @template TVersions - A record of versioned schemas, mapping semantic versions to their accept/emit schemas
|
28
|
+
* @template TMetaData - Optional metadata type
|
22
29
|
*/
|
23
30
|
export interface IArvoContract<TUri extends string = string, TType extends string = string, TVersions extends Record<ArvoSemanticVersion, {
|
24
31
|
accepts: z.ZodTypeAny;
|
@@ -26,55 +33,25 @@ export interface IArvoContract<TUri extends string = string, TType extends strin
|
|
26
33
|
}> = Record<ArvoSemanticVersion, {
|
27
34
|
accepts: z.ZodTypeAny;
|
28
35
|
emits: Record<string, z.ZodTypeAny>;
|
29
|
-
}>> {
|
36
|
+
}>, TMetaData extends Record<string, any> = Record<string, any>> {
|
30
37
|
/** The unique URI identifier for this contract */
|
31
38
|
uri: TUri;
|
32
39
|
/** The event type that this contract's handler accepts */
|
33
40
|
type: TType;
|
34
41
|
/** Optional description providing context about the contract or its handler */
|
35
|
-
description
|
42
|
+
description: string | null;
|
43
|
+
/** The contract metadata */
|
44
|
+
metadata: TMetaData;
|
36
45
|
/** A record mapping semantic versions to their corresponding schemas */
|
37
46
|
versions: TVersions;
|
38
47
|
}
|
39
|
-
/**
|
40
|
-
* Utility type that resolves the inferred TypeScript type from an ArvoContractRecord's schema.
|
41
|
-
*
|
42
|
-
* @template T - The ArvoContractRecord whose schema type should be inferred
|
43
|
-
*/
|
44
|
-
export type ResolveArvoContractRecord<T extends ArvoContractRecord> = z.infer<T['schema']>;
|
45
48
|
/**
|
46
49
|
* Represents the JSON Schema representation of an ArvoContract, used for serialization
|
47
50
|
* and documentation purposes. This structure follows the JSON Schema specification.
|
48
51
|
*/
|
49
52
|
export type ArvoContractJSONSchema = {
|
50
|
-
/** The unique URI identifier for the contract */
|
51
53
|
uri: string;
|
52
|
-
/** The human-readable description of the contract */
|
53
54
|
description: string | null;
|
54
|
-
|
55
|
-
versions:
|
56
|
-
/** The semantic version identifier for this schema version */
|
57
|
-
version: ArvoSemanticVersion;
|
58
|
-
/** The schema for accepted inputs in this version */
|
59
|
-
accepts: {
|
60
|
-
/** The type identifier for accepted inputs */
|
61
|
-
type: string;
|
62
|
-
/** JSON Schema representation of the input validation schema */
|
63
|
-
schema: ReturnType<typeof zodToJsonSchema>;
|
64
|
-
};
|
65
|
-
/** The system error event */
|
66
|
-
systemError: {
|
67
|
-
/** The type of the event */
|
68
|
-
type: string;
|
69
|
-
/** The schema of the error */
|
70
|
-
schema: ReturnType<typeof zodToJsonSchema>;
|
71
|
-
};
|
72
|
-
/** Array of schemas for events that can be emitted in this version */
|
73
|
-
emits: {
|
74
|
-
/** The type identifier for the emitted event */
|
75
|
-
type: string;
|
76
|
-
/** JSON Schema representation of the event validation schema */
|
77
|
-
schema: ReturnType<typeof zodToJsonSchema>;
|
78
|
-
}[];
|
79
|
-
}[];
|
55
|
+
metadata: Record<string, any> | null;
|
56
|
+
versions: Omit<VersionedArvoContractJSONSchema, 'uri' | 'description'>[];
|
80
57
|
};
|