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
package/CHANGELOG.md
CHANGED
@@ -0,0 +1,55 @@
|
|
1
|
+
import { ArvoSemanticVersion } from '../../types';
|
2
|
+
import { z } from 'zod';
|
3
|
+
import { SimpleArvoContract } from './types';
|
4
|
+
/**
|
5
|
+
* Creates an ArvoContract with standardized naming conventions and a simplified event pattern.
|
6
|
+
* Use this to create contracts with one emit type only.
|
7
|
+
*
|
8
|
+
* @param param - Contract configuration
|
9
|
+
* @param param.uri - Contract identifier URI
|
10
|
+
* @param param.type - Base event type (will be prefixed with "com.")
|
11
|
+
* @param param.versions - Version-specific schema definitions
|
12
|
+
* @param param.metadata - Optional metadata for the contract
|
13
|
+
* @param param.description - Optional contract description
|
14
|
+
*
|
15
|
+
* @returns ArvoContract with standardized type formatting and metadata
|
16
|
+
*
|
17
|
+
* @throws {Error} If any of the validations in {@link ArvoContract} or {@link createArvoContract} fail
|
18
|
+
*
|
19
|
+
* @example
|
20
|
+
* ```typescript
|
21
|
+
* const contract = createSimpleArvoContract({
|
22
|
+
* uri: 'api.example/contracts/user',
|
23
|
+
* type: 'user.create',
|
24
|
+
* description: 'User creation contract',
|
25
|
+
* versions: {
|
26
|
+
* '1.0.0': {
|
27
|
+
* accepts: z.object({
|
28
|
+
* name: z.string(),
|
29
|
+
* email: z.string().email()
|
30
|
+
* }),
|
31
|
+
* emits: z.object({
|
32
|
+
* userId: z.string(),
|
33
|
+
* timestamp: z.date()
|
34
|
+
* })
|
35
|
+
* }
|
36
|
+
* }
|
37
|
+
* });
|
38
|
+
* ```
|
39
|
+
*
|
40
|
+
* @remarks
|
41
|
+
* Provides a simplified contract creation pattern with standardized conventions:
|
42
|
+
* - Automatically prefixes accept types with "com."
|
43
|
+
* - Creates a single emit type with "evt." prefix and ".success" suffix
|
44
|
+
* - Adds standard metadata identifying it as a SimpleArvoContract
|
45
|
+
*/
|
46
|
+
export declare const createSimpleArvoContract: <TUri extends string, TType extends string, TVersions extends Record<ArvoSemanticVersion, {
|
47
|
+
accepts: z.ZodTypeAny;
|
48
|
+
emits: z.ZodTypeAny;
|
49
|
+
}>, TMetaData extends Record<string, any>>(param: {
|
50
|
+
uri: TUri;
|
51
|
+
type: TType;
|
52
|
+
versions: TVersions;
|
53
|
+
metadata?: TMetaData;
|
54
|
+
description?: string;
|
55
|
+
}) => SimpleArvoContract<TUri, TType, TVersions, TMetaData>;
|
@@ -0,0 +1,81 @@
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
14
|
+
exports.createSimpleArvoContract = void 0;
|
15
|
+
var helpers_1 = require("../helpers");
|
16
|
+
/**
|
17
|
+
* Creates an ArvoContract with standardized naming conventions and a simplified event pattern.
|
18
|
+
* Use this to create contracts with one emit type only.
|
19
|
+
*
|
20
|
+
* @param param - Contract configuration
|
21
|
+
* @param param.uri - Contract identifier URI
|
22
|
+
* @param param.type - Base event type (will be prefixed with "com.")
|
23
|
+
* @param param.versions - Version-specific schema definitions
|
24
|
+
* @param param.metadata - Optional metadata for the contract
|
25
|
+
* @param param.description - Optional contract description
|
26
|
+
*
|
27
|
+
* @returns ArvoContract with standardized type formatting and metadata
|
28
|
+
*
|
29
|
+
* @throws {Error} If any of the validations in {@link ArvoContract} or {@link createArvoContract} fail
|
30
|
+
*
|
31
|
+
* @example
|
32
|
+
* ```typescript
|
33
|
+
* const contract = createSimpleArvoContract({
|
34
|
+
* uri: 'api.example/contracts/user',
|
35
|
+
* type: 'user.create',
|
36
|
+
* description: 'User creation contract',
|
37
|
+
* versions: {
|
38
|
+
* '1.0.0': {
|
39
|
+
* accepts: z.object({
|
40
|
+
* name: z.string(),
|
41
|
+
* email: z.string().email()
|
42
|
+
* }),
|
43
|
+
* emits: z.object({
|
44
|
+
* userId: z.string(),
|
45
|
+
* timestamp: z.date()
|
46
|
+
* })
|
47
|
+
* }
|
48
|
+
* }
|
49
|
+
* });
|
50
|
+
* ```
|
51
|
+
*
|
52
|
+
* @remarks
|
53
|
+
* Provides a simplified contract creation pattern with standardized conventions:
|
54
|
+
* - Automatically prefixes accept types with "com."
|
55
|
+
* - Creates a single emit type with "evt." prefix and ".success" suffix
|
56
|
+
* - Adds standard metadata identifying it as a SimpleArvoContract
|
57
|
+
*/
|
58
|
+
var createSimpleArvoContract = function (param) {
|
59
|
+
var _a;
|
60
|
+
var mergedMetadata = __assign(__assign({}, ((_a = param.metadata) !== null && _a !== void 0 ? _a : {})), { contractType: 'SimpleArvoContract', rootType: param.type });
|
61
|
+
return (0, helpers_1.createArvoContract)({
|
62
|
+
uri: param.uri,
|
63
|
+
type: "com.".concat(param.type),
|
64
|
+
description: param.description,
|
65
|
+
metadata: mergedMetadata,
|
66
|
+
versions: Object.fromEntries(Object.entries(param.versions).map(function (_a) {
|
67
|
+
var _b;
|
68
|
+
var version = _a[0], contract = _a[1];
|
69
|
+
return [
|
70
|
+
version,
|
71
|
+
{
|
72
|
+
accepts: contract.accepts,
|
73
|
+
emits: (_b = {},
|
74
|
+
_b["evt.".concat(param.type, ".success")] = contract.emits,
|
75
|
+
_b),
|
76
|
+
},
|
77
|
+
];
|
78
|
+
})),
|
79
|
+
});
|
80
|
+
};
|
81
|
+
exports.createSimpleArvoContract = createSimpleArvoContract;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
import ArvoContract from '..';
|
3
|
+
import { ArvoSemanticVersion } from '../../types';
|
4
|
+
export type SimpleArvoContract<TUri extends string = string, TType extends string = string, TVersions extends Record<ArvoSemanticVersion, {
|
5
|
+
accepts: z.ZodTypeAny;
|
6
|
+
emits: z.ZodTypeAny;
|
7
|
+
}> = Record<ArvoSemanticVersion, {
|
8
|
+
accepts: z.ZodTypeAny;
|
9
|
+
emits: z.ZodTypeAny;
|
10
|
+
}>, TMetaData extends Record<string, any> = Record<string, any>> = ArvoContract<TUri, `com.${TType}`, {
|
11
|
+
[V in ArvoSemanticVersion & keyof TVersions]: {
|
12
|
+
accepts: TVersions[V]['accepts'];
|
13
|
+
emits: {
|
14
|
+
[K in `evt.${TType}.succes`]: TVersions[V]['emits'];
|
15
|
+
};
|
16
|
+
};
|
17
|
+
}, TMetaData & {
|
18
|
+
contractType: 'SimpleArvoContract';
|
19
|
+
rootType: TType;
|
20
|
+
}>;
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import ArvoContract from '..';
|
2
|
+
import { ArvoSemanticVersion } from '../../types';
|
3
|
+
import { ArvoContractRecord } from '../types';
|
4
|
+
import { IVersionedArvoContract, VersionedArvoContractJSONSchema } from './types';
|
5
|
+
/**
|
6
|
+
* Implements a version-specific view of an ArvoContract with type-safe schema validation
|
7
|
+
* and JSON Schema generation capabilities.
|
8
|
+
*/
|
9
|
+
export declare class VersionedArvoContract<TContract extends ArvoContract, TVersion extends ArvoSemanticVersion & keyof TContract['versions'], TMetaData extends Record<string, any> = Record<string, any>> {
|
10
|
+
private readonly _uri;
|
11
|
+
private readonly _version;
|
12
|
+
private readonly _description;
|
13
|
+
private readonly _accepts;
|
14
|
+
private readonly _emitMap;
|
15
|
+
private readonly _emits;
|
16
|
+
private readonly _metadata;
|
17
|
+
private readonly _systemError;
|
18
|
+
get uri(): TContract["uri"];
|
19
|
+
get version(): TVersion;
|
20
|
+
get description(): string | null;
|
21
|
+
get accepts(): ArvoContractRecord<TContract["type"], TContract["versions"][TVersion]["accepts"]>;
|
22
|
+
get emitMap(): TContract["versions"][TVersion]["emits"];
|
23
|
+
get metadata(): TMetaData;
|
24
|
+
get systemError(): TContract["systemError"];
|
25
|
+
get emits(): { [K in keyof TContract["versions"][TVersion]["emits"] & string]: ArvoContractRecord<K, TContract["versions"][TVersion]["emits"][K]>; }[keyof TContract["versions"][TVersion]["emits"] & string][];
|
26
|
+
constructor(param: IVersionedArvoContract<TContract, TVersion, TMetaData>);
|
27
|
+
/**
|
28
|
+
* Converts the contract to JSON Schema format
|
29
|
+
* @returns Contract specification in JSON Schema format for documentation/serialization
|
30
|
+
*/
|
31
|
+
toJsonSchema(): VersionedArvoContractJSONSchema;
|
32
|
+
}
|
@@ -0,0 +1,120 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.VersionedArvoContract = void 0;
|
7
|
+
var zod_to_json_schema_1 = __importDefault(require("zod-to-json-schema"));
|
8
|
+
var utils_1 = require("./utils");
|
9
|
+
var OpenTelemetry_1 = require("../../OpenTelemetry");
|
10
|
+
/**
|
11
|
+
* Implements a version-specific view of an ArvoContract with type-safe schema validation
|
12
|
+
* and JSON Schema generation capabilities.
|
13
|
+
*/
|
14
|
+
var VersionedArvoContract = /** @class */ (function () {
|
15
|
+
function VersionedArvoContract(param) {
|
16
|
+
this._uri = param.uri;
|
17
|
+
this._version = param.version;
|
18
|
+
this._description = param.description;
|
19
|
+
this._accepts = param.accepts;
|
20
|
+
this._emitMap = param.emits;
|
21
|
+
this._emits = (0, utils_1.transformEmitsToArray)(this.emitMap);
|
22
|
+
this._metadata = param.metadata;
|
23
|
+
this._systemError = param.systemError;
|
24
|
+
}
|
25
|
+
Object.defineProperty(VersionedArvoContract.prototype, "uri", {
|
26
|
+
get: function () {
|
27
|
+
return this._uri;
|
28
|
+
},
|
29
|
+
enumerable: false,
|
30
|
+
configurable: true
|
31
|
+
});
|
32
|
+
Object.defineProperty(VersionedArvoContract.prototype, "version", {
|
33
|
+
get: function () {
|
34
|
+
return this._version;
|
35
|
+
},
|
36
|
+
enumerable: false,
|
37
|
+
configurable: true
|
38
|
+
});
|
39
|
+
Object.defineProperty(VersionedArvoContract.prototype, "description", {
|
40
|
+
get: function () {
|
41
|
+
return this._description;
|
42
|
+
},
|
43
|
+
enumerable: false,
|
44
|
+
configurable: true
|
45
|
+
});
|
46
|
+
Object.defineProperty(VersionedArvoContract.prototype, "accepts", {
|
47
|
+
get: function () {
|
48
|
+
return this._accepts;
|
49
|
+
},
|
50
|
+
enumerable: false,
|
51
|
+
configurable: true
|
52
|
+
});
|
53
|
+
Object.defineProperty(VersionedArvoContract.prototype, "emitMap", {
|
54
|
+
get: function () {
|
55
|
+
return this._emitMap;
|
56
|
+
},
|
57
|
+
enumerable: false,
|
58
|
+
configurable: true
|
59
|
+
});
|
60
|
+
Object.defineProperty(VersionedArvoContract.prototype, "metadata", {
|
61
|
+
get: function () {
|
62
|
+
return this._metadata;
|
63
|
+
},
|
64
|
+
enumerable: false,
|
65
|
+
configurable: true
|
66
|
+
});
|
67
|
+
Object.defineProperty(VersionedArvoContract.prototype, "systemError", {
|
68
|
+
get: function () {
|
69
|
+
return this._systemError;
|
70
|
+
},
|
71
|
+
enumerable: false,
|
72
|
+
configurable: true
|
73
|
+
});
|
74
|
+
Object.defineProperty(VersionedArvoContract.prototype, "emits", {
|
75
|
+
get: function () {
|
76
|
+
return this._emits;
|
77
|
+
},
|
78
|
+
enumerable: false,
|
79
|
+
configurable: true
|
80
|
+
});
|
81
|
+
/**
|
82
|
+
* Converts the contract to JSON Schema format
|
83
|
+
* @returns Contract specification in JSON Schema format for documentation/serialization
|
84
|
+
*/
|
85
|
+
VersionedArvoContract.prototype.toJsonSchema = function () {
|
86
|
+
try {
|
87
|
+
return {
|
88
|
+
uri: this._uri,
|
89
|
+
description: this._description,
|
90
|
+
version: this._version,
|
91
|
+
metadata: this._metadata,
|
92
|
+
accepts: {
|
93
|
+
type: this._accepts.type,
|
94
|
+
schema: (0, zod_to_json_schema_1.default)(this._accepts.schema),
|
95
|
+
},
|
96
|
+
systemError: {
|
97
|
+
type: this._systemError.type,
|
98
|
+
schema: (0, zod_to_json_schema_1.default)(this._systemError.schema),
|
99
|
+
},
|
100
|
+
emits: Object.entries(this._emitMap).map(function (_a) {
|
101
|
+
var key = _a[0], value = _a[1];
|
102
|
+
return ({
|
103
|
+
type: key,
|
104
|
+
schema: (0, zod_to_json_schema_1.default)(value),
|
105
|
+
});
|
106
|
+
}),
|
107
|
+
};
|
108
|
+
}
|
109
|
+
catch (e) {
|
110
|
+
var errorMessage = "VersionedArvoContract.toJsonSchema failed: ".concat(e.message);
|
111
|
+
(0, OpenTelemetry_1.logToSpan)({
|
112
|
+
level: 'ERROR',
|
113
|
+
message: errorMessage,
|
114
|
+
});
|
115
|
+
throw new Error(errorMessage);
|
116
|
+
}
|
117
|
+
};
|
118
|
+
return VersionedArvoContract;
|
119
|
+
}());
|
120
|
+
exports.VersionedArvoContract = VersionedArvoContract;
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import zodToJsonSchema from 'zod-to-json-schema';
|
2
|
+
import ArvoContract from '..';
|
3
|
+
import { ArvoSemanticVersion } from '../../types';
|
4
|
+
import { ArvoContractRecord } from '../types';
|
5
|
+
/**
|
6
|
+
* Represents a version-specific view of an ArvoContract, providing type-safe access
|
7
|
+
* to contract specifications for a particular semantic version. This interface acts as
|
8
|
+
* a bridge between the base contract and its versioned implementation.
|
9
|
+
*/
|
10
|
+
export interface IVersionedArvoContract<TContract extends ArvoContract, TVersion extends ArvoSemanticVersion & keyof TContract['versions'], TMetaData extends Record<string, any> = Record<string, any>> {
|
11
|
+
uri: TContract['uri'];
|
12
|
+
version: TVersion;
|
13
|
+
description: string | null;
|
14
|
+
accepts: ArvoContractRecord<TContract['type'], TContract['versions'][TVersion]['accepts']>;
|
15
|
+
systemError: TContract['systemError'];
|
16
|
+
emits: TContract['versions'][TVersion]['emits'];
|
17
|
+
metadata: TMetaData;
|
18
|
+
}
|
19
|
+
/**
|
20
|
+
* Represents the standardized JSON Schema structure for an Arvo contract record.
|
21
|
+
* This type is used when converting Zod schemas to JSON Schema format for documentation
|
22
|
+
* and external system integration.
|
23
|
+
*/
|
24
|
+
export type ArvoContractRecordJsonSchema = {
|
25
|
+
type: string;
|
26
|
+
schema: ReturnType<typeof zodToJsonSchema>;
|
27
|
+
};
|
28
|
+
/**
|
29
|
+
* Defines the complete JSON Schema representation of a versioned Arvo contract.
|
30
|
+
* This type provides a serializable format suitable for documentation generation,
|
31
|
+
* API specifications, and cross-system compatibility.
|
32
|
+
*
|
33
|
+
* The structure follows JSON Schema conventions while maintaining all essential
|
34
|
+
* contract information including versioning, event specifications, and validation rules.
|
35
|
+
*/
|
36
|
+
export type VersionedArvoContractJSONSchema = {
|
37
|
+
uri: string;
|
38
|
+
description: string | null;
|
39
|
+
version: ArvoSemanticVersion;
|
40
|
+
accepts: ArvoContractRecordJsonSchema;
|
41
|
+
systemError: ArvoContractRecordJsonSchema;
|
42
|
+
emits: ArvoContractRecordJsonSchema[];
|
43
|
+
metadata: Record<string, any> | null;
|
44
|
+
};
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import ArvoContract from '..';
|
2
|
+
import { ArvoSemanticVersion } from '../../types';
|
3
|
+
import { ArvoContractRecord } from '../types';
|
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]>;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.transformEmitsToArray = void 0;
|
4
|
+
var transformEmitsToArray = function (emitMap) {
|
5
|
+
return Object.entries(emitMap).map(function (_a) {
|
6
|
+
var type = _a[0], schema = _a[1];
|
7
|
+
return ({
|
8
|
+
type: type,
|
9
|
+
schema: schema,
|
10
|
+
});
|
11
|
+
});
|
12
|
+
};
|
13
|
+
exports.transformEmitsToArray = transformEmitsToArray;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { ArvoSemanticVersion } from '../types';
|
2
|
+
/**
|
3
|
+
* Special semantic version used as a wildcard matcher.
|
4
|
+
* Represents version '0.0.0' which is reserved for system use.
|
5
|
+
*/
|
6
|
+
export declare const WildCardArvoSemanticVersion: ArvoSemanticVersion & '0.0.0';
|
7
|
+
/**
|
8
|
+
* Checks if a version is the special wildcard version.
|
9
|
+
* Validates that the input is both a valid semantic version and matches the wildcard value.
|
10
|
+
*
|
11
|
+
* @param version - Semantic version to check
|
12
|
+
* @returns True if version is the wildcard version, false otherwise
|
13
|
+
*/
|
14
|
+
export declare const isWildCardArvoSematicVersion: (version: ArvoSemanticVersion) => boolean;
|
@@ -0,0 +1,21 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.isWildCardArvoSematicVersion = exports.WildCardArvoSemanticVersion = void 0;
|
4
|
+
var schema_1 = require("../schema");
|
5
|
+
/**
|
6
|
+
* Special semantic version used as a wildcard matcher.
|
7
|
+
* Represents version '0.0.0' which is reserved for system use.
|
8
|
+
*/
|
9
|
+
exports.WildCardArvoSemanticVersion = '0.0.0';
|
10
|
+
/**
|
11
|
+
* Checks if a version is the special wildcard version.
|
12
|
+
* Validates that the input is both a valid semantic version and matches the wildcard value.
|
13
|
+
*
|
14
|
+
* @param version - Semantic version to check
|
15
|
+
* @returns True if version is the wildcard version, false otherwise
|
16
|
+
*/
|
17
|
+
var isWildCardArvoSematicVersion = function (version) {
|
18
|
+
return (0, schema_1.isValidArvoSemanticVersion)(version) &&
|
19
|
+
version === exports.WildCardArvoSemanticVersion;
|
20
|
+
};
|
21
|
+
exports.isWildCardArvoSematicVersion = isWildCardArvoSematicVersion;
|
@@ -1,29 +1,28 @@
|
|
1
|
-
import { IArvoContract } from './types';
|
2
1
|
import ArvoContract from '.';
|
3
2
|
import { ArvoSemanticVersion } from '../types';
|
4
3
|
import { z } from 'zod';
|
5
4
|
/**
|
6
|
-
*
|
5
|
+
* Creates a validated ArvoContract instance with full control over event types and schemas.
|
7
6
|
*
|
8
|
-
* @
|
9
|
-
*/
|
10
|
-
type InferArvoContract<T> = T extends IArvoContract<infer Uri, infer Type, infer Versions> ? ArvoContract<Uri, Type, Versions> : never;
|
11
|
-
/**
|
12
|
-
* Creates and validates an ArvoContract instance from a contract specification.
|
7
|
+
* @param contract - Contract specification object
|
13
8
|
*
|
14
|
-
* @
|
15
|
-
* @
|
16
|
-
*
|
17
|
-
* @
|
18
|
-
* @returns A properly typed ArvoContract instance
|
9
|
+
* @throws {Error} If the event types contain reserved prefix ({@link ArvoOrchestratorEventTypeGen})
|
10
|
+
* @throws {Error} If any of the ArvoContract's internal validations fail. See {@link ArvoContract}
|
11
|
+
*
|
12
|
+
* @returns A fully typed and validated ArvoContract instance
|
19
13
|
*
|
20
14
|
* @example
|
21
15
|
* ```typescript
|
22
16
|
* const contract = createArvoContract({
|
23
17
|
* uri: 'com.example.contract',
|
24
18
|
* type: 'input.event',
|
19
|
+
* description: "Some example contract",
|
20
|
+
* metadata: {
|
21
|
+
* owner: 'team-a',
|
22
|
+
* priority: 'high'
|
23
|
+
* },
|
25
24
|
* versions: {
|
26
|
-
* '0.0
|
25
|
+
* '1.0.0': {
|
27
26
|
* accepts: z.object({ data: z.string() }),
|
28
27
|
* emits: {
|
29
28
|
* 'output.event': z.object({ result: z.number() })
|
@@ -33,100 +32,13 @@ type InferArvoContract<T> = T extends IArvoContract<infer Uri, infer Type, infer
|
|
33
32
|
* });
|
34
33
|
* ```
|
35
34
|
*/
|
36
|
-
export declare const createArvoContract: <
|
37
|
-
/**
|
38
|
-
* Creates a simplified ArvoContract with standardized type prefixes and emit patterns.
|
39
|
-
* This is a convenience function that automatically formats event types according to conventions:
|
40
|
-
* - Accept types are prefixed with "com."
|
41
|
-
* - Emit types are prefixed with "evt." and suffixed with ".success"
|
42
|
-
*
|
43
|
-
* @template TUri - The URI type for the contract
|
44
|
-
* @template TType - The base type name (without prefixes) for the contract
|
45
|
-
* @template TVersions - Record of versions containing accept and emit schemas
|
46
|
-
*
|
47
|
-
* @param param - The configuration object for creating the contract
|
48
|
-
* @param param.uri - The URI identifying the contract
|
49
|
-
* @param param.type - The base type name (will be prefixed with "com.")
|
50
|
-
* @param param.versions - Version-specific schema definitions
|
51
|
-
* @param param.versions[version].accepts - Zod schema for validating incoming events
|
52
|
-
* @param param.versions[version].emits - Zod schema for validating outgoing events
|
53
|
-
*
|
54
|
-
* @returns An ArvoContract instance with standardized type formatting:
|
55
|
-
* - Accept type will be "com.[type]"
|
56
|
-
* - Emit type will be "evt.[type].success"
|
57
|
-
*
|
58
|
-
* @example
|
59
|
-
* ```typescript
|
60
|
-
* const contract = createSimpleArvoContract({
|
61
|
-
* uri: 'example.com/contracts/processor',
|
62
|
-
* type: 'document.process',
|
63
|
-
* versions: {
|
64
|
-
* '1.0.0': {
|
65
|
-
* accepts: z.object({
|
66
|
-
* documentId: z.string(),
|
67
|
-
* options: z.object({ format: z.string() })
|
68
|
-
* }),
|
69
|
-
* emits: z.object({
|
70
|
-
* processedDocument: z.string(),
|
71
|
-
* metadata: z.object({ size: z.number() })
|
72
|
-
* })
|
73
|
-
* }
|
74
|
-
* }
|
75
|
-
* });
|
76
|
-
*
|
77
|
-
* // Results in a contract where:
|
78
|
-
* // - Accept type is "com.document.process"
|
79
|
-
* // - Emit type is "evt.document.process.success"
|
80
|
-
* ```
|
81
|
-
*
|
82
|
-
* @example
|
83
|
-
* ```typescript
|
84
|
-
* // Multiple versions example
|
85
|
-
* const contract = createSimpleArvoContract({
|
86
|
-
* uri: 'api.example/contracts/user',
|
87
|
-
* type: 'user.create',
|
88
|
-
* versions: {
|
89
|
-
* '1.0.0': {
|
90
|
-
* accepts: z.object({ name: z.string() }),
|
91
|
-
* emits: z.object({ id: z.string() })
|
92
|
-
* },
|
93
|
-
* '2.0.0': {
|
94
|
-
* accepts: z.object({
|
95
|
-
* name: z.string(),
|
96
|
-
* email: z.string().email()
|
97
|
-
* }),
|
98
|
-
* emits: z.object({
|
99
|
-
* id: z.string(),
|
100
|
-
* created: z.date()
|
101
|
-
* })
|
102
|
-
* }
|
103
|
-
* }
|
104
|
-
* });
|
105
|
-
* ```
|
106
|
-
*
|
107
|
-
* @remarks
|
108
|
-
* This function simplifies contract creation by:
|
109
|
-
* 1. Automatically prefixing accept types with "com."
|
110
|
-
* 2. Creating a single emit type prefixed with "evt." and suffixed with ".success"
|
111
|
-
* 3. Maintaining type safety and schema validation
|
112
|
-
*
|
113
|
-
* Use this when you have a simple contract pattern with:
|
114
|
-
* - A single accept type
|
115
|
-
* - A single success emit type
|
116
|
-
* - Standard type naming conventions
|
117
|
-
*
|
118
|
-
* For more complex contracts with multiple emit types or custom type naming,
|
119
|
-
* use {@link createArvoContract} instead.
|
120
|
-
*/
|
121
|
-
export declare const createSimpleArvoContract: <TUri extends string, TType extends string, TVersions extends Record<ArvoSemanticVersion, {
|
35
|
+
export declare const createArvoContract: <TUri extends string, TType extends string, TVersions extends Record<ArvoSemanticVersion, {
|
122
36
|
accepts: z.ZodTypeAny;
|
123
|
-
emits: z.ZodTypeAny
|
124
|
-
}>>(
|
37
|
+
emits: Record<string, z.ZodTypeAny>;
|
38
|
+
}>, TMetaData extends Record<string, any> = Record<string, any>>(contract: {
|
125
39
|
uri: TUri;
|
126
40
|
type: TType;
|
127
41
|
versions: TVersions;
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
}; }>;
|
132
|
-
export {};
|
42
|
+
metadata?: TMetaData;
|
43
|
+
description?: string;
|
44
|
+
}) => ArvoContract<TUri, TType, TVersions, TMetaData>;
|