@realtimex/realtimex-alchemy 1.0.27 → 1.0.28

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/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.28] - 2026-01-23
9
+
10
+ ### Added
11
+ - **System Logs**: Added an interactive "Action Center" with overview cards for Blacklist Suggestions, Recent Errors, and Total Signals.
12
+ - **System Logs**: Implemented detailed modals for reviewing Blacklist candidates, debugging Errors, and browsing recent Signals.
13
+ - **Live Terminal**: Added "Deep Links" that allow users to jump directly from a terminal event (like a low-score warning) to the relevant management view in System Logs.
14
+ - **Navigation**: Improved app-wide navigation state to support context-aware jumping between tabs.
15
+
8
16
  ## [1.0.27] - 2026-01-23
9
17
 
10
18
  ### Added
@@ -33,7 +33,10 @@ export class ProcessingEventService {
33
33
  details: event.details || {},
34
34
  level: event.level || 'info',
35
35
  duration_ms: event.durationMs || null,
36
- metadata: event.metadata || {},
36
+ metadata: {
37
+ ...(event.metadata || {}),
38
+ ...(event.actionable ? { actionable: event.actionable } : {})
39
+ },
37
40
  created_at: new Date().toISOString()
38
41
  }]);
39
42
  }