@orbytautomation/engine 0.2.3 → 0.3.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/README.md +1 -1
- package/dist/core/EngineLogger.d.ts +34 -2
- package/dist/core/EngineLogger.d.ts.map +1 -1
- package/dist/core/EngineLogger.js +44 -3
- package/dist/core/EngineLogger.js.map +1 -1
- package/dist/errors/ErrorCodes.d.ts +205 -6
- package/dist/errors/ErrorCodes.d.ts.map +1 -1
- package/dist/errors/ErrorCodes.js +398 -5
- package/dist/errors/ErrorCodes.js.map +1 -1
- package/dist/errors/ErrorDebugger.d.ts +98 -0
- package/dist/errors/ErrorDebugger.d.ts.map +1 -0
- package/dist/errors/ErrorDebugger.js +283 -0
- package/dist/errors/ErrorDebugger.js.map +1 -0
- package/dist/errors/ErrorDetector.d.ts +148 -0
- package/dist/errors/ErrorDetector.d.ts.map +1 -0
- package/dist/errors/ErrorDetector.js +358 -0
- package/dist/errors/ErrorDetector.js.map +1 -0
- package/dist/errors/ErrorFormatter.d.ts +92 -3
- package/dist/errors/ErrorFormatter.d.ts.map +1 -1
- package/dist/errors/ErrorFormatter.js +220 -4
- package/dist/errors/ErrorFormatter.js.map +1 -1
- package/dist/errors/ErrorHandler.d.ts +259 -0
- package/dist/errors/ErrorHandler.d.ts.map +1 -0
- package/dist/errors/ErrorHandler.js +378 -0
- package/dist/errors/ErrorHandler.js.map +1 -0
- package/dist/errors/FieldRegistry.d.ts +39 -0
- package/dist/errors/FieldRegistry.d.ts.map +1 -1
- package/dist/errors/FieldRegistry.js +172 -74
- package/dist/errors/FieldRegistry.js.map +1 -1
- package/dist/errors/OrbytError.d.ts +85 -3
- package/dist/errors/OrbytError.d.ts.map +1 -1
- package/dist/errors/OrbytError.js +151 -4
- package/dist/errors/OrbytError.js.map +1 -1
- package/dist/errors/SchedulerError.d.ts +93 -1
- package/dist/errors/SchedulerError.d.ts.map +1 -1
- package/dist/errors/SchedulerError.js +145 -1
- package/dist/errors/SchedulerError.js.map +1 -1
- package/dist/errors/SecurityErrors.d.ts +94 -12
- package/dist/errors/SecurityErrors.d.ts.map +1 -1
- package/dist/errors/SecurityErrors.js +162 -18
- package/dist/errors/SecurityErrors.js.map +1 -1
- package/dist/errors/StepError.d.ts +111 -1
- package/dist/errors/StepError.d.ts.map +1 -1
- package/dist/errors/StepError.js +182 -1
- package/dist/errors/StepError.js.map +1 -1
- package/dist/errors/WorkflowError.d.ts +139 -2
- package/dist/errors/WorkflowError.d.ts.map +1 -1
- package/dist/errors/WorkflowError.js +264 -22
- package/dist/errors/WorkflowError.js.map +1 -1
- package/dist/errors/index.d.ts +5 -1
- package/dist/errors/index.d.ts.map +1 -1
- package/dist/errors/index.js +7 -4
- package/dist/errors/index.js.map +1 -1
- package/dist/loader/WorkflowLoader.d.ts +83 -21
- package/dist/loader/WorkflowLoader.d.ts.map +1 -1
- package/dist/loader/WorkflowLoader.js +169 -55
- package/dist/loader/WorkflowLoader.js.map +1 -1
- package/dist/parser/SchemaValidator.d.ts.map +1 -1
- package/dist/parser/SchemaValidator.js +2 -1
- package/dist/parser/SchemaValidator.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -621,7 +621,7 @@ steps:
|
|
|
621
621
|
|
|
622
622
|
## Related Packages
|
|
623
623
|
|
|
624
|
-
- **[@orbytautomation/cli](https://www.npmjs.com/package/@orbytautomation/cli)** — Command-line interface for Orbyt
|
|
624
|
+
- **[@orbytautomation/cli](https://www.npmjs.com/package/@orbytautomation/cli)** — Command-line interface for Orbyt (Coming Soon...)
|
|
625
625
|
- **[@dev-ecosystem/core](https://www.npmjs.com/package/@dev-ecosystem/core)** — Shared types and utilities
|
|
626
626
|
|
|
627
627
|
---
|
|
@@ -8,13 +8,26 @@
|
|
|
8
8
|
* - Severity-based log level filtering using LogLevelSeverity
|
|
9
9
|
* - Multiple output formats (pretty, text, json, structured)
|
|
10
10
|
* - Color support with ANSI codes
|
|
11
|
+
* - Engine-generated timestamps (consistent across CLI, API, web dashboards)
|
|
11
12
|
* - Context and error tracking
|
|
12
13
|
* - Performance measurement with automatic severity adjustment
|
|
13
14
|
* - Efficient level comparison using numeric severity
|
|
14
15
|
*
|
|
16
|
+
* Timestamps are generated by the engine to ensure consistency across:
|
|
17
|
+
* - CLI output
|
|
18
|
+
* - API responses
|
|
19
|
+
* - Web dashboard logs
|
|
20
|
+
* - Monitoring systems
|
|
21
|
+
* - Audit trails
|
|
22
|
+
*
|
|
15
23
|
* @module core
|
|
16
24
|
*/
|
|
17
|
-
import { LogLevel } from '@dev-ecosystem/core';
|
|
25
|
+
import { LogLevel, formatTimestamp } from '@dev-ecosystem/core';
|
|
26
|
+
/**
|
|
27
|
+
* Re-export formatTimestamp for external use
|
|
28
|
+
* Allows other parts of the system to format timestamps consistently
|
|
29
|
+
*/
|
|
30
|
+
export { formatTimestamp };
|
|
18
31
|
/**
|
|
19
32
|
* Engine-specific log format type
|
|
20
33
|
*/
|
|
@@ -119,7 +132,26 @@ export declare class EngineLogger {
|
|
|
119
132
|
*/
|
|
120
133
|
setFormat(format: EngineLogFormat): void;
|
|
121
134
|
/**
|
|
122
|
-
*
|
|
135
|
+
* Update timestamp setting
|
|
136
|
+
*/
|
|
137
|
+
setTimestamp(enabled: boolean): void;
|
|
138
|
+
/**
|
|
139
|
+
* Update timestamp format
|
|
140
|
+
*
|
|
141
|
+
* @param _format - 'time' | 'datetime' | 'full' (reserved for future use)
|
|
142
|
+
*/
|
|
143
|
+
setTimestampFormat(_format: 'time' | 'datetime' | 'full'): void;
|
|
144
|
+
/**
|
|
145
|
+
* Format a timestamp using engine's timestamp formatter
|
|
146
|
+
* Useful for consistent timestamp formatting across the system
|
|
147
|
+
*
|
|
148
|
+
* @param date - Date to format (defaults to current time)
|
|
149
|
+
* @param format - Format type ('time', 'datetime', or 'full')
|
|
150
|
+
* @returns Formatted timestamp string
|
|
151
|
+
*/
|
|
152
|
+
formatTimestamp(date?: Date, format?: 'time' | 'datetime' | 'full'): string;
|
|
153
|
+
/**
|
|
154
|
+
* Check if a level will be logged (uses shouldLog from ecosystem-core)
|
|
123
155
|
*/
|
|
124
156
|
willLog(level: LogLevel): boolean;
|
|
125
157
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EngineLogger.d.ts","sourceRoot":"","sources":["../../src/core/EngineLogger.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"EngineLogger.d.ts","sourceRoot":"","sources":["../../src/core/EngineLogger.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,13 +8,26 @@
|
|
|
8
8
|
* - Severity-based log level filtering using LogLevelSeverity
|
|
9
9
|
* - Multiple output formats (pretty, text, json, structured)
|
|
10
10
|
* - Color support with ANSI codes
|
|
11
|
+
* - Engine-generated timestamps (consistent across CLI, API, web dashboards)
|
|
11
12
|
* - Context and error tracking
|
|
12
13
|
* - Performance measurement with automatic severity adjustment
|
|
13
14
|
* - Efficient level comparison using numeric severity
|
|
14
15
|
*
|
|
16
|
+
* Timestamps are generated by the engine to ensure consistency across:
|
|
17
|
+
* - CLI output
|
|
18
|
+
* - API responses
|
|
19
|
+
* - Web dashboard logs
|
|
20
|
+
* - Monitoring systems
|
|
21
|
+
* - Audit trails
|
|
22
|
+
*
|
|
15
23
|
* @module core
|
|
16
24
|
*/
|
|
17
|
-
import { LogLevel, LogLevelSeverity, formatLog, createLogEntry, shouldLog, } from '@dev-ecosystem/core';
|
|
25
|
+
import { LogLevel, LogLevelSeverity, formatLog, createLogEntry, shouldLog, formatTimestamp, } from '@dev-ecosystem/core';
|
|
26
|
+
/**
|
|
27
|
+
* Re-export formatTimestamp for external use
|
|
28
|
+
* Allows other parts of the system to format timestamps consistently
|
|
29
|
+
*/
|
|
30
|
+
export { formatTimestamp };
|
|
18
31
|
/**
|
|
19
32
|
* Engine Logger
|
|
20
33
|
*
|
|
@@ -189,7 +202,34 @@ export class EngineLogger {
|
|
|
189
202
|
this.formatOptions.format = format;
|
|
190
203
|
}
|
|
191
204
|
/**
|
|
192
|
-
*
|
|
205
|
+
* Update timestamp setting
|
|
206
|
+
*/
|
|
207
|
+
setTimestamp(enabled) {
|
|
208
|
+
this.config.timestamp = enabled;
|
|
209
|
+
this.formatOptions.timestamp = enabled;
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Update timestamp format
|
|
213
|
+
*
|
|
214
|
+
* @param _format - 'time' | 'datetime' | 'full' (reserved for future use)
|
|
215
|
+
*/
|
|
216
|
+
setTimestampFormat(_format) {
|
|
217
|
+
// Timestamp format is handled by ecosystem-core formatTimestamp function
|
|
218
|
+
// This method is kept for API compatibility but doesn't modify formatOptions
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* Format a timestamp using engine's timestamp formatter
|
|
222
|
+
* Useful for consistent timestamp formatting across the system
|
|
223
|
+
*
|
|
224
|
+
* @param date - Date to format (defaults to current time)
|
|
225
|
+
* @param format - Format type ('time', 'datetime', or 'full')
|
|
226
|
+
* @returns Formatted timestamp string
|
|
227
|
+
*/
|
|
228
|
+
formatTimestamp(date, format = 'time') {
|
|
229
|
+
return formatTimestamp(date || new Date(), format);
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
* Check if a level will be logged (uses shouldLog from ecosystem-core)
|
|
193
233
|
*/
|
|
194
234
|
willLog(level) {
|
|
195
235
|
return shouldLog(level, this.config.level);
|
|
@@ -239,13 +279,14 @@ export function createEngineLogger(logLevel, verbose = false) {
|
|
|
239
279
|
info: LogLevel.INFO,
|
|
240
280
|
warn: LogLevel.WARN,
|
|
241
281
|
error: LogLevel.ERROR,
|
|
282
|
+
fatal: LogLevel.FATAL,
|
|
242
283
|
};
|
|
243
284
|
const level = levelMap[logLevel] || LogLevel.INFO;
|
|
244
285
|
return new EngineLogger({
|
|
245
286
|
level,
|
|
246
287
|
format: verbose ? 'pretty' : 'text',
|
|
247
288
|
colors: true,
|
|
248
|
-
timestamp:
|
|
289
|
+
timestamp: true, // Enable human-readable timestamps
|
|
249
290
|
source: 'Orbyt',
|
|
250
291
|
});
|
|
251
292
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EngineLogger.js","sourceRoot":"","sources":["../../src/core/EngineLogger.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"EngineLogger.js","sourceRoot":"","sources":["../../src/core/EngineLogger.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,17 +1,43 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Orbyt Error Codes
|
|
3
3
|
*
|
|
4
|
-
*
|
|
4
|
+
* Structured error codes for the Orbyt workflow execution engine.
|
|
5
|
+
* These codes are separate from ecosystem exit codes (process-level).
|
|
6
|
+
*
|
|
7
|
+
* ARCHITECTURE:
|
|
8
|
+
* ============
|
|
9
|
+
* - Error Codes (ORB-XX-NNN): Structured diagnostic codes for detailed error identification
|
|
10
|
+
* - Exit Codes (100-509): Process-level codes from @dev-ecosystem/core for shell scripts
|
|
11
|
+
*
|
|
12
|
+
* TWO-LAYER SYSTEM:
|
|
13
|
+
* ================
|
|
14
|
+
* 1. Exit Codes (@dev-ecosystem/core): Process termination codes for the whole ecosystem
|
|
15
|
+
* - Used by CLI, API, SDK to determine process exit status
|
|
16
|
+
* - Example: ExitCodes.INVALID_SCHEMA (103) for schema validation failures
|
|
17
|
+
*
|
|
18
|
+
* 2. Error Codes (This file): Detailed diagnostic codes specific to Orbyt
|
|
19
|
+
* - Used internally by engine for precise error identification
|
|
20
|
+
* - Maps to exit codes for process termination
|
|
21
|
+
* - Example: ORB-S-001 (unknown field) → ExitCodes.INVALID_SCHEMA
|
|
22
|
+
*
|
|
5
23
|
* Format: ORB-[Category]-[Number]
|
|
6
24
|
*
|
|
7
25
|
* Categories:
|
|
8
|
-
* - S: Schema/Structure errors
|
|
9
|
-
* - V: Validation/Logic errors
|
|
10
|
-
* - E: Execution errors
|
|
11
|
-
* - R: Runtime errors
|
|
26
|
+
* - S: Schema/Structure errors (YAML syntax, field validation)
|
|
27
|
+
* - V: Validation/Logic errors (duplicate IDs, circular deps)
|
|
28
|
+
* - E: Execution errors (step failures, timeouts)
|
|
29
|
+
* - R: Runtime errors (file not found, permissions)
|
|
30
|
+
*
|
|
31
|
+
* ADDING NEW ERRORS:
|
|
32
|
+
* =================
|
|
33
|
+
* 1. Add error code enum value below
|
|
34
|
+
* 2. Add description in getErrorDescription()
|
|
35
|
+
* 3. Add exit code mapping in getExitCodeForError()
|
|
36
|
+
* 4. Add to appropriate error class (WorkflowError, StepError, etc.)
|
|
12
37
|
*
|
|
13
38
|
* @module errors
|
|
14
39
|
*/
|
|
40
|
+
import { ExitCodes } from '@dev-ecosystem/core';
|
|
15
41
|
export declare enum OrbytErrorCode {
|
|
16
42
|
/** Unknown field in workflow definition */
|
|
17
43
|
SCHEMA_UNKNOWN_FIELD = "ORB-S-001",
|
|
@@ -25,6 +51,8 @@ export declare enum OrbytErrorCode {
|
|
|
25
51
|
SCHEMA_PARSE_ERROR = "ORB-S-005",
|
|
26
52
|
/** Invalid field format/pattern */
|
|
27
53
|
SCHEMA_INVALID_FORMAT = "ORB-S-006",
|
|
54
|
+
/** Reserved field detected (security) */
|
|
55
|
+
SCHEMA_RESERVED_FIELD = "ORB-S-007",
|
|
28
56
|
/** Duplicate step ID */
|
|
29
57
|
VALIDATION_DUPLICATE_ID = "ORB-V-001",
|
|
30
58
|
/** Reference to non-existent step */
|
|
@@ -41,6 +69,10 @@ export declare enum OrbytErrorCode {
|
|
|
41
69
|
VALIDATION_MISSING_INPUT = "ORB-V-007",
|
|
42
70
|
/** Invalid adapter/action */
|
|
43
71
|
VALIDATION_UNKNOWN_ADAPTER = "ORB-V-008",
|
|
72
|
+
/** Workflow has no steps */
|
|
73
|
+
VALIDATION_EMPTY_WORKFLOW = "ORB-V-009",
|
|
74
|
+
/** Invalid condition expression syntax */
|
|
75
|
+
VALIDATION_INVALID_CONDITION = "ORB-V-010",
|
|
44
76
|
/** Step execution failed */
|
|
45
77
|
EXECUTION_STEP_FAILED = "ORB-E-001",
|
|
46
78
|
/** Timeout exceeded */
|
|
@@ -49,23 +81,190 @@ export declare enum OrbytErrorCode {
|
|
|
49
81
|
EXECUTION_ADAPTER_ERROR = "ORB-E-003",
|
|
50
82
|
/** Workflow cancelled */
|
|
51
83
|
EXECUTION_CANCELLED = "ORB-E-004",
|
|
84
|
+
/** Step dependency failed */
|
|
85
|
+
EXECUTION_DEPENDENCY_FAILED = "ORB-E-005",
|
|
86
|
+
/** Conditional check failed */
|
|
87
|
+
EXECUTION_CONDITION_FAILED = "ORB-E-006",
|
|
52
88
|
/** File not found */
|
|
53
89
|
RUNTIME_FILE_NOT_FOUND = "ORB-R-001",
|
|
54
90
|
/** Permission denied */
|
|
55
91
|
RUNTIME_PERMISSION_DENIED = "ORB-R-002",
|
|
56
92
|
/** Internal engine error */
|
|
57
|
-
RUNTIME_INTERNAL_ERROR = "ORB-R-003"
|
|
93
|
+
RUNTIME_INTERNAL_ERROR = "ORB-R-003",
|
|
94
|
+
/** Adapter not registered */
|
|
95
|
+
RUNTIME_ADAPTER_NOT_FOUND = "ORB-R-004",
|
|
96
|
+
/** Resource exhausted */
|
|
97
|
+
RUNTIME_RESOURCE_EXHAUSTED = "ORB-R-005"
|
|
58
98
|
}
|
|
59
99
|
/**
|
|
60
100
|
* Error severity levels
|
|
101
|
+
* Used for prioritizing and determining execution control
|
|
102
|
+
*
|
|
103
|
+
* EXECUTION CONTROL BEHAVIOR:
|
|
104
|
+
* - CRITICAL/FATAL: Stop entire workflow execution immediately
|
|
105
|
+
* - ERROR/HIGH: Stop entire workflow execution (default for errors)
|
|
106
|
+
* - MEDIUM: Stop current step, attempt to continue to next step
|
|
107
|
+
* - LOW: Log warning and continue current step
|
|
108
|
+
* - WARNING: Log warning message, continue execution
|
|
109
|
+
* - INFO: Log informational message, continue execution
|
|
61
110
|
*/
|
|
62
111
|
export declare enum ErrorSeverity {
|
|
112
|
+
/** Critical error - stop entire workflow immediately (unrecoverable) */
|
|
113
|
+
CRITICAL = "critical",
|
|
114
|
+
/** Fatal error - stop entire workflow (severe failure) */
|
|
115
|
+
FATAL = "fatal",
|
|
116
|
+
/** High severity error - stop entire workflow */
|
|
63
117
|
ERROR = "error",
|
|
118
|
+
/** Medium severity - stop current step, try to continue workflow */
|
|
119
|
+
MEDIUM = "medium",
|
|
120
|
+
/** Low severity - log and continue current step */
|
|
121
|
+
LOW = "low",
|
|
122
|
+
/** Warning - log warning message, continue execution */
|
|
64
123
|
WARNING = "warning",
|
|
124
|
+
/** Informational message */
|
|
65
125
|
INFO = "info"
|
|
66
126
|
}
|
|
67
127
|
/**
|
|
68
128
|
* Get human-readable category name from error code
|
|
129
|
+
*
|
|
130
|
+
* @param code - Orbyt error code
|
|
131
|
+
* @returns Category name (e.g., "Schema Error")
|
|
132
|
+
*
|
|
133
|
+
* @example
|
|
134
|
+
* ```typescript
|
|
135
|
+
* const category = getErrorCategory(OrbytErrorCode.SCHEMA_UNKNOWN_FIELD);
|
|
136
|
+
* // Returns: "Schema Error"
|
|
137
|
+
* ```
|
|
69
138
|
*/
|
|
70
139
|
export declare function getErrorCategory(code: OrbytErrorCode): string;
|
|
140
|
+
/**
|
|
141
|
+
* Get detailed description for an error code
|
|
142
|
+
* Helps users understand what went wrong
|
|
143
|
+
*
|
|
144
|
+
* @param code - Orbyt error code
|
|
145
|
+
* @returns Human-readable description
|
|
146
|
+
*
|
|
147
|
+
* @example
|
|
148
|
+
* ```typescript
|
|
149
|
+
* const desc = getErrorDescription(OrbytErrorCode.SCHEMA_UNKNOWN_FIELD);
|
|
150
|
+
* // Returns: "Workflow contains an unknown or misspelled field name"
|
|
151
|
+
* ```
|
|
152
|
+
*/
|
|
153
|
+
export declare function getErrorDescription(code: OrbytErrorCode): string;
|
|
154
|
+
/**
|
|
155
|
+
* Map Orbyt error code to ecosystem exit code
|
|
156
|
+
* Determines which process exit code should be used
|
|
157
|
+
*
|
|
158
|
+
* @param code - Orbyt error code
|
|
159
|
+
* @returns Exit code from @dev-ecosystem/core
|
|
160
|
+
*
|
|
161
|
+
* @example
|
|
162
|
+
* ```typescript
|
|
163
|
+
* const exitCode = getExitCodeForError(OrbytErrorCode.SCHEMA_UNKNOWN_FIELD);
|
|
164
|
+
* // Returns: ExitCodes.INVALID_SCHEMA (103)
|
|
165
|
+
* ```
|
|
166
|
+
*/
|
|
167
|
+
export declare function getExitCodeForError(code: OrbytErrorCode): ExitCodes;
|
|
168
|
+
/**
|
|
169
|
+
* Check if an error code represents a user error (fixable by changing workflow)
|
|
170
|
+
* vs system error (infrastructure, permissions, etc.)
|
|
171
|
+
*
|
|
172
|
+
* User errors are problems with the workflow definition that the user can fix.
|
|
173
|
+
* System errors are infrastructure/runtime issues outside user control.
|
|
174
|
+
*
|
|
175
|
+
* @param code - Orbyt error code
|
|
176
|
+
* @returns True if error is user-fixable
|
|
177
|
+
*
|
|
178
|
+
* @example
|
|
179
|
+
* ```typescript
|
|
180
|
+
* if (isUserError(error.code)) {
|
|
181
|
+
* console.log('Fix your workflow definition');
|
|
182
|
+
* } else {
|
|
183
|
+
* console.log('Contact system administrator');
|
|
184
|
+
* }
|
|
185
|
+
* ```
|
|
186
|
+
*/
|
|
187
|
+
export declare function isUserError(code: OrbytErrorCode): boolean;
|
|
188
|
+
/**
|
|
189
|
+
* Check if an error code represents a retryable error
|
|
190
|
+
* Some errors (like timeouts, adapter failures) might succeed on retry.
|
|
191
|
+
* Others (like validation errors) will always fail.
|
|
192
|
+
*
|
|
193
|
+
* @param code - Orbyt error code
|
|
194
|
+
* @returns True if error might succeed on retry
|
|
195
|
+
*
|
|
196
|
+
* @example
|
|
197
|
+
* ```typescript
|
|
198
|
+
* if (isRetryable(error.code) && retryCount < maxRetries) {
|
|
199
|
+
* console.log('Retrying...');
|
|
200
|
+
* await retry();
|
|
201
|
+
* }
|
|
202
|
+
* ```
|
|
203
|
+
*/
|
|
204
|
+
export declare function isRetryable(code: OrbytErrorCode): boolean;
|
|
205
|
+
/**
|
|
206
|
+
* Get suggested action for an error code
|
|
207
|
+
* Provides actionable guidance for users
|
|
208
|
+
*
|
|
209
|
+
* @param code - Orbyt error code
|
|
210
|
+
* @returns Suggested action to fix the error
|
|
211
|
+
*
|
|
212
|
+
* @example
|
|
213
|
+
* ```typescript
|
|
214
|
+
* const action = getSuggestedAction(OrbytErrorCode.SCHEMA_UNKNOWN_FIELD);
|
|
215
|
+
* console.log(action); // "Check field names against schema documentation"
|
|
216
|
+
* ```
|
|
217
|
+
*/
|
|
218
|
+
export declare function getSuggestedAction(code: OrbytErrorCode): string;
|
|
219
|
+
/**
|
|
220
|
+
* Execution Control Actions
|
|
221
|
+
* Determines what action to take when error occurs
|
|
222
|
+
*/
|
|
223
|
+
export declare enum ExecutionControl {
|
|
224
|
+
/** Stop entire workflow execution immediately */
|
|
225
|
+
STOP_WORKFLOW = "STOP_WORKFLOW",
|
|
226
|
+
/** Stop current step, try to continue to next step */
|
|
227
|
+
STOP_STEP = "STOP_STEP",
|
|
228
|
+
/** Continue execution, just log the issue */
|
|
229
|
+
CONTINUE = "CONTINUE"
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
* Get execution control action based on severity
|
|
233
|
+
* Determines whether to stop workflow, stop step, or continue
|
|
234
|
+
*
|
|
235
|
+
* @param severity - Error severity level
|
|
236
|
+
* @returns Execution control action
|
|
237
|
+
*
|
|
238
|
+
* @example
|
|
239
|
+
* ```typescript
|
|
240
|
+
* const action = getExecutionControl(ErrorSeverity.CRITICAL);
|
|
241
|
+
* // Returns: ExecutionControl.STOP_WORKFLOW
|
|
242
|
+
*
|
|
243
|
+
* const action2 = getExecutionControl(ErrorSeverity.MEDIUM);
|
|
244
|
+
* // Returns: ExecutionControl.STOP_STEP
|
|
245
|
+
* ```
|
|
246
|
+
*/
|
|
247
|
+
export declare function getExecutionControl(severity: ErrorSeverity): ExecutionControl;
|
|
248
|
+
/**
|
|
249
|
+
* Check if severity should stop workflow execution
|
|
250
|
+
*
|
|
251
|
+
* @param severity - Error severity level
|
|
252
|
+
* @returns True if workflow should stop
|
|
253
|
+
*/
|
|
254
|
+
export declare function shouldStopWorkflow(severity: ErrorSeverity): boolean;
|
|
255
|
+
/**
|
|
256
|
+
* Check if severity should stop step execution
|
|
257
|
+
*
|
|
258
|
+
* @param severity - Error severity level
|
|
259
|
+
* @returns True if step should stop
|
|
260
|
+
*/
|
|
261
|
+
export declare function shouldStopStep(severity: ErrorSeverity): boolean;
|
|
262
|
+
/**
|
|
263
|
+
* Get severity level from error code
|
|
264
|
+
* Auto-determines appropriate severity for error code
|
|
265
|
+
*
|
|
266
|
+
* @param code - Orbyt error code
|
|
267
|
+
* @returns Appropriate severity level
|
|
268
|
+
*/
|
|
269
|
+
export declare function getSeverityForErrorCode(code: OrbytErrorCode): ErrorSeverity;
|
|
71
270
|
//# sourceMappingURL=ErrorCodes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ErrorCodes.d.ts","sourceRoot":"","sources":["../../src/errors/ErrorCodes.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"ErrorCodes.d.ts","sourceRoot":"","sources":["../../src/errors/ErrorCodes.ts"],"names":[],"mappings":"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"}
|