arvo-core 2.2.3 → 2.2.5
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/errors.d.ts +55 -0
- package/dist/errors.js +63 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/dist/ArvoContract/errors.d.ts +0 -10
- package/dist/ArvoContract/errors.js +0 -36
package/dist/errors.d.ts
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
/**
|
2
|
+
* Parameters for constructing a ViolationError
|
3
|
+
*/
|
4
|
+
export type ViolationErrorParam<T extends string = string> = {
|
5
|
+
/** The specific type/category of the violation */
|
6
|
+
type: T;
|
7
|
+
/** A human-readable description of what went wrong */
|
8
|
+
message: string;
|
9
|
+
/** Optional structured data providing additional context about the error */
|
10
|
+
metadata?: Record<string, any>;
|
11
|
+
};
|
12
|
+
/**
|
13
|
+
* ViolationError represents errors that require explicit handling in the system.
|
14
|
+
* These are distinct from recoverable errors that can be automatically handled
|
15
|
+
* by workflow logic. The explicit handling may be required for severe
|
16
|
+
* violation of service contracts or explict retry handling
|
17
|
+
*
|
18
|
+
* Common violation scenarios include:
|
19
|
+
* - Rate limit exceeded on external API calls
|
20
|
+
* - Contract violations (invalid input/output)
|
21
|
+
* - Configuration errors
|
22
|
+
* - Permission/authorization failures
|
23
|
+
*
|
24
|
+
* @example
|
25
|
+
* ```typescript
|
26
|
+
* // Creating a rate limit violation
|
27
|
+
* throw new ViolationError({
|
28
|
+
* type: 'RATE_LIMIT_EXCEEDED',
|
29
|
+
* message: 'API rate limit reached, retry after 60 seconds',
|
30
|
+
* metadata: { retryAfter: 60 }
|
31
|
+
* });
|
32
|
+
*
|
33
|
+
* // Handling violations
|
34
|
+
* try {
|
35
|
+
* await apiCall();
|
36
|
+
* } catch (error) {
|
37
|
+
* if (error instanceof ViolationError && error.type === 'RATE_LIMIT_EXCEEDED') {
|
38
|
+
* const retryAfter = error.metadata?.retryAfter;
|
39
|
+
* // Handle rate limiting...
|
40
|
+
* }
|
41
|
+
* }
|
42
|
+
* ```
|
43
|
+
*/
|
44
|
+
export declare class ViolationError<T extends string = string> extends Error {
|
45
|
+
/** The specific type/category of the violation */
|
46
|
+
readonly type: T;
|
47
|
+
/** Additional structured data about the violation */
|
48
|
+
readonly metadata: Record<string, any> | null;
|
49
|
+
/**
|
50
|
+
* The error name, formatted as ViolationError<TYPE>
|
51
|
+
* This helps with error identification in logs and stack traces
|
52
|
+
*/
|
53
|
+
readonly name: `ViolationError<${T}>`;
|
54
|
+
constructor({ type, message, metadata }: ViolationErrorParam<T>);
|
55
|
+
}
|
package/dist/errors.js
ADDED
@@ -0,0 +1,63 @@
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
18
|
+
exports.ViolationError = void 0;
|
19
|
+
/**
|
20
|
+
* ViolationError represents errors that require explicit handling in the system.
|
21
|
+
* These are distinct from recoverable errors that can be automatically handled
|
22
|
+
* by workflow logic. The explicit handling may be required for severe
|
23
|
+
* violation of service contracts or explict retry handling
|
24
|
+
*
|
25
|
+
* Common violation scenarios include:
|
26
|
+
* - Rate limit exceeded on external API calls
|
27
|
+
* - Contract violations (invalid input/output)
|
28
|
+
* - Configuration errors
|
29
|
+
* - Permission/authorization failures
|
30
|
+
*
|
31
|
+
* @example
|
32
|
+
* ```typescript
|
33
|
+
* // Creating a rate limit violation
|
34
|
+
* throw new ViolationError({
|
35
|
+
* type: 'RATE_LIMIT_EXCEEDED',
|
36
|
+
* message: 'API rate limit reached, retry after 60 seconds',
|
37
|
+
* metadata: { retryAfter: 60 }
|
38
|
+
* });
|
39
|
+
*
|
40
|
+
* // Handling violations
|
41
|
+
* try {
|
42
|
+
* await apiCall();
|
43
|
+
* } catch (error) {
|
44
|
+
* if (error instanceof ViolationError && error.type === 'RATE_LIMIT_EXCEEDED') {
|
45
|
+
* const retryAfter = error.metadata?.retryAfter;
|
46
|
+
* // Handle rate limiting...
|
47
|
+
* }
|
48
|
+
* }
|
49
|
+
* ```
|
50
|
+
*/
|
51
|
+
var ViolationError = /** @class */ (function (_super) {
|
52
|
+
__extends(ViolationError, _super);
|
53
|
+
function ViolationError(_a) {
|
54
|
+
var type = _a.type, message = _a.message, metadata = _a.metadata;
|
55
|
+
var _this = _super.call(this, "ViolationError<".concat(type, "> ").concat(message)) || this;
|
56
|
+
_this.type = type;
|
57
|
+
_this.name = "ViolationError<".concat(_this.type, ">");
|
58
|
+
_this.metadata = metadata !== null && metadata !== void 0 ? metadata : null;
|
59
|
+
return _this;
|
60
|
+
}
|
61
|
+
return ViolationError;
|
62
|
+
}(Error));
|
63
|
+
exports.ViolationError = ViolationError;
|
package/dist/index.d.ts
CHANGED
@@ -28,7 +28,7 @@ import { isWildCardArvoSematicVersion, WildCardArvoSemanticVersion } from './Arv
|
|
28
28
|
import { createSimpleArvoContract } from './ArvoContract/SimpleArvoContract';
|
29
29
|
import { SimpleArvoContract } from './ArvoContract/SimpleArvoContract/types';
|
30
30
|
import { ArvoOrchestratorEventFactory } from './ArvoEventFactory/Orchestrator';
|
31
|
-
import {
|
31
|
+
import { ViolationError, ViolationErrorParam } from './errors';
|
32
32
|
/**
|
33
33
|
* Collection of Zod schemas for validating various aspects of Arvo events.
|
34
34
|
* @property {z.ZodObject} CloudEventContextSchema - Schema for core CloudEvent properties.
|
@@ -103,4 +103,4 @@ declare const ArvoEventSchema: {
|
|
103
103
|
parentSubject$$: string | null;
|
104
104
|
}>;
|
105
105
|
};
|
106
|
-
export { ArvoEvent, createArvoEvent, ArvoDataContentType, ArvoEventData, CloudEventExtension, ArvoEventSchema, CloudEventContext, ArvoExtension, OpenTelemetryExtension, CreateArvoEvent, exceptionToSpan, logToSpan, OpenTelemetryHeaders, TelemetryLogLevel, OTelNull, validateURI, cleanString, ArvoContract,
|
106
|
+
export { 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, EventDataschemaUtil, ArvoOrchestrationSubjectContentSchema, ArvoSemanticVersionSchema, ArvoErrorSchema, ArvoErrorType, compareSemanticVersions, parseSemanticVersion, createSimpleArvoContract, ArvoOrchestratorContract, VersionedArvoContract, InferVersionedArvoContract, isWildCardArvoSematicVersion, WildCardArvoSemanticVersion, isValidArvoSemanticVersion, SimpleArvoContract, ArvoOrchestratorEventFactory, createArvoOrchestratorEventFactory, ArvoOpenTelemetry, ViolationError, ViolationErrorParam, };
|
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.ArvoOpenTelemetry = 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.
|
6
|
+
exports.ViolationError = exports.ArvoOpenTelemetry = 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 = 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");
|
@@ -63,8 +63,8 @@ var SimpleArvoContract_1 = require("./ArvoContract/SimpleArvoContract");
|
|
63
63
|
Object.defineProperty(exports, "createSimpleArvoContract", { enumerable: true, get: function () { return SimpleArvoContract_1.createSimpleArvoContract; } });
|
64
64
|
var Orchestrator_1 = require("./ArvoEventFactory/Orchestrator");
|
65
65
|
Object.defineProperty(exports, "ArvoOrchestratorEventFactory", { enumerable: true, get: function () { return Orchestrator_1.ArvoOrchestratorEventFactory; } });
|
66
|
-
var errors_1 = require("./
|
67
|
-
Object.defineProperty(exports, "
|
66
|
+
var errors_1 = require("./errors");
|
67
|
+
Object.defineProperty(exports, "ViolationError", { enumerable: true, get: function () { return errors_1.ViolationError; } });
|
68
68
|
/**
|
69
69
|
* Collection of Zod schemas for validating various aspects of Arvo events.
|
70
70
|
* @property {z.ZodObject} CloudEventContextSchema - Schema for core CloudEvent properties.
|
package/package.json
CHANGED
@@ -1,10 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Custom error class representing a violation of an ArvoContract.
|
3
|
-
*/
|
4
|
-
export declare class ArvoContractViolationError extends Error {
|
5
|
-
/**
|
6
|
-
* Creates an instance of ArvoContractViolationError.
|
7
|
-
* @param {string} [message='ArvoContract violated'] - The error message. Default is 'ArvoContract violated'.
|
8
|
-
*/
|
9
|
-
constructor(message?: string);
|
10
|
-
}
|
@@ -1,36 +0,0 @@
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
18
|
-
exports.ArvoContractViolationError = void 0;
|
19
|
-
/**
|
20
|
-
* Custom error class representing a violation of an ArvoContract.
|
21
|
-
*/
|
22
|
-
var ArvoContractViolationError = /** @class */ (function (_super) {
|
23
|
-
__extends(ArvoContractViolationError, _super);
|
24
|
-
/**
|
25
|
-
* Creates an instance of ArvoContractViolationError.
|
26
|
-
* @param {string} [message='ArvoContract violated'] - The error message. Default is 'ArvoContract violated'.
|
27
|
-
*/
|
28
|
-
function ArvoContractViolationError(message) {
|
29
|
-
if (message === void 0) { message = 'ArvoContract violated'; }
|
30
|
-
var _this = _super.call(this, message) || this;
|
31
|
-
_this.name = 'ArvoContractViolationError';
|
32
|
-
return _this;
|
33
|
-
}
|
34
|
-
return ArvoContractViolationError;
|
35
|
-
}(Error));
|
36
|
-
exports.ArvoContractViolationError = ArvoContractViolationError;
|