arvo-core 2.2.4 → 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 +44 -0
- package/dist/errors.js +32 -0
- package/package.json +1 -1
package/dist/errors.d.ts
CHANGED
@@ -1,11 +1,55 @@
|
|
1
|
+
/**
|
2
|
+
* Parameters for constructing a ViolationError
|
3
|
+
*/
|
1
4
|
export type ViolationErrorParam<T extends string = string> = {
|
5
|
+
/** The specific type/category of the violation */
|
2
6
|
type: T;
|
7
|
+
/** A human-readable description of what went wrong */
|
3
8
|
message: string;
|
9
|
+
/** Optional structured data providing additional context about the error */
|
4
10
|
metadata?: Record<string, any>;
|
5
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
|
+
*/
|
6
44
|
export declare class ViolationError<T extends string = string> extends Error {
|
45
|
+
/** The specific type/category of the violation */
|
7
46
|
readonly type: T;
|
47
|
+
/** Additional structured data about the violation */
|
8
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
|
+
*/
|
9
53
|
readonly name: `ViolationError<${T}>`;
|
10
54
|
constructor({ type, message, metadata }: ViolationErrorParam<T>);
|
11
55
|
}
|
package/dist/errors.js
CHANGED
@@ -16,6 +16,38 @@ var __extends = (this && this.__extends) || (function () {
|
|
16
16
|
})();
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
18
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
|
+
*/
|
19
51
|
var ViolationError = /** @class */ (function (_super) {
|
20
52
|
__extends(ViolationError, _super);
|
21
53
|
function ViolationError(_a) {
|