@camstack/addon-tailscale 1.1.17 → 1.1.19

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.
@@ -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-C7REjypo.js");
27
+ const require_dist = require("../dist-DLPA7dyl.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-BCTaceZ_.mjs";
1
+ import { i as EventCategory, n as networkAccessCapability, r as BaseAddon, t as meshNetworkCapability } from "../dist-qj3qFh_c.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";
@@ -4627,7 +4627,7 @@ function _instanceof(cls, params = {}) {
4627
4627
  return inst;
4628
4628
  }
4629
4629
  //#endregion
4630
- //#region ../types/dist/sleep-BiDFW0E7.mjs
4630
+ //#region ../types/dist/sleep-CZDdRBua.mjs
4631
4631
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
4632
4632
  EventCategory["SystemBoot"] = "system.boot";
4633
4633
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -7222,7 +7222,16 @@ var DecoderStatsSchema = object({
7222
7222
  inputFps: number(),
7223
7223
  outputFps: number(),
7224
7224
  avgDecodeTimeMs: number(),
7225
- droppedFrames: number()
7225
+ droppedFrames: number(),
7226
+ /**
7227
+ * Pull-mode adaptive-fps telemetry (optional — only pull sessions run the
7228
+ * lag-driven controller; push sessions omit these). `lagMs` is the EWMA of
7229
+ * the decoder's real-time drift (rising = falling behind live); `adaptiveFps`
7230
+ * is the current lag-throttled emit rate (≤ `effectiveFps` ceiling).
7231
+ */
7232
+ lagMs: number().optional(),
7233
+ effectiveFps: number().optional(),
7234
+ adaptiveFps: number().optional()
7226
7235
  });
7227
7236
  var DecoderSessionConfigSchema = object({
7228
7237
  codec: string(),
@@ -7263,7 +7272,15 @@ var DecoderSessionConfigSchema = object({
7263
7272
  * other — `pullFrames` returns nothing for an `'shm'` session and
7264
7273
  * `pullHandles` returns nothing for a `'callback'` session.
7265
7274
  */
7266
- frameSink: _enum(["callback", "shm"]).default("callback")
7275
+ frameSink: _enum(["callback", "shm"]).default("callback"),
7276
+ /**
7277
+ * Per-camera decoder DEBUG facility. When `true`, a pull-mode session emits
7278
+ * a throttled (~1Hz) structured `decoder debug` line (effective/adaptive fps,
7279
+ * real-time lag, dropped-frame delta, avg decode time, hwaccel). Mirrors the
7280
+ * stream-broker's `streamingDebug` gate — off by default so production logs
7281
+ * stay quiet and the emit path pays zero per-frame cost when disabled.
7282
+ */
7283
+ debug: boolean().optional()
7267
7284
  });
7268
7285
  var EncodeProfileSchema = object({
7269
7286
  video: object({
@@ -9421,6 +9438,75 @@ DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _vo
9421
9438
  auth: "admin"
9422
9439
  });
9423
9440
  /**
9441
+ * Vendor-neutral day/night (IR-cut) control — the per-camera config cap
9442
+ * shared by reolink / hikvision / amcrest. Models the common firmware
9443
+ * surface: the IR-cut switching MODE plus the two knobs that gate it
9444
+ * (photocell `sensitivity` + `switchDelaySec`). Each vendor maps these
9445
+ * onto its own ISAPI / Baichuan / Dahua-CGI fields; the cap standardises
9446
+ * the shape so ONE derived-form renders every camera.
9447
+ *
9448
+ * Follows the D14 `deviceConfig` archetype (see `stream-params.cap.ts`):
9449
+ * `getOptions` advertises per-camera availability, `getStatus` (auto-
9450
+ * injected from `status`) reports the live values, and a single
9451
+ * `setSettings` mutation applies a partial change. No hand-written
9452
+ * settings-contribution methods — the framework derives the UI + save
9453
+ * routing from this surface.
9454
+ */
9455
+ /** IR-cut switching mode. `schedule` = time-of-day table configured on the camera. */
9456
+ var DayNightModeSchema = _enum([
9457
+ "auto",
9458
+ "day",
9459
+ "night",
9460
+ "schedule"
9461
+ ]);
9462
+ /** Normalized numeric range descriptor — `{ min, max, step }` per the
9463
+ * getOptions availability convention. Normalized values are 0–100. */
9464
+ var NormalizedRangeSchema$1 = object({
9465
+ min: number(),
9466
+ max: number(),
9467
+ step: number()
9468
+ });
9469
+ object({
9470
+ mode: DayNightModeSchema,
9471
+ /** IR-cut trigger sensitivity, NORMALIZED 0–100 (higher = switches to night sooner). */
9472
+ sensitivity: number().optional(),
9473
+ /** Delay before the IR-cut filter flips, in seconds. */
9474
+ switchDelaySec: number().optional(),
9475
+ lastFetchedAt: number()
9476
+ });
9477
+ /**
9478
+ * Per-camera availability descriptor — drives which controls the admin UI
9479
+ * renders. Booleans as `supportsX`; numeric ranges as `{ min, max, step }`
9480
+ * (normalized 0–100); the mode choice-set as an array. A provider returns
9481
+ * honest, camera-probed values — never hardcoded.
9482
+ */
9483
+ var DayNightOptionsSchema = object({
9484
+ /** Modes this camera accepts. Empty → the camera has no configurable day/night mode. */
9485
+ modes: array(DayNightModeSchema),
9486
+ supportsSensitivity: boolean(),
9487
+ /** Present when `supportsSensitivity` — the normalized 0–100 range. */
9488
+ sensitivity: NormalizedRangeSchema$1.optional(),
9489
+ supportsSwitchDelay: boolean(),
9490
+ /** Present when `supportsSwitchDelay` — the allowed delay range in seconds. */
9491
+ switchDelaySec: NormalizedRangeSchema$1.optional()
9492
+ });
9493
+ /**
9494
+ * Partial change to the day/night config — every field optional. A
9495
+ * provider ignores fields it does not support.
9496
+ */
9497
+ var DayNightSettingsPatchSchema = object({
9498
+ mode: DayNightModeSchema.optional(),
9499
+ sensitivity: number().optional(),
9500
+ switchDelaySec: number().optional()
9501
+ });
9502
+ DeviceType.Camera, method(object({ deviceId: number() }), DayNightOptionsSchema), method(object({
9503
+ deviceId: number(),
9504
+ settings: DayNightSettingsPatchSchema
9505
+ }), _void(), {
9506
+ kind: "mutation",
9507
+ auth: "admin"
9508
+ });
9509
+ /**
9424
9510
  * Identity envelope for a device's upstream-system metadata.
9425
9511
  *
9426
9512
  * Two jobs:
@@ -9776,6 +9862,130 @@ object({
9776
9862
  });
9777
9863
  DeviceType.Image;
9778
9864
  /**
9865
+ * Vendor-neutral image / picture-adjustment cap — the per-camera config
9866
+ * cap shared by reolink / hikvision / amcrest. Models the common ISP
9867
+ * surface: the four picture sliders (brightness / contrast / saturation /
9868
+ * sharpness), orientation (mirror / flip / rotate), white-balance,
9869
+ * exposure and backlight-compensation modes.
9870
+ *
9871
+ * NORMALIZATION: every slider is a normalized int 0–100. Vendors expose
9872
+ * these natively as 0–100 or 0–255 (or other ranges); each provider maps
9873
+ * its native range to/from this normalized 0–100 space so the cap surface
9874
+ * (and the derived form) is identical across cameras. `warmth` (manual
9875
+ * white-balance) is likewise normalized 0–100.
9876
+ *
9877
+ * Follows the D14 `deviceConfig` archetype (see `stream-params.cap.ts`):
9878
+ * `getOptions` advertises per-camera availability, `getStatus` (auto-
9879
+ * injected from `status`) reports the live values, and a single
9880
+ * `setSettings` mutation applies a partial change. No hand-written
9881
+ * settings-contribution methods — the framework derives the UI + save
9882
+ * routing from this surface.
9883
+ */
9884
+ /** Sensor/image rotation, degrees clockwise. */
9885
+ var ImageRotateSchema = _enum([
9886
+ "0",
9887
+ "90",
9888
+ "180",
9889
+ "270"
9890
+ ]);
9891
+ /** White-balance mode. `manual` unlocks the normalized `warmth` knob. */
9892
+ var WhiteBalanceModeSchema = _enum(["auto", "manual"]);
9893
+ /** Exposure mode. */
9894
+ var ExposureModeSchema = _enum(["auto", "manual"]);
9895
+ /**
9896
+ * Backlight-compensation mode:
9897
+ * - `off` — disabled
9898
+ * - `blc` — backlight compensation
9899
+ * - `wdr` — wide dynamic range
9900
+ * - `hlc` — highlight compensation
9901
+ */
9902
+ var BacklightModeSchema = _enum([
9903
+ "off",
9904
+ "blc",
9905
+ "wdr",
9906
+ "hlc"
9907
+ ]);
9908
+ /** Normalized numeric range descriptor — `{ min, max, step }` per the
9909
+ * getOptions availability convention. Slider values are normalized 0–100. */
9910
+ var NormalizedRangeSchema = object({
9911
+ min: number(),
9912
+ max: number(),
9913
+ step: number()
9914
+ });
9915
+ object({
9916
+ /** Normalized 0–100. */
9917
+ brightness: number().optional(),
9918
+ /** Normalized 0–100. */
9919
+ contrast: number().optional(),
9920
+ /** Normalized 0–100. */
9921
+ saturation: number().optional(),
9922
+ /** Normalized 0–100. */
9923
+ sharpness: number().optional(),
9924
+ mirror: boolean().optional(),
9925
+ flip: boolean().optional(),
9926
+ rotate: ImageRotateSchema.optional(),
9927
+ whiteBalance: WhiteBalanceModeSchema.optional(),
9928
+ /** Manual white-balance warmth, NORMALIZED 0–100. Meaningful only when `whiteBalance === 'manual'`. */
9929
+ warmth: number().optional(),
9930
+ exposureMode: ExposureModeSchema.optional(),
9931
+ backlightMode: BacklightModeSchema.optional(),
9932
+ lastFetchedAt: number()
9933
+ });
9934
+ /**
9935
+ * Per-camera availability descriptor — drives which controls the admin UI
9936
+ * renders. Booleans as `supportsX`; numeric ranges as `{ min, max, step }`
9937
+ * (the normalized 0–100 range); enums as arrays of supported values (empty
9938
+ * array → control hidden). A provider returns honest, camera-probed values
9939
+ * — never hardcoded.
9940
+ */
9941
+ var ImageSettingsOptionsSchema = object({
9942
+ supportsBrightness: boolean(),
9943
+ brightness: NormalizedRangeSchema.optional(),
9944
+ supportsContrast: boolean(),
9945
+ contrast: NormalizedRangeSchema.optional(),
9946
+ supportsSaturation: boolean(),
9947
+ saturation: NormalizedRangeSchema.optional(),
9948
+ supportsSharpness: boolean(),
9949
+ sharpness: NormalizedRangeSchema.optional(),
9950
+ supportsMirror: boolean(),
9951
+ supportsFlip: boolean(),
9952
+ /** Supported rotation values. Empty → rotation not configurable. */
9953
+ rotateOptions: array(ImageRotateSchema),
9954
+ /** Supported white-balance modes. Empty → white-balance not configurable. */
9955
+ whiteBalanceModes: array(WhiteBalanceModeSchema),
9956
+ supportsWarmth: boolean(),
9957
+ /** Present when `supportsWarmth` — the normalized 0–100 range. */
9958
+ warmth: NormalizedRangeSchema.optional(),
9959
+ /** Supported exposure modes. Empty → exposure not configurable. */
9960
+ exposureModes: array(ExposureModeSchema),
9961
+ /** Supported backlight modes. Empty → backlight-compensation not configurable. */
9962
+ backlightModes: array(BacklightModeSchema)
9963
+ });
9964
+ /**
9965
+ * Partial change to the image config — every field optional. Slider values
9966
+ * are normalized 0–100. A provider ignores fields it does not support.
9967
+ */
9968
+ var ImageSettingsPatchSchema = object({
9969
+ brightness: number().optional(),
9970
+ contrast: number().optional(),
9971
+ saturation: number().optional(),
9972
+ sharpness: number().optional(),
9973
+ mirror: boolean().optional(),
9974
+ flip: boolean().optional(),
9975
+ rotate: ImageRotateSchema.optional(),
9976
+ whiteBalance: WhiteBalanceModeSchema.optional(),
9977
+ warmth: number().optional(),
9978
+ exposureMode: ExposureModeSchema.optional(),
9979
+ backlightMode: BacklightModeSchema.optional()
9980
+ });
9981
+ DeviceType.Camera, method(object({ deviceId: number() }), ImageSettingsOptionsSchema), method(object({
9982
+ deviceId: number(),
9983
+ settings: ImageSettingsPatchSchema
9984
+ }), _void(), {
9985
+ kind: "mutation",
9986
+ auth: "admin"
9987
+ });
9988
+ /**
9779
9989
  * Robotic lawn-mower cap. Models HA `lawn_mower.*` entities — anything
9780
9990
  * with a mowing lifecycle plus a dock action.
9781
9991
  *
@@ -10670,6 +10880,16 @@ var RunnerCameraConfigSchema = object({
10670
10880
  * this gate is bypassed.
10671
10881
  */
10672
10882
  onboardMotionDrivesAnalyzer: boolean().default(true),
10883
+ /**
10884
+ * Master toggle for the occupancy re-check. When `false` (DEFAULT) the runner
10885
+ * never arms the periodic recheck timer, regardless of `occupancyRecheckSec` —
10886
+ * this is off by default because the recheck re-subscribes a detection session
10887
+ * every N seconds while `watching`, a major source of pull-decoder re-dial
10888
+ * churn (each cycle creates+tears a session → RTSP re-dial → latency). The
10889
+ * `occupancyRecheckSec` / `occupancyRecheckFrames` sliders only take effect
10890
+ * (and only render) when this is enabled.
10891
+ */
10892
+ occupancyRecheckEnabled: boolean().default(false),
10673
10893
  occupancyRecheckSec: number().min(occupancyRecheckSecField.min).max(occupancyRecheckSecField.max).default(occupancyRecheckSecField.default),
10674
10894
  occupancyRecheckFrames: number().min(occupancyRecheckFramesField.min).max(occupancyRecheckFramesField.max).default(occupancyRecheckFramesField.default),
10675
10895
  /**
@@ -12966,7 +13186,9 @@ method(object({ codec: string() }), boolean()), method(_void(), object({
12966
13186
  id: string(),
12967
13187
  name: string(),
12968
13188
  isPullMode: boolean().optional(),
12969
- priority: number().optional()
13189
+ priority: number().optional(),
13190
+ hwaccel: string().optional(),
13191
+ probedBestHwaccel: string().optional()
12970
13192
  })), method(DecoderSessionConfigSchema, object({
12971
13193
  sessionId: string(),
12972
13194
  nodeId: string()
@@ -19036,6 +19258,18 @@ Object.freeze({
19036
19258
  addonId: null,
19037
19259
  access: "view"
19038
19260
  },
19261
+ "dayNight.getOptions": {
19262
+ capName: "day-night",
19263
+ capScope: "device",
19264
+ addonId: null,
19265
+ access: "view"
19266
+ },
19267
+ "dayNight.setSettings": {
19268
+ capName: "day-night",
19269
+ capScope: "device",
19270
+ addonId: null,
19271
+ access: "create"
19272
+ },
19039
19273
  "decoder.createSession": {
19040
19274
  capName: "decoder",
19041
19275
  capScope: "system",
@@ -19966,6 +20200,18 @@ Object.freeze({
19966
20200
  addonId: null,
19967
20201
  access: "create"
19968
20202
  },
20203
+ "imageSettings.getOptions": {
20204
+ capName: "image-settings",
20205
+ capScope: "device",
20206
+ addonId: null,
20207
+ access: "view"
20208
+ },
20209
+ "imageSettings.setSettings": {
20210
+ capName: "image-settings",
20211
+ capScope: "device",
20212
+ addonId: null,
20213
+ access: "create"
20214
+ },
19969
20215
  "integrations.create": {
19970
20216
  capName: "integrations",
19971
20217
  capScope: "system",
@@ -4627,7 +4627,7 @@ function _instanceof(cls, params = {}) {
4627
4627
  return inst;
4628
4628
  }
4629
4629
  //#endregion
4630
- //#region ../types/dist/sleep-BiDFW0E7.mjs
4630
+ //#region ../types/dist/sleep-CZDdRBua.mjs
4631
4631
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
4632
4632
  EventCategory["SystemBoot"] = "system.boot";
4633
4633
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -7222,7 +7222,16 @@ var DecoderStatsSchema = object({
7222
7222
  inputFps: number(),
7223
7223
  outputFps: number(),
7224
7224
  avgDecodeTimeMs: number(),
7225
- droppedFrames: number()
7225
+ droppedFrames: number(),
7226
+ /**
7227
+ * Pull-mode adaptive-fps telemetry (optional — only pull sessions run the
7228
+ * lag-driven controller; push sessions omit these). `lagMs` is the EWMA of
7229
+ * the decoder's real-time drift (rising = falling behind live); `adaptiveFps`
7230
+ * is the current lag-throttled emit rate (≤ `effectiveFps` ceiling).
7231
+ */
7232
+ lagMs: number().optional(),
7233
+ effectiveFps: number().optional(),
7234
+ adaptiveFps: number().optional()
7226
7235
  });
7227
7236
  var DecoderSessionConfigSchema = object({
7228
7237
  codec: string(),
@@ -7263,7 +7272,15 @@ var DecoderSessionConfigSchema = object({
7263
7272
  * other — `pullFrames` returns nothing for an `'shm'` session and
7264
7273
  * `pullHandles` returns nothing for a `'callback'` session.
7265
7274
  */
7266
- frameSink: _enum(["callback", "shm"]).default("callback")
7275
+ frameSink: _enum(["callback", "shm"]).default("callback"),
7276
+ /**
7277
+ * Per-camera decoder DEBUG facility. When `true`, a pull-mode session emits
7278
+ * a throttled (~1Hz) structured `decoder debug` line (effective/adaptive fps,
7279
+ * real-time lag, dropped-frame delta, avg decode time, hwaccel). Mirrors the
7280
+ * stream-broker's `streamingDebug` gate — off by default so production logs
7281
+ * stay quiet and the emit path pays zero per-frame cost when disabled.
7282
+ */
7283
+ debug: boolean().optional()
7267
7284
  });
7268
7285
  var EncodeProfileSchema = object({
7269
7286
  video: object({
@@ -9421,6 +9438,75 @@ DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _vo
9421
9438
  auth: "admin"
9422
9439
  });
9423
9440
  /**
9441
+ * Vendor-neutral day/night (IR-cut) control — the per-camera config cap
9442
+ * shared by reolink / hikvision / amcrest. Models the common firmware
9443
+ * surface: the IR-cut switching MODE plus the two knobs that gate it
9444
+ * (photocell `sensitivity` + `switchDelaySec`). Each vendor maps these
9445
+ * onto its own ISAPI / Baichuan / Dahua-CGI fields; the cap standardises
9446
+ * the shape so ONE derived-form renders every camera.
9447
+ *
9448
+ * Follows the D14 `deviceConfig` archetype (see `stream-params.cap.ts`):
9449
+ * `getOptions` advertises per-camera availability, `getStatus` (auto-
9450
+ * injected from `status`) reports the live values, and a single
9451
+ * `setSettings` mutation applies a partial change. No hand-written
9452
+ * settings-contribution methods — the framework derives the UI + save
9453
+ * routing from this surface.
9454
+ */
9455
+ /** IR-cut switching mode. `schedule` = time-of-day table configured on the camera. */
9456
+ var DayNightModeSchema = _enum([
9457
+ "auto",
9458
+ "day",
9459
+ "night",
9460
+ "schedule"
9461
+ ]);
9462
+ /** Normalized numeric range descriptor — `{ min, max, step }` per the
9463
+ * getOptions availability convention. Normalized values are 0–100. */
9464
+ var NormalizedRangeSchema$1 = object({
9465
+ min: number(),
9466
+ max: number(),
9467
+ step: number()
9468
+ });
9469
+ object({
9470
+ mode: DayNightModeSchema,
9471
+ /** IR-cut trigger sensitivity, NORMALIZED 0–100 (higher = switches to night sooner). */
9472
+ sensitivity: number().optional(),
9473
+ /** Delay before the IR-cut filter flips, in seconds. */
9474
+ switchDelaySec: number().optional(),
9475
+ lastFetchedAt: number()
9476
+ });
9477
+ /**
9478
+ * Per-camera availability descriptor — drives which controls the admin UI
9479
+ * renders. Booleans as `supportsX`; numeric ranges as `{ min, max, step }`
9480
+ * (normalized 0–100); the mode choice-set as an array. A provider returns
9481
+ * honest, camera-probed values — never hardcoded.
9482
+ */
9483
+ var DayNightOptionsSchema = object({
9484
+ /** Modes this camera accepts. Empty → the camera has no configurable day/night mode. */
9485
+ modes: array(DayNightModeSchema),
9486
+ supportsSensitivity: boolean(),
9487
+ /** Present when `supportsSensitivity` — the normalized 0–100 range. */
9488
+ sensitivity: NormalizedRangeSchema$1.optional(),
9489
+ supportsSwitchDelay: boolean(),
9490
+ /** Present when `supportsSwitchDelay` — the allowed delay range in seconds. */
9491
+ switchDelaySec: NormalizedRangeSchema$1.optional()
9492
+ });
9493
+ /**
9494
+ * Partial change to the day/night config — every field optional. A
9495
+ * provider ignores fields it does not support.
9496
+ */
9497
+ var DayNightSettingsPatchSchema = object({
9498
+ mode: DayNightModeSchema.optional(),
9499
+ sensitivity: number().optional(),
9500
+ switchDelaySec: number().optional()
9501
+ });
9502
+ DeviceType.Camera, method(object({ deviceId: number() }), DayNightOptionsSchema), method(object({
9503
+ deviceId: number(),
9504
+ settings: DayNightSettingsPatchSchema
9505
+ }), _void(), {
9506
+ kind: "mutation",
9507
+ auth: "admin"
9508
+ });
9509
+ /**
9424
9510
  * Identity envelope for a device's upstream-system metadata.
9425
9511
  *
9426
9512
  * Two jobs:
@@ -9776,6 +9862,130 @@ object({
9776
9862
  });
9777
9863
  DeviceType.Image;
9778
9864
  /**
9865
+ * Vendor-neutral image / picture-adjustment cap — the per-camera config
9866
+ * cap shared by reolink / hikvision / amcrest. Models the common ISP
9867
+ * surface: the four picture sliders (brightness / contrast / saturation /
9868
+ * sharpness), orientation (mirror / flip / rotate), white-balance,
9869
+ * exposure and backlight-compensation modes.
9870
+ *
9871
+ * NORMALIZATION: every slider is a normalized int 0–100. Vendors expose
9872
+ * these natively as 0–100 or 0–255 (or other ranges); each provider maps
9873
+ * its native range to/from this normalized 0–100 space so the cap surface
9874
+ * (and the derived form) is identical across cameras. `warmth` (manual
9875
+ * white-balance) is likewise normalized 0–100.
9876
+ *
9877
+ * Follows the D14 `deviceConfig` archetype (see `stream-params.cap.ts`):
9878
+ * `getOptions` advertises per-camera availability, `getStatus` (auto-
9879
+ * injected from `status`) reports the live values, and a single
9880
+ * `setSettings` mutation applies a partial change. No hand-written
9881
+ * settings-contribution methods — the framework derives the UI + save
9882
+ * routing from this surface.
9883
+ */
9884
+ /** Sensor/image rotation, degrees clockwise. */
9885
+ var ImageRotateSchema = _enum([
9886
+ "0",
9887
+ "90",
9888
+ "180",
9889
+ "270"
9890
+ ]);
9891
+ /** White-balance mode. `manual` unlocks the normalized `warmth` knob. */
9892
+ var WhiteBalanceModeSchema = _enum(["auto", "manual"]);
9893
+ /** Exposure mode. */
9894
+ var ExposureModeSchema = _enum(["auto", "manual"]);
9895
+ /**
9896
+ * Backlight-compensation mode:
9897
+ * - `off` — disabled
9898
+ * - `blc` — backlight compensation
9899
+ * - `wdr` — wide dynamic range
9900
+ * - `hlc` — highlight compensation
9901
+ */
9902
+ var BacklightModeSchema = _enum([
9903
+ "off",
9904
+ "blc",
9905
+ "wdr",
9906
+ "hlc"
9907
+ ]);
9908
+ /** Normalized numeric range descriptor — `{ min, max, step }` per the
9909
+ * getOptions availability convention. Slider values are normalized 0–100. */
9910
+ var NormalizedRangeSchema = object({
9911
+ min: number(),
9912
+ max: number(),
9913
+ step: number()
9914
+ });
9915
+ object({
9916
+ /** Normalized 0–100. */
9917
+ brightness: number().optional(),
9918
+ /** Normalized 0–100. */
9919
+ contrast: number().optional(),
9920
+ /** Normalized 0–100. */
9921
+ saturation: number().optional(),
9922
+ /** Normalized 0–100. */
9923
+ sharpness: number().optional(),
9924
+ mirror: boolean().optional(),
9925
+ flip: boolean().optional(),
9926
+ rotate: ImageRotateSchema.optional(),
9927
+ whiteBalance: WhiteBalanceModeSchema.optional(),
9928
+ /** Manual white-balance warmth, NORMALIZED 0–100. Meaningful only when `whiteBalance === 'manual'`. */
9929
+ warmth: number().optional(),
9930
+ exposureMode: ExposureModeSchema.optional(),
9931
+ backlightMode: BacklightModeSchema.optional(),
9932
+ lastFetchedAt: number()
9933
+ });
9934
+ /**
9935
+ * Per-camera availability descriptor — drives which controls the admin UI
9936
+ * renders. Booleans as `supportsX`; numeric ranges as `{ min, max, step }`
9937
+ * (the normalized 0–100 range); enums as arrays of supported values (empty
9938
+ * array → control hidden). A provider returns honest, camera-probed values
9939
+ * — never hardcoded.
9940
+ */
9941
+ var ImageSettingsOptionsSchema = object({
9942
+ supportsBrightness: boolean(),
9943
+ brightness: NormalizedRangeSchema.optional(),
9944
+ supportsContrast: boolean(),
9945
+ contrast: NormalizedRangeSchema.optional(),
9946
+ supportsSaturation: boolean(),
9947
+ saturation: NormalizedRangeSchema.optional(),
9948
+ supportsSharpness: boolean(),
9949
+ sharpness: NormalizedRangeSchema.optional(),
9950
+ supportsMirror: boolean(),
9951
+ supportsFlip: boolean(),
9952
+ /** Supported rotation values. Empty → rotation not configurable. */
9953
+ rotateOptions: array(ImageRotateSchema),
9954
+ /** Supported white-balance modes. Empty → white-balance not configurable. */
9955
+ whiteBalanceModes: array(WhiteBalanceModeSchema),
9956
+ supportsWarmth: boolean(),
9957
+ /** Present when `supportsWarmth` — the normalized 0–100 range. */
9958
+ warmth: NormalizedRangeSchema.optional(),
9959
+ /** Supported exposure modes. Empty → exposure not configurable. */
9960
+ exposureModes: array(ExposureModeSchema),
9961
+ /** Supported backlight modes. Empty → backlight-compensation not configurable. */
9962
+ backlightModes: array(BacklightModeSchema)
9963
+ });
9964
+ /**
9965
+ * Partial change to the image config — every field optional. Slider values
9966
+ * are normalized 0–100. A provider ignores fields it does not support.
9967
+ */
9968
+ var ImageSettingsPatchSchema = object({
9969
+ brightness: number().optional(),
9970
+ contrast: number().optional(),
9971
+ saturation: number().optional(),
9972
+ sharpness: number().optional(),
9973
+ mirror: boolean().optional(),
9974
+ flip: boolean().optional(),
9975
+ rotate: ImageRotateSchema.optional(),
9976
+ whiteBalance: WhiteBalanceModeSchema.optional(),
9977
+ warmth: number().optional(),
9978
+ exposureMode: ExposureModeSchema.optional(),
9979
+ backlightMode: BacklightModeSchema.optional()
9980
+ });
9981
+ DeviceType.Camera, method(object({ deviceId: number() }), ImageSettingsOptionsSchema), method(object({
9982
+ deviceId: number(),
9983
+ settings: ImageSettingsPatchSchema
9984
+ }), _void(), {
9985
+ kind: "mutation",
9986
+ auth: "admin"
9987
+ });
9988
+ /**
9779
9989
  * Robotic lawn-mower cap. Models HA `lawn_mower.*` entities — anything
9780
9990
  * with a mowing lifecycle plus a dock action.
9781
9991
  *
@@ -10670,6 +10880,16 @@ var RunnerCameraConfigSchema = object({
10670
10880
  * this gate is bypassed.
10671
10881
  */
10672
10882
  onboardMotionDrivesAnalyzer: boolean().default(true),
10883
+ /**
10884
+ * Master toggle for the occupancy re-check. When `false` (DEFAULT) the runner
10885
+ * never arms the periodic recheck timer, regardless of `occupancyRecheckSec` —
10886
+ * this is off by default because the recheck re-subscribes a detection session
10887
+ * every N seconds while `watching`, a major source of pull-decoder re-dial
10888
+ * churn (each cycle creates+tears a session → RTSP re-dial → latency). The
10889
+ * `occupancyRecheckSec` / `occupancyRecheckFrames` sliders only take effect
10890
+ * (and only render) when this is enabled.
10891
+ */
10892
+ occupancyRecheckEnabled: boolean().default(false),
10673
10893
  occupancyRecheckSec: number().min(occupancyRecheckSecField.min).max(occupancyRecheckSecField.max).default(occupancyRecheckSecField.default),
10674
10894
  occupancyRecheckFrames: number().min(occupancyRecheckFramesField.min).max(occupancyRecheckFramesField.max).default(occupancyRecheckFramesField.default),
10675
10895
  /**
@@ -12966,7 +13186,9 @@ method(object({ codec: string() }), boolean()), method(_void(), object({
12966
13186
  id: string(),
12967
13187
  name: string(),
12968
13188
  isPullMode: boolean().optional(),
12969
- priority: number().optional()
13189
+ priority: number().optional(),
13190
+ hwaccel: string().optional(),
13191
+ probedBestHwaccel: string().optional()
12970
13192
  })), method(DecoderSessionConfigSchema, object({
12971
13193
  sessionId: string(),
12972
13194
  nodeId: string()
@@ -19036,6 +19258,18 @@ Object.freeze({
19036
19258
  addonId: null,
19037
19259
  access: "view"
19038
19260
  },
19261
+ "dayNight.getOptions": {
19262
+ capName: "day-night",
19263
+ capScope: "device",
19264
+ addonId: null,
19265
+ access: "view"
19266
+ },
19267
+ "dayNight.setSettings": {
19268
+ capName: "day-night",
19269
+ capScope: "device",
19270
+ addonId: null,
19271
+ access: "create"
19272
+ },
19039
19273
  "decoder.createSession": {
19040
19274
  capName: "decoder",
19041
19275
  capScope: "system",
@@ -19966,6 +20200,18 @@ Object.freeze({
19966
20200
  addonId: null,
19967
20201
  access: "create"
19968
20202
  },
20203
+ "imageSettings.getOptions": {
20204
+ capName: "image-settings",
20205
+ capScope: "device",
20206
+ addonId: null,
20207
+ access: "view"
20208
+ },
20209
+ "imageSettings.setSettings": {
20210
+ capName: "image-settings",
20211
+ capScope: "device",
20212
+ addonId: null,
20213
+ access: "create"
20214
+ },
19969
20215
  "integrations.create": {
19970
20216
  capName: "integrations",
19971
20217
  capScope: "system",
@@ -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-C7REjypo.js");
5
+ const require_dist = require("../dist-DLPA7dyl.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-BCTaceZ_.mjs";
1
+ import { i as EventCategory, n as networkAccessCapability, r as BaseAddon } from "../dist-qj3qFh_c.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.17",
3
+ "version": "1.1.19",
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",