arvo-core 2.0.6 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ArvoContract/index.d.ts +44 -61
- package/dist/ArvoContract/index.js +72 -108
- package/dist/types.d.ts +0 -19
- package/package.json +1 -1
@@ -4,14 +4,29 @@ import { ArvoErrorSchema } from '../schema';
|
|
4
4
|
import { ArvoSemanticVersion } from '../types';
|
5
5
|
import { VersionedArvoContract } from './VersionedArvoContract';
|
6
6
|
/**
|
7
|
-
*
|
8
|
-
*
|
9
|
-
*
|
10
|
-
* on inputs and outputs of it
|
7
|
+
* Represents a contract with defined input and output schemas for event-driven architectures.
|
8
|
+
* The ArvoContract class provides type-safe validation and versioning capabilities for event handling,
|
9
|
+
* ensuring consistency in message passing between different parts of the system.
|
11
10
|
*
|
12
|
-
* @template TUri - The URI
|
13
|
-
* @template TType - The accept type,
|
14
|
-
* @template
|
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
|
+
* @example
|
16
|
+
* ```typescript
|
17
|
+
* const contract = createArvoContract({
|
18
|
+
* uri: '#/my/service/data',
|
19
|
+
* type: 'com.process.data',
|
20
|
+
* versions: {
|
21
|
+
* '1.0.0': {
|
22
|
+
* accepts: z.object({ data: z.string() }),
|
23
|
+
* emits: {
|
24
|
+
* 'data.processed': z.object({ result: z.string() })
|
25
|
+
* }
|
26
|
+
* }
|
27
|
+
* }
|
28
|
+
* });
|
29
|
+
* ```
|
15
30
|
*/
|
16
31
|
export default class ArvoContract<TUri extends string = string, TType extends string = string, TVersions extends Record<ArvoSemanticVersion, {
|
17
32
|
accepts: z.ZodTypeAny;
|
@@ -24,30 +39,11 @@ export default class ArvoContract<TUri extends string = string, TType extends st
|
|
24
39
|
private readonly _type;
|
25
40
|
private readonly _versions;
|
26
41
|
readonly description: string | null;
|
27
|
-
/**
|
28
|
-
* Creates an instance of ArvoContract.
|
29
|
-
* @param params - The contract parameters.
|
30
|
-
*/
|
31
42
|
constructor(params: IArvoContract<TUri, TType, TVersions>);
|
32
43
|
/**
|
33
44
|
* Gets the URI of the contract.
|
34
45
|
*/
|
35
46
|
get uri(): TUri;
|
36
|
-
/**
|
37
|
-
* Creates a version-specific view of the contract, providing easy access to all
|
38
|
-
* schemas and specifications for a particular semantic version.
|
39
|
-
*
|
40
|
-
* @template V - The semantic version to create a view for, must be a valid version in the contract
|
41
|
-
*
|
42
|
-
* @param ver - The semantic version string (e.g., "1.0.0")
|
43
|
-
* @returns A VersionedArvoContract instance containing all specifications for the requested version
|
44
|
-
*
|
45
|
-
* The returned object provides a simpler, flatter structure compared to
|
46
|
-
* accessing version-specific information through the main contract methods.
|
47
|
-
*
|
48
|
-
* @see {@link VersionedArvoContract} for the structure of the returned object
|
49
|
-
*/
|
50
|
-
version<V extends ArvoSemanticVersion & keyof TVersions>(ver: V): VersionedArvoContract<typeof this, V>;
|
51
47
|
/**
|
52
48
|
* Get the type of the event the handler
|
53
49
|
* bound to the contract accepts
|
@@ -57,20 +53,6 @@ export default class ArvoContract<TUri extends string = string, TType extends st
|
|
57
53
|
* Gets the version of the contract
|
58
54
|
*/
|
59
55
|
get versions(): TVersions;
|
60
|
-
/**
|
61
|
-
* Get the latest version of the contract
|
62
|
-
*/
|
63
|
-
get latestVersion(): ArvoSemanticVersion | undefined;
|
64
|
-
/**
|
65
|
-
* Gets the type and schema of the event that the contact
|
66
|
-
* bound handler listens to.
|
67
|
-
*/
|
68
|
-
accepts<V extends ArvoSemanticVersion & keyof TVersions>(version: V): ArvoContractRecord<TType, TVersions[V]['accepts']>;
|
69
|
-
/**
|
70
|
-
* Gets all event types and schemas that can be emitted by the
|
71
|
-
* contract bound handler.
|
72
|
-
*/
|
73
|
-
emits<V extends ArvoSemanticVersion & keyof TVersions>(version: V): TVersions[V]['emits'];
|
74
56
|
/**
|
75
57
|
* Gets the system error event specification for this contract.
|
76
58
|
* System errors follow a standardized format to handle exceptional conditions
|
@@ -86,33 +68,34 @@ export default class ArvoContract<TUri extends string = string, TType extends st
|
|
86
68
|
* - Use a standardized schema across all contracts
|
87
69
|
* - Can capture error details, messages, and stack traces
|
88
70
|
* - Are version-independent (work the same across all contract versions)
|
89
|
-
*
|
90
|
-
* @see {@link ArvoErrorSchema} for the detailed error schema definition
|
91
|
-
* @see {@link ArvoContractRecord} for the structure of the returned record
|
92
71
|
*/
|
93
72
|
get systemError(): ArvoContractRecord<`sys.${TType}.error`, typeof ArvoErrorSchema>;
|
94
73
|
/**
|
95
|
-
*
|
96
|
-
*
|
97
|
-
* @template
|
98
|
-
* @template
|
99
|
-
*
|
100
|
-
* @param
|
101
|
-
*
|
102
|
-
*
|
103
|
-
*
|
74
|
+
* Retrieves a specific version of the contract or resolves special version identifiers.
|
75
|
+
*
|
76
|
+
* @template V - Type parameter constrained to valid semantic versions in TVersions
|
77
|
+
* @template S - Type parameter for special version identifiers
|
78
|
+
*
|
79
|
+
* @param option - Version identifier or special version string
|
80
|
+
* - Specific version (e.g., "1.0.0")
|
81
|
+
* - "latest" or "any" for the most recent version
|
82
|
+
* - "oldest" for the first version
|
83
|
+
*
|
84
|
+
* @returns A versioned contract instance with type-safe schemas
|
85
|
+
*
|
86
|
+
* @throws {Error} When an invalid or non-existent version is requested
|
104
87
|
*/
|
105
|
-
|
88
|
+
version<V extends ArvoSemanticVersion & keyof TVersions, S extends 'any' | 'latest' | 'oldest'>(option: V | S): V extends ArvoSemanticVersion ? VersionedArvoContract<typeof this, V> : VersionedArvoContract<typeof this, ArvoSemanticVersion & keyof TVersions>;
|
106
89
|
/**
|
107
|
-
*
|
108
|
-
*
|
109
|
-
* @
|
110
|
-
*
|
111
|
-
*
|
112
|
-
*
|
113
|
-
* @
|
90
|
+
* 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
|
+
* @returns Array of semantic versions sorted according to specified ordering
|
114
97
|
*/
|
115
|
-
|
98
|
+
getSortedVersionNumbers(ordering: 'ASC' | 'DESC'): `${number}.${number}.${number}`[];
|
116
99
|
/**
|
117
100
|
* Exports the ArvoContract instance as a plain object conforming to the IArvoContract interface.
|
118
101
|
* This method can be used to serialize the contract or to create a new instance with the same parameters.
|
@@ -1,40 +1,43 @@
|
|
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
|
-
};
|
13
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
14
3
|
var zod_to_json_schema_1 = require("zod-to-json-schema");
|
15
4
|
var schema_1 = require("../schema");
|
16
5
|
var utils_1 = require("../utils");
|
17
6
|
/**
|
18
|
-
*
|
19
|
-
*
|
20
|
-
*
|
21
|
-
* on inputs and outputs of it
|
7
|
+
* Represents a contract with defined input and output schemas for event-driven architectures.
|
8
|
+
* The ArvoContract class provides type-safe validation and versioning capabilities for event handling,
|
9
|
+
* ensuring consistency in message passing between different parts of the system.
|
22
10
|
*
|
23
|
-
* @template TUri - The URI
|
24
|
-
* @template TType - The accept type,
|
25
|
-
* @template
|
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
|
+
* @example
|
16
|
+
* ```typescript
|
17
|
+
* const contract = createArvoContract({
|
18
|
+
* uri: '#/my/service/data',
|
19
|
+
* type: 'com.process.data',
|
20
|
+
* versions: {
|
21
|
+
* '1.0.0': {
|
22
|
+
* accepts: z.object({ data: z.string() }),
|
23
|
+
* emits: {
|
24
|
+
* 'data.processed': z.object({ result: z.string() })
|
25
|
+
* }
|
26
|
+
* }
|
27
|
+
* }
|
28
|
+
* });
|
29
|
+
* ```
|
26
30
|
*/
|
27
31
|
var ArvoContract = /** @class */ (function () {
|
28
|
-
/**
|
29
|
-
* Creates an instance of ArvoContract.
|
30
|
-
* @param params - The contract parameters.
|
31
|
-
*/
|
32
32
|
function ArvoContract(params) {
|
33
33
|
var _a;
|
34
34
|
this._uri = params.uri;
|
35
35
|
this._type = params.type;
|
36
36
|
this._versions = params.versions;
|
37
37
|
this.description = (_a = params.description) !== null && _a !== void 0 ? _a : null;
|
38
|
+
if (!Object.keys(this._versions).length) {
|
39
|
+
throw new Error("An ArvoContract (uri=".concat(this._uri, ") must have at least one version"));
|
40
|
+
}
|
38
41
|
}
|
39
42
|
Object.defineProperty(ArvoContract.prototype, "uri", {
|
40
43
|
/**
|
@@ -46,33 +49,6 @@ var ArvoContract = /** @class */ (function () {
|
|
46
49
|
enumerable: false,
|
47
50
|
configurable: true
|
48
51
|
});
|
49
|
-
/**
|
50
|
-
* Creates a version-specific view of the contract, providing easy access to all
|
51
|
-
* schemas and specifications for a particular semantic version.
|
52
|
-
*
|
53
|
-
* @template V - The semantic version to create a view for, must be a valid version in the contract
|
54
|
-
*
|
55
|
-
* @param ver - The semantic version string (e.g., "1.0.0")
|
56
|
-
* @returns A VersionedArvoContract instance containing all specifications for the requested version
|
57
|
-
*
|
58
|
-
* The returned object provides a simpler, flatter structure compared to
|
59
|
-
* accessing version-specific information through the main contract methods.
|
60
|
-
*
|
61
|
-
* @see {@link VersionedArvoContract} for the structure of the returned object
|
62
|
-
*/
|
63
|
-
ArvoContract.prototype.version = function (ver) {
|
64
|
-
return {
|
65
|
-
uri: this._uri,
|
66
|
-
description: this.description,
|
67
|
-
version: ver,
|
68
|
-
accepts: {
|
69
|
-
type: this._type,
|
70
|
-
schema: this._versions[ver].accepts,
|
71
|
-
},
|
72
|
-
systemError: this.systemError,
|
73
|
-
emits: this._versions[ver].emits,
|
74
|
-
};
|
75
|
-
};
|
76
52
|
Object.defineProperty(ArvoContract.prototype, "type", {
|
77
53
|
/**
|
78
54
|
* Get the type of the event the handler
|
@@ -94,35 +70,6 @@ var ArvoContract = /** @class */ (function () {
|
|
94
70
|
enumerable: false,
|
95
71
|
configurable: true
|
96
72
|
});
|
97
|
-
Object.defineProperty(ArvoContract.prototype, "latestVersion", {
|
98
|
-
/**
|
99
|
-
* Get the latest version of the contract
|
100
|
-
*/
|
101
|
-
get: function () {
|
102
|
-
return Object.keys(this._versions).sort(function (a, b) {
|
103
|
-
return (0, utils_1.compareSemanticVersions)(b, a);
|
104
|
-
})[0];
|
105
|
-
},
|
106
|
-
enumerable: false,
|
107
|
-
configurable: true
|
108
|
-
});
|
109
|
-
/**
|
110
|
-
* Gets the type and schema of the event that the contact
|
111
|
-
* bound handler listens to.
|
112
|
-
*/
|
113
|
-
ArvoContract.prototype.accepts = function (version) {
|
114
|
-
return {
|
115
|
-
type: this._type,
|
116
|
-
schema: this._versions[version].accepts,
|
117
|
-
};
|
118
|
-
};
|
119
|
-
/**
|
120
|
-
* Gets all event types and schemas that can be emitted by the
|
121
|
-
* contract bound handler.
|
122
|
-
*/
|
123
|
-
ArvoContract.prototype.emits = function (version) {
|
124
|
-
return __assign({}, this._versions[version].emits);
|
125
|
-
};
|
126
73
|
Object.defineProperty(ArvoContract.prototype, "systemError", {
|
127
74
|
/**
|
128
75
|
* Gets the system error event specification for this contract.
|
@@ -139,9 +86,6 @@ var ArvoContract = /** @class */ (function () {
|
|
139
86
|
* - Use a standardized schema across all contracts
|
140
87
|
* - Can capture error details, messages, and stack traces
|
141
88
|
* - Are version-independent (work the same across all contract versions)
|
142
|
-
*
|
143
|
-
* @see {@link ArvoErrorSchema} for the detailed error schema definition
|
144
|
-
* @see {@link ArvoContractRecord} for the structure of the returned record
|
145
89
|
*/
|
146
90
|
get: function () {
|
147
91
|
return {
|
@@ -153,38 +97,58 @@ var ArvoContract = /** @class */ (function () {
|
|
153
97
|
configurable: true
|
154
98
|
});
|
155
99
|
/**
|
156
|
-
*
|
157
|
-
*
|
158
|
-
* @template
|
159
|
-
* @template
|
160
|
-
*
|
161
|
-
* @param
|
162
|
-
*
|
163
|
-
*
|
164
|
-
*
|
100
|
+
* Retrieves a specific version of the contract or resolves special version identifiers.
|
101
|
+
*
|
102
|
+
* @template V - Type parameter constrained to valid semantic versions in TVersions
|
103
|
+
* @template S - Type parameter for special version identifiers
|
104
|
+
*
|
105
|
+
* @param option - Version identifier or special version string
|
106
|
+
* - Specific version (e.g., "1.0.0")
|
107
|
+
* - "latest" or "any" for the most recent version
|
108
|
+
* - "oldest" for the first version
|
109
|
+
*
|
110
|
+
* @returns A versioned contract instance with type-safe schemas
|
111
|
+
*
|
112
|
+
* @throws {Error} When an invalid or non-existent version is requested
|
165
113
|
*/
|
166
|
-
ArvoContract.prototype.
|
167
|
-
|
168
|
-
|
114
|
+
ArvoContract.prototype.version = function (option) {
|
115
|
+
var resolvedVersion;
|
116
|
+
if (option === 'any' || option === 'latest') {
|
117
|
+
resolvedVersion = this.getSortedVersionNumbers('DESC')[0];
|
169
118
|
}
|
170
|
-
|
119
|
+
else if (option === 'oldest') {
|
120
|
+
resolvedVersion = this.getSortedVersionNumbers('ASC')[0];
|
121
|
+
}
|
122
|
+
else if (!this._versions[option]) {
|
123
|
+
throw new Error("The contract (uri=".concat(this._uri, ") does not have version=").concat(option));
|
124
|
+
}
|
125
|
+
else {
|
126
|
+
resolvedVersion = option;
|
127
|
+
}
|
128
|
+
return {
|
129
|
+
uri: this._uri,
|
130
|
+
description: this.description,
|
131
|
+
version: resolvedVersion,
|
132
|
+
accepts: {
|
133
|
+
type: this._type,
|
134
|
+
schema: this._versions[resolvedVersion].accepts,
|
135
|
+
},
|
136
|
+
systemError: this.systemError,
|
137
|
+
emits: this._versions[resolvedVersion].emits,
|
138
|
+
}; // needed due to TypeScript limitations with conditional types
|
171
139
|
};
|
172
140
|
/**
|
173
|
-
*
|
174
|
-
*
|
175
|
-
* @
|
176
|
-
*
|
177
|
-
*
|
178
|
-
*
|
179
|
-
* @
|
141
|
+
* 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
|
+
* @returns Array of semantic versions sorted according to specified ordering
|
180
148
|
*/
|
181
|
-
ArvoContract.prototype.
|
182
|
-
var
|
183
|
-
|
184
|
-
if (!emit) {
|
185
|
-
throw new Error("Emit type \"".concat(type.toString(), "\" for version \"").concat(version, "\" not found in contract \"").concat(this._uri, "\""));
|
186
|
-
}
|
187
|
-
return emit.safeParse(output);
|
149
|
+
ArvoContract.prototype.getSortedVersionNumbers = function (ordering) {
|
150
|
+
var sorted = Object.keys(this._versions).sort(function (a, b) { return (0, utils_1.compareSemanticVersions)(b, a); });
|
151
|
+
return ordering === 'DESC' ? sorted : sorted.reverse();
|
188
152
|
};
|
189
153
|
/**
|
190
154
|
* Exports the ArvoContract instance as a plain object conforming to the IArvoContract interface.
|
package/dist/types.d.ts
CHANGED
@@ -129,12 +129,6 @@ type InferZodSchema<T> = T extends z.ZodTypeAny ? z.infer<T> : never;
|
|
129
129
|
* // systemError: { ... inferred system error event type ... };
|
130
130
|
* // }
|
131
131
|
* ```
|
132
|
-
*
|
133
|
-
* @remarks
|
134
|
-
* - All version keys must be valid {@link ArvoSemanticVersion} strings
|
135
|
-
* - The contract must define at least one version
|
136
|
-
* - Each version must specify both accepted and emitted event schemas
|
137
|
-
* - System error handling is automatically included for all contracts
|
138
132
|
*/
|
139
133
|
export type InferArvoContract<T extends ArvoContract<string, string, Record<ArvoSemanticVersion, {
|
140
134
|
accepts: z.ZodTypeAny;
|
@@ -184,19 +178,6 @@ export type ArvoErrorType = z.infer<typeof ArvoErrorSchema>;
|
|
184
178
|
* @property systemError - The fully resolved system error event type
|
185
179
|
* @property emits - Record of all fully resolved emit event types
|
186
180
|
*
|
187
|
-
* This type utility:
|
188
|
-
* - Transforms Zod schemas into their inferred TypeScript types
|
189
|
-
* - Wraps all event types in the full ArvoEvent structure
|
190
|
-
* - Preserves all event type relationships and constraints
|
191
|
-
* - Includes OpenTelemetry and Arvo extensions
|
192
|
-
* - Maintains type safety across all transformations
|
193
|
-
*
|
194
|
-
* Common use cases:
|
195
|
-
* - Type-safe event handling in version-specific contexts
|
196
|
-
* - Generating TypeScript interfaces for API documentation
|
197
|
-
* - Validating event payload types at compile time
|
198
|
-
* - Creating type-safe event factories
|
199
|
-
*
|
200
181
|
* @see {@link VersionedArvoContract} for the input contract structure
|
201
182
|
* @see {@link InferArvoEvent} for the event inference utility
|
202
183
|
* @see {@link ArvoEvent} for the base event structure
|