@camstack/addon-osd-manager 0.1.65 → 0.1.67

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 (19) hide show
  1. package/dist/{MotionZonesSettings-CMC6lWsq.mjs → MotionZonesSettings-B_4oSB9j.mjs} +2 -2
  2. package/dist/{PrivacyMaskSettings-CR2SgXe3.mjs → PrivacyMaskSettings-BA9bkG8G.mjs} +4 -4
  3. package/dist/{SceneMonitorEditor-BODc0vIp.mjs → SceneMonitorEditor-ZIDwRiWt.mjs} +3 -3
  4. package/dist/_stub.js +11 -11
  5. package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-3IdihoBz.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-BZTQZn6M.mjs} +4 -4
  6. package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-CzbsPrgW.mjs +26 -0
  7. package/dist/addon-osd-manager.css +1 -1
  8. package/dist/{hostInit-BIGPRJFF.mjs → hostInit-CSD5LvtI.mjs} +3 -3
  9. package/dist/index.js +483 -1
  10. package/dist/index.mjs +483 -1
  11. package/dist/{player-overlays-Dyj7lLfI.mjs → player-overlays-D5k6Sil0.mjs} +1 -1
  12. package/dist/remoteEntry.js +1 -1
  13. package/dist/{responsive-Dvh1nrE6.mjs → responsive-Bqsf65Tp.mjs} +1 -1
  14. package/dist/{square-CseLHZxw.mjs → square-B9YAq7Ib.mjs} +1 -1
  15. package/dist/{trash-2-CW8j8vMx.mjs → trash-2-CfxM8zKf.mjs} +1 -1
  16. package/dist/{use-device-snapshot-BLQdByqs.mjs → use-device-snapshot-Cd65t8qo.mjs} +1 -1
  17. package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-Dek0ZMV9.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-DZOIcCkf.mjs} +1 -1
  18. package/package.json +1 -1
  19. package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-B74NnR8u.mjs +0 -26
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- //#region ../types/dist/event-category-BZL-fdNj.mjs
1
+ //#region ../types/dist/event-category-zAv7pMUz.mjs
2
2
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
3
3
  EventCategory["SystemBoot"] = "system.boot";
4
4
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -370,6 +370,13 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
370
370
  */
371
371
  EventCategory["BatteryOnStatusChanged"] = "battery.onStatusChanged";
372
372
  /**
373
+ * Cap event fired by every device that registers the `network-link`
374
+ * capability. Mirrors the cap definition's `onStatusChanged`. Carries
375
+ * `{ deviceId, status: NetworkLinkStatus }` — a link switch or a signal
376
+ * reading that moved.
377
+ */
378
+ EventCategory["NetworkLinkOnStatusChanged"] = "network-link.onStatusChanged";
379
+ /**
373
380
  * Emitted by the battery cap provider WHEN `wakeForStream` enters the
374
381
  * "wake in progress" window — between the Baichuan wake-up issue and
375
382
  * the camera's first dialed-back RTP packet. The stream-broker
@@ -28283,6 +28290,88 @@ onStatusChanged: { data: object({
28283
28290
  volatileStateFields: ["lastUpdated"]
28284
28291
  };
28285
28292
  /**
28293
+ * Network-link snapshot. Same shape for every provider (a Reolink wifi
28294
+ * camera, a Home Assistant device with a signal-strength sensor, a Tapo
28295
+ * plug): one slice under `device.runtimeState['network-link']`, one badge,
28296
+ * one Home Assistant projection.
28297
+ */
28298
+ var NetworkLinkStatusSchema = object({
28299
+ /** The link the device is on. `'unknown'` = not read yet, not "no link". */
28300
+ type: _enum([
28301
+ "wifi",
28302
+ "ethernet",
28303
+ "cellular",
28304
+ "unknown"
28305
+ ]),
28306
+ /**
28307
+ * Link quality, 0..100 inclusive, normalised by the provider from whatever
28308
+ * the firmware reports (bars, RSSI, a vendor scale). **`null` means NOT
28309
+ * KNOWN or NOT APPLICABLE** — a wired link has no signal, and a wireless
28310
+ * one whose reading has not landed must not be drawn at 0 %. Consumers
28311
+ * SKIP a null rather than coerce it.
28312
+ */
28313
+ signalPercent: number().min(0).max(100).nullable(),
28314
+ /** Raw received signal strength in dBm, when the firmware reports one. */
28315
+ rssiDbm: number().optional(),
28316
+ /** Network name of a wireless link, when the firmware reports it. */
28317
+ ssid: string().optional(),
28318
+ /** Ms epoch of the last observation. Lets consumers reason about freshness. */
28319
+ lastUpdated: number()
28320
+ });
28321
+ var networkLinkCapability = {
28322
+ name: "network-link",
28323
+ scope: "device",
28324
+ deviceNative: true,
28325
+ mode: "singleton",
28326
+ deviceTypes: [
28327
+ DeviceType.Camera,
28328
+ DeviceType.Sensor,
28329
+ DeviceType.Button,
28330
+ DeviceType.Switch,
28331
+ DeviceType.Light,
28332
+ DeviceType.Lock,
28333
+ DeviceType.Siren
28334
+ ],
28335
+ methods: {},
28336
+ events: {
28337
+ /**
28338
+ * Emitted whenever the cached status changes (a link switch, a signal
28339
+ * reading that moved). Mirrored on the parent chain by the
28340
+ * DeviceEventPropagator like `battery.onStatusChanged`.
28341
+ */
28342
+ onStatusChanged: { data: object({
28343
+ deviceId: number(),
28344
+ status: NetworkLinkStatusSchema
28345
+ }) } },
28346
+ status: {
28347
+ schema: NetworkLinkStatusSchema,
28348
+ kind: "push",
28349
+ empty: {
28350
+ type: "unknown",
28351
+ signalPercent: null,
28352
+ lastUpdated: 0
28353
+ }
28354
+ },
28355
+ /**
28356
+ * Runtime-state slice — every provider stores the same shape under
28357
+ * `device.runtimeState['network-link']`, read once by the badge and the
28358
+ * Home Assistant projector regardless of the driver.
28359
+ */
28360
+ runtimeState: NetworkLinkStatusSchema,
28361
+ /**
28362
+ * Runtime-state durability: **restored** — a link reading is slow to
28363
+ * change and a sleeping battery camera may not report for hours; the
28364
+ * restored slice is what the badge shows until the next read.
28365
+ *
28366
+ * See `RuntimeStateDurability`. Enforced by
28367
+ * `scripts/check-runtime-state-durability.ts`.
28368
+ */
28369
+ durability: "restored",
28370
+ /** Clock fields: written, but excluded from the compare that decides
28371
+ * whether persisting is worth a SQLite commit. */
28372
+ volatileStateFields: ["lastUpdated"]
28373
+ };
28374
+ /**
28286
28375
  * Generic boolean sensor — last-resort fallback when no domain-
28287
28376
  * specific binary cap fits (Home Assistant `binary_sensor` without a
28288
28377
  * known `device_class`, or a domain we haven't typed yet). Pure
@@ -33906,6 +33995,287 @@ var ptzAutotrackCapability = {
33906
33995
  durability: "session"
33907
33996
  };
33908
33997
  /**
33998
+ * `navigation` — a device-scoped capability that natively expresses the FULL
33999
+ * navigation / action surface of a robot that DRIVES ITSELF and carries an
34000
+ * on-board camera (the Dreame robot-vacuum camera is the first provider).
34001
+ *
34002
+ * Why a NEW cap rather than overloading `ptz`:
34003
+ * - `ptz` moves a *gimbal* on a fixed camera (pan/tilt/zoom of the lens). A
34004
+ * robot vacuum has no gimbal — the whole chassis drives, turns and spins.
34005
+ * The two are different physical models: PTZ is absolute-position + presets,
34006
+ * navigation is momentary drive nudges + discrete robot ACTIONS
34007
+ * (dock / spot-clean / follow-pet / go-to-point / …).
34008
+ * - This cap is the SOURCE OF TRUTH. Two consumers adapt from it rather than
34009
+ * the reverse:
34010
+ * 1. a native CamStack navigation panel (data-driven from `listActions`
34011
+ * / `getOptions`), and
34012
+ * 2. the PTZ surface — a thin adapter mimics `ptz` from `navigation` so a
34013
+ * robot camera shows up in the existing PTZ control path without every
34014
+ * PTZ provider learning about robots. The mapping lives in the adapter,
34015
+ * not here (see the addon design note):
34016
+ * ptz.continuousMove({pan,tilt}) → navigation.move({pan,tilt})
34017
+ * ptz.stop() → navigation.stop()
34018
+ * ptz.goHome() → navigation.runAction('goHome')
34019
+ * ptz.getPresets() → navigation.listActions() (id→preset)
34020
+ * ptz.goToPreset(id) → navigation.runAction(id)
34021
+ *
34022
+ * ## Continuous drive
34023
+ *
34024
+ * `move` is MOMENTARY. Fluid navigation comes from the UI (or the PTZ adapter)
34025
+ * sending `move({pan,tilt})` REPEATEDLY at ~1 Hz while a direction is held, and
34026
+ * one `stop()` on release — exactly like the robot app's remote-drive joystick.
34027
+ * The provider forwards EACH `move` to one drive write; it must NOT debounce or
34028
+ * coalesce them. The UI owns the cadence.
34029
+ *
34030
+ * ## The action dictionary
34031
+ *
34032
+ * The discrete controls (dock / locate / spot-clean / follow / flash / sounds)
34033
+ * are a DATA-DRIVEN dictionary the cap exposes via `listActions()`. Each entry
34034
+ * carries `{ id, kind, label, icon }` (plus `soundId` for sound entries) so the
34035
+ * native panel AND the PTZ mimic render buttons WITHOUT hardcoding a
34036
+ * vendor-specific list. `kind: 'action'` entries are triggered with
34037
+ * `runAction({ actionId })`; `kind: 'sound'` entries with `playSound({ soundId })`
34038
+ * (the entry carries the `soundId` to pass). The general primitives — `move`,
34039
+ * `stop`, `goToPoint` — stay as first-class methods, not dictionary entries.
34040
+ *
34041
+ * NOTE (provider wiring): the first provider (Dreame) drives this with the RAW
34042
+ * `callAction(siid,aiid,in)` / `setProperty({siid,piid,value})` MIoT primitives
34043
+ * that the currently-published `@apocaliss92/nodedreame` already exposes on
34044
+ * every device handle. A future nodedreame publish adds a typed
34045
+ * `DreameCameraController` (drive / playPetSound / spotClean / findPet / …); the
34046
+ * provider can then swap the raw calls for the typed methods with no change to
34047
+ * THIS contract.
34048
+ */
34049
+ /**
34050
+ * A momentary drive nudge. The robot MOVES (no gimbal) for as long as the caller
34051
+ * keeps sending nudges (~1 Hz); an explicit `stop` (or letting the nudges lapse)
34052
+ * halts it.
34053
+ *
34054
+ * - `pan` — turn: negative = left, positive = right, 0 = straight.
34055
+ * - `tilt` — throttle: positive = forward, negative = spin / turn-around.
34056
+ * - `speed` — optional intensity hint [0, 1]; the provider may scale the drive
34057
+ * vector by it (drivers without proportional drive ignore it).
34058
+ *
34059
+ * `pan` / `tilt` are normalized [-1, 1]. Both optional so a caller can nudge one
34060
+ * axis alone; an all-undefined nudge is a no-op.
34061
+ */
34062
+ var NavigationMoveCommandSchema = object({
34063
+ pan: number().min(-1).max(1).optional(),
34064
+ tilt: number().min(-1).max(1).optional(),
34065
+ speed: number().min(0).max(1).optional()
34066
+ });
34067
+ /**
34068
+ * The enumerated discrete actions a navigation-capable robot can perform via
34069
+ * `runAction`. This is the CLOSED vocabulary; a given device advertises the
34070
+ * subset it supports through `listActions`. Sounds are NOT here — they go through
34071
+ * `playSound` (see the `sound` dictionary entries).
34072
+ */
34073
+ var NavigationActionIdSchema = _enum([
34074
+ "goHome",
34075
+ "locate",
34076
+ "spotClean",
34077
+ "findPet",
34078
+ "personFollow",
34079
+ "stop",
34080
+ "startClean",
34081
+ "pauseClean",
34082
+ "dockWash",
34083
+ "autoEmpty",
34084
+ "flashOn",
34085
+ "flashOff"
34086
+ ]);
34087
+ /** Whether a dictionary entry is a `runAction` action or a `playSound` sound. */
34088
+ var NavigationEntryKindSchema = _enum(["action", "sound"]);
34089
+ /**
34090
+ * One entry in the navigation action dictionary — the DATA-DRIVEN unit both the
34091
+ * native panel and the PTZ mimic render as a button.
34092
+ *
34093
+ * - `id` — stable id. For `kind:'action'` it is a {@link NavigationActionId}
34094
+ * (pass to `runAction`); for `kind:'sound'` it is a namespaced id
34095
+ * (`sound:meow`) whose `soundId` is passed to `playSound`.
34096
+ * - `icon` — icon HINT (lucide-style name; the UI maps it to its own set).
34097
+ * - `label` — operator-facing English label.
34098
+ * - `soundId` — wire sound id, present only on `kind:'sound'` entries.
34099
+ * - `enabled` — per-device FEATURE FLAG. `listActions` reports it so the UI /
34100
+ * PTZ render ONLY enabled entries. Data-driven: the provider
34101
+ * flips it from config, never by editing code.
34102
+ */
34103
+ var NavigationActionEntrySchema = object({
34104
+ id: string(),
34105
+ kind: NavigationEntryKindSchema,
34106
+ label: string(),
34107
+ icon: string(),
34108
+ /** Present only on `kind:'sound'` entries — the id to pass to `playSound`. */
34109
+ soundId: number().int().optional(),
34110
+ /** Per-device feature flag — render this entry only when true. */
34111
+ enabled: boolean()
34112
+ });
34113
+ /** Coordinates for `goToPoint` — a point on the robot's live map. */
34114
+ var NavigationPointSchema = object({
34115
+ x: number(),
34116
+ y: number()
34117
+ });
34118
+ /**
34119
+ * Per-device FEATURE-FLAG report for the general (non-dictionary) primitives.
34120
+ * The cap reports which are enabled so the UI / PTZ render only the controls
34121
+ * that are turned on for THIS device. Data-driven: the provider derives these
34122
+ * from config + probe, never hardcoded in the UI. The per-DICTIONARY-entry flags
34123
+ * live on {@link NavigationActionEntrySchema.enabled}; these gate the primitives
34124
+ * that are not dictionary entries.
34125
+ *
34126
+ * - `move` / `stop` — the momentary drive joystick.
34127
+ * - `goToPoint` — send-to-map-coordinate. Ships OFF on Dreame until the
34128
+ * map-coordinate plumbing is wired.
34129
+ * - `runAction` — the discrete action buttons (dictionary `kind:'action'`).
34130
+ * - `playSound` — the sound buttons (dictionary `kind:'sound'`).
34131
+ * - `light` — the on/off fill-light toggle (works anytime).
34132
+ * - `lightMode` — the auto/manual selector + manual level slider (a
34133
+ * camera-service control; needs an active stream).
34134
+ */
34135
+ var NavigationFeaturesSchema = object({
34136
+ move: boolean(),
34137
+ stop: boolean(),
34138
+ goToPoint: boolean(),
34139
+ runAction: boolean(),
34140
+ playSound: boolean(),
34141
+ light: boolean(),
34142
+ lightMode: boolean()
34143
+ });
34144
+ /** Light mode: `auto` lets the camera choose brightness; `manual` uses `level`. */
34145
+ var NavigationLightModeSchema = _enum(["auto", "manual"]);
34146
+ /**
34147
+ * Live navigation state so the UI can reflect what the robot is doing:
34148
+ * - `mode` — coarse activity (idle / cleaning / following / …).
34149
+ * - `following` — person/pet follow is currently armed.
34150
+ * - `flash` — the on-camera fill light is on.
34151
+ * - `lightMode` — auto vs manual fill-light mode.
34152
+ * - `lightLevel` — manual fill-light level (40..100); meaningful when
34153
+ * `lightMode === 'manual'`.
34154
+ */
34155
+ var NavigationStatusSchema = object({
34156
+ mode: _enum([
34157
+ "idle",
34158
+ "cleaning",
34159
+ "spot",
34160
+ "following",
34161
+ "goto",
34162
+ "returning",
34163
+ "paused",
34164
+ "unknown"
34165
+ ]),
34166
+ following: boolean(),
34167
+ flash: boolean(),
34168
+ lightMode: NavigationLightModeSchema,
34169
+ lightLevel: number().min(40).max(100),
34170
+ /** Ms epoch when the slice was last updated. */
34171
+ lastChangedAt: number()
34172
+ });
34173
+ /**
34174
+ * Runtime-state slice owned by this cap (kernel-managed: validated, mirrored,
34175
+ * observable). Adds `lastFetchedAt` on top of the status shape per the
34176
+ * convention.
34177
+ */
34178
+ var NavigationRuntimeStateSchema = NavigationStatusSchema.extend({ lastFetchedAt: number() });
34179
+ var navigationCapability = {
34180
+ name: "navigation",
34181
+ scope: "device",
34182
+ deviceNative: true,
34183
+ mode: "singleton",
34184
+ deviceTypes: [DeviceType.Camera],
34185
+ deviceConfig: { ui: {
34186
+ kind: "widget",
34187
+ widgetId: "host/navigation-panel",
34188
+ tab: "navigation",
34189
+ topTab: true,
34190
+ label: "Navigation",
34191
+ order: 0
34192
+ } },
34193
+ methods: {
34194
+ /**
34195
+ * Momentary drive nudge (the robot moves). `protected` — mirrors
34196
+ * `ptz.continuousMove` so the Viewer navigation panel (and the PTZ-mimic
34197
+ * path) works for any authenticated user, not admin-only. The UI sends
34198
+ * these at ~1 Hz while a control is held; the provider forwards each one to
34199
+ * a single drive write WITHOUT debouncing.
34200
+ */
34201
+ move: method(NavigationMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }),
34202
+ /** Halt all motion immediately (zero drive vector). */
34203
+ stop: method(object({ deviceId: number() }), _void(), { kind: "mutation" }),
34204
+ /** Send the robot to a point on its live map. */
34205
+ goToPoint: method(NavigationPointSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }),
34206
+ /**
34207
+ * Enumerate the discrete controls THIS device supports (data-driven UI +
34208
+ * PTZ mimic). Camera-probed subset of {@link NAVIGATION_ACTION_CATALOG}.
34209
+ */
34210
+ listActions: method(object({ deviceId: number() }), array(NavigationActionEntrySchema)),
34211
+ /**
34212
+ * Run one discrete action (a `kind:'action'` dictionary entry). Invalid /
34213
+ * unsupported action ids are rejected by the provider.
34214
+ */
34215
+ runAction: method(object({
34216
+ deviceId: number(),
34217
+ actionId: NavigationActionIdSchema
34218
+ }), _void(), { kind: "mutation" }),
34219
+ /** Play a sound by its wire id (the `soundId` of a `kind:'sound'` entry). */
34220
+ playSound: method(object({
34221
+ deviceId: number(),
34222
+ soundId: number().int()
34223
+ }), _void(), { kind: "mutation" }),
34224
+ /**
34225
+ * Turn the on-camera fill light on / off (the `OpenFullLight` control —
34226
+ * works anytime, no active stream required).
34227
+ */
34228
+ setLightOn: method(object({
34229
+ deviceId: number(),
34230
+ on: boolean()
34231
+ }), _void(), { kind: "mutation" }),
34232
+ /**
34233
+ * Set the fill-light mode (auto vs manual). `manual` optionally carries the
34234
+ * initial `level`. The auto/manual + level control is a CAMERA-service
34235
+ * action that generally needs an active camera stream/monitor session — the
34236
+ * UI shows the manual level slider ONLY when `mode === 'manual'`.
34237
+ */
34238
+ setLightMode: method(object({
34239
+ deviceId: number(),
34240
+ mode: NavigationLightModeSchema,
34241
+ level: number().min(40).max(100).optional()
34242
+ }), _void(), { kind: "mutation" }),
34243
+ /** Set the MANUAL fill-light level (40..100). Implies `manual` mode. */
34244
+ setLightLevel: method(object({
34245
+ deviceId: number(),
34246
+ level: number().min(40).max(100)
34247
+ }), _void(), { kind: "mutation" }),
34248
+ /**
34249
+ * Per-device FEATURE-FLAG report for the general primitives — drives which
34250
+ * controls the UI shows (the per-entry flags for the dictionary come back on
34251
+ * `listActions`).
34252
+ */
34253
+ getFeatures: method(object({ deviceId: number() }), NavigationFeaturesSchema)
34254
+ },
34255
+ events: { onStatusChanged: { data: object({
34256
+ deviceId: number(),
34257
+ status: NavigationStatusSchema
34258
+ }) } },
34259
+ status: {
34260
+ schema: NavigationStatusSchema,
34261
+ kind: "push"
34262
+ },
34263
+ /**
34264
+ * Runtime-state slice mirrored by the kernel. The navigation panel watches it
34265
+ * for live mode / follow / flash changes.
34266
+ */
34267
+ runtimeState: NavigationRuntimeStateSchema,
34268
+ /**
34269
+ * Runtime-state durability: **session** — like `vacuum-control`, a restored
34270
+ * `mode: cleaning` / `following: true` is a robot that is not actually doing
34271
+ * that. The live handle re-publishes on connect.
34272
+ *
34273
+ * See `RuntimeStateDurability`. Enforced by
34274
+ * `scripts/check-runtime-state-durability.ts`.
34275
+ */
34276
+ durability: "session"
34277
+ };
34278
+ /**
33909
34279
  * reboot — device-scoped capability for "soft" device reboots (firmware
33910
34280
  * reboot via vendor protocol; cameras, NVRs, doorbells). Surfaces a
33911
34281
  * single mutation so the UI can offer a confirm-and-reboot button for
@@ -37429,7 +37799,9 @@ var ALL_CAPABILITY_DEFINITIONS = [
37429
37799
  motionZonesCapability,
37430
37800
  mqttBrokerCapability,
37431
37801
  nativeObjectDetectionCapability,
37802
+ navigationCapability,
37432
37803
  networkAccessCapability,
37804
+ networkLinkCapability,
37433
37805
  networkQualityCapability,
37434
37806
  nodesCapability,
37435
37807
  notificationOutputCapability,
@@ -40230,6 +40602,66 @@ Object.freeze({
40230
40602
  addonId: null,
40231
40603
  access: "create"
40232
40604
  },
40605
+ "navigation.getFeatures": {
40606
+ capName: "navigation",
40607
+ capScope: "device",
40608
+ addonId: null,
40609
+ access: "view"
40610
+ },
40611
+ "navigation.goToPoint": {
40612
+ capName: "navigation",
40613
+ capScope: "device",
40614
+ addonId: null,
40615
+ access: "create"
40616
+ },
40617
+ "navigation.listActions": {
40618
+ capName: "navigation",
40619
+ capScope: "device",
40620
+ addonId: null,
40621
+ access: "view"
40622
+ },
40623
+ "navigation.move": {
40624
+ capName: "navigation",
40625
+ capScope: "device",
40626
+ addonId: null,
40627
+ access: "create"
40628
+ },
40629
+ "navigation.playSound": {
40630
+ capName: "navigation",
40631
+ capScope: "device",
40632
+ addonId: null,
40633
+ access: "create"
40634
+ },
40635
+ "navigation.runAction": {
40636
+ capName: "navigation",
40637
+ capScope: "device",
40638
+ addonId: null,
40639
+ access: "create"
40640
+ },
40641
+ "navigation.setLightLevel": {
40642
+ capName: "navigation",
40643
+ capScope: "device",
40644
+ addonId: null,
40645
+ access: "create"
40646
+ },
40647
+ "navigation.setLightMode": {
40648
+ capName: "navigation",
40649
+ capScope: "device",
40650
+ addonId: null,
40651
+ access: "create"
40652
+ },
40653
+ "navigation.setLightOn": {
40654
+ capName: "navigation",
40655
+ capScope: "device",
40656
+ addonId: null,
40657
+ access: "create"
40658
+ },
40659
+ "navigation.stop": {
40660
+ capName: "navigation",
40661
+ capScope: "device",
40662
+ addonId: null,
40663
+ access: "create"
40664
+ },
40233
40665
  "networkAccess.getEndpoint": {
40234
40666
  capName: "network-access",
40235
40667
  capScope: "system",
@@ -44325,6 +44757,56 @@ Object.freeze({
44325
44757
  form: "single",
44326
44758
  optional: false
44327
44759
  }],
44760
+ "navigation.getFeatures": [{
44761
+ name: "deviceId",
44762
+ form: "single",
44763
+ optional: false
44764
+ }],
44765
+ "navigation.goToPoint": [{
44766
+ name: "deviceId",
44767
+ form: "single",
44768
+ optional: false
44769
+ }],
44770
+ "navigation.listActions": [{
44771
+ name: "deviceId",
44772
+ form: "single",
44773
+ optional: false
44774
+ }],
44775
+ "navigation.move": [{
44776
+ name: "deviceId",
44777
+ form: "single",
44778
+ optional: false
44779
+ }],
44780
+ "navigation.playSound": [{
44781
+ name: "deviceId",
44782
+ form: "single",
44783
+ optional: false
44784
+ }],
44785
+ "navigation.runAction": [{
44786
+ name: "deviceId",
44787
+ form: "single",
44788
+ optional: false
44789
+ }],
44790
+ "navigation.setLightLevel": [{
44791
+ name: "deviceId",
44792
+ form: "single",
44793
+ optional: false
44794
+ }],
44795
+ "navigation.setLightMode": [{
44796
+ name: "deviceId",
44797
+ form: "single",
44798
+ optional: false
44799
+ }],
44800
+ "navigation.setLightOn": [{
44801
+ name: "deviceId",
44802
+ form: "single",
44803
+ optional: false
44804
+ }],
44805
+ "navigation.stop": [{
44806
+ name: "deviceId",
44807
+ form: "single",
44808
+ optional: false
44809
+ }],
44328
44810
  "networkQuality.getDeviceStats": [{
44329
44811
  name: "deviceId",
44330
44812
  form: "single",
@@ -1,5 +1,5 @@
1
1
  import { h as e, l as t, u as n, y as r } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
2
- import { o as i, s as a } from "./responsive-Dvh1nrE6.mjs";
2
+ import { o as i, s as a } from "./responsive-Bqsf65Tp.mjs";
3
3
  import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-DalfdIDw.mjs";
4
4
  var l = a("chevron-down", [["path", {
5
5
  d: "m6 9 6 6 6-6",
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-Dek0ZMV9.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-DZOIcCkf.mjs";
2
2
  export { t as get, e as init };
@@ -1,6 +1,6 @@
1
1
  import { c as e, g as t, h as n, l as r, n as i, p as a, r as o, t as s, u as c, y as l } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
2
2
  import "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-DalfdIDw.mjs";
3
- import { n as u } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-B74NnR8u.mjs";
3
+ import { n as u } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-CzbsPrgW.mjs";
4
4
  //#region ../ui-library/node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js
5
5
  l();
6
6
  var d = (...e) => e.filter((e, t, n) => !!e && e.trim() !== "" && n.indexOf(e) === t).join(" ").trim(), f = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), p = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), m = (e) => {
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-Dvh1nrE6.mjs";
1
+ import { s as e } from "./responsive-Bqsf65Tp.mjs";
2
2
  var t = e("eye-off", [
3
3
  ["path", {
4
4
  d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-Dvh1nrE6.mjs";
1
+ import { s as e } from "./responsive-Bqsf65Tp.mjs";
2
2
  var t = e("trash-2", [
3
3
  ["path", {
4
4
  d: "M10 11v6",
@@ -1,5 +1,5 @@
1
1
  import { c as e, h as t, p as n, y as r } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
2
- import { s as i } from "./responsive-Dvh1nrE6.mjs";
2
+ import { s as i } from "./responsive-Bqsf65Tp.mjs";
3
3
  var a = i("camera", [["path", {
4
4
  d: "M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",
5
5
  key: "18u6gg"
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-3IdihoBz.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-BZTQZn6M.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-osd-manager",
3
- "version": "0.1.65",
3
+ "version": "0.1.67",
4
4
  "description": "Binds camera on-screen-display slots to live state and recognitions",
5
5
  "keywords": [
6
6
  "camstack",