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
@@ -38,6 +38,7 @@ var schema_1 = require("./schema");
|
|
38
38
|
var zlib = __importStar(require("node:zlib"));
|
39
39
|
var utils_1 = require("../utils");
|
40
40
|
var uuid_1 = require("uuid");
|
41
|
+
var WildCardArvoSemanticVersion_1 = require("../ArvoContract/WildCardArvoSemanticVersion");
|
41
42
|
/**
|
42
43
|
* Handles the creation and parsing of Arvo orchestration subjects.
|
43
44
|
*/
|
@@ -50,7 +51,7 @@ var ArvoOrchestrationSubject = /** @class */ (function () {
|
|
50
51
|
*
|
51
52
|
* @param param - Configuration object for the orchestration subject
|
52
53
|
* @param param.orchestator - Name identifier of the orchestrator
|
53
|
-
* @param param.version - Version of the orchestrator. If null, defaults to {@link
|
54
|
+
* @param param.version - Version of the orchestrator. If null, defaults to {@link WildCardArvoSemanticVersion}
|
54
55
|
* @param param.initiator - Identifier of the entity initiating the orchestration
|
55
56
|
* @param param.meta - Optional metadata key-value pairs for additional orchestration context
|
56
57
|
* @returns A base64 encoded string containing the compressed orchestration subject data
|
@@ -81,7 +82,7 @@ var ArvoOrchestrationSubject = /** @class */ (function () {
|
|
81
82
|
return ArvoOrchestrationSubject.create({
|
82
83
|
orchestrator: {
|
83
84
|
name: param.orchestator,
|
84
|
-
version: (_a = param.version) !== null && _a !== void 0 ? _a :
|
85
|
+
version: (_a = param.version) !== null && _a !== void 0 ? _a : WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion,
|
85
86
|
},
|
86
87
|
execution: {
|
87
88
|
id: (0, uuid_1.v4)(),
|
@@ -98,7 +99,7 @@ var ArvoOrchestrationSubject = /** @class */ (function () {
|
|
98
99
|
*
|
99
100
|
* @param param - Configuration object for creating a new subject from a parent
|
100
101
|
* @param param.orchestator - Name identifier of the new orchestrator
|
101
|
-
* @param param.version - Version of the new orchestrator. If null, defaults to {@link
|
102
|
+
* @param param.version - Version of the new orchestrator. If null, defaults to {@link WildCardArvoSemanticVersion}
|
102
103
|
* @param param.subject - Base64 encoded string of the parent orchestration subject
|
103
104
|
* @param param.meta - Optional additional metadata to merge with the parent's metadata
|
104
105
|
* @returns A new base64 encoded string containing the compressed orchestration subject data
|
@@ -128,7 +129,7 @@ var ArvoOrchestrationSubject = /** @class */ (function () {
|
|
128
129
|
var parsedSubject = ArvoOrchestrationSubject.parse(param.subject);
|
129
130
|
return ArvoOrchestrationSubject.new({
|
130
131
|
initiator: parsedSubject.orchestrator.name,
|
131
|
-
version: (_a = param.version) !== null && _a !== void 0 ? _a :
|
132
|
+
version: (_a = param.version) !== null && _a !== void 0 ? _a : WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion,
|
132
133
|
orchestator: param.orchestator,
|
133
134
|
meta: __assign(__assign({}, ((_b = parsedSubject.meta) !== null && _b !== void 0 ? _b : {})), ((_c = param.meta) !== null && _c !== void 0 ? _c : {})),
|
134
135
|
});
|
@@ -199,11 +200,6 @@ var ArvoOrchestrationSubject = /** @class */ (function () {
|
|
199
200
|
throw new Error((0, utils_1.cleanString)("\n Error parsing orchestration subject string to the context. \n Error -> ".concat(e.message, " \n subject -> ").concat(subject, "\n ")));
|
200
201
|
}
|
201
202
|
};
|
202
|
-
/**
|
203
|
-
* Represents a wildcard version number used when version matching is not required.
|
204
|
-
* Format follows semantic versioning pattern.
|
205
|
-
*/
|
206
|
-
ArvoOrchestrationSubject.WildCardMachineVersion = '0.0.0';
|
207
203
|
return ArvoOrchestrationSubject;
|
208
204
|
}());
|
209
205
|
exports.default = ArvoOrchestrationSubject;
|
@@ -4,11 +4,11 @@ export declare const ArvoOrchestrationSubjectContentSchema: z.ZodObject<{
|
|
4
4
|
name: z.ZodEffects<z.ZodString, string, string>;
|
5
5
|
version: z.ZodString;
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
7
|
-
name: string;
|
8
7
|
version: string;
|
9
|
-
}, {
|
10
8
|
name: string;
|
9
|
+
}, {
|
11
10
|
version: string;
|
11
|
+
name: string;
|
12
12
|
}>;
|
13
13
|
execution: z.ZodObject<{
|
14
14
|
id: z.ZodEffects<z.ZodString, string, string>;
|
@@ -23,8 +23,8 @@ export declare const ArvoOrchestrationSubjectContentSchema: z.ZodObject<{
|
|
23
23
|
meta: z.ZodRecord<z.ZodString, z.ZodString>;
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
25
25
|
orchestrator: {
|
26
|
-
name: string;
|
27
26
|
version: string;
|
27
|
+
name: string;
|
28
28
|
};
|
29
29
|
execution: {
|
30
30
|
id: string;
|
@@ -33,8 +33,8 @@ export declare const ArvoOrchestrationSubjectContentSchema: z.ZodObject<{
|
|
33
33
|
meta: Record<string, string>;
|
34
34
|
}, {
|
35
35
|
orchestrator: {
|
36
|
-
name: string;
|
37
36
|
version: string;
|
37
|
+
name: string;
|
38
38
|
};
|
39
39
|
execution: {
|
40
40
|
id: string;
|
@@ -14,16 +14,7 @@ import { ArvoSemanticVersion } from '../types';
|
|
14
14
|
* 3. Schema Merging: Merges provided init schemas with the OrchestrationInitEventBaseSchema
|
15
15
|
* 4. Version Support: Handles multiple versions of the contract with their respective schemas
|
16
16
|
*
|
17
|
-
* @
|
18
|
-
* @template TType - The type identifier for the contract events
|
19
|
-
* @template TVersions - Record of versions with their corresponding init and complete schemas
|
20
|
-
*
|
21
|
-
* @param param - Configuration object for the orchestrator contract
|
22
|
-
* @param param.uri - The URI that uniquely identifies this contract
|
23
|
-
* @param param.type - The base type identifier (must be lowercase alphanumeric with dots)
|
24
|
-
* @param param.versions - Record of version configurations
|
25
|
-
* @param param.versions[version].init - Zod schema for initialization event (merged with OrchestrationInitEventBaseSchema)
|
26
|
-
* @param param.versions[version].complete - Zod schema for completion event
|
17
|
+
* @param contract - Configuration object for the orchestrator contract
|
27
18
|
*
|
28
19
|
* @throws {Error} If the type parameter contains invalid characters (must be lowercase alphanumeric with dots)
|
29
20
|
*
|
@@ -33,7 +24,7 @@ import { ArvoSemanticVersion } from '../types';
|
|
33
24
|
* ```typescript
|
34
25
|
* const contract = createArvoOrchestratorContract({
|
35
26
|
* uri: '#/orchestrators/data/processor',
|
36
|
-
*
|
27
|
+
* name: 'data.processor',
|
37
28
|
* versions: {
|
38
29
|
* '1.0.0': {
|
39
30
|
* init: z.object({
|
@@ -68,7 +59,7 @@ import { ArvoSemanticVersion } from '../types';
|
|
68
59
|
* });
|
69
60
|
* ```
|
70
61
|
*/
|
71
|
-
export declare const createArvoOrchestratorContract: <TUri extends string,
|
62
|
+
export declare const createArvoOrchestratorContract: <TUri extends string, TName extends string, TVersions extends Record<ArvoSemanticVersion, {
|
72
63
|
init: z.ZodObject<any, any, any>;
|
73
64
|
complete: z.ZodObject<any, any, any>;
|
74
|
-
}>>(
|
65
|
+
}>, TMetaData extends Record<string, any>>(contract: ICreateArvoOrchestratorContract<TUri, TName, TVersions, TMetaData>) => ArvoOrchestratorContract<TUri, TName, TVersions, TMetaData>;
|
@@ -1,9 +1,23 @@
|
|
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
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
15
|
+
};
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
17
|
exports.createArvoOrchestratorContract = void 0;
|
4
18
|
var typegen_1 = require("./typegen");
|
5
19
|
var schema_1 = require("./schema");
|
6
|
-
var
|
20
|
+
var ArvoContract_1 = __importDefault(require("../ArvoContract"));
|
7
21
|
/**
|
8
22
|
* Validates if a string contains only uppercase or lowercase alphanumeric characters.
|
9
23
|
*
|
@@ -34,16 +48,7 @@ function isLowerAlphanumeric(input) {
|
|
34
48
|
* 3. Schema Merging: Merges provided init schemas with the OrchestrationInitEventBaseSchema
|
35
49
|
* 4. Version Support: Handles multiple versions of the contract with their respective schemas
|
36
50
|
*
|
37
|
-
* @
|
38
|
-
* @template TType - The type identifier for the contract events
|
39
|
-
* @template TVersions - Record of versions with their corresponding init and complete schemas
|
40
|
-
*
|
41
|
-
* @param param - Configuration object for the orchestrator contract
|
42
|
-
* @param param.uri - The URI that uniquely identifies this contract
|
43
|
-
* @param param.type - The base type identifier (must be lowercase alphanumeric with dots)
|
44
|
-
* @param param.versions - Record of version configurations
|
45
|
-
* @param param.versions[version].init - Zod schema for initialization event (merged with OrchestrationInitEventBaseSchema)
|
46
|
-
* @param param.versions[version].complete - Zod schema for completion event
|
51
|
+
* @param contract - Configuration object for the orchestrator contract
|
47
52
|
*
|
48
53
|
* @throws {Error} If the type parameter contains invalid characters (must be lowercase alphanumeric with dots)
|
49
54
|
*
|
@@ -53,7 +58,7 @@ function isLowerAlphanumeric(input) {
|
|
53
58
|
* ```typescript
|
54
59
|
* const contract = createArvoOrchestratorContract({
|
55
60
|
* uri: '#/orchestrators/data/processor',
|
56
|
-
*
|
61
|
+
* name: 'data.processor',
|
57
62
|
* versions: {
|
58
63
|
* '1.0.0': {
|
59
64
|
* init: z.object({
|
@@ -88,26 +93,30 @@ function isLowerAlphanumeric(input) {
|
|
88
93
|
* });
|
89
94
|
* ```
|
90
95
|
*/
|
91
|
-
var createArvoOrchestratorContract = function (
|
92
|
-
|
93
|
-
|
96
|
+
var createArvoOrchestratorContract = function (contract) {
|
97
|
+
var _a, _b;
|
98
|
+
if (!isLowerAlphanumeric(contract.name)) {
|
99
|
+
throw new Error("Invalid 'name' = '".concat(contract.name, "'. The 'name' must only contain alphanumeric characters. e.g. test.orchestrator"));
|
94
100
|
}
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
101
|
+
var mergedMetaData = __assign(__assign({}, ((_a = contract.metadata) !== null && _a !== void 0 ? _a : {})), { contractType: 'ArvoOrchestratorContract', rootType: contract.name, completeEventType: typegen_1.ArvoOrchestratorEventTypeGen.complete(contract.name), initEventType: typegen_1.ArvoOrchestratorEventTypeGen.init(contract.name) });
|
102
|
+
return new ArvoContract_1.default({
|
103
|
+
uri: contract.uri,
|
104
|
+
type: typegen_1.ArvoOrchestratorEventTypeGen.init(contract.name),
|
105
|
+
description: (_b = contract.description) !== null && _b !== void 0 ? _b : null,
|
106
|
+
metadata: mergedMetaData,
|
107
|
+
versions: Object.fromEntries(Object.entries(contract.versions).map(function (_a) {
|
99
108
|
var _b;
|
100
|
-
var version = _a[0],
|
109
|
+
var version = _a[0], versionContract = _a[1];
|
101
110
|
return [
|
102
111
|
version,
|
103
112
|
{
|
104
|
-
accepts: schema_1.OrchestrationInitEventBaseSchema.merge(
|
113
|
+
accepts: schema_1.OrchestrationInitEventBaseSchema.merge(versionContract.init),
|
105
114
|
emits: (_b = {},
|
106
|
-
_b[typegen_1.ArvoOrchestratorEventTypeGen.complete(
|
115
|
+
_b[typegen_1.ArvoOrchestratorEventTypeGen.complete(contract.name)] = versionContract.complete,
|
107
116
|
_b),
|
108
117
|
},
|
109
118
|
];
|
110
119
|
})),
|
111
|
-
}
|
120
|
+
});
|
112
121
|
};
|
113
122
|
exports.createArvoOrchestratorContract = createArvoOrchestratorContract;
|
@@ -17,6 +17,14 @@ export declare class ArvoOrchestratorEventTypeGen {
|
|
17
17
|
* This prefix helps identify events that belong to the Arvo orchestrator system.
|
18
18
|
*/
|
19
19
|
static readonly prefix: 'arvo.orc';
|
20
|
+
/**
|
21
|
+
* Checks if an event type belongs to the Arvo orchestrator.
|
22
|
+
*
|
23
|
+
* @param eventType - Event type string to check
|
24
|
+
* @returns True if the event is an orchestrator event, false otherwise
|
25
|
+
* ```
|
26
|
+
*/
|
27
|
+
static isOrchestratorEventType(eventType: string): boolean;
|
20
28
|
/**
|
21
29
|
* Generates an initialization event type string for a given event name.
|
22
30
|
*
|
@@ -17,6 +17,16 @@ exports.ArvoOrchestratorEventTypeGen = void 0;
|
|
17
17
|
var ArvoOrchestratorEventTypeGen = /** @class */ (function () {
|
18
18
|
function ArvoOrchestratorEventTypeGen() {
|
19
19
|
}
|
20
|
+
/**
|
21
|
+
* Checks if an event type belongs to the Arvo orchestrator.
|
22
|
+
*
|
23
|
+
* @param eventType - Event type string to check
|
24
|
+
* @returns True if the event is an orchestrator event, false otherwise
|
25
|
+
* ```
|
26
|
+
*/
|
27
|
+
ArvoOrchestratorEventTypeGen.isOrchestratorEventType = function (eventType) {
|
28
|
+
return eventType.startsWith(ArvoOrchestratorEventTypeGen.prefix);
|
29
|
+
};
|
20
30
|
/**
|
21
31
|
* Generates an initialization event type string for a given event name.
|
22
32
|
*
|
@@ -4,45 +4,40 @@ import ArvoContract from '../ArvoContract';
|
|
4
4
|
import { ArvoOrchestratorEventTypeGen } from './typegen';
|
5
5
|
import { OrchestrationInitEventBaseSchema } from './schema';
|
6
6
|
/**
|
7
|
-
*
|
8
|
-
*
|
7
|
+
* A specialized ArvoContract type for orchestrating complex event flows.
|
8
|
+
* Automatically generates appropriately typed init and complete events.
|
9
9
|
*
|
10
|
-
* @template TUri -
|
11
|
-
* @template
|
12
|
-
* @template TVersions -
|
13
|
-
*
|
14
|
-
* @example
|
15
|
-
* ```typescript
|
16
|
-
* type MyOrchestrator = ArvoOrchestratorContract<
|
17
|
-
* '/orchestrators/payment-flow',
|
18
|
-
* 'payment.process',
|
19
|
-
* {
|
20
|
-
* '1.0.0': {
|
21
|
-
* init: z.object({ amount: z.number() }),
|
22
|
-
* complete: z.object({ transactionId: z.string() })
|
23
|
-
* }
|
24
|
-
* }
|
25
|
-
* >;
|
26
|
-
* ```
|
10
|
+
* @template TUri - Unique contract identifier URI
|
11
|
+
* @template TName - Base name for generating orchestrator event types
|
12
|
+
* @template TVersions - Version-specific schemas for init and complete events
|
13
|
+
* @template TMetaData - Additional metadata type (optional)
|
27
14
|
*
|
28
15
|
* @remarks
|
29
|
-
*
|
30
|
-
* -
|
31
|
-
* -
|
16
|
+
* Key characteristics:
|
17
|
+
* - Automatically generates init and complete event types using {@link ArvoOrchestratorEventTypeGen}
|
18
|
+
* - Enforces schema definitions for both initialization and completion events
|
19
|
+
* - Maintains version compatibility with {@link ArvoSemanticVersion}
|
20
|
+
* - Includes metadata about contract type and event types
|
21
|
+
* - Merges initialization schemas with base orchestration schema
|
32
22
|
*/
|
33
|
-
export type ArvoOrchestratorContract<TUri extends string = string,
|
23
|
+
export type ArvoOrchestratorContract<TUri extends string = string, TName extends string = string, TVersions extends Record<ArvoSemanticVersion, {
|
34
24
|
init: z.ZodObject<any, any, any>;
|
35
25
|
complete: z.ZodObject<any, any, any>;
|
36
26
|
}> = Record<ArvoSemanticVersion, {
|
37
27
|
init: z.ZodObject<any, any, any>;
|
38
28
|
complete: z.ZodObject<any, any, any>;
|
39
|
-
}>> = ArvoContract<TUri, ReturnType<typeof ArvoOrchestratorEventTypeGen.init<
|
29
|
+
}>, TMetaData extends Record<string, any> = Record<string, any>> = ArvoContract<TUri, ReturnType<typeof ArvoOrchestratorEventTypeGen.init<TName>>, {
|
40
30
|
[V in ArvoSemanticVersion & keyof TVersions]: {
|
41
31
|
accepts: ReturnType<typeof OrchestrationInitEventBaseSchema.merge<TVersions[V]['init'], TVersions[V]['init']['shape']>>;
|
42
32
|
emits: {
|
43
|
-
[K in ReturnType<typeof ArvoOrchestratorEventTypeGen.complete<
|
33
|
+
[K in ReturnType<typeof ArvoOrchestratorEventTypeGen.complete<TName>>]: TVersions[V]['complete'];
|
44
34
|
};
|
45
35
|
};
|
36
|
+
}, TMetaData & {
|
37
|
+
contractType: 'ArvoOrchestratorContract';
|
38
|
+
rootType: TName;
|
39
|
+
initEventType: ReturnType<typeof ArvoOrchestratorEventTypeGen.init<TName>>;
|
40
|
+
completeEventType: ReturnType<typeof ArvoOrchestratorEventTypeGen.complete<TName>>;
|
46
41
|
}>;
|
47
42
|
/**
|
48
43
|
* Interface defining the configuration structure for creating an Arvo Orchestrator Contract.
|
@@ -51,28 +46,26 @@ export type ArvoOrchestratorContract<TUri extends string = string, TType extends
|
|
51
46
|
* @template TUri - The URI type that uniquely identifies the contract
|
52
47
|
* @template TType - The base event type for the orchestrator
|
53
48
|
* @template TVersions - Record of versioned schemas for init and complete events
|
49
|
+
* @template TMetaData - The metadata of the contract
|
54
50
|
*
|
55
51
|
* @property uri - The unique identifier URI for the contract
|
56
52
|
* @property type - The base event type that will be used to generate init/complete event types
|
57
53
|
* @property versions - A record of version-specific schemas for initialization and completion events
|
54
|
+
* @property metadata - The optional contract metadata
|
55
|
+
* @property description - The optional contract description
|
58
56
|
*
|
59
57
|
* @remarks
|
60
58
|
* - The URI should be unique within your system
|
61
59
|
* - The type will be used to generate appropriate event type strings
|
62
60
|
* - Each version must conform to {@link ArvoSemanticVersion} format
|
63
|
-
* - Init and complete schemas should use Zod for validation
|
64
61
|
*/
|
65
|
-
export interface ICreateArvoOrchestratorContract<TUri extends string,
|
62
|
+
export interface ICreateArvoOrchestratorContract<TUri extends string, TName extends string, TVersions extends Record<ArvoSemanticVersion, {
|
66
63
|
init: z.ZodTypeAny;
|
67
64
|
complete: z.ZodTypeAny;
|
68
|
-
}>> {
|
69
|
-
/** Unique identifier URI for the contract */
|
65
|
+
}>, TMetaData extends Record<string, any>> {
|
70
66
|
uri: TUri;
|
71
|
-
|
72
|
-
type: TType;
|
73
|
-
/**
|
74
|
-
* Version-specific schemas for initialization and completion events
|
75
|
-
* @remarks Each version must provide both init and complete schemas
|
76
|
-
*/
|
67
|
+
name: TName;
|
77
68
|
versions: TVersions;
|
69
|
+
metadata?: TMetaData;
|
70
|
+
description?: string;
|
78
71
|
}
|
package/dist/index.d.ts
CHANGED
@@ -4,14 +4,14 @@ import { createArvoEvent } from './ArvoEvent/helpers';
|
|
4
4
|
import { CloudEventContext, CloudEventExtension, ArvoEventData, ArvoExtension, OpenTelemetryExtension, CreateArvoEvent } from './ArvoEvent/types';
|
5
5
|
import { exceptionToSpan, logToSpan, OTelNull, currentOpenTelemetryHeaders } from './OpenTelemetry';
|
6
6
|
import { OpenTelemetryHeaders, TelemetryLogLevel, ExecutionOpenTelemetryConfiguration } from './OpenTelemetry/types';
|
7
|
-
import { validateURI, cleanString, compareSemanticVersions, parseSemanticVersion } from './utils';
|
7
|
+
import { validateURI, cleanString, compareSemanticVersions, parseSemanticVersion, EventDataschemaUtil } from './utils';
|
8
8
|
import ArvoContract from './ArvoContract';
|
9
|
-
import { createArvoContract
|
9
|
+
import { createArvoContract } from './ArvoContract/helpers';
|
10
10
|
import { ArvoContractValidators } from './ArvoContract/validators';
|
11
11
|
import { ArvoContractRecord, IArvoContract, ResolveArvoContractRecord, ArvoContractJSONSchema } from './ArvoContract/types';
|
12
12
|
import ArvoEventFactory from './ArvoEventFactory';
|
13
|
-
import { createArvoEventFactory
|
14
|
-
import { ArvoErrorSchema, ArvoSemanticVersionSchema } from './schema';
|
13
|
+
import { createArvoEventFactory } from './ArvoEventFactory/helpers';
|
14
|
+
import { ArvoErrorSchema, ArvoSemanticVersionSchema, isValidArvoSemanticVersion } from './schema';
|
15
15
|
import OpenInference from './OpenTelemetry/OpenInference';
|
16
16
|
import ArvoExecution from './OpenTelemetry/ArvoExecution';
|
17
17
|
import { ArvoExecutionSpanKind } from './OpenTelemetry/ArvoExecution/types';
|
@@ -21,11 +21,16 @@ import { ArvoOrchestrationSubjectContentSchema } from './ArvoOrchestrationSubjec
|
|
21
21
|
import { ArvoOrchestrationSubjectContent } from './ArvoOrchestrationSubject/type';
|
22
22
|
import ArvoEventHttp from './ArvoEventHttp';
|
23
23
|
import { ArvoEventHttpConfig } from './ArvoEventHttp/types';
|
24
|
-
import {
|
24
|
+
import { InferArvoEvent, ArvoSemanticVersion, ArvoErrorType, InferVersionedArvoContract } from './types';
|
25
25
|
import { createArvoOrchestratorContract } from './ArvoOrchestratorContract';
|
26
26
|
import { ICreateArvoOrchestratorContract, ArvoOrchestratorContract } from './ArvoOrchestratorContract/types';
|
27
27
|
import { ArvoOrchestratorEventTypeGen } from './ArvoOrchestratorContract/typegen';
|
28
28
|
import { VersionedArvoContract } from './ArvoContract/VersionedArvoContract';
|
29
|
+
import { isWildCardArvoSematicVersion, WildCardArvoSemanticVersion } from './ArvoContract/WildCardArvoSemanticVersion';
|
30
|
+
import { createSimpleArvoContract } from './ArvoContract/SimpleArvoContract';
|
31
|
+
import { SimpleArvoContract } from './ArvoContract/SimpleArvoContract/types';
|
32
|
+
type AnyArvoContract = ArvoContract<any, any, any, any>;
|
33
|
+
type AnyVersionedArvoContract = VersionedArvoContract<any, any>;
|
29
34
|
/**
|
30
35
|
* Collection of Zod schemas for validating various aspects of Arvo events.
|
31
36
|
* @property {z.ZodObject} CloudEventContextSchema - Schema for core CloudEvent properties.
|
@@ -48,20 +53,20 @@ declare const ArvoEventSchema: {
|
|
48
53
|
}, "strip", import("zod").ZodTypeAny, {
|
49
54
|
type: string;
|
50
55
|
id: string;
|
51
|
-
time: string;
|
52
56
|
source: string;
|
53
57
|
specversion: "1.0";
|
54
58
|
subject: string;
|
55
59
|
datacontenttype: string;
|
56
60
|
dataschema: string | null;
|
61
|
+
time: string;
|
57
62
|
}, {
|
58
63
|
type: string;
|
59
64
|
id: string;
|
60
|
-
time: string;
|
61
65
|
source: string;
|
62
66
|
specversion: string;
|
63
67
|
subject: string;
|
64
68
|
dataschema: string | null;
|
69
|
+
time: string;
|
65
70
|
datacontenttype?: string | undefined;
|
66
71
|
}>;
|
67
72
|
CloudEventExtensionSchema: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodNumber, import("zod").ZodNull]>>;
|
@@ -100,4 +105,4 @@ declare const ArvoEventSchema: {
|
|
100
105
|
parentSubject$$: string | null;
|
101
106
|
}>;
|
102
107
|
};
|
103
|
-
export { ArvoEventHttpConfig, ArvoEventHttp, ArvoEvent, createArvoEvent, ArvoDataContentType, ArvoEventData, CloudEventExtension, ArvoEventSchema, CloudEventContext, ArvoExtension, OpenTelemetryExtension, CreateArvoEvent, exceptionToSpan, logToSpan, OpenTelemetryHeaders, TelemetryLogLevel, OTelNull, validateURI, cleanString, ArvoContract, createArvoContract, ArvoContractValidators, ArvoContractRecord, IArvoContract, ResolveArvoContractRecord, ArvoEventFactory, createArvoEventFactory, currentOpenTelemetryHeaders, OpenInference, OpenInferenceSpanKind, ArvoExecution, ArvoExecutionSpanKind, ArvoContractJSONSchema, ArvoOrchestrationSubject, ArvoOrchestrationSubjectContent, ArvoSemanticVersion, InferArvoEvent,
|
108
|
+
export { ArvoEventHttpConfig, ArvoEventHttp, ArvoEvent, createArvoEvent, ArvoDataContentType, ArvoEventData, CloudEventExtension, ArvoEventSchema, CloudEventContext, ArvoExtension, OpenTelemetryExtension, CreateArvoEvent, exceptionToSpan, logToSpan, OpenTelemetryHeaders, TelemetryLogLevel, OTelNull, validateURI, cleanString, ArvoContract, createArvoContract, ArvoContractValidators, ArvoContractRecord, IArvoContract, ResolveArvoContractRecord, ArvoEventFactory, createArvoEventFactory, currentOpenTelemetryHeaders, OpenInference, OpenInferenceSpanKind, ArvoExecution, ArvoExecutionSpanKind, ArvoContractJSONSchema, ArvoOrchestrationSubject, ArvoOrchestrationSubjectContent, ArvoSemanticVersion, InferArvoEvent, createArvoOrchestratorContract, ICreateArvoOrchestratorContract, ArvoOrchestratorEventTypeGen, ExecutionOpenTelemetryConfiguration, EventDataschemaUtil, ArvoOrchestrationSubjectContentSchema, ArvoSemanticVersionSchema, ArvoErrorSchema, ArvoErrorType, compareSemanticVersions, parseSemanticVersion, createSimpleArvoContract, ArvoOrchestratorContract, VersionedArvoContract, InferVersionedArvoContract, isWildCardArvoSematicVersion, WildCardArvoSemanticVersion, isValidArvoSemanticVersion, SimpleArvoContract, AnyArvoContract, AnyVersionedArvoContract, };
|
package/dist/index.js
CHANGED
@@ -3,7 +3,7 @@ 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.createSimpleArvoContract = exports.parseSemanticVersion = exports.compareSemanticVersions = exports.ArvoErrorSchema = exports.ArvoSemanticVersionSchema = exports.ArvoOrchestrationSubjectContentSchema = exports.
|
6
|
+
exports.isValidArvoSemanticVersion = exports.WildCardArvoSemanticVersion = exports.isWildCardArvoSematicVersion = exports.VersionedArvoContract = exports.createSimpleArvoContract = exports.parseSemanticVersion = exports.compareSemanticVersions = exports.ArvoErrorSchema = exports.ArvoSemanticVersionSchema = exports.ArvoOrchestrationSubjectContentSchema = exports.EventDataschemaUtil = exports.ArvoOrchestratorEventTypeGen = exports.createArvoOrchestratorContract = exports.ArvoOrchestrationSubject = exports.ArvoExecutionSpanKind = exports.ArvoExecution = exports.OpenInferenceSpanKind = exports.OpenInference = exports.currentOpenTelemetryHeaders = exports.createArvoEventFactory = exports.ArvoEventFactory = exports.ArvoContractValidators = exports.createArvoContract = exports.ArvoContract = exports.cleanString = exports.validateURI = exports.OTelNull = exports.logToSpan = exports.exceptionToSpan = exports.ArvoEventSchema = exports.ArvoDataContentType = exports.createArvoEvent = exports.ArvoEvent = exports.ArvoEventHttp = void 0;
|
7
7
|
var ArvoEvent_1 = __importDefault(require("./ArvoEvent"));
|
8
8
|
exports.ArvoEvent = ArvoEvent_1.default;
|
9
9
|
var schema_1 = require("./ArvoEvent/schema");
|
@@ -20,21 +20,21 @@ Object.defineProperty(exports, "validateURI", { enumerable: true, get: function
|
|
20
20
|
Object.defineProperty(exports, "cleanString", { enumerable: true, get: function () { return utils_1.cleanString; } });
|
21
21
|
Object.defineProperty(exports, "compareSemanticVersions", { enumerable: true, get: function () { return utils_1.compareSemanticVersions; } });
|
22
22
|
Object.defineProperty(exports, "parseSemanticVersion", { enumerable: true, get: function () { return utils_1.parseSemanticVersion; } });
|
23
|
+
Object.defineProperty(exports, "EventDataschemaUtil", { enumerable: true, get: function () { return utils_1.EventDataschemaUtil; } });
|
23
24
|
var ArvoContract_1 = __importDefault(require("./ArvoContract"));
|
24
25
|
exports.ArvoContract = ArvoContract_1.default;
|
25
26
|
var helpers_2 = require("./ArvoContract/helpers");
|
26
27
|
Object.defineProperty(exports, "createArvoContract", { enumerable: true, get: function () { return helpers_2.createArvoContract; } });
|
27
|
-
Object.defineProperty(exports, "createSimpleArvoContract", { enumerable: true, get: function () { return helpers_2.createSimpleArvoContract; } });
|
28
28
|
var validators_1 = require("./ArvoContract/validators");
|
29
29
|
Object.defineProperty(exports, "ArvoContractValidators", { enumerable: true, get: function () { return validators_1.ArvoContractValidators; } });
|
30
30
|
var ArvoEventFactory_1 = __importDefault(require("./ArvoEventFactory"));
|
31
31
|
exports.ArvoEventFactory = ArvoEventFactory_1.default;
|
32
32
|
var helpers_3 = require("./ArvoEventFactory/helpers");
|
33
33
|
Object.defineProperty(exports, "createArvoEventFactory", { enumerable: true, get: function () { return helpers_3.createArvoEventFactory; } });
|
34
|
-
Object.defineProperty(exports, "parseEventDataSchema", { enumerable: true, get: function () { return helpers_3.parseEventDataSchema; } });
|
35
34
|
var schema_2 = require("./schema");
|
36
35
|
Object.defineProperty(exports, "ArvoErrorSchema", { enumerable: true, get: function () { return schema_2.ArvoErrorSchema; } });
|
37
36
|
Object.defineProperty(exports, "ArvoSemanticVersionSchema", { enumerable: true, get: function () { return schema_2.ArvoSemanticVersionSchema; } });
|
37
|
+
Object.defineProperty(exports, "isValidArvoSemanticVersion", { enumerable: true, get: function () { return schema_2.isValidArvoSemanticVersion; } });
|
38
38
|
var OpenInference_1 = __importDefault(require("./OpenTelemetry/OpenInference"));
|
39
39
|
exports.OpenInference = OpenInference_1.default;
|
40
40
|
var ArvoExecution_1 = __importDefault(require("./OpenTelemetry/ArvoExecution"));
|
@@ -54,6 +54,13 @@ Object.defineProperty(exports, "createArvoOrchestratorContract", { enumerable: t
|
|
54
54
|
var typegen_1 = require("./ArvoOrchestratorContract/typegen");
|
55
55
|
Object.defineProperty(exports, "ArvoOrchestratorEventTypeGen", { enumerable: true, get: function () { return typegen_1.ArvoOrchestratorEventTypeGen; } });
|
56
56
|
var schema_4 = require("./ArvoOrchestratorContract/schema");
|
57
|
+
var VersionedArvoContract_1 = require("./ArvoContract/VersionedArvoContract");
|
58
|
+
Object.defineProperty(exports, "VersionedArvoContract", { enumerable: true, get: function () { return VersionedArvoContract_1.VersionedArvoContract; } });
|
59
|
+
var WildCardArvoSemanticVersion_1 = require("./ArvoContract/WildCardArvoSemanticVersion");
|
60
|
+
Object.defineProperty(exports, "isWildCardArvoSematicVersion", { enumerable: true, get: function () { return WildCardArvoSemanticVersion_1.isWildCardArvoSematicVersion; } });
|
61
|
+
Object.defineProperty(exports, "WildCardArvoSemanticVersion", { enumerable: true, get: function () { return WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion; } });
|
62
|
+
var SimpleArvoContract_1 = require("./ArvoContract/SimpleArvoContract");
|
63
|
+
Object.defineProperty(exports, "createSimpleArvoContract", { enumerable: true, get: function () { return SimpleArvoContract_1.createSimpleArvoContract; } });
|
57
64
|
/**
|
58
65
|
* Collection of Zod schemas for validating various aspects of Arvo events.
|
59
66
|
* @property {z.ZodObject} CloudEventContextSchema - Schema for core CloudEvent properties.
|
package/dist/schema.d.ts
CHANGED
@@ -10,12 +10,13 @@ export declare const ArvoErrorSchema: z.ZodObject<{
|
|
10
10
|
errorMessage: z.ZodString;
|
11
11
|
errorStack: z.ZodNullable<z.ZodString>;
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
13
|
-
errorMessage: string;
|
14
13
|
errorName: string;
|
14
|
+
errorMessage: string;
|
15
15
|
errorStack: string | null;
|
16
16
|
}, {
|
17
|
-
errorMessage: string;
|
18
17
|
errorName: string;
|
18
|
+
errorMessage: string;
|
19
19
|
errorStack: string | null;
|
20
20
|
}>;
|
21
21
|
export declare const ArvoSemanticVersionSchema: z.ZodString;
|
22
|
+
export declare const isValidArvoSemanticVersion: (version: string) => boolean;
|
package/dist/schema.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.ArvoSemanticVersionSchema = exports.ArvoErrorSchema = void 0;
|
3
|
+
exports.isValidArvoSemanticVersion = exports.ArvoSemanticVersionSchema = exports.ArvoErrorSchema = void 0;
|
4
4
|
var zod_1 = require("zod");
|
5
5
|
/**
|
6
6
|
* Schema for Arvo error objects.
|
@@ -18,3 +18,8 @@ exports.ArvoSemanticVersionSchema = zod_1.z
|
|
18
18
|
.string()
|
19
19
|
.regex(/^\d+\.\d+\.\d+$/, 'Invalid version format of the semantic version')
|
20
20
|
.describe('Semantic version of the Arvo component in the format X.Y.Z');
|
21
|
+
// Check is the provided version is a valid arvo semantic version
|
22
|
+
var isValidArvoSemanticVersion = function (version) {
|
23
|
+
return exports.ArvoSemanticVersionSchema.safeParse(version).success;
|
24
|
+
};
|
25
|
+
exports.isValidArvoSemanticVersion = isValidArvoSemanticVersion;
|