arvo-core 2.1.0 → 2.1.2
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/VersionedArvoContract/index.d.ts +14 -16
- package/dist/ArvoContract/VersionedArvoContract/index.js +26 -26
- package/dist/ArvoContract/VersionedArvoContract/types.d.ts +2 -8
- package/dist/ArvoContract/index.d.ts +6 -6
- package/dist/ArvoContract/index.js +1 -9
- package/dist/ArvoEventFactory/Orchestrator.d.ts +45 -0
- package/dist/ArvoEventFactory/Orchestrator.js +161 -0
- package/dist/ArvoEventFactory/helpers.d.ts +20 -3
- package/dist/ArvoEventFactory/helpers.js +21 -1
- package/dist/ArvoEventFactory/index.d.ts +4 -3
- package/dist/ArvoEventFactory/index.js +5 -4
- package/dist/index.d.ts +3 -4
- package/dist/index.js +4 -1
- package/dist/types.d.ts +4 -4
- package/dist/utils.d.ts +2 -3
- package/package.json +1 -1
@@ -2,28 +2,26 @@ import ArvoContract from '..';
|
|
2
2
|
import { ArvoSemanticVersion } from '../../types';
|
3
3
|
import { ArvoContractRecord } from '../types';
|
4
4
|
import { IVersionedArvoContract, VersionedArvoContractJSONSchema } from './types';
|
5
|
+
import { transformEmitsToArray } from './utils';
|
5
6
|
/**
|
6
7
|
* Implements a version-specific view of an ArvoContract with type-safe schema validation
|
7
8
|
* and JSON Schema generation capabilities.
|
8
9
|
*/
|
9
|
-
export declare class VersionedArvoContract<TContract extends ArvoContract, TVersion extends ArvoSemanticVersion & keyof TContract['versions']
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
private readonly _metadata;
|
17
|
-
private readonly _systemError;
|
18
|
-
get uri(): TContract["uri"];
|
10
|
+
export declare class VersionedArvoContract<TContract extends ArvoContract, TVersion extends ArvoSemanticVersion & keyof TContract['versions']> {
|
11
|
+
protected readonly _contract: TContract;
|
12
|
+
protected readonly _version: TVersion;
|
13
|
+
protected readonly _accepts: ArvoContractRecord<TContract['type'], TContract['versions'][TVersion]['accepts']>;
|
14
|
+
protected readonly _emits: TContract['versions'][TVersion]['emits'];
|
15
|
+
protected readonly _emitList: ReturnType<typeof transformEmitsToArray<TContract, TVersion>>;
|
16
|
+
get uri(): TContract['uri'];
|
19
17
|
get version(): TVersion;
|
20
|
-
get description():
|
18
|
+
get description(): TContract['description'];
|
19
|
+
get metadata(): TContract['metadata'];
|
20
|
+
get systemError(): TContract['systemError'];
|
21
21
|
get accepts(): ArvoContractRecord<TContract["type"], TContract["versions"][TVersion]["accepts"]>;
|
22
|
-
get
|
23
|
-
get
|
24
|
-
|
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>);
|
22
|
+
get emits(): TContract["versions"][TVersion]["emits"];
|
23
|
+
get emitList(): { [K in keyof TContract["versions"][TVersion]["emits"] & string]: ArvoContractRecord<K, TContract["versions"][TVersion]["emits"][K]>; }[keyof TContract["versions"][TVersion]["emits"] & string][];
|
24
|
+
constructor(param: IVersionedArvoContract<TContract, TVersion>);
|
27
25
|
/**
|
28
26
|
* Converts the contract to JSON Schema format
|
29
27
|
* @returns Contract specification in JSON Schema format for documentation/serialization
|
@@ -13,18 +13,18 @@ var OpenTelemetry_1 = require("../../OpenTelemetry");
|
|
13
13
|
*/
|
14
14
|
var VersionedArvoContract = /** @class */ (function () {
|
15
15
|
function VersionedArvoContract(param) {
|
16
|
-
this._uri = param.uri;
|
17
16
|
this._version = param.version;
|
18
|
-
this.
|
19
|
-
this._accepts =
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
this.
|
17
|
+
this._contract = param.contract;
|
18
|
+
this._accepts = {
|
19
|
+
type: param.contract.type,
|
20
|
+
schema: param.contract.versions[param.version].accepts,
|
21
|
+
};
|
22
|
+
this._emits = param.contract.versions[param.version].emits;
|
23
|
+
this._emitList = (0, utils_1.transformEmitsToArray)(this.emits);
|
24
24
|
}
|
25
25
|
Object.defineProperty(VersionedArvoContract.prototype, "uri", {
|
26
26
|
get: function () {
|
27
|
-
return this.
|
27
|
+
return this._contract.uri;
|
28
28
|
},
|
29
29
|
enumerable: false,
|
30
30
|
configurable: true
|
@@ -38,42 +38,42 @@ var VersionedArvoContract = /** @class */ (function () {
|
|
38
38
|
});
|
39
39
|
Object.defineProperty(VersionedArvoContract.prototype, "description", {
|
40
40
|
get: function () {
|
41
|
-
return this.
|
41
|
+
return this._contract.description;
|
42
42
|
},
|
43
43
|
enumerable: false,
|
44
44
|
configurable: true
|
45
45
|
});
|
46
|
-
Object.defineProperty(VersionedArvoContract.prototype, "
|
46
|
+
Object.defineProperty(VersionedArvoContract.prototype, "metadata", {
|
47
47
|
get: function () {
|
48
|
-
return this.
|
48
|
+
return this._contract.metadata;
|
49
49
|
},
|
50
50
|
enumerable: false,
|
51
51
|
configurable: true
|
52
52
|
});
|
53
|
-
Object.defineProperty(VersionedArvoContract.prototype, "
|
53
|
+
Object.defineProperty(VersionedArvoContract.prototype, "systemError", {
|
54
54
|
get: function () {
|
55
|
-
return this.
|
55
|
+
return this._contract.systemError;
|
56
56
|
},
|
57
57
|
enumerable: false,
|
58
58
|
configurable: true
|
59
59
|
});
|
60
|
-
Object.defineProperty(VersionedArvoContract.prototype, "
|
60
|
+
Object.defineProperty(VersionedArvoContract.prototype, "accepts", {
|
61
61
|
get: function () {
|
62
|
-
return this.
|
62
|
+
return this._accepts;
|
63
63
|
},
|
64
64
|
enumerable: false,
|
65
65
|
configurable: true
|
66
66
|
});
|
67
|
-
Object.defineProperty(VersionedArvoContract.prototype, "
|
67
|
+
Object.defineProperty(VersionedArvoContract.prototype, "emits", {
|
68
68
|
get: function () {
|
69
|
-
return this.
|
69
|
+
return this._emits;
|
70
70
|
},
|
71
71
|
enumerable: false,
|
72
72
|
configurable: true
|
73
73
|
});
|
74
|
-
Object.defineProperty(VersionedArvoContract.prototype, "
|
74
|
+
Object.defineProperty(VersionedArvoContract.prototype, "emitList", {
|
75
75
|
get: function () {
|
76
|
-
return this.
|
76
|
+
return this._emitList;
|
77
77
|
},
|
78
78
|
enumerable: false,
|
79
79
|
configurable: true
|
@@ -85,19 +85,19 @@ var VersionedArvoContract = /** @class */ (function () {
|
|
85
85
|
VersionedArvoContract.prototype.toJsonSchema = function () {
|
86
86
|
try {
|
87
87
|
return {
|
88
|
-
uri: this.
|
89
|
-
description: this.
|
90
|
-
version: this.
|
91
|
-
metadata: this.
|
88
|
+
uri: this.uri,
|
89
|
+
description: this.description,
|
90
|
+
version: this.version,
|
91
|
+
metadata: this.metadata,
|
92
92
|
accepts: {
|
93
93
|
type: this._accepts.type,
|
94
94
|
schema: (0, zod_to_json_schema_1.default)(this._accepts.schema),
|
95
95
|
},
|
96
96
|
systemError: {
|
97
|
-
type: this.
|
98
|
-
schema: (0, zod_to_json_schema_1.default)(this.
|
97
|
+
type: this.systemError.type,
|
98
|
+
schema: (0, zod_to_json_schema_1.default)(this.systemError.schema),
|
99
99
|
},
|
100
|
-
emits: Object.entries(this.
|
100
|
+
emits: Object.entries(this._emits).map(function (_a) {
|
101
101
|
var key = _a[0], value = _a[1];
|
102
102
|
return ({
|
103
103
|
type: key,
|
@@ -1,20 +1,14 @@
|
|
1
1
|
import zodToJsonSchema from 'zod-to-json-schema';
|
2
2
|
import ArvoContract from '..';
|
3
3
|
import { ArvoSemanticVersion } from '../../types';
|
4
|
-
import { ArvoContractRecord } from '../types';
|
5
4
|
/**
|
6
5
|
* Represents a version-specific view of an ArvoContract, providing type-safe access
|
7
6
|
* to contract specifications for a particular semantic version. This interface acts as
|
8
7
|
* a bridge between the base contract and its versioned implementation.
|
9
8
|
*/
|
10
|
-
export interface IVersionedArvoContract<TContract extends ArvoContract, TVersion extends ArvoSemanticVersion & keyof TContract['versions']
|
11
|
-
|
9
|
+
export interface IVersionedArvoContract<TContract extends ArvoContract, TVersion extends ArvoSemanticVersion & keyof TContract['versions']> {
|
10
|
+
contract: TContract;
|
12
11
|
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
12
|
}
|
19
13
|
/**
|
20
14
|
* Represents the standardized JSON Schema structure for an Arvo contract record.
|
@@ -41,11 +41,11 @@ export default class ArvoContract<TUri extends string = string, TType extends st
|
|
41
41
|
accepts: z.ZodTypeAny;
|
42
42
|
emits: Record<string, z.ZodTypeAny>;
|
43
43
|
}>, TMetaData extends Record<string, any> = Record<string, any>> {
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
44
|
+
protected readonly _uri: TUri;
|
45
|
+
protected readonly _type: TType;
|
46
|
+
protected readonly _versions: TVersions;
|
47
|
+
protected readonly _description: string | null;
|
48
|
+
protected readonly _metadata: TMetaData;
|
49
49
|
get uri(): TUri;
|
50
50
|
get type(): TType;
|
51
51
|
get versions(): TVersions;
|
@@ -93,7 +93,7 @@ export default class ArvoContract<TUri extends string = string, TType extends st
|
|
93
93
|
*
|
94
94
|
* @throws {Error} When an invalid or non-existent version is requested
|
95
95
|
*/
|
96
|
-
version<V extends (ArvoSemanticVersion & keyof TVersions) | 'any' | 'latest' | 'oldest'>(option: V): V extends ArvoSemanticVersion & keyof TVersions ? VersionedArvoContract<typeof this, V
|
96
|
+
version<V extends (ArvoSemanticVersion & keyof TVersions) | 'any' | 'latest' | 'oldest'>(option: V): V extends ArvoSemanticVersion & keyof TVersions ? VersionedArvoContract<typeof this, V> : VersionedArvoContract<any, any>;
|
97
97
|
/**
|
98
98
|
* Retrieves version numbers in sorted order based on semantic versioning rules.
|
99
99
|
* @returns Array of semantic versions sorted according to specified ordering
|
@@ -162,16 +162,8 @@ var ArvoContract = /** @class */ (function () {
|
|
162
162
|
resolvedVersion = option;
|
163
163
|
}
|
164
164
|
return new VersionedArvoContract_1.VersionedArvoContract({
|
165
|
-
|
166
|
-
description: this._description,
|
165
|
+
contract: this,
|
167
166
|
version: resolvedVersion,
|
168
|
-
accepts: {
|
169
|
-
type: this._type,
|
170
|
-
schema: this._versions[resolvedVersion].accepts,
|
171
|
-
},
|
172
|
-
systemError: this.systemError,
|
173
|
-
emits: this._versions[resolvedVersion].emits,
|
174
|
-
metadata: this._metadata,
|
175
167
|
}); // needed due to TypeScript limitations with conditional types
|
176
168
|
};
|
177
169
|
/**
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import ArvoEventFactory from '.';
|
2
|
+
import { z } from 'zod';
|
3
|
+
import { CreateArvoEvent } from '../ArvoEvent/types';
|
4
|
+
import { ExecutionOpenTelemetryConfiguration } from '../OpenTelemetry/types';
|
5
|
+
import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
6
|
+
/**
|
7
|
+
* Factory class for creating and validating orchestrator-specific events with managed subject hierarchies.
|
8
|
+
* Extends ArvoEventFactory with parent-child subject relationship handling and orchestration flows.
|
9
|
+
*
|
10
|
+
* @example
|
11
|
+
* ```typescript
|
12
|
+
* const contract = createArvoOrchestratorContract({ ... });
|
13
|
+
*
|
14
|
+
* const factory = createArvoOrchestratorEventFactory(contract.version('1.0.0'));
|
15
|
+
* ```
|
16
|
+
*/
|
17
|
+
export declare class ArvoOrchestratorEventFactory<TContract extends VersionedArvoContract<any, any>> extends ArvoEventFactory<TContract> {
|
18
|
+
protected readonly _name: string;
|
19
|
+
constructor(contract: TContract);
|
20
|
+
/**
|
21
|
+
* Initializes a new orchestration event, handling parent-child subject relationships.
|
22
|
+
* - If parentSubject$$ is provided, creates a child subject
|
23
|
+
* - If no parent, creates a new root orchestration subject
|
24
|
+
*
|
25
|
+
* @param event - Event configuration without type/schema/subject
|
26
|
+
* @param [extensions] - Optional additional properties
|
27
|
+
* @param [opentelemetry] - Optional telemetry configuration
|
28
|
+
* @returns Validated orchestration event with proper subject hierarchy
|
29
|
+
*
|
30
|
+
* @throws Error if event validation fails
|
31
|
+
*/
|
32
|
+
init<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['accepts']['schema']>, TContract['accepts']['type']>, 'type' | 'datacontenttype' | 'dataschema' | 'subject'>, extensions?: TExtension, opentelemetry?: ExecutionOpenTelemetryConfiguration): import("..").ArvoEvent<z.TypeOf<TContract["accepts"]["schema"]>, TExtension, TContract["accepts"]["type"]>;
|
33
|
+
/**
|
34
|
+
* Creates a completion event for the orchestration flow.
|
35
|
+
* Uses the contract's configured complete event type from metadata.
|
36
|
+
*
|
37
|
+
* @param event - Completion event configuration
|
38
|
+
* @param [extensions] - Optional additional properties
|
39
|
+
* @param [opentelemetry] - Optional telemetry configuration
|
40
|
+
* @returns Validated completion event
|
41
|
+
*
|
42
|
+
* @throws Error if event validation fails or complete event type not configured
|
43
|
+
*/
|
44
|
+
complete<TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['emits'][TContract['metadata']['completeEventType']]>, TContract['metadata']['completeEventType']>, 'datacontenttype' | 'dataschema' | 'type'>, extensions?: TExtension, opentelemetry?: ExecutionOpenTelemetryConfiguration): import("..").ArvoEvent<z.TypeOf<TContract["emits"][TContract["metadata"]["completeEventType"]]>, TExtension, TContract["metadata"]["completeEventType"]>;
|
45
|
+
}
|
@@ -0,0 +1,161 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
3
|
+
var extendStatics = function (d, b) {
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
7
|
+
return extendStatics(d, b);
|
8
|
+
};
|
9
|
+
return function (d, b) {
|
10
|
+
if (typeof b !== "function" && b !== null)
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
12
|
+
extendStatics(d, b);
|
13
|
+
function __() { this.constructor = d; }
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
15
|
+
};
|
16
|
+
})();
|
17
|
+
var __assign = (this && this.__assign) || function () {
|
18
|
+
__assign = Object.assign || function(t) {
|
19
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
20
|
+
s = arguments[i];
|
21
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
22
|
+
t[p] = s[p];
|
23
|
+
}
|
24
|
+
return t;
|
25
|
+
};
|
26
|
+
return __assign.apply(this, arguments);
|
27
|
+
};
|
28
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
29
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
30
|
+
};
|
31
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
32
|
+
exports.ArvoOrchestratorEventFactory = void 0;
|
33
|
+
var _1 = __importDefault(require("."));
|
34
|
+
var helpers_1 = require("../ArvoEvent/helpers");
|
35
|
+
var schema_1 = require("../ArvoEvent/schema");
|
36
|
+
var OpenTelemetry_1 = require("../OpenTelemetry");
|
37
|
+
var api_1 = require("@opentelemetry/api");
|
38
|
+
var utils_1 = require("../utils");
|
39
|
+
var ArvoOrchestrationSubject_1 = __importDefault(require("../ArvoOrchestrationSubject"));
|
40
|
+
/**
|
41
|
+
* Factory class for creating and validating orchestrator-specific events with managed subject hierarchies.
|
42
|
+
* Extends ArvoEventFactory with parent-child subject relationship handling and orchestration flows.
|
43
|
+
*
|
44
|
+
* @example
|
45
|
+
* ```typescript
|
46
|
+
* const contract = createArvoOrchestratorContract({ ... });
|
47
|
+
*
|
48
|
+
* const factory = createArvoOrchestratorEventFactory(contract.version('1.0.0'));
|
49
|
+
* ```
|
50
|
+
*/
|
51
|
+
var ArvoOrchestratorEventFactory = /** @class */ (function (_super) {
|
52
|
+
__extends(ArvoOrchestratorEventFactory, _super);
|
53
|
+
function ArvoOrchestratorEventFactory(contract) {
|
54
|
+
var _this = this;
|
55
|
+
var _a;
|
56
|
+
if (((_a = contract.metadata) === null || _a === void 0 ? void 0 : _a.contractType) !== 'ArvoOrchestratorContract') {
|
57
|
+
throw new Error("This factory can only be used for ArvoOrchestratorContract");
|
58
|
+
}
|
59
|
+
_this = _super.call(this, contract) || this;
|
60
|
+
_this._name = 'ArvoOrchestratorEventFactory';
|
61
|
+
return _this;
|
62
|
+
}
|
63
|
+
/**
|
64
|
+
* Initializes a new orchestration event, handling parent-child subject relationships.
|
65
|
+
* - If parentSubject$$ is provided, creates a child subject
|
66
|
+
* - If no parent, creates a new root orchestration subject
|
67
|
+
*
|
68
|
+
* @param event - Event configuration without type/schema/subject
|
69
|
+
* @param [extensions] - Optional additional properties
|
70
|
+
* @param [opentelemetry] - Optional telemetry configuration
|
71
|
+
* @returns Validated orchestration event with proper subject hierarchy
|
72
|
+
*
|
73
|
+
* @throws Error if event validation fails
|
74
|
+
*/
|
75
|
+
ArvoOrchestratorEventFactory.prototype.init = function (event, extensions, opentelemetry) {
|
76
|
+
var _this = this;
|
77
|
+
opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
|
78
|
+
tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
|
79
|
+
};
|
80
|
+
var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, "/").concat(this.contract.version, ">.init"));
|
81
|
+
return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
|
82
|
+
var _a, _b, _c, _d;
|
83
|
+
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
84
|
+
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
85
|
+
try {
|
86
|
+
var validationResult = _this.contract.accepts.schema.safeParse(event.data);
|
87
|
+
if (!validationResult.success) {
|
88
|
+
throw new Error("Accept Event data validation failed: ".concat(validationResult.error.message));
|
89
|
+
}
|
90
|
+
var parentSubject = validationResult.data.parentSubject$$;
|
91
|
+
var newSubject = parentSubject
|
92
|
+
? ArvoOrchestrationSubject_1.default.from({
|
93
|
+
orchestator: _this.contract.accepts.type,
|
94
|
+
subject: parentSubject,
|
95
|
+
version: _this.contract.version,
|
96
|
+
})
|
97
|
+
: ArvoOrchestrationSubject_1.default.new({
|
98
|
+
orchestator: _this.contract.accepts.type,
|
99
|
+
initiator: event.source,
|
100
|
+
version: _this.contract.version,
|
101
|
+
});
|
102
|
+
return (0, helpers_1.createArvoEvent)(__assign(__assign({}, event), { subject: newSubject, traceparent: (_b = (_a = event.traceparent) !== null && _a !== void 0 ? _a : otelHeaders.traceparent) !== null && _b !== void 0 ? _b : undefined, tracestate: (_d = (_c = event.tracestate) !== null && _c !== void 0 ? _c : otelHeaders.tracestate) !== null && _d !== void 0 ? _d : undefined, type: _this.contract.accepts.type, datacontenttype: schema_1.ArvoDataContentType, dataschema: utils_1.EventDataschemaUtil.create(_this.contract), data: validationResult.data }), extensions, { disable: true });
|
103
|
+
}
|
104
|
+
catch (error) {
|
105
|
+
(0, OpenTelemetry_1.exceptionToSpan)(error);
|
106
|
+
span.setStatus({
|
107
|
+
code: api_1.SpanStatusCode.ERROR,
|
108
|
+
message: error.message,
|
109
|
+
});
|
110
|
+
throw error;
|
111
|
+
}
|
112
|
+
finally {
|
113
|
+
span.end();
|
114
|
+
}
|
115
|
+
});
|
116
|
+
};
|
117
|
+
/**
|
118
|
+
* Creates a completion event for the orchestration flow.
|
119
|
+
* Uses the contract's configured complete event type from metadata.
|
120
|
+
*
|
121
|
+
* @param event - Completion event configuration
|
122
|
+
* @param [extensions] - Optional additional properties
|
123
|
+
* @param [opentelemetry] - Optional telemetry configuration
|
124
|
+
* @returns Validated completion event
|
125
|
+
*
|
126
|
+
* @throws Error if event validation fails or complete event type not configured
|
127
|
+
*/
|
128
|
+
ArvoOrchestratorEventFactory.prototype.complete = function (event, extensions, opentelemetry) {
|
129
|
+
var _this = this;
|
130
|
+
opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
|
131
|
+
tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
|
132
|
+
};
|
133
|
+
var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, "/").concat(this.contract.version, ">.complete"));
|
134
|
+
return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
|
135
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
136
|
+
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
137
|
+
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
138
|
+
try {
|
139
|
+
var validationResult = (_b = (_a = _this.contract.emits) === null || _a === void 0 ? void 0 : _a[_this.contract.metadata.completeEventType]) === null || _b === void 0 ? void 0 : _b.safeParse(event.data);
|
140
|
+
if (!(validationResult === null || validationResult === void 0 ? void 0 : validationResult.success)) {
|
141
|
+
var msg = (_d = (_c = validationResult === null || validationResult === void 0 ? void 0 : validationResult.error) === null || _c === void 0 ? void 0 : _c.message) !== null && _d !== void 0 ? _d : "No contract available for ".concat(_this.contract.metadata.completeEventType);
|
142
|
+
throw new Error("Emit Event data validation failed: ".concat(msg));
|
143
|
+
}
|
144
|
+
return (0, helpers_1.createArvoEvent)(__assign(__assign({}, event), { type: _this.contract.metadata.completeEventType, traceparent: (_f = (_e = event.traceparent) !== null && _e !== void 0 ? _e : otelHeaders.traceparent) !== null && _f !== void 0 ? _f : undefined, tracestate: (_h = (_g = event.tracestate) !== null && _g !== void 0 ? _g : otelHeaders.tracestate) !== null && _h !== void 0 ? _h : undefined, datacontenttype: schema_1.ArvoDataContentType, dataschema: utils_1.EventDataschemaUtil.create(_this.contract), data: validationResult.data }), extensions, { disable: true });
|
145
|
+
}
|
146
|
+
catch (error) {
|
147
|
+
(0, OpenTelemetry_1.exceptionToSpan)(error);
|
148
|
+
span.setStatus({
|
149
|
+
code: api_1.SpanStatusCode.ERROR,
|
150
|
+
message: error.message,
|
151
|
+
});
|
152
|
+
throw error;
|
153
|
+
}
|
154
|
+
finally {
|
155
|
+
span.end();
|
156
|
+
}
|
157
|
+
});
|
158
|
+
};
|
159
|
+
return ArvoOrchestratorEventFactory;
|
160
|
+
}(_1.default));
|
161
|
+
exports.ArvoOrchestratorEventFactory = ArvoOrchestratorEventFactory;
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import ArvoEventFactory from '.';
|
2
|
-
import ArvoContract from '../ArvoContract';
|
3
|
-
import { ArvoSemanticVersion } from '../types';
|
4
2
|
import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
3
|
+
import { ArvoOrchestratorEventFactory } from './Orchestrator';
|
5
4
|
/**
|
6
5
|
* Creates an ArvoEventFactory for a specific version of a contract.
|
7
6
|
*
|
@@ -15,4 +14,22 @@ import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
|
15
14
|
* const factory = createArvoEventFactory(v1Contract);
|
16
15
|
* ```
|
17
16
|
*/
|
18
|
-
export declare const createArvoEventFactory: <TContract extends VersionedArvoContract<
|
17
|
+
export declare const createArvoEventFactory: <TContract extends VersionedArvoContract<any, any>>(contract: TContract) => ArvoEventFactory<TContract>;
|
18
|
+
/**
|
19
|
+
* Creates an ArvoOrchestratorEventFactory instance for handling orchestration events.
|
20
|
+
* Provides type-safe event creation with parent-child subject relationship handling.
|
21
|
+
*
|
22
|
+
* @param contract - The versioned contract for orchestration events
|
23
|
+
* @returns An ArvoOrchestratorEventFactory for creating orchestration events
|
24
|
+
*
|
25
|
+
* @example
|
26
|
+
* ```typescript
|
27
|
+
* const contract = createArvoOrchestratorContract({ ... });
|
28
|
+
* const factory = createArvoOrchestratorEventFactory(contract.version('1.0.0'));
|
29
|
+
* const event = factory.init({
|
30
|
+
* source: 'system',
|
31
|
+
* data: { parentSubject$$: null, data: 'value' }
|
32
|
+
* });
|
33
|
+
* ```
|
34
|
+
*/
|
35
|
+
export declare const createArvoOrchestratorEventFactory: <TContract extends VersionedArvoContract<any, any>>(contract: TContract) => ArvoOrchestratorEventFactory<TContract>;
|
@@ -3,8 +3,9 @@ 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.createArvoEventFactory = void 0;
|
6
|
+
exports.createArvoOrchestratorEventFactory = exports.createArvoEventFactory = void 0;
|
7
7
|
var _1 = __importDefault(require("."));
|
8
|
+
var Orchestrator_1 = require("./Orchestrator");
|
8
9
|
/**
|
9
10
|
* Creates an ArvoEventFactory for a specific version of a contract.
|
10
11
|
*
|
@@ -20,3 +21,22 @@ var _1 = __importDefault(require("."));
|
|
20
21
|
*/
|
21
22
|
var createArvoEventFactory = function (contract) { return new _1.default(contract); };
|
22
23
|
exports.createArvoEventFactory = createArvoEventFactory;
|
24
|
+
/**
|
25
|
+
* Creates an ArvoOrchestratorEventFactory instance for handling orchestration events.
|
26
|
+
* Provides type-safe event creation with parent-child subject relationship handling.
|
27
|
+
*
|
28
|
+
* @param contract - The versioned contract for orchestration events
|
29
|
+
* @returns An ArvoOrchestratorEventFactory for creating orchestration events
|
30
|
+
*
|
31
|
+
* @example
|
32
|
+
* ```typescript
|
33
|
+
* const contract = createArvoOrchestratorContract({ ... });
|
34
|
+
* const factory = createArvoOrchestratorEventFactory(contract.version('1.0.0'));
|
35
|
+
* const event = factory.init({
|
36
|
+
* source: 'system',
|
37
|
+
* data: { parentSubject$$: null, data: 'value' }
|
38
|
+
* });
|
39
|
+
* ```
|
40
|
+
*/
|
41
|
+
var createArvoOrchestratorEventFactory = function (contract) { return new Orchestrator_1.ArvoOrchestratorEventFactory(contract); };
|
42
|
+
exports.createArvoOrchestratorEventFactory = createArvoOrchestratorEventFactory;
|
@@ -18,8 +18,9 @@ import { VersionedArvoContract } from '../ArvoContract/VersionedArvoContract';
|
|
18
18
|
* const factory = createArvoEventFactory(contract.version('1.0.0'));
|
19
19
|
* ```
|
20
20
|
*/
|
21
|
-
export default class ArvoEventFactory<TContract extends VersionedArvoContract<any, any
|
22
|
-
|
21
|
+
export default class ArvoEventFactory<TContract extends VersionedArvoContract<any, any>> {
|
22
|
+
protected readonly _name: string;
|
23
|
+
protected readonly contract: TContract;
|
23
24
|
/**
|
24
25
|
* Creates an ArvoEventFactory instance for a specific version of a contract.
|
25
26
|
*
|
@@ -66,7 +67,7 @@ export default class ArvoEventFactory<TContract extends VersionedArvoContract<an
|
|
66
67
|
* });
|
67
68
|
* ```
|
68
69
|
*/
|
69
|
-
emits<U extends string & keyof TContract['
|
70
|
+
emits<U extends string & keyof TContract['emits'], TExtension extends Record<string, any>>(event: Omit<CreateArvoEvent<z.input<TContract['emits'][U]>, U>, 'datacontenttype' | 'dataschema'>, extensions?: TExtension, opentelemetry?: ExecutionOpenTelemetryConfiguration): import("..").ArvoEvent<z.TypeOf<TContract["emits"][U]>, TExtension, U>;
|
70
71
|
/**
|
71
72
|
* Creates a system error event for error reporting and handling.
|
72
73
|
*
|
@@ -50,6 +50,7 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
50
50
|
* @param contract - The versioned contract to use for event creation and validation
|
51
51
|
*/
|
52
52
|
function ArvoEventFactory(contract) {
|
53
|
+
this._name = 'ArvoEventFactory';
|
53
54
|
this.contract = contract;
|
54
55
|
}
|
55
56
|
/**
|
@@ -76,7 +77,7 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
76
77
|
opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
|
77
78
|
tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
|
78
79
|
};
|
79
|
-
var span = opentelemetry.tracer.startSpan("
|
80
|
+
var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, "/").concat(this.contract.version, ">.accepts"));
|
80
81
|
return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
|
81
82
|
var _a, _b, _c, _d;
|
82
83
|
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
@@ -126,13 +127,13 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
126
127
|
opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
|
127
128
|
tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
|
128
129
|
};
|
129
|
-
var span = opentelemetry.tracer.startSpan("
|
130
|
+
var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, "/").concat(this.contract.version, ">.emits<").concat(event.type, ">"));
|
130
131
|
return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
|
131
132
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
132
133
|
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
133
134
|
var otelHeaders = (0, OpenTelemetry_1.currentOpenTelemetryHeaders)();
|
134
135
|
try {
|
135
|
-
var validationResult = (_b = (_a = _this.contract.
|
136
|
+
var validationResult = (_b = (_a = _this.contract.emits) === null || _a === void 0 ? void 0 : _a[event.type]) === null || _b === void 0 ? void 0 : _b.safeParse(event.data);
|
136
137
|
if (!(validationResult === null || validationResult === void 0 ? void 0 : validationResult.success)) {
|
137
138
|
var msg = (_d = (_c = validationResult === null || validationResult === void 0 ? void 0 : validationResult.error) === null || _c === void 0 ? void 0 : _c.message) !== null && _d !== void 0 ? _d : "No contract available for ".concat(event.type);
|
138
139
|
throw new Error("Emit Event data validation failed: ".concat(msg));
|
@@ -177,7 +178,7 @@ var ArvoEventFactory = /** @class */ (function () {
|
|
177
178
|
opentelemetry = opentelemetry !== null && opentelemetry !== void 0 ? opentelemetry : {
|
178
179
|
tracer: (0, OpenTelemetry_1.fetchOpenTelemetryTracer)(),
|
179
180
|
};
|
180
|
-
var span = opentelemetry.tracer.startSpan("
|
181
|
+
var span = opentelemetry.tracer.startSpan("".concat(this._name, "<").concat(this.contract.uri, ">.systemError"));
|
181
182
|
return api_1.context.with(api_1.trace.setSpan(api_1.context.active(), span), function () {
|
182
183
|
var _a, _b, _c, _d, _e;
|
183
184
|
span.setStatus({ code: api_1.SpanStatusCode.OK });
|
package/dist/index.d.ts
CHANGED
@@ -10,7 +10,7 @@ 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 } from './ArvoEventFactory/helpers';
|
13
|
+
import { createArvoEventFactory, createArvoOrchestratorEventFactory } from './ArvoEventFactory/helpers';
|
14
14
|
import { ArvoErrorSchema, ArvoSemanticVersionSchema, isValidArvoSemanticVersion } from './schema';
|
15
15
|
import OpenInference from './OpenTelemetry/OpenInference';
|
16
16
|
import ArvoExecution from './OpenTelemetry/ArvoExecution';
|
@@ -29,8 +29,7 @@ import { VersionedArvoContract } from './ArvoContract/VersionedArvoContract';
|
|
29
29
|
import { isWildCardArvoSematicVersion, WildCardArvoSemanticVersion } from './ArvoContract/WildCardArvoSemanticVersion';
|
30
30
|
import { createSimpleArvoContract } from './ArvoContract/SimpleArvoContract';
|
31
31
|
import { SimpleArvoContract } from './ArvoContract/SimpleArvoContract/types';
|
32
|
-
|
33
|
-
type AnyVersionedArvoContract = VersionedArvoContract<any, any>;
|
32
|
+
import { ArvoOrchestratorEventFactory } from './ArvoEventFactory/Orchestrator';
|
34
33
|
/**
|
35
34
|
* Collection of Zod schemas for validating various aspects of Arvo events.
|
36
35
|
* @property {z.ZodObject} CloudEventContextSchema - Schema for core CloudEvent properties.
|
@@ -105,4 +104,4 @@ declare const ArvoEventSchema: {
|
|
105
104
|
parentSubject$$: string | null;
|
106
105
|
}>;
|
107
106
|
};
|
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,
|
107
|
+
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, ArvoOrchestratorEventFactory, createArvoOrchestratorEventFactory, };
|
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.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;
|
6
|
+
exports.createArvoOrchestratorEventFactory = exports.ArvoOrchestratorEventFactory = 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");
|
@@ -31,6 +31,7 @@ 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, "createArvoOrchestratorEventFactory", { enumerable: true, get: function () { return helpers_3.createArvoOrchestratorEventFactory; } });
|
34
35
|
var schema_2 = require("./schema");
|
35
36
|
Object.defineProperty(exports, "ArvoErrorSchema", { enumerable: true, get: function () { return schema_2.ArvoErrorSchema; } });
|
36
37
|
Object.defineProperty(exports, "ArvoSemanticVersionSchema", { enumerable: true, get: function () { return schema_2.ArvoSemanticVersionSchema; } });
|
@@ -61,6 +62,8 @@ Object.defineProperty(exports, "isWildCardArvoSematicVersion", { enumerable: tru
|
|
61
62
|
Object.defineProperty(exports, "WildCardArvoSemanticVersion", { enumerable: true, get: function () { return WildCardArvoSemanticVersion_1.WildCardArvoSemanticVersion; } });
|
62
63
|
var SimpleArvoContract_1 = require("./ArvoContract/SimpleArvoContract");
|
63
64
|
Object.defineProperty(exports, "createSimpleArvoContract", { enumerable: true, get: function () { return SimpleArvoContract_1.createSimpleArvoContract; } });
|
65
|
+
var Orchestrator_1 = require("./ArvoEventFactory/Orchestrator");
|
66
|
+
Object.defineProperty(exports, "ArvoOrchestratorEventFactory", { enumerable: true, get: function () { return Orchestrator_1.ArvoOrchestratorEventFactory; } });
|
64
67
|
/**
|
65
68
|
* Collection of Zod schemas for validating various aspects of Arvo events.
|
66
69
|
* @property {z.ZodObject} CloudEventContextSchema - Schema for core CloudEvent properties.
|
package/dist/types.d.ts
CHANGED
@@ -58,15 +58,15 @@ export type ArvoErrorType = z.infer<typeof ArvoErrorSchema>;
|
|
58
58
|
* @see {@link InferArvoEvent} for the event inference utility
|
59
59
|
* @see {@link ArvoEvent} for the base event structure
|
60
60
|
*/
|
61
|
-
export type InferVersionedArvoContract<TVersion extends VersionedArvoContract<any, any
|
61
|
+
export type InferVersionedArvoContract<TVersion extends VersionedArvoContract<any, any>> = {
|
62
62
|
accepts: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['accepts']['schema']>, {}, TVersion['accepts']['type']>>;
|
63
63
|
systemError: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['systemError']['schema']>, {}, TVersion['systemError']['type']>>;
|
64
64
|
emitMap: {
|
65
|
-
[K in string & keyof TVersion['
|
65
|
+
[K in string & keyof TVersion['emits']]: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['emits'][K]>, {}, K>>;
|
66
66
|
};
|
67
67
|
emits: Array<{
|
68
|
-
[K in string & keyof TVersion['
|
69
|
-
}[string & keyof TVersion['
|
68
|
+
[K in string & keyof TVersion['emits']]: InferArvoEvent<ArvoEvent<InferZodSchema<TVersion['emits'][K]>, {}, K>>;
|
69
|
+
}[string & keyof TVersion['emits']]>;
|
70
70
|
metadata: TVersion['metadata'];
|
71
71
|
};
|
72
72
|
export {};
|
package/dist/utils.d.ts
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
import ArvoContract from './ArvoContract';
|
2
1
|
import { VersionedArvoContract } from './ArvoContract/VersionedArvoContract';
|
3
2
|
import ArvoEvent from './ArvoEvent';
|
4
3
|
import { ArvoSemanticVersion } from './types';
|
@@ -89,13 +88,13 @@ export declare class EventDataschemaUtil {
|
|
89
88
|
* // Returns: "my-contract/1.0.0"
|
90
89
|
* ```
|
91
90
|
*/
|
92
|
-
static create(contract: VersionedArvoContract<
|
91
|
+
static create(contract: VersionedArvoContract<any, any>): string;
|
93
92
|
/**
|
94
93
|
* Creates dataschema string with wildcard version.
|
95
94
|
* @param contract Versioned contract
|
96
95
|
* @returns `{contract.uri}/{WildCardArvoSemanticVersion}`
|
97
96
|
*/
|
98
|
-
static createWithWildCardVersion(contract: VersionedArvoContract<
|
97
|
+
static createWithWildCardVersion(contract: VersionedArvoContract<any, any>): string;
|
99
98
|
/**
|
100
99
|
* Extracts URI and version from dataschema string.
|
101
100
|
*
|