@blueharford/scrypted-spatial-awareness 0.6.11 → 0.6.12
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/main.nodejs.js +1 -1
- package/dist/main.nodejs.js.map +1 -1
- package/dist/plugin.zip +0 -0
- package/out/main.nodejs.js +2 -1
- package/out/main.nodejs.js.map +1 -1
- package/out/plugin.zip +0 -0
- package/package.json +1 -1
- package/src/alerts/alert-manager.ts +2 -1
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/out/main.nodejs.js
CHANGED
|
@@ -34431,10 +34431,11 @@ class AlertManager {
|
|
|
34431
34431
|
return null;
|
|
34432
34432
|
}
|
|
34433
34433
|
// Create alert
|
|
34434
|
+
// Note: details.objectLabel may contain LLM-generated description - preserve it if provided
|
|
34434
34435
|
const fullDetails = {
|
|
34435
34436
|
...details,
|
|
34436
34437
|
objectClass: tracked.className,
|
|
34437
|
-
objectLabel: tracked.label,
|
|
34438
|
+
objectLabel: details.objectLabel || tracked.label,
|
|
34438
34439
|
};
|
|
34439
34440
|
const alert = (0, alert_1.createAlert)(type, tracked.globalId, fullDetails, rule.severity, rule.id);
|
|
34440
34441
|
// Store alert
|