@orbytautomation/engine 0.5.0 → 0.6.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.
Files changed (48) hide show
  1. package/dist/core/OrbytEngine.d.ts.map +1 -1
  2. package/dist/core/OrbytEngine.js +18 -4
  3. package/dist/core/OrbytEngine.js.map +1 -1
  4. package/dist/errors/ErrorDebugger.d.ts +78 -25
  5. package/dist/errors/ErrorDebugger.d.ts.map +1 -1
  6. package/dist/errors/ErrorDebugger.js +383 -2
  7. package/dist/errors/ErrorDebugger.js.map +1 -1
  8. package/dist/errors/ErrorDetector.d.ts +107 -5
  9. package/dist/errors/ErrorDetector.d.ts.map +1 -1
  10. package/dist/errors/ErrorDetector.js +195 -40
  11. package/dist/errors/ErrorDetector.js.map +1 -1
  12. package/dist/errors/ErrorFormatter.d.ts +51 -0
  13. package/dist/errors/ErrorFormatter.d.ts.map +1 -1
  14. package/dist/errors/ErrorFormatter.js +128 -0
  15. package/dist/errors/ErrorFormatter.js.map +1 -1
  16. package/dist/errors/ErrorHandler.d.ts +93 -7
  17. package/dist/errors/ErrorHandler.d.ts.map +1 -1
  18. package/dist/errors/ErrorHandler.js +91 -42
  19. package/dist/errors/ErrorHandler.js.map +1 -1
  20. package/dist/errors/OrbytError.d.ts +28 -0
  21. package/dist/errors/OrbytError.d.ts.map +1 -1
  22. package/dist/errors/OrbytError.js.map +1 -1
  23. package/dist/errors/SecurityErrors.d.ts +2 -25
  24. package/dist/errors/SecurityErrors.d.ts.map +1 -1
  25. package/dist/errors/SecurityErrors.js +5 -119
  26. package/dist/errors/SecurityErrors.js.map +1 -1
  27. package/dist/errors/WorkflowError.d.ts +11 -1
  28. package/dist/errors/WorkflowError.d.ts.map +1 -1
  29. package/dist/errors/WorkflowError.js +104 -0
  30. package/dist/errors/WorkflowError.js.map +1 -1
  31. package/dist/loader/WorkflowLoader.d.ts +71 -5
  32. package/dist/loader/WorkflowLoader.d.ts.map +1 -1
  33. package/dist/loader/WorkflowLoader.js +135 -50
  34. package/dist/loader/WorkflowLoader.js.map +1 -1
  35. package/dist/logging/EngineLogger.d.ts +252 -337
  36. package/dist/logging/EngineLogger.d.ts.map +1 -1
  37. package/dist/logging/EngineLogger.js +460 -1012
  38. package/dist/logging/EngineLogger.js.map +1 -1
  39. package/dist/logging/LoggerManager.d.ts +109 -33
  40. package/dist/logging/LoggerManager.d.ts.map +1 -1
  41. package/dist/logging/LoggerManager.js +136 -47
  42. package/dist/logging/LoggerManager.js.map +1 -1
  43. package/dist/logging/index.d.ts.map +1 -1
  44. package/dist/logging/index.js.map +1 -1
  45. package/dist/types/log-types.d.ts +50 -11
  46. package/dist/types/log-types.d.ts.map +1 -1
  47. package/dist/types/log-types.js.map +1 -1
  48. package/package.json +1 -1
@@ -55,8 +55,55 @@ import { OrbytError } from './OrbytError.js';
55
55
  import { type ErrorContext } from './ErrorDetector.js';
56
56
  import { ExecutionControl } from './ErrorCodes.js';
57
57
  /**
58
- * Error handling result
59
- * Contains all information needed to make execution decisions
58
+ * Error Handler (Automatic Error Management)
59
+ *
60
+ * Central error handling system that orchestrates detection, logging, and execution control.
61
+ * Designed to work automatically without manual error handling in engine.
62
+ *
63
+ * ARCHITECTURE:
64
+ * =============
65
+ * - AUTOMATIC in Engine: Errors are auto-detected and classified
66
+ * - MANUAL in CLI/API/SDK: Use ErrorHandler explicitly for custom handling
67
+ * - INTEGRATED with WorkflowLoader: Validates and detects errors on load
68
+ *
69
+ * EXECUTION CONTROL:
70
+ * ==================
71
+ * Based on severity, automatically determines what to do:
72
+ * - CRITICAL/FATAL → Stop entire workflow immediately
73
+ * - ERROR → Stop entire workflow
74
+ * - MEDIUM → Stop current step, try next step
75
+ * - LOW/WARNING/INFO → Log and continue
76
+ *
77
+ * USAGE:
78
+ * ======
79
+ * ```typescript
80
+ * // In Engine (automatic):
81
+ * try {
82
+ * await executeStep(step);
83
+ * } catch (error) {
84
+ * const result = await ErrorHandler.handle(error, {
85
+ * location: `steps[${index}]`,
86
+ * stepId: step.id
87
+ * });
88
+ *
89
+ * if (result.shouldStopWorkflow) {
90
+ * throw result.error;
91
+ * }
92
+ * if (result.shouldStopStep) {
93
+ * continue; // Skip to next step
94
+ * }
95
+ * // Continue current step
96
+ * }
97
+ *
98
+ * // In CLI/API (manual):
99
+ * try {
100
+ * const workflow = await WorkflowLoader.fromFile(path);
101
+ * } catch (error) {
102
+ * const result = await ErrorHandler.handle(error, { location: path });
103
+ * console.error(result.debug?.formatted);
104
+ * process.exit(result.error.exitCode);
105
+ * }
106
+ * ```
60
107
  */
61
108
  export interface ErrorHandlingResult {
62
109
  /** The detected and classified OrbytError */
@@ -155,6 +202,10 @@ export declare class ErrorHandler {
155
202
  * Handle error from WorkflowLoader
156
203
  * Special handling for load-time errors with file path context
157
204
  *
205
+ * @deprecated Use {@link handleLoaderErrorEnhanced} directly. This wrapper
206
+ * now delegates to it so behaviour is identical, but the enhanced variant
207
+ * is preferred for clarity in new call sites.
208
+ *
158
209
  * @param error - Error from loader
159
210
  * @param filePath - Path to workflow file being loaded
160
211
  * @param options - Handler options
@@ -224,18 +275,53 @@ export declare class ErrorHandler {
224
275
  * Detect and classify error into OrbytError
225
276
  */
226
277
  private static detectError;
227
- /**
228
- * Detect error type from WorkflowLoader errors
229
- */
230
- private static detectLoaderErrorType;
231
278
  /**
232
279
  * Log error with appropriate level
233
280
  */
234
281
  private static logError;
235
282
  /**
236
- * Generate complete debug information
283
+ * Generate complete debug information.
284
+ *
285
+ * Uses context-aware variants so fix steps and formatted output reference
286
+ * the actual workflow file path / field name when WorkflowContext is set
287
+ * on LoggerManager (populated automatically by WorkflowLoader after parsing).
288
+ * Falls back to generic output when no context is available.
237
289
  */
238
290
  private static generateDebugInfo;
291
+ /**
292
+ * Generate debug information enriched with workflow file context.
293
+ *
294
+ * Uses {@link ErrorDebugger.formatWithContext} so the "How to fix" section
295
+ * references the actual file path + line number when available.
296
+ * Uses {@link formatErrorWithLocation} for the `detailed` field so the
297
+ * location header (File / Line / Field) is present in verbose output.
298
+ *
299
+ * @param error - Detected OrbytError
300
+ * @param useColors - Whether to use ANSI colors
301
+ * @returns Debug info with context-aware fix steps
302
+ * @since 0.5.0
303
+ */
304
+ private static generateDebugInfoWithContext;
305
+ /**
306
+ * Handle a WorkflowLoader error with full workflow-context enrichment.
307
+ *
308
+ * Enhancement of {@link handleLoaderError} that:
309
+ * - Uses {@link ErrorDetector.detectFromExceptionEnhanced} to extract
310
+ * line/column numbers from YAML parse errors.
311
+ * - Generates debug info via {@link ErrorDebugger.analyzeWithContext} so
312
+ * fix steps reference the actual file path and line number.
313
+ * - Formats detailed output with {@link formatErrorWithLocation} for a
314
+ * File: / Line: / Field: location header.
315
+ *
316
+ * Debug is always enabled for loader errors — no option needed.
317
+ *
318
+ * @param error - Error thrown by WorkflowLoader
319
+ * @param filePath - Path to the workflow file being loaded
320
+ * @param options - Handler options
321
+ * @returns Error handling result with file-aware debug info
322
+ * @since 0.5.0
323
+ */
324
+ static handleLoaderErrorEnhanced(error: unknown, filePath: string, options?: ErrorHandlerOptions): Promise<ErrorHandlingResult>;
239
325
  }
240
326
  /**
241
327
  * Global error handler instance for convenience
@@ -1 +1 @@
1
- {"version":3,"file":"ErrorHandler.d.ts","sourceRoot":"","sources":["../../src/errors/ErrorHandler.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ErrorHandler.d.ts","sourceRoot":"","sources":["../../src/errors/ErrorHandler.ts"],"names":[],"mappings":"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"}
@@ -53,8 +53,7 @@
53
53
  */
54
54
  import { OrbytError } from './OrbytError.js';
55
55
  import { ErrorDetector } from './ErrorDetector.js';
56
- import { ErrorDebugger } from './ErrorDebugger.js';
57
- import { formatDetailedError } from './ErrorFormatter.js';
56
+ import { formatDetailedError, formatErrorWithLocation } from './ErrorFormatter.js';
58
57
  import { ErrorSeverity, ExecutionControl, getExecutionControl, shouldStopWorkflow, shouldStopStep, } from './ErrorCodes.js';
59
58
  /**
60
59
  * Error Handler
@@ -125,19 +124,17 @@ export class ErrorHandler {
125
124
  * Handle error from WorkflowLoader
126
125
  * Special handling for load-time errors with file path context
127
126
  *
127
+ * @deprecated Use {@link handleLoaderErrorEnhanced} directly. This wrapper
128
+ * now delegates to it so behaviour is identical, but the enhanced variant
129
+ * is preferred for clarity in new call sites.
130
+ *
128
131
  * @param error - Error from loader
129
132
  * @param filePath - Path to workflow file being loaded
130
133
  * @param options - Handler options
131
134
  * @returns Error handling result
132
135
  */
133
136
  static async handleLoaderError(error, filePath, options = {}) {
134
- return this.handle(error, {
135
- location: filePath,
136
- type: this.detectLoaderErrorType(error),
137
- }, {
138
- ...options,
139
- enableDebug: true, // Always enable debug for loader errors
140
- });
137
+ return this.handleLoaderErrorEnhanced(error, filePath, options);
141
138
  }
142
139
  /**
143
140
  * Handle error from context object
@@ -238,9 +235,10 @@ export class ErrorHandler {
238
235
  if (error instanceof OrbytError) {
239
236
  return error;
240
237
  }
241
- // Standard Error - try to classify
238
+ // Standard Error use the enhanced variant so YAML parse errors carry
239
+ // line/column numbers in their diagnostic context and fix steps.
242
240
  if (error instanceof Error) {
243
- return ErrorDetector.detectFromException(error, context?.location);
241
+ return ErrorDetector.detectFromExceptionEnhanced(error, context?.location);
244
242
  }
245
243
  // Error context object - detect from context
246
244
  if (typeof error === 'object' && error !== null && 'type' in error) {
@@ -261,33 +259,6 @@ export class ErrorHandler {
261
259
  location: context?.location,
262
260
  });
263
261
  }
264
- /**
265
- * Detect error type from WorkflowLoader errors
266
- */
267
- static detectLoaderErrorType(error) {
268
- if (!(error instanceof Error))
269
- return 'unknown';
270
- const message = error.message.toLowerCase();
271
- if (message.includes('file not found') || message.includes('enoent')) {
272
- return 'unknown'; // Will be classified as RUNTIME_FILE_NOT_FOUND
273
- }
274
- if (message.includes('yaml') || message.includes('syntax')) {
275
- return 'parse_error';
276
- }
277
- if (message.includes('json')) {
278
- return 'parse_error';
279
- }
280
- if (message.includes('reserved field')) {
281
- return 'reserved_field';
282
- }
283
- if (message.includes('unknown field')) {
284
- return 'unknown_field';
285
- }
286
- if (message.includes('missing') || message.includes('required')) {
287
- return 'missing_field';
288
- }
289
- return 'unknown';
290
- }
291
262
  /**
292
263
  * Log error with appropriate level
293
264
  */
@@ -327,13 +298,49 @@ export class ErrorHandler {
327
298
  }
328
299
  }
329
300
  /**
330
- * Generate complete debug information
301
+ * Generate complete debug information.
302
+ *
303
+ * Uses context-aware variants so fix steps and formatted output reference
304
+ * the actual workflow file path / field name when WorkflowContext is set
305
+ * on LoggerManager (populated automatically by WorkflowLoader after parsing).
306
+ * Falls back to generic output when no context is available.
331
307
  */
332
308
  static generateDebugInfo(error, useColors) {
333
- const debugInfo = ErrorDebugger.analyze(error);
334
- const formatted = ErrorDebugger.format(error, useColors);
309
+ const debugInfo = ErrorDetector.analyzeDebugInfo(error);
310
+ const formatted = ErrorDetector.formatDebugOutput(error, undefined, useColors);
335
311
  const detailed = formatDetailedError(error, useColors);
336
- const quickFix = ErrorDebugger.quickDebug(error);
312
+ const quickFix = ErrorDetector.quickDebugSummary(error);
313
+ return {
314
+ explanation: debugInfo.explanation,
315
+ cause: debugInfo.cause,
316
+ fixSteps: debugInfo.fixSteps,
317
+ quickFix,
318
+ formatted,
319
+ detailed,
320
+ commonMistakes: debugInfo.commonMistakes,
321
+ estimatedFixTime: debugInfo.estimatedFixTime,
322
+ };
323
+ }
324
+ /**
325
+ * Generate debug information enriched with workflow file context.
326
+ *
327
+ * Uses {@link ErrorDebugger.formatWithContext} so the "How to fix" section
328
+ * references the actual file path + line number when available.
329
+ * Uses {@link formatErrorWithLocation} for the `detailed` field so the
330
+ * location header (File / Line / Field) is present in verbose output.
331
+ *
332
+ * @param error - Detected OrbytError
333
+ * @param useColors - Whether to use ANSI colors
334
+ * @returns Debug info with context-aware fix steps
335
+ * @since 0.5.0
336
+ */
337
+ static generateDebugInfoWithContext(error, useColors) {
338
+ const debugInfo = ErrorDetector.analyzeDebugInfo(error);
339
+ // formatDebugOutput gives file-aware "How to fix" content
340
+ const formatted = ErrorDetector.formatDebugOutput(error, undefined, useColors);
341
+ // formatErrorWithLocation prepends File: / Line: / Field: header
342
+ const detailed = formatErrorWithLocation(error, undefined, useColors, true);
343
+ const quickFix = ErrorDetector.quickDebugSummary(error);
337
344
  return {
338
345
  explanation: debugInfo.explanation,
339
346
  cause: debugInfo.cause,
@@ -345,6 +352,48 @@ export class ErrorHandler {
345
352
  estimatedFixTime: debugInfo.estimatedFixTime,
346
353
  };
347
354
  }
355
+ /**
356
+ * Handle a WorkflowLoader error with full workflow-context enrichment.
357
+ *
358
+ * Enhancement of {@link handleLoaderError} that:
359
+ * - Uses {@link ErrorDetector.detectFromExceptionEnhanced} to extract
360
+ * line/column numbers from YAML parse errors.
361
+ * - Generates debug info via {@link ErrorDebugger.analyzeWithContext} so
362
+ * fix steps reference the actual file path and line number.
363
+ * - Formats detailed output with {@link formatErrorWithLocation} for a
364
+ * File: / Line: / Field: location header.
365
+ *
366
+ * Debug is always enabled for loader errors — no option needed.
367
+ *
368
+ * @param error - Error thrown by WorkflowLoader
369
+ * @param filePath - Path to the workflow file being loaded
370
+ * @param options - Handler options
371
+ * @returns Error handling result with file-aware debug info
372
+ * @since 0.5.0
373
+ */
374
+ static async handleLoaderErrorEnhanced(error, filePath, options = {}) {
375
+ const { useColors = true, logger = console, context = {} } = options;
376
+ // Use enhanced detection so line/col are extracted from YAML errors
377
+ const orbytError = error instanceof OrbytError
378
+ ? error
379
+ : ErrorDetector.detectFromExceptionEnhanced(error instanceof Error ? error : new Error(String(error)), filePath);
380
+ const control = getExecutionControl(orbytError.severity);
381
+ const stopWorkflow = shouldStopWorkflow(orbytError.severity);
382
+ const stopStep = shouldStopStep(orbytError.severity);
383
+ // Always log loader errors
384
+ const logEntry = this.logError(orbytError, logger, { filePath, ...context });
385
+ // Always generate context-aware debug info for loader errors
386
+ const debug = this.generateDebugInfoWithContext(orbytError, useColors);
387
+ return {
388
+ error: orbytError,
389
+ control,
390
+ shouldStopWorkflow: stopWorkflow,
391
+ shouldStopStep: stopStep,
392
+ shouldContinue: control === ExecutionControl.CONTINUE,
393
+ debug,
394
+ logEntry,
395
+ };
396
+ }
348
397
  }
349
398
  /**
350
399
  * Global error handler instance for convenience
@@ -1 +1 @@
1
- {"version":3,"file":"ErrorHandler.js","sourceRoot":"","sources":["../../src/errors/ErrorHandler.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ErrorHandler.js","sourceRoot":"","sources":["../../src/errors/ErrorHandler.ts"],"names":[],"mappings":"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"}
@@ -15,6 +15,34 @@
15
15
  import { ExitCodes } from '@dev-ecosystem/core';
16
16
  import { OrbytErrorCode, ErrorSeverity } from './ErrorCodes.js';
17
17
  import { OrbytErrorDiagnostic } from '../types/core-types.js';
18
+ /**
19
+ * Structured debug information produced by ErrorDebugger and stored on
20
+ * WorkflowError factory classes.
21
+ *
22
+ * Consumers should obtain instances via ErrorDetector (which calls
23
+ * ErrorDebugger internally) rather than building them manually.
24
+ */
25
+ export interface ErrorDebugInfo {
26
+ /** Plain English explanation of what went wrong */
27
+ explanation: string;
28
+ /** Why this error occurred (root cause) */
29
+ cause: string;
30
+ /** Step-by-step fix instructions */
31
+ fixSteps: string[];
32
+ /** Common mistakes that lead to this error */
33
+ commonMistakes?: string[];
34
+ /** Related documentation links */
35
+ docsLinks?: string[];
36
+ /** Example of correct usage */
37
+ example?: {
38
+ description: string;
39
+ code: string;
40
+ };
41
+ /** Whether this requires immediate action */
42
+ urgent: boolean;
43
+ /** Estimated time to fix */
44
+ estimatedFixTime?: string;
45
+ }
18
46
  /**
19
47
  * Base error class for all Orbyt errors
20
48
  *
@@ -1 +1 @@
1
- {"version":3,"file":"OrbytError.d.ts","sourceRoot":"","sources":["../../src/errors/OrbytError.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EACL,cAAc,EACd,aAAa,EAOd,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAAa,UAAW,SAAQ,KAAK;IACnC,mCAAmC;IACnC,SAAgB,UAAU,EAAE,oBAAoB,CAAC;IAEjD,oCAAoC;IACpC,SAAgB,SAAS,EAAE,IAAI,CAAC;gBAEpB,UAAU,EAAE,oBAAoB;IAkB5C;;OAEG;IACH,IAAI,IAAI,IAAI,cAAc,CAEzB;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,SAAS,CAExB;IAED;;OAEG;IACH,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAE7B;IAED;;OAEG;IACH,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAE7B;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,aAAa,CAE5B;IAED;;OAEG;IACH,IAAI,WAAW,IAAI,MAAM,CAExB;IAED;;;OAGG;IACH,IAAI,WAAW,IAAI,OAAO,CAEzB;IAED;;;OAGG;IACH,IAAI,WAAW,IAAI,OAAO,CAEzB;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,MAAM,CAErB;IAED;;;;;OAKG;IACH,QAAQ,IAAI,MAAM;IAoBlB;;;;;OAKG;IACH,gBAAgB,IAAI,MAAM;IAyC1B;;OAEG;IACH,sBAAsB,IAAI,MAAM;IAUhC;;;;;OAKG;IACH,MAAM,IAAI,MAAM;IAkBhB;;;;;OAKG;IACH,cAAc,IAAI;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;KACf;CAQF"}
1
+ {"version":3,"file":"OrbytError.d.ts","sourceRoot":"","sources":["../../src/errors/OrbytError.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EACL,cAAc,EACd,aAAa,EAOd,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAO9D;;;;;;GAMG;AACH,MAAM,WAAW,cAAc;IAC7B,mDAAmD;IACnD,WAAW,EAAE,MAAM,CAAC;IACpB,2CAA2C;IAC3C,KAAK,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,8CAA8C;IAC9C,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,kCAAkC;IAClC,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,+BAA+B;IAC/B,OAAO,CAAC,EAAE;QACR,WAAW,EAAE,MAAM,CAAC;QACpB,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;IACF,6CAA6C;IAC7C,MAAM,EAAE,OAAO,CAAC;IAChB,4BAA4B;IAC5B,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAAa,UAAW,SAAQ,KAAK;IACnC,mCAAmC;IACnC,SAAgB,UAAU,EAAE,oBAAoB,CAAC;IAEjD,oCAAoC;IACpC,SAAgB,SAAS,EAAE,IAAI,CAAC;gBAEpB,UAAU,EAAE,oBAAoB;IAkB5C;;OAEG;IACH,IAAI,IAAI,IAAI,cAAc,CAEzB;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,SAAS,CAExB;IAED;;OAEG;IACH,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAE7B;IAED;;OAEG;IACH,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAE7B;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,aAAa,CAE5B;IAED;;OAEG;IACH,IAAI,WAAW,IAAI,MAAM,CAExB;IAED;;;OAGG;IACH,IAAI,WAAW,IAAI,OAAO,CAEzB;IAED;;;OAGG;IACH,IAAI,WAAW,IAAI,OAAO,CAEzB;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,MAAM,CAErB;IAED;;;;;OAKG;IACH,QAAQ,IAAI,MAAM;IAoBlB;;;;;OAKG;IACH,gBAAgB,IAAI,MAAM;IAyC1B;;OAEG;IACH,sBAAsB,IAAI,MAAM;IAUhC;;;;;OAKG;IACH,MAAM,IAAI,MAAM;IAkBhB;;;;;OAKG;IACH,cAAc,IAAI;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;KACf;CAQF"}
@@ -1 +1 @@
1
- {"version":3,"file":"OrbytError.js","sourceRoot":"","sources":["../../src/errors/OrbytError.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"OrbytError.js","sourceRoot":"","sources":["../../src/errors/OrbytError.ts"],"names":[],"mappings":"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"}
@@ -31,7 +31,7 @@
31
31
  import { ExitCodes } from '@dev-ecosystem/core';
32
32
  import { OrbytError } from './OrbytError.js';
33
33
  import { OrbytErrorCode, ErrorSeverity } from './ErrorCodes.js';
34
- import { OrbytErrorDiagnostic, SecurityViolationDetails } from '../types/core-types.js';
34
+ import { OrbytErrorDiagnostic } from '../types/core-types.js';
35
35
  /**
36
36
  * Security Error
37
37
  *
@@ -44,12 +44,7 @@ import { OrbytErrorDiagnostic, SecurityViolationDetails } from '../types/core-ty
44
44
  * - System security → Bypassing access controls
45
45
  */
46
46
  export declare class SecurityError extends OrbytError {
47
- readonly violations?: SecurityViolationDetails[];
48
- constructor(diagnostic: OrbytErrorDiagnostic | SecurityViolationDetails[]);
49
- /**
50
- * Format violations into a clear, actionable error message
51
- */
52
- private static formatViolations;
47
+ constructor(diagnostic: OrbytErrorDiagnostic);
53
48
  /**
54
49
  * Create reserved field override error
55
50
  *
@@ -96,26 +91,8 @@ export declare class SecurityError extends OrbytError {
96
91
  message: string;
97
92
  exitCode: ExitCodes;
98
93
  hint: string | undefined;
99
- violations: SecurityViolationDetails[] | undefined;
100
94
  severity: ErrorSeverity;
101
95
  context: Record<string, any> | undefined;
102
96
  };
103
97
  }
104
- /**
105
- * Create a security error for reserved field violations
106
- *
107
- * @deprecated Use SecurityError.reservedFieldOverride() or other factory methods instead
108
- * @param violations - Array of security violation details
109
- * @returns SecurityError instance
110
- *
111
- * @example
112
- * ```typescript
113
- * // Old way (legacy):
114
- * const error = createSecurityError([{ field: '_internal', ... }]);
115
- *
116
- * // New way (preferred):
117
- * const error = SecurityError.reservedFieldOverride('_internal', 'workflow.context');
118
- * ```
119
- */
120
- export declare function createSecurityError(violations: SecurityViolationDetails[]): SecurityError;
121
98
  //# sourceMappingURL=SecurityErrors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SecurityErrors.d.ts","sourceRoot":"","sources":["../../src/errors/SecurityErrors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChE,OAAO,EAAE,oBAAoB,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAExF;;;;;;;;;;GAUG;AACH,qBAAa,aAAc,SAAQ,UAAU;IAC3C,SAAgB,UAAU,CAAC,EAAE,wBAAwB,EAAE,CAAC;gBAE5C,UAAU,EAAE,oBAAoB,GAAG,wBAAwB,EAAE;IAwBzE;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,gBAAgB;IA+E/B;;;;;;;OAOG;IACH,MAAM,CAAC,qBAAqB,CAC1B,KAAK,EAAE,MAAM,EACb,IAAI,EAAE,MAAM,EACZ,SAAS,GAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,WAAW,GAAG,OAAO,GAAG,UAAuB,GAChG,aAAa;IAqBhB;;;;;;OAMG;IACH,MAAM,CAAC,kBAAkB,CACvB,UAAU,EAAE,MAAM,EAClB,IAAI,EAAE,MAAM,GACX,aAAa;IAYhB;;;;;;OAMG;IACH,MAAM,CAAC,yBAAyB,CAC9B,MAAM,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,EAChD,IAAI,EAAE,MAAM,GACX,aAAa;IAahB;;;;;;;OAOG;IACH,MAAM,CAAC,gBAAgB,CACrB,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,EACZ,kBAAkB,CAAC,EAAE,MAAM,GAC1B,aAAa;IAgBhB;;OAEG;IACH,MAAM;;;;;;;;;;CAYP;AAED;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,wBAAwB,EAAE,GAAG,aAAa,CAEzF"}
1
+ {"version":3,"file":"SecurityErrors.d.ts","sourceRoot":"","sources":["../../src/errors/SecurityErrors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;;;;;;;;;GAUG;AACH,qBAAa,aAAc,SAAQ,UAAU;gBAC/B,UAAU,EAAE,oBAAoB;IAU5C;;;;;;;OAOG;IACH,MAAM,CAAC,qBAAqB,CAC1B,KAAK,EAAE,MAAM,EACb,IAAI,EAAE,MAAM,EACZ,SAAS,GAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,WAAW,GAAG,OAAO,GAAG,UAAuB,GAChG,aAAa;IAqBhB;;;;;;OAMG;IACH,MAAM,CAAC,kBAAkB,CACvB,UAAU,EAAE,MAAM,EAClB,IAAI,EAAE,MAAM,GACX,aAAa;IAYhB;;;;;;OAMG;IACH,MAAM,CAAC,yBAAyB,CAC9B,MAAM,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,EAChD,IAAI,EAAE,MAAM,GACX,aAAa;IAahB;;;;;;;OAOG;IACH,MAAM,CAAC,gBAAgB,CACrB,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,EACZ,kBAAkB,CAAC,EAAE,MAAM,GAC1B,aAAa;IAgBhB;;OAEG;IACH,MAAM;;;;;;;;;CAWP"}
@@ -43,106 +43,12 @@ import { OrbytErrorCode, ErrorSeverity } from './ErrorCodes.js';
43
43
  * - System security → Bypassing access controls
44
44
  */
45
45
  export class SecurityError extends OrbytError {
46
- violations; // For backward compatibility
47
46
  constructor(diagnostic) {
48
- // Support both new OrbytError format and legacy SecurityViolationDetails[] format
49
- if (Array.isArray(diagnostic)) {
50
- // Legacy format: convert to OrbytError diagnostic
51
- const errorMessage = SecurityError.formatViolations(diagnostic);
52
- super({
53
- code: OrbytErrorCode.RUNTIME_PERMISSION_DENIED,
54
- exitCode: ExitCodes.SECURITY_VIOLATION,
55
- message: errorMessage,
56
- hint: 'Remove all reserved fields from your workflow',
57
- severity: ErrorSeverity.ERROR,
58
- context: { violations: diagnostic },
59
- });
60
- this.violations = diagnostic;
61
- }
62
- else {
63
- // New format: use OrbytError diagnostic
64
- super({
65
- ...diagnostic,
66
- severity: ErrorSeverity.ERROR,
67
- exitCode: diagnostic.exitCode || ExitCodes.SECURITY_VIOLATION,
68
- });
69
- }
70
- }
71
- /**
72
- * Format violations into a clear, actionable error message
73
- */
74
- static formatViolations(violations) {
75
- const lines = [
76
- '━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━',
77
- '❌ SECURITY VIOLATION: Engine-Controlled Fields Detected',
78
- '━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━',
79
- '',
80
- '⚠️ Your workflow contains fields that are RESERVED for engine control.',
81
- ' These fields are critical for:',
82
- ' • Billing integrity and usage tracking',
83
- ' • Security and audit compliance',
84
- ' • Execution identity and ownership',
85
- '',
86
- '🚫 User workflows CANNOT set these fields. The engine injects them.',
87
- '',
88
- ];
89
- if (violations.length === 1) {
90
- const v = violations[0];
91
- lines.push('VIOLATION DETAILS:');
92
- lines.push('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
93
- lines.push(` Error Code: ${v.code}`);
94
- lines.push(` Location: ${v.location}`);
95
- lines.push(` Field: "${v.field}"`);
96
- lines.push(` Reason: ${v.reason}`);
97
- lines.push('');
98
- lines.push(` 💡 Solution: ${v.suggestion}`);
99
- }
100
- else {
101
- lines.push(`FOUND ${violations.length} VIOLATIONS:`);
102
- lines.push('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
103
- violations.forEach((v, index) => {
104
- lines.push('');
105
- lines.push(`${index + 1}. ${v.code}`);
106
- lines.push(` Location: ${v.location}`);
107
- lines.push(` Field: "${v.field}"`);
108
- lines.push(` Reason: ${v.reason}`);
109
- lines.push(` Solution: ${v.suggestion}`);
110
- });
111
- }
112
- lines.push('');
113
- lines.push('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
114
- lines.push('WHY THIS MATTERS:');
115
- lines.push('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
116
- lines.push('');
117
- lines.push(' If users could set these fields:');
118
- lines.push(' ❌ Billing could be manipulated');
119
- lines.push(' ❌ Usage tracking would be unreliable');
120
- lines.push(' ❌ Audit trails would be compromised');
121
- lines.push(' ❌ Security boundaries would collapse');
122
- lines.push('');
123
- lines.push(' The engine protects these fields to ensure:');
124
- lines.push(' ✅ Billing integrity');
125
- lines.push(' ✅ Accurate usage tracking');
126
- lines.push(' ✅ Complete audit trails');
127
- lines.push(' ✅ Security compliance');
128
- lines.push('');
129
- lines.push('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
130
- lines.push('WHAT TO DO:');
131
- lines.push('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
132
- lines.push('');
133
- lines.push(' 1. Remove all fields starting with "_" from your workflow');
134
- lines.push(' 2. Remove any billing, execution, or identity fields');
135
- lines.push(' 3. Use only your own custom field names');
136
- lines.push('');
137
- lines.push(' EXAMPLE:');
138
- lines.push(' ❌ BAD: _internal: { ... }');
139
- lines.push(' ❌ BAD: executionId: "xyz"');
140
- lines.push(' ❌ BAD: billingMode: "free"');
141
- lines.push(' ✅ GOOD: myData: { ... }');
142
- lines.push(' ✅ GOOD: customConfig: { ... }');
143
- lines.push('');
144
- lines.push('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
145
- return lines.join('\n');
47
+ super({
48
+ ...diagnostic,
49
+ severity: ErrorSeverity.ERROR,
50
+ exitCode: diagnostic.exitCode || ExitCodes.SECURITY_VIOLATION,
51
+ });
146
52
  }
147
53
  // ==================== FACTORY METHODS ====================
148
54
  /**
@@ -241,29 +147,9 @@ export class SecurityError extends OrbytError {
241
147
  message: this.message,
242
148
  exitCode: this.exitCode,
243
149
  hint: this.hint,
244
- violations: this.violations, // Legacy support
245
150
  severity: this.severity,
246
151
  context: this.diagnostic.context,
247
152
  };
248
153
  }
249
154
  }
250
- /**
251
- * Create a security error for reserved field violations
252
- *
253
- * @deprecated Use SecurityError.reservedFieldOverride() or other factory methods instead
254
- * @param violations - Array of security violation details
255
- * @returns SecurityError instance
256
- *
257
- * @example
258
- * ```typescript
259
- * // Old way (legacy):
260
- * const error = createSecurityError([{ field: '_internal', ... }]);
261
- *
262
- * // New way (preferred):
263
- * const error = SecurityError.reservedFieldOverride('_internal', 'workflow.context');
264
- * ```
265
- */
266
- export function createSecurityError(violations) {
267
- return new SecurityError(violations);
268
- }
269
155
  //# sourceMappingURL=SecurityErrors.js.map