@camstack/addon-tailscale 1.1.27 → 1.1.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/client/tailscale.addon.js +1 -1
- package/dist/client/tailscale.addon.mjs +1 -1
- package/dist/{dist-DVZX81-I.js → dist-CPFhFQVO.js} +367 -1
- package/dist/{dist-FdwqBAVi.mjs → dist-C_oio-xb.mjs} +367 -1
- package/dist/ingress/tailscale-ingress.addon.js +1 -1
- package/dist/ingress/tailscale-ingress.addon.mjs +1 -1
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
24
24
|
enumerable: true
|
|
25
25
|
}) : target, mod));
|
|
26
26
|
//#endregion
|
|
27
|
-
const require_dist = require("../dist-
|
|
27
|
+
const require_dist = require("../dist-CPFhFQVO.js");
|
|
28
28
|
let node_child_process = require("node:child_process");
|
|
29
29
|
let node_util = require("node:util");
|
|
30
30
|
let node_fs = require("node:fs");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as EventCategory, n as networkAccessCapability, r as BaseAddon, t as meshNetworkCapability } from "../dist-
|
|
1
|
+
import { i as EventCategory, n as networkAccessCapability, r as BaseAddon, t as meshNetworkCapability } from "../dist-C_oio-xb.mjs";
|
|
2
2
|
import { execFile, spawn } from "node:child_process";
|
|
3
3
|
import { promisify } from "node:util";
|
|
4
4
|
import * as fs from "node:fs";
|
|
@@ -7626,6 +7626,160 @@ var EncodeProfileSchema = object({
|
|
|
7626
7626
|
*/
|
|
7627
7627
|
outputArgs: array(string()).optional()
|
|
7628
7628
|
});
|
|
7629
|
+
var COCO_TO_MACRO = {
|
|
7630
|
+
mapping: {
|
|
7631
|
+
person: "person",
|
|
7632
|
+
bicycle: "vehicle",
|
|
7633
|
+
car: "vehicle",
|
|
7634
|
+
motorcycle: "vehicle",
|
|
7635
|
+
airplane: "vehicle",
|
|
7636
|
+
bus: "vehicle",
|
|
7637
|
+
train: "vehicle",
|
|
7638
|
+
truck: "vehicle",
|
|
7639
|
+
boat: "vehicle",
|
|
7640
|
+
bird: "animal",
|
|
7641
|
+
cat: "animal",
|
|
7642
|
+
dog: "animal",
|
|
7643
|
+
horse: "animal",
|
|
7644
|
+
sheep: "animal",
|
|
7645
|
+
cow: "animal",
|
|
7646
|
+
elephant: "animal",
|
|
7647
|
+
bear: "animal",
|
|
7648
|
+
zebra: "animal",
|
|
7649
|
+
giraffe: "animal",
|
|
7650
|
+
suitcase: "package",
|
|
7651
|
+
backpack: "package",
|
|
7652
|
+
handbag: "package"
|
|
7653
|
+
},
|
|
7654
|
+
preserveOriginal: false
|
|
7655
|
+
};
|
|
7656
|
+
var AUDIO_MACRO_LABELS = [
|
|
7657
|
+
{
|
|
7658
|
+
id: "speech",
|
|
7659
|
+
name: "Speech",
|
|
7660
|
+
icon: "🗣️"
|
|
7661
|
+
},
|
|
7662
|
+
{
|
|
7663
|
+
id: "scream",
|
|
7664
|
+
name: "Scream / Shout",
|
|
7665
|
+
icon: "😱"
|
|
7666
|
+
},
|
|
7667
|
+
{
|
|
7668
|
+
id: "crying",
|
|
7669
|
+
name: "Crying / Baby",
|
|
7670
|
+
icon: "😢"
|
|
7671
|
+
},
|
|
7672
|
+
{
|
|
7673
|
+
id: "laughter",
|
|
7674
|
+
name: "Laughter",
|
|
7675
|
+
icon: "😂"
|
|
7676
|
+
},
|
|
7677
|
+
{
|
|
7678
|
+
id: "music",
|
|
7679
|
+
name: "Music",
|
|
7680
|
+
icon: "🎵"
|
|
7681
|
+
},
|
|
7682
|
+
{
|
|
7683
|
+
id: "dog",
|
|
7684
|
+
name: "Dog",
|
|
7685
|
+
icon: "🐕"
|
|
7686
|
+
},
|
|
7687
|
+
{
|
|
7688
|
+
id: "cat",
|
|
7689
|
+
name: "Cat",
|
|
7690
|
+
icon: "🐈"
|
|
7691
|
+
},
|
|
7692
|
+
{
|
|
7693
|
+
id: "bird",
|
|
7694
|
+
name: "Bird",
|
|
7695
|
+
icon: "🐦"
|
|
7696
|
+
},
|
|
7697
|
+
{
|
|
7698
|
+
id: "animal",
|
|
7699
|
+
name: "Animal (other)",
|
|
7700
|
+
icon: "🐾"
|
|
7701
|
+
},
|
|
7702
|
+
{
|
|
7703
|
+
id: "alarm",
|
|
7704
|
+
name: "Alarm / Siren",
|
|
7705
|
+
icon: "🚨"
|
|
7706
|
+
},
|
|
7707
|
+
{
|
|
7708
|
+
id: "doorbell",
|
|
7709
|
+
name: "Doorbell / Knock",
|
|
7710
|
+
icon: "🔔"
|
|
7711
|
+
},
|
|
7712
|
+
{
|
|
7713
|
+
id: "glass_breaking",
|
|
7714
|
+
name: "Glass Breaking",
|
|
7715
|
+
icon: "💥"
|
|
7716
|
+
},
|
|
7717
|
+
{
|
|
7718
|
+
id: "gunshot",
|
|
7719
|
+
name: "Gunshot / Explosion",
|
|
7720
|
+
icon: "💣"
|
|
7721
|
+
},
|
|
7722
|
+
{
|
|
7723
|
+
id: "vehicle",
|
|
7724
|
+
name: "Vehicle",
|
|
7725
|
+
icon: "🚗"
|
|
7726
|
+
},
|
|
7727
|
+
{
|
|
7728
|
+
id: "siren",
|
|
7729
|
+
name: "Emergency Siren",
|
|
7730
|
+
icon: "🚑"
|
|
7731
|
+
},
|
|
7732
|
+
{
|
|
7733
|
+
id: "fire",
|
|
7734
|
+
name: "Fire / Smoke",
|
|
7735
|
+
icon: "🔥"
|
|
7736
|
+
},
|
|
7737
|
+
{
|
|
7738
|
+
id: "water",
|
|
7739
|
+
name: "Water",
|
|
7740
|
+
icon: "💧"
|
|
7741
|
+
},
|
|
7742
|
+
{
|
|
7743
|
+
id: "wind",
|
|
7744
|
+
name: "Wind / Weather",
|
|
7745
|
+
icon: "🌬️"
|
|
7746
|
+
},
|
|
7747
|
+
{
|
|
7748
|
+
id: "door",
|
|
7749
|
+
name: "Door",
|
|
7750
|
+
icon: "🚪"
|
|
7751
|
+
},
|
|
7752
|
+
{
|
|
7753
|
+
id: "footsteps",
|
|
7754
|
+
name: "Footsteps",
|
|
7755
|
+
icon: "👣"
|
|
7756
|
+
},
|
|
7757
|
+
{
|
|
7758
|
+
id: "crowd",
|
|
7759
|
+
name: "Crowd / Chatter",
|
|
7760
|
+
icon: "👥"
|
|
7761
|
+
},
|
|
7762
|
+
{
|
|
7763
|
+
id: "telephone",
|
|
7764
|
+
name: "Telephone",
|
|
7765
|
+
icon: "📞"
|
|
7766
|
+
},
|
|
7767
|
+
{
|
|
7768
|
+
id: "engine",
|
|
7769
|
+
name: "Engine / Motor",
|
|
7770
|
+
icon: "⚙️"
|
|
7771
|
+
},
|
|
7772
|
+
{
|
|
7773
|
+
id: "tools",
|
|
7774
|
+
name: "Tools / Construction",
|
|
7775
|
+
icon: "🔨"
|
|
7776
|
+
},
|
|
7777
|
+
{
|
|
7778
|
+
id: "silence",
|
|
7779
|
+
name: "Silence",
|
|
7780
|
+
icon: "🤫"
|
|
7781
|
+
}
|
|
7782
|
+
];
|
|
7629
7783
|
var YAMNET_TO_MACRO = {
|
|
7630
7784
|
mapping: {
|
|
7631
7785
|
Speech: "speech",
|
|
@@ -7892,6 +8046,125 @@ var _macroLookup = /* @__PURE__ */ new Map();
|
|
|
7892
8046
|
for (const [k, v] of Object.entries(YAMNET_TO_MACRO.mapping)) _macroLookup.set(k.toLowerCase(), v);
|
|
7893
8047
|
for (const [k, v] of Object.entries(APPLE_SA_TO_MACRO.mapping)) _macroLookup.set(k.toLowerCase(), v);
|
|
7894
8048
|
/**
|
|
8049
|
+
* Unified event-kind taxonomy — THE single source of truth for
|
|
8050
|
+
* `kind → { parentKind, category, level, color, iconId, labelKey, label,
|
|
8051
|
+
* icon }`.
|
|
8052
|
+
*
|
|
8053
|
+
* This dictionary folds together what used to be scattered across four
|
|
8054
|
+
* copies:
|
|
8055
|
+
* - `capabilities/sensor-event-kinds.ts` (sensor cap colors)
|
|
8056
|
+
* - `addon-post-analysis/.../services/event-kinds.ts`
|
|
8057
|
+
* (MOTION/PERSON/VEHICLE… _COLOR constants)
|
|
8058
|
+
* - `ui-library/composites/detection-colors.ts` (CLASS_COLORS)
|
|
8059
|
+
* - `addon-post-analysis/shared/frame/box-drawer.ts` (DEFAULT_COLOR)
|
|
8060
|
+
* - the COCO / audio class maps (macro ↔ sub relationships)
|
|
8061
|
+
*
|
|
8062
|
+
* The DATA (serializable — color/iconId/labelKey/parentKind) lives here in
|
|
8063
|
+
* `@camstack/types`. The UI-side mapping `iconId → lucide component` and
|
|
8064
|
+
* `labelKey → t()` lives in `@camstack/ui-library`. UIs never hardcode a
|
|
8065
|
+
* color or an icon: they read this dictionary (server descriptors carry the
|
|
8066
|
+
* fields inline; the client resolves color/icon/label from `iconId`/`kind`).
|
|
8067
|
+
*
|
|
8068
|
+
* Two levels only (v1 YAGNI): macro → sub. `person` is a leaf macro.
|
|
8069
|
+
*/
|
|
8070
|
+
var TAXONOMY_COLORS = {
|
|
8071
|
+
motion: "#f59e0b",
|
|
8072
|
+
audio: "#06b6d4",
|
|
8073
|
+
person: "#22c55e",
|
|
8074
|
+
vehicle: "#3b82f6",
|
|
8075
|
+
animal: "#f97316",
|
|
8076
|
+
package: "#a855f7",
|
|
8077
|
+
sensor: "#8b5cf6",
|
|
8078
|
+
control: "#10b981",
|
|
8079
|
+
genericDetection: "#64748b"
|
|
8080
|
+
};
|
|
8081
|
+
var DETECTION_SUB_COLORS = {
|
|
8082
|
+
car: "#f59e0b",
|
|
8083
|
+
truck: "#d97706",
|
|
8084
|
+
bus: "#b45309",
|
|
8085
|
+
motorcycle: "#eab308",
|
|
8086
|
+
bicycle: "#ca8a04",
|
|
8087
|
+
airplane: "#60a5fa",
|
|
8088
|
+
boat: "#2563eb",
|
|
8089
|
+
train: "#1d4ed8",
|
|
8090
|
+
bird: "#14b8a6",
|
|
8091
|
+
dog: "#84cc16",
|
|
8092
|
+
cat: "#f97316",
|
|
8093
|
+
horse: "#a16207",
|
|
8094
|
+
sheep: "#a3a3a3",
|
|
8095
|
+
cow: "#78716c",
|
|
8096
|
+
elephant: "#6b7280",
|
|
8097
|
+
bear: "#7c2d12",
|
|
8098
|
+
zebra: "#404040",
|
|
8099
|
+
giraffe: "#d4a373"
|
|
8100
|
+
};
|
|
8101
|
+
function titleCase(id) {
|
|
8102
|
+
return id.split(/[-_ ]/).filter((p) => p.length > 0).map((p) => p.charAt(0).toUpperCase() + p.slice(1)).join(" ");
|
|
8103
|
+
}
|
|
8104
|
+
var entries = /* @__PURE__ */ new Map();
|
|
8105
|
+
function macro(kind, category, color, iconId, label) {
|
|
8106
|
+
entries.set(kind, {
|
|
8107
|
+
kind,
|
|
8108
|
+
parentKind: null,
|
|
8109
|
+
level: "macro",
|
|
8110
|
+
category,
|
|
8111
|
+
color,
|
|
8112
|
+
iconId,
|
|
8113
|
+
labelKey: `eventKind.${kind}`,
|
|
8114
|
+
label
|
|
8115
|
+
});
|
|
8116
|
+
}
|
|
8117
|
+
function sub(kind, parentKind, category, color, iconId, label) {
|
|
8118
|
+
entries.set(kind, {
|
|
8119
|
+
kind,
|
|
8120
|
+
parentKind,
|
|
8121
|
+
level: "sub",
|
|
8122
|
+
category,
|
|
8123
|
+
color,
|
|
8124
|
+
iconId,
|
|
8125
|
+
labelKey: `eventKind.${kind}`,
|
|
8126
|
+
label
|
|
8127
|
+
});
|
|
8128
|
+
}
|
|
8129
|
+
macro("motion", "motion", TAXONOMY_COLORS.motion, "motion", "Motion");
|
|
8130
|
+
macro("audio", "audio", TAXONOMY_COLORS.audio, "audio", "Audio");
|
|
8131
|
+
macro("person", "detection", TAXONOMY_COLORS.person, "person", "Person");
|
|
8132
|
+
macro("vehicle", "detection", TAXONOMY_COLORS.vehicle, "vehicle", "Vehicle");
|
|
8133
|
+
macro("animal", "detection", TAXONOMY_COLORS.animal, "animal", "Animal");
|
|
8134
|
+
macro("package", "package", TAXONOMY_COLORS.package, "package", "Package");
|
|
8135
|
+
macro("sensor", "sensor", TAXONOMY_COLORS.sensor, "sensor", "Sensor");
|
|
8136
|
+
macro("control", "control", TAXONOMY_COLORS.control, "control", "Control");
|
|
8137
|
+
for (const [cocoClass, macroClass] of Object.entries(COCO_TO_MACRO.mapping)) {
|
|
8138
|
+
if (macroClass !== "vehicle" && macroClass !== "animal") continue;
|
|
8139
|
+
if (entries.has(cocoClass)) continue;
|
|
8140
|
+
sub(cocoClass, macroClass, "detection", DETECTION_SUB_COLORS[cocoClass] ?? TAXONOMY_COLORS.genericDetection, cocoClass, titleCase(cocoClass));
|
|
8141
|
+
}
|
|
8142
|
+
sub("package-delivered", "package", "package", TAXONOMY_COLORS.package, "package", "Package delivered");
|
|
8143
|
+
sub("package-picked-up", "package", "package", TAXONOMY_COLORS.package, "package", "Package picked up");
|
|
8144
|
+
sub("contact", "sensor", "sensor", "#f59e0b", "door", "Contact");
|
|
8145
|
+
sub("motion-sensor", "sensor", "sensor", TAXONOMY_COLORS.sensor, "pir", "Motion sensor");
|
|
8146
|
+
sub("smoke", "sensor", "sensor", "#ef4444", "smoke", "Smoke");
|
|
8147
|
+
sub("flood", "sensor", "sensor", "#3b82f6", "water", "Water leak");
|
|
8148
|
+
sub("gas", "sensor", "sensor", "#ef4444", "gas", "Gas");
|
|
8149
|
+
sub("carbon-monoxide", "sensor", "sensor", "#dc2626", "smoke", "Carbon monoxide");
|
|
8150
|
+
sub("vibration", "sensor", "sensor", "#eab308", "vibration", "Vibration");
|
|
8151
|
+
sub("tamper", "sensor", "sensor", "#f97316", "tamper", "Tamper");
|
|
8152
|
+
sub("presence", "sensor", "sensor", "#22c55e", "presence", "Presence");
|
|
8153
|
+
sub("enum-sensor", "sensor", "sensor", TAXONOMY_COLORS.sensor, "generic", "Sensor state");
|
|
8154
|
+
sub("device-event", "sensor", "sensor", "#10b981", "button", "Device event");
|
|
8155
|
+
sub("lock", "control", "control", "#0ea5e9", "lock", "Lock");
|
|
8156
|
+
sub("switch", "control", "control", TAXONOMY_COLORS.control, "switch", "Switch");
|
|
8157
|
+
sub("siren", "control", "control", "#dc2626", "siren", "Siren");
|
|
8158
|
+
sub("button", "control", "control", "#10b981", "button", "Button");
|
|
8159
|
+
sub("doorbell", "control", "control", "#a855f7", "doorbell", "Doorbell");
|
|
8160
|
+
for (const l of AUDIO_MACRO_LABELS) {
|
|
8161
|
+
const kind = `audio-${l.id}`;
|
|
8162
|
+
if (entries.has(kind)) continue;
|
|
8163
|
+
sub(kind, "audio", "audio", TAXONOMY_COLORS.audio, kind, l.name);
|
|
8164
|
+
}
|
|
8165
|
+
/** The complete taxonomy dictionary, keyed by kind. */
|
|
8166
|
+
var EVENT_TAXONOMY = Object.freeze(Object.fromEntries(entries));
|
|
8167
|
+
/**
|
|
7895
8168
|
* Error types for the safe expression engine. Two distinct classes so callers
|
|
7896
8169
|
* can tell a compile-time (grammar) failure from a runtime (evaluation)
|
|
7897
8170
|
* failure — both are non-fatal to the host: read paths degrade to "skip link".
|
|
@@ -15858,17 +16131,30 @@ var EventKindCategorySchema = _enum([
|
|
|
15858
16131
|
"audio",
|
|
15859
16132
|
"detection",
|
|
15860
16133
|
"sensor",
|
|
16134
|
+
"control",
|
|
15861
16135
|
"custom",
|
|
15862
16136
|
"package"
|
|
15863
16137
|
]);
|
|
16138
|
+
/** Taxonomy level — macro (timeline lane) vs sub (events-page leaf). */
|
|
16139
|
+
var EventKindLevelSchema = _enum(["macro", "sub"]);
|
|
15864
16140
|
var EventKindDescriptorSchema = object({
|
|
15865
|
-
/** Stable kind id (e.g. 'motion', '
|
|
16141
|
+
/** Stable kind id (e.g. 'motion', 'vehicle', 'car', 'lock'). */
|
|
15866
16142
|
kind: string(),
|
|
16143
|
+
/** i18n key resolved on the UI side; `label` is the English fallback. */
|
|
16144
|
+
labelKey: string(),
|
|
16145
|
+
/** English fallback label (kept for clients that don't translate). */
|
|
15867
16146
|
label: string(),
|
|
15868
16147
|
/** Hex color for timeline/legend rendering. */
|
|
15869
16148
|
color: string(),
|
|
16149
|
+
/** Dictionary id → lucide component on the UI side. */
|
|
16150
|
+
iconId: string(),
|
|
16151
|
+
/** Legacy closed-vocab glyph — fallback for `iconId`. */
|
|
15870
16152
|
icon: EventKindIconSchema,
|
|
15871
16153
|
category: EventKindCategorySchema,
|
|
16154
|
+
/** Macro parent for this kind ('car' → 'vehicle'); null for a macro. */
|
|
16155
|
+
parentKind: string().nullable(),
|
|
16156
|
+
/** Derived from `parentKind`, explicit for the client tree. */
|
|
16157
|
+
level: EventKindLevelSchema,
|
|
15872
16158
|
/** Which cap + device contributes this kind. For built-ins the camera
|
|
15873
16159
|
* itself; for sensor kinds the LINKED source device. */
|
|
15874
16160
|
source: object({
|
|
@@ -15941,11 +16227,21 @@ var TrackAudioLabelSchema = object({
|
|
|
15941
16227
|
firstAt: number(),
|
|
15942
16228
|
lastAt: number()
|
|
15943
16229
|
});
|
|
16230
|
+
/**
|
|
16231
|
+
* How a track was produced. `pipeline` (default / absent) = the spatial
|
|
16232
|
+
* detection+tracking pipeline. `sensor` = a SYNTHETIC track projected from a
|
|
16233
|
+
* linked sensor/control state change (no positions; carries a snapshot). The
|
|
16234
|
+
* spatial subsystems (tracker association, occupancy count, re-id/embedding,
|
|
16235
|
+
* resurrection) MUST skip `sensor` tracks — they have no bbox trajectory.
|
|
16236
|
+
*/
|
|
16237
|
+
var TrackSourceSchema = _enum(["pipeline", "sensor"]);
|
|
15944
16238
|
var TrackSchema = object({
|
|
15945
16239
|
trackId: string(),
|
|
15946
16240
|
deviceId: number(),
|
|
15947
16241
|
className: string(),
|
|
15948
16242
|
label: string().optional(),
|
|
16243
|
+
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
16244
|
+
source: TrackSourceSchema.optional(),
|
|
15949
16245
|
firstSeen: number(),
|
|
15950
16246
|
lastSeen: number(),
|
|
15951
16247
|
/** Frame-rate position history (subject to maxPositionHistory cap). */
|
|
@@ -16322,6 +16618,76 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
16322
16618
|
eventId: string(),
|
|
16323
16619
|
timestamp: number()
|
|
16324
16620
|
});
|
|
16621
|
+
/**
|
|
16622
|
+
* Cap → event-kind mapping for the SENSOR / CONTROL cap families — the table
|
|
16623
|
+
* `pipeline-analytics.listEventKinds` uses to turn a linked device's bound
|
|
16624
|
+
* caps into per-camera event-kind descriptors.
|
|
16625
|
+
*
|
|
16626
|
+
* The descriptor DATA (color / iconId / labelKey / parentKind / category)
|
|
16627
|
+
* is NOT duplicated here — every entry is derived from the single
|
|
16628
|
+
* `EVENT_TAXONOMY` dictionary (`catalogs/event-taxonomy.ts`). This file owns
|
|
16629
|
+
* ONLY the cap-name → taxonomy-kind mapping. Adding a new eventful sensor /
|
|
16630
|
+
* control cap means adding one line here (and a taxonomy entry); the anti-
|
|
16631
|
+
* drift guard `scripts/check-event-kind-coverage.ts` fails the build if an
|
|
16632
|
+
* eventful cap is missing.
|
|
16633
|
+
*/
|
|
16634
|
+
/** Map a taxonomy `iconId` onto the legacy closed `EventKindIcon` enum. */
|
|
16635
|
+
var LEGACY_ICON = {
|
|
16636
|
+
motion: "motion",
|
|
16637
|
+
audio: "audio",
|
|
16638
|
+
person: "person",
|
|
16639
|
+
vehicle: "vehicle",
|
|
16640
|
+
animal: "animal",
|
|
16641
|
+
package: "package",
|
|
16642
|
+
door: "door",
|
|
16643
|
+
pir: "pir",
|
|
16644
|
+
smoke: "smoke",
|
|
16645
|
+
water: "water",
|
|
16646
|
+
button: "button",
|
|
16647
|
+
generic: "generic",
|
|
16648
|
+
gas: "smoke",
|
|
16649
|
+
vibration: "generic",
|
|
16650
|
+
tamper: "generic",
|
|
16651
|
+
presence: "person",
|
|
16652
|
+
lock: "generic",
|
|
16653
|
+
siren: "generic",
|
|
16654
|
+
switch: "generic",
|
|
16655
|
+
doorbell: "button"
|
|
16656
|
+
};
|
|
16657
|
+
function legacyIcon(iconId) {
|
|
16658
|
+
return LEGACY_ICON[iconId] ?? "generic";
|
|
16659
|
+
}
|
|
16660
|
+
/**
|
|
16661
|
+
* Cap name → taxonomy kind id. Covers EVERY eventful sensor / control cap.
|
|
16662
|
+
* The anti-drift guard cross-checks this against the eventful caps declared
|
|
16663
|
+
* in `packages/types/src/capabilities/*.cap.ts`.
|
|
16664
|
+
*/
|
|
16665
|
+
var CAP_TO_KIND = {
|
|
16666
|
+
contact: "contact",
|
|
16667
|
+
motion: "motion-sensor",
|
|
16668
|
+
smoke: "smoke",
|
|
16669
|
+
flood: "flood",
|
|
16670
|
+
gas: "gas",
|
|
16671
|
+
"carbon-monoxide": "carbon-monoxide",
|
|
16672
|
+
vibration: "vibration",
|
|
16673
|
+
tamper: "tamper",
|
|
16674
|
+
presence: "presence",
|
|
16675
|
+
"enum-sensor": "enum-sensor",
|
|
16676
|
+
"event-emitter": "device-event",
|
|
16677
|
+
"lock-control": "lock",
|
|
16678
|
+
switch: "switch",
|
|
16679
|
+
button: "button",
|
|
16680
|
+
doorbell: "doorbell"
|
|
16681
|
+
};
|
|
16682
|
+
function buildDescriptor(capName, kind) {
|
|
16683
|
+
const t = EVENT_TAXONOMY[kind];
|
|
16684
|
+
if (t === void 0) throw new Error(`EVENT_KIND_BY_CAP: cap '${capName}' maps to unknown taxonomy kind '${kind}'`);
|
|
16685
|
+
return {
|
|
16686
|
+
...t,
|
|
16687
|
+
icon: legacyIcon(t.iconId)
|
|
16688
|
+
};
|
|
16689
|
+
}
|
|
16690
|
+
Object.freeze(Object.fromEntries(Object.entries(CAP_TO_KIND).map(([capName, kind]) => [capName, buildDescriptor(capName, kind)])));
|
|
16325
16691
|
var CameraPipelineConfigSchema = object({
|
|
16326
16692
|
engine: PipelineEngineChoiceSchema.optional(),
|
|
16327
16693
|
steps: array(PipelineStepInputSchema).readonly(),
|
|
@@ -7626,6 +7626,160 @@ var EncodeProfileSchema = object({
|
|
|
7626
7626
|
*/
|
|
7627
7627
|
outputArgs: array(string()).optional()
|
|
7628
7628
|
});
|
|
7629
|
+
var COCO_TO_MACRO = {
|
|
7630
|
+
mapping: {
|
|
7631
|
+
person: "person",
|
|
7632
|
+
bicycle: "vehicle",
|
|
7633
|
+
car: "vehicle",
|
|
7634
|
+
motorcycle: "vehicle",
|
|
7635
|
+
airplane: "vehicle",
|
|
7636
|
+
bus: "vehicle",
|
|
7637
|
+
train: "vehicle",
|
|
7638
|
+
truck: "vehicle",
|
|
7639
|
+
boat: "vehicle",
|
|
7640
|
+
bird: "animal",
|
|
7641
|
+
cat: "animal",
|
|
7642
|
+
dog: "animal",
|
|
7643
|
+
horse: "animal",
|
|
7644
|
+
sheep: "animal",
|
|
7645
|
+
cow: "animal",
|
|
7646
|
+
elephant: "animal",
|
|
7647
|
+
bear: "animal",
|
|
7648
|
+
zebra: "animal",
|
|
7649
|
+
giraffe: "animal",
|
|
7650
|
+
suitcase: "package",
|
|
7651
|
+
backpack: "package",
|
|
7652
|
+
handbag: "package"
|
|
7653
|
+
},
|
|
7654
|
+
preserveOriginal: false
|
|
7655
|
+
};
|
|
7656
|
+
var AUDIO_MACRO_LABELS = [
|
|
7657
|
+
{
|
|
7658
|
+
id: "speech",
|
|
7659
|
+
name: "Speech",
|
|
7660
|
+
icon: "🗣️"
|
|
7661
|
+
},
|
|
7662
|
+
{
|
|
7663
|
+
id: "scream",
|
|
7664
|
+
name: "Scream / Shout",
|
|
7665
|
+
icon: "😱"
|
|
7666
|
+
},
|
|
7667
|
+
{
|
|
7668
|
+
id: "crying",
|
|
7669
|
+
name: "Crying / Baby",
|
|
7670
|
+
icon: "😢"
|
|
7671
|
+
},
|
|
7672
|
+
{
|
|
7673
|
+
id: "laughter",
|
|
7674
|
+
name: "Laughter",
|
|
7675
|
+
icon: "😂"
|
|
7676
|
+
},
|
|
7677
|
+
{
|
|
7678
|
+
id: "music",
|
|
7679
|
+
name: "Music",
|
|
7680
|
+
icon: "🎵"
|
|
7681
|
+
},
|
|
7682
|
+
{
|
|
7683
|
+
id: "dog",
|
|
7684
|
+
name: "Dog",
|
|
7685
|
+
icon: "🐕"
|
|
7686
|
+
},
|
|
7687
|
+
{
|
|
7688
|
+
id: "cat",
|
|
7689
|
+
name: "Cat",
|
|
7690
|
+
icon: "🐈"
|
|
7691
|
+
},
|
|
7692
|
+
{
|
|
7693
|
+
id: "bird",
|
|
7694
|
+
name: "Bird",
|
|
7695
|
+
icon: "🐦"
|
|
7696
|
+
},
|
|
7697
|
+
{
|
|
7698
|
+
id: "animal",
|
|
7699
|
+
name: "Animal (other)",
|
|
7700
|
+
icon: "🐾"
|
|
7701
|
+
},
|
|
7702
|
+
{
|
|
7703
|
+
id: "alarm",
|
|
7704
|
+
name: "Alarm / Siren",
|
|
7705
|
+
icon: "🚨"
|
|
7706
|
+
},
|
|
7707
|
+
{
|
|
7708
|
+
id: "doorbell",
|
|
7709
|
+
name: "Doorbell / Knock",
|
|
7710
|
+
icon: "🔔"
|
|
7711
|
+
},
|
|
7712
|
+
{
|
|
7713
|
+
id: "glass_breaking",
|
|
7714
|
+
name: "Glass Breaking",
|
|
7715
|
+
icon: "💥"
|
|
7716
|
+
},
|
|
7717
|
+
{
|
|
7718
|
+
id: "gunshot",
|
|
7719
|
+
name: "Gunshot / Explosion",
|
|
7720
|
+
icon: "💣"
|
|
7721
|
+
},
|
|
7722
|
+
{
|
|
7723
|
+
id: "vehicle",
|
|
7724
|
+
name: "Vehicle",
|
|
7725
|
+
icon: "🚗"
|
|
7726
|
+
},
|
|
7727
|
+
{
|
|
7728
|
+
id: "siren",
|
|
7729
|
+
name: "Emergency Siren",
|
|
7730
|
+
icon: "🚑"
|
|
7731
|
+
},
|
|
7732
|
+
{
|
|
7733
|
+
id: "fire",
|
|
7734
|
+
name: "Fire / Smoke",
|
|
7735
|
+
icon: "🔥"
|
|
7736
|
+
},
|
|
7737
|
+
{
|
|
7738
|
+
id: "water",
|
|
7739
|
+
name: "Water",
|
|
7740
|
+
icon: "💧"
|
|
7741
|
+
},
|
|
7742
|
+
{
|
|
7743
|
+
id: "wind",
|
|
7744
|
+
name: "Wind / Weather",
|
|
7745
|
+
icon: "🌬️"
|
|
7746
|
+
},
|
|
7747
|
+
{
|
|
7748
|
+
id: "door",
|
|
7749
|
+
name: "Door",
|
|
7750
|
+
icon: "🚪"
|
|
7751
|
+
},
|
|
7752
|
+
{
|
|
7753
|
+
id: "footsteps",
|
|
7754
|
+
name: "Footsteps",
|
|
7755
|
+
icon: "👣"
|
|
7756
|
+
},
|
|
7757
|
+
{
|
|
7758
|
+
id: "crowd",
|
|
7759
|
+
name: "Crowd / Chatter",
|
|
7760
|
+
icon: "👥"
|
|
7761
|
+
},
|
|
7762
|
+
{
|
|
7763
|
+
id: "telephone",
|
|
7764
|
+
name: "Telephone",
|
|
7765
|
+
icon: "📞"
|
|
7766
|
+
},
|
|
7767
|
+
{
|
|
7768
|
+
id: "engine",
|
|
7769
|
+
name: "Engine / Motor",
|
|
7770
|
+
icon: "⚙️"
|
|
7771
|
+
},
|
|
7772
|
+
{
|
|
7773
|
+
id: "tools",
|
|
7774
|
+
name: "Tools / Construction",
|
|
7775
|
+
icon: "🔨"
|
|
7776
|
+
},
|
|
7777
|
+
{
|
|
7778
|
+
id: "silence",
|
|
7779
|
+
name: "Silence",
|
|
7780
|
+
icon: "🤫"
|
|
7781
|
+
}
|
|
7782
|
+
];
|
|
7629
7783
|
var YAMNET_TO_MACRO = {
|
|
7630
7784
|
mapping: {
|
|
7631
7785
|
Speech: "speech",
|
|
@@ -7892,6 +8046,125 @@ var _macroLookup = /* @__PURE__ */ new Map();
|
|
|
7892
8046
|
for (const [k, v] of Object.entries(YAMNET_TO_MACRO.mapping)) _macroLookup.set(k.toLowerCase(), v);
|
|
7893
8047
|
for (const [k, v] of Object.entries(APPLE_SA_TO_MACRO.mapping)) _macroLookup.set(k.toLowerCase(), v);
|
|
7894
8048
|
/**
|
|
8049
|
+
* Unified event-kind taxonomy — THE single source of truth for
|
|
8050
|
+
* `kind → { parentKind, category, level, color, iconId, labelKey, label,
|
|
8051
|
+
* icon }`.
|
|
8052
|
+
*
|
|
8053
|
+
* This dictionary folds together what used to be scattered across four
|
|
8054
|
+
* copies:
|
|
8055
|
+
* - `capabilities/sensor-event-kinds.ts` (sensor cap colors)
|
|
8056
|
+
* - `addon-post-analysis/.../services/event-kinds.ts`
|
|
8057
|
+
* (MOTION/PERSON/VEHICLE… _COLOR constants)
|
|
8058
|
+
* - `ui-library/composites/detection-colors.ts` (CLASS_COLORS)
|
|
8059
|
+
* - `addon-post-analysis/shared/frame/box-drawer.ts` (DEFAULT_COLOR)
|
|
8060
|
+
* - the COCO / audio class maps (macro ↔ sub relationships)
|
|
8061
|
+
*
|
|
8062
|
+
* The DATA (serializable — color/iconId/labelKey/parentKind) lives here in
|
|
8063
|
+
* `@camstack/types`. The UI-side mapping `iconId → lucide component` and
|
|
8064
|
+
* `labelKey → t()` lives in `@camstack/ui-library`. UIs never hardcode a
|
|
8065
|
+
* color or an icon: they read this dictionary (server descriptors carry the
|
|
8066
|
+
* fields inline; the client resolves color/icon/label from `iconId`/`kind`).
|
|
8067
|
+
*
|
|
8068
|
+
* Two levels only (v1 YAGNI): macro → sub. `person` is a leaf macro.
|
|
8069
|
+
*/
|
|
8070
|
+
var TAXONOMY_COLORS = {
|
|
8071
|
+
motion: "#f59e0b",
|
|
8072
|
+
audio: "#06b6d4",
|
|
8073
|
+
person: "#22c55e",
|
|
8074
|
+
vehicle: "#3b82f6",
|
|
8075
|
+
animal: "#f97316",
|
|
8076
|
+
package: "#a855f7",
|
|
8077
|
+
sensor: "#8b5cf6",
|
|
8078
|
+
control: "#10b981",
|
|
8079
|
+
genericDetection: "#64748b"
|
|
8080
|
+
};
|
|
8081
|
+
var DETECTION_SUB_COLORS = {
|
|
8082
|
+
car: "#f59e0b",
|
|
8083
|
+
truck: "#d97706",
|
|
8084
|
+
bus: "#b45309",
|
|
8085
|
+
motorcycle: "#eab308",
|
|
8086
|
+
bicycle: "#ca8a04",
|
|
8087
|
+
airplane: "#60a5fa",
|
|
8088
|
+
boat: "#2563eb",
|
|
8089
|
+
train: "#1d4ed8",
|
|
8090
|
+
bird: "#14b8a6",
|
|
8091
|
+
dog: "#84cc16",
|
|
8092
|
+
cat: "#f97316",
|
|
8093
|
+
horse: "#a16207",
|
|
8094
|
+
sheep: "#a3a3a3",
|
|
8095
|
+
cow: "#78716c",
|
|
8096
|
+
elephant: "#6b7280",
|
|
8097
|
+
bear: "#7c2d12",
|
|
8098
|
+
zebra: "#404040",
|
|
8099
|
+
giraffe: "#d4a373"
|
|
8100
|
+
};
|
|
8101
|
+
function titleCase(id) {
|
|
8102
|
+
return id.split(/[-_ ]/).filter((p) => p.length > 0).map((p) => p.charAt(0).toUpperCase() + p.slice(1)).join(" ");
|
|
8103
|
+
}
|
|
8104
|
+
var entries = /* @__PURE__ */ new Map();
|
|
8105
|
+
function macro(kind, category, color, iconId, label) {
|
|
8106
|
+
entries.set(kind, {
|
|
8107
|
+
kind,
|
|
8108
|
+
parentKind: null,
|
|
8109
|
+
level: "macro",
|
|
8110
|
+
category,
|
|
8111
|
+
color,
|
|
8112
|
+
iconId,
|
|
8113
|
+
labelKey: `eventKind.${kind}`,
|
|
8114
|
+
label
|
|
8115
|
+
});
|
|
8116
|
+
}
|
|
8117
|
+
function sub(kind, parentKind, category, color, iconId, label) {
|
|
8118
|
+
entries.set(kind, {
|
|
8119
|
+
kind,
|
|
8120
|
+
parentKind,
|
|
8121
|
+
level: "sub",
|
|
8122
|
+
category,
|
|
8123
|
+
color,
|
|
8124
|
+
iconId,
|
|
8125
|
+
labelKey: `eventKind.${kind}`,
|
|
8126
|
+
label
|
|
8127
|
+
});
|
|
8128
|
+
}
|
|
8129
|
+
macro("motion", "motion", TAXONOMY_COLORS.motion, "motion", "Motion");
|
|
8130
|
+
macro("audio", "audio", TAXONOMY_COLORS.audio, "audio", "Audio");
|
|
8131
|
+
macro("person", "detection", TAXONOMY_COLORS.person, "person", "Person");
|
|
8132
|
+
macro("vehicle", "detection", TAXONOMY_COLORS.vehicle, "vehicle", "Vehicle");
|
|
8133
|
+
macro("animal", "detection", TAXONOMY_COLORS.animal, "animal", "Animal");
|
|
8134
|
+
macro("package", "package", TAXONOMY_COLORS.package, "package", "Package");
|
|
8135
|
+
macro("sensor", "sensor", TAXONOMY_COLORS.sensor, "sensor", "Sensor");
|
|
8136
|
+
macro("control", "control", TAXONOMY_COLORS.control, "control", "Control");
|
|
8137
|
+
for (const [cocoClass, macroClass] of Object.entries(COCO_TO_MACRO.mapping)) {
|
|
8138
|
+
if (macroClass !== "vehicle" && macroClass !== "animal") continue;
|
|
8139
|
+
if (entries.has(cocoClass)) continue;
|
|
8140
|
+
sub(cocoClass, macroClass, "detection", DETECTION_SUB_COLORS[cocoClass] ?? TAXONOMY_COLORS.genericDetection, cocoClass, titleCase(cocoClass));
|
|
8141
|
+
}
|
|
8142
|
+
sub("package-delivered", "package", "package", TAXONOMY_COLORS.package, "package", "Package delivered");
|
|
8143
|
+
sub("package-picked-up", "package", "package", TAXONOMY_COLORS.package, "package", "Package picked up");
|
|
8144
|
+
sub("contact", "sensor", "sensor", "#f59e0b", "door", "Contact");
|
|
8145
|
+
sub("motion-sensor", "sensor", "sensor", TAXONOMY_COLORS.sensor, "pir", "Motion sensor");
|
|
8146
|
+
sub("smoke", "sensor", "sensor", "#ef4444", "smoke", "Smoke");
|
|
8147
|
+
sub("flood", "sensor", "sensor", "#3b82f6", "water", "Water leak");
|
|
8148
|
+
sub("gas", "sensor", "sensor", "#ef4444", "gas", "Gas");
|
|
8149
|
+
sub("carbon-monoxide", "sensor", "sensor", "#dc2626", "smoke", "Carbon monoxide");
|
|
8150
|
+
sub("vibration", "sensor", "sensor", "#eab308", "vibration", "Vibration");
|
|
8151
|
+
sub("tamper", "sensor", "sensor", "#f97316", "tamper", "Tamper");
|
|
8152
|
+
sub("presence", "sensor", "sensor", "#22c55e", "presence", "Presence");
|
|
8153
|
+
sub("enum-sensor", "sensor", "sensor", TAXONOMY_COLORS.sensor, "generic", "Sensor state");
|
|
8154
|
+
sub("device-event", "sensor", "sensor", "#10b981", "button", "Device event");
|
|
8155
|
+
sub("lock", "control", "control", "#0ea5e9", "lock", "Lock");
|
|
8156
|
+
sub("switch", "control", "control", TAXONOMY_COLORS.control, "switch", "Switch");
|
|
8157
|
+
sub("siren", "control", "control", "#dc2626", "siren", "Siren");
|
|
8158
|
+
sub("button", "control", "control", "#10b981", "button", "Button");
|
|
8159
|
+
sub("doorbell", "control", "control", "#a855f7", "doorbell", "Doorbell");
|
|
8160
|
+
for (const l of AUDIO_MACRO_LABELS) {
|
|
8161
|
+
const kind = `audio-${l.id}`;
|
|
8162
|
+
if (entries.has(kind)) continue;
|
|
8163
|
+
sub(kind, "audio", "audio", TAXONOMY_COLORS.audio, kind, l.name);
|
|
8164
|
+
}
|
|
8165
|
+
/** The complete taxonomy dictionary, keyed by kind. */
|
|
8166
|
+
var EVENT_TAXONOMY = Object.freeze(Object.fromEntries(entries));
|
|
8167
|
+
/**
|
|
7895
8168
|
* Error types for the safe expression engine. Two distinct classes so callers
|
|
7896
8169
|
* can tell a compile-time (grammar) failure from a runtime (evaluation)
|
|
7897
8170
|
* failure — both are non-fatal to the host: read paths degrade to "skip link".
|
|
@@ -15858,17 +16131,30 @@ var EventKindCategorySchema = _enum([
|
|
|
15858
16131
|
"audio",
|
|
15859
16132
|
"detection",
|
|
15860
16133
|
"sensor",
|
|
16134
|
+
"control",
|
|
15861
16135
|
"custom",
|
|
15862
16136
|
"package"
|
|
15863
16137
|
]);
|
|
16138
|
+
/** Taxonomy level — macro (timeline lane) vs sub (events-page leaf). */
|
|
16139
|
+
var EventKindLevelSchema = _enum(["macro", "sub"]);
|
|
15864
16140
|
var EventKindDescriptorSchema = object({
|
|
15865
|
-
/** Stable kind id (e.g. 'motion', '
|
|
16141
|
+
/** Stable kind id (e.g. 'motion', 'vehicle', 'car', 'lock'). */
|
|
15866
16142
|
kind: string(),
|
|
16143
|
+
/** i18n key resolved on the UI side; `label` is the English fallback. */
|
|
16144
|
+
labelKey: string(),
|
|
16145
|
+
/** English fallback label (kept for clients that don't translate). */
|
|
15867
16146
|
label: string(),
|
|
15868
16147
|
/** Hex color for timeline/legend rendering. */
|
|
15869
16148
|
color: string(),
|
|
16149
|
+
/** Dictionary id → lucide component on the UI side. */
|
|
16150
|
+
iconId: string(),
|
|
16151
|
+
/** Legacy closed-vocab glyph — fallback for `iconId`. */
|
|
15870
16152
|
icon: EventKindIconSchema,
|
|
15871
16153
|
category: EventKindCategorySchema,
|
|
16154
|
+
/** Macro parent for this kind ('car' → 'vehicle'); null for a macro. */
|
|
16155
|
+
parentKind: string().nullable(),
|
|
16156
|
+
/** Derived from `parentKind`, explicit for the client tree. */
|
|
16157
|
+
level: EventKindLevelSchema,
|
|
15872
16158
|
/** Which cap + device contributes this kind. For built-ins the camera
|
|
15873
16159
|
* itself; for sensor kinds the LINKED source device. */
|
|
15874
16160
|
source: object({
|
|
@@ -15941,11 +16227,21 @@ var TrackAudioLabelSchema = object({
|
|
|
15941
16227
|
firstAt: number(),
|
|
15942
16228
|
lastAt: number()
|
|
15943
16229
|
});
|
|
16230
|
+
/**
|
|
16231
|
+
* How a track was produced. `pipeline` (default / absent) = the spatial
|
|
16232
|
+
* detection+tracking pipeline. `sensor` = a SYNTHETIC track projected from a
|
|
16233
|
+
* linked sensor/control state change (no positions; carries a snapshot). The
|
|
16234
|
+
* spatial subsystems (tracker association, occupancy count, re-id/embedding,
|
|
16235
|
+
* resurrection) MUST skip `sensor` tracks — they have no bbox trajectory.
|
|
16236
|
+
*/
|
|
16237
|
+
var TrackSourceSchema = _enum(["pipeline", "sensor"]);
|
|
15944
16238
|
var TrackSchema = object({
|
|
15945
16239
|
trackId: string(),
|
|
15946
16240
|
deviceId: number(),
|
|
15947
16241
|
className: string(),
|
|
15948
16242
|
label: string().optional(),
|
|
16243
|
+
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
16244
|
+
source: TrackSourceSchema.optional(),
|
|
15949
16245
|
firstSeen: number(),
|
|
15950
16246
|
lastSeen: number(),
|
|
15951
16247
|
/** Frame-rate position history (subject to maxPositionHistory cap). */
|
|
@@ -16322,6 +16618,76 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
16322
16618
|
eventId: string(),
|
|
16323
16619
|
timestamp: number()
|
|
16324
16620
|
});
|
|
16621
|
+
/**
|
|
16622
|
+
* Cap → event-kind mapping for the SENSOR / CONTROL cap families — the table
|
|
16623
|
+
* `pipeline-analytics.listEventKinds` uses to turn a linked device's bound
|
|
16624
|
+
* caps into per-camera event-kind descriptors.
|
|
16625
|
+
*
|
|
16626
|
+
* The descriptor DATA (color / iconId / labelKey / parentKind / category)
|
|
16627
|
+
* is NOT duplicated here — every entry is derived from the single
|
|
16628
|
+
* `EVENT_TAXONOMY` dictionary (`catalogs/event-taxonomy.ts`). This file owns
|
|
16629
|
+
* ONLY the cap-name → taxonomy-kind mapping. Adding a new eventful sensor /
|
|
16630
|
+
* control cap means adding one line here (and a taxonomy entry); the anti-
|
|
16631
|
+
* drift guard `scripts/check-event-kind-coverage.ts` fails the build if an
|
|
16632
|
+
* eventful cap is missing.
|
|
16633
|
+
*/
|
|
16634
|
+
/** Map a taxonomy `iconId` onto the legacy closed `EventKindIcon` enum. */
|
|
16635
|
+
var LEGACY_ICON = {
|
|
16636
|
+
motion: "motion",
|
|
16637
|
+
audio: "audio",
|
|
16638
|
+
person: "person",
|
|
16639
|
+
vehicle: "vehicle",
|
|
16640
|
+
animal: "animal",
|
|
16641
|
+
package: "package",
|
|
16642
|
+
door: "door",
|
|
16643
|
+
pir: "pir",
|
|
16644
|
+
smoke: "smoke",
|
|
16645
|
+
water: "water",
|
|
16646
|
+
button: "button",
|
|
16647
|
+
generic: "generic",
|
|
16648
|
+
gas: "smoke",
|
|
16649
|
+
vibration: "generic",
|
|
16650
|
+
tamper: "generic",
|
|
16651
|
+
presence: "person",
|
|
16652
|
+
lock: "generic",
|
|
16653
|
+
siren: "generic",
|
|
16654
|
+
switch: "generic",
|
|
16655
|
+
doorbell: "button"
|
|
16656
|
+
};
|
|
16657
|
+
function legacyIcon(iconId) {
|
|
16658
|
+
return LEGACY_ICON[iconId] ?? "generic";
|
|
16659
|
+
}
|
|
16660
|
+
/**
|
|
16661
|
+
* Cap name → taxonomy kind id. Covers EVERY eventful sensor / control cap.
|
|
16662
|
+
* The anti-drift guard cross-checks this against the eventful caps declared
|
|
16663
|
+
* in `packages/types/src/capabilities/*.cap.ts`.
|
|
16664
|
+
*/
|
|
16665
|
+
var CAP_TO_KIND = {
|
|
16666
|
+
contact: "contact",
|
|
16667
|
+
motion: "motion-sensor",
|
|
16668
|
+
smoke: "smoke",
|
|
16669
|
+
flood: "flood",
|
|
16670
|
+
gas: "gas",
|
|
16671
|
+
"carbon-monoxide": "carbon-monoxide",
|
|
16672
|
+
vibration: "vibration",
|
|
16673
|
+
tamper: "tamper",
|
|
16674
|
+
presence: "presence",
|
|
16675
|
+
"enum-sensor": "enum-sensor",
|
|
16676
|
+
"event-emitter": "device-event",
|
|
16677
|
+
"lock-control": "lock",
|
|
16678
|
+
switch: "switch",
|
|
16679
|
+
button: "button",
|
|
16680
|
+
doorbell: "doorbell"
|
|
16681
|
+
};
|
|
16682
|
+
function buildDescriptor(capName, kind) {
|
|
16683
|
+
const t = EVENT_TAXONOMY[kind];
|
|
16684
|
+
if (t === void 0) throw new Error(`EVENT_KIND_BY_CAP: cap '${capName}' maps to unknown taxonomy kind '${kind}'`);
|
|
16685
|
+
return {
|
|
16686
|
+
...t,
|
|
16687
|
+
icon: legacyIcon(t.iconId)
|
|
16688
|
+
};
|
|
16689
|
+
}
|
|
16690
|
+
Object.freeze(Object.fromEntries(Object.entries(CAP_TO_KIND).map(([capName, kind]) => [capName, buildDescriptor(capName, kind)])));
|
|
16325
16691
|
var CameraPipelineConfigSchema = object({
|
|
16326
16692
|
engine: PipelineEngineChoiceSchema.optional(),
|
|
16327
16693
|
steps: array(PipelineStepInputSchema).readonly(),
|
|
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
|
|
|
2
2
|
__esModule: { value: true },
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
|
-
const require_dist = require("../dist-
|
|
5
|
+
const require_dist = require("../dist-CPFhFQVO.js");
|
|
6
6
|
let node_child_process = require("node:child_process");
|
|
7
7
|
let node_util = require("node:util");
|
|
8
8
|
let node_crypto = require("node:crypto");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as EventCategory, n as networkAccessCapability, r as BaseAddon } from "../dist-
|
|
1
|
+
import { i as EventCategory, n as networkAccessCapability, r as BaseAddon } from "../dist-C_oio-xb.mjs";
|
|
2
2
|
import { execFile } from "node:child_process";
|
|
3
3
|
import { promisify } from "node:util";
|
|
4
4
|
import { randomUUID } from "node:crypto";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-tailscale",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.28",
|
|
4
4
|
"description": "Tailscale bundle for CamStack — joins the host to a tailnet (client) and exposes the hub via Serve/Funnel (ingress). Multi-entry npm package shipping 2 addons under a single bundle.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|