@camstack/addon-decoder-nodeav 1.2.57 → 1.2.58
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/index.js +30 -3
- package/dist/index.mjs +30 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18971,7 +18971,20 @@ var RecentTracksQueryInput = object({
|
|
|
18971
18971
|
projection: TrackProjectionSchema.optional(),
|
|
18972
18972
|
/** Include stationary-promoted rows (parked objects). Default false: the
|
|
18973
18973
|
* feed lists passages; parking records live on the stationary registry. */
|
|
18974
|
-
includeStationary: boolean().optional()
|
|
18974
|
+
includeStationary: boolean().optional(),
|
|
18975
|
+
/**
|
|
18976
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
18977
|
+
*
|
|
18978
|
+
* The same filter `listTracks` takes, because the timeline's class chips must
|
|
18979
|
+
* mean the same thing whether the scope is one camera or twelve. Until this
|
|
18980
|
+
* existed the scoped feed downloaded a page and narrowed it on the phone
|
|
18981
|
+
* while the single-camera path narrowed the read — one filter, two costs.
|
|
18982
|
+
*
|
|
18983
|
+
* A SUPERSET prefilter on `classes[]`, like its single-camera twin: rows
|
|
18984
|
+
* whose class list is unreadable are kept, and the client's rule stays the
|
|
18985
|
+
* exact one.
|
|
18986
|
+
*/
|
|
18987
|
+
classes: array(string()).optional()
|
|
18975
18988
|
});
|
|
18976
18989
|
var RecentTracksPageSchema = object({
|
|
18977
18990
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
@@ -23009,8 +23022,22 @@ DeviceType.Automation, method(object({ deviceId: number().int().nonnegative() })
|
|
|
23009
23022
|
* threshold.
|
|
23010
23023
|
*/
|
|
23011
23024
|
var BatteryStatusSchema = object({
|
|
23012
|
-
/**
|
|
23013
|
-
|
|
23025
|
+
/**
|
|
23026
|
+
* 0..100 inclusive, firmware-reported. **`null` means NOT YET KNOWN** — the
|
|
23027
|
+
* provider has registered the capability but no reading has landed.
|
|
23028
|
+
*
|
|
23029
|
+
* It is nullable because it was not, and the only value a provider could
|
|
23030
|
+
* seed with was `0`. A battery camera behind an NVR therefore announced
|
|
23031
|
+
* itself at 0% on every start and corrected itself a moment later, which is
|
|
23032
|
+
* indistinguishable from a real flat battery: it fires the low-battery alert
|
|
23033
|
+
* every time the hub restarts. Unknown is not empty (D315), and on a battery
|
|
23034
|
+
* reading the difference is an alarm.
|
|
23035
|
+
*
|
|
23036
|
+
* `vacuum-control` and `lawn-mower-control` already model it this way.
|
|
23037
|
+
* Consumers must SKIP a null rather than coerce it — `battery-band` already
|
|
23038
|
+
* declines to band a non-finite reading, which is the correct shape.
|
|
23039
|
+
*/
|
|
23040
|
+
percentage: number().min(0).max(100).nullable(),
|
|
23014
23041
|
/**
|
|
23015
23042
|
* Charging source. `'dc'` covers wall/USB adapters; `'solar'` is
|
|
23016
23043
|
* Reolink-specific for the Solar Panel 2 accessory (will become
|
package/dist/index.mjs
CHANGED
|
@@ -18967,7 +18967,20 @@ var RecentTracksQueryInput = object({
|
|
|
18967
18967
|
projection: TrackProjectionSchema.optional(),
|
|
18968
18968
|
/** Include stationary-promoted rows (parked objects). Default false: the
|
|
18969
18969
|
* feed lists passages; parking records live on the stationary registry. */
|
|
18970
|
-
includeStationary: boolean().optional()
|
|
18970
|
+
includeStationary: boolean().optional(),
|
|
18971
|
+
/**
|
|
18972
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
18973
|
+
*
|
|
18974
|
+
* The same filter `listTracks` takes, because the timeline's class chips must
|
|
18975
|
+
* mean the same thing whether the scope is one camera or twelve. Until this
|
|
18976
|
+
* existed the scoped feed downloaded a page and narrowed it on the phone
|
|
18977
|
+
* while the single-camera path narrowed the read — one filter, two costs.
|
|
18978
|
+
*
|
|
18979
|
+
* A SUPERSET prefilter on `classes[]`, like its single-camera twin: rows
|
|
18980
|
+
* whose class list is unreadable are kept, and the client's rule stays the
|
|
18981
|
+
* exact one.
|
|
18982
|
+
*/
|
|
18983
|
+
classes: array(string()).optional()
|
|
18971
18984
|
});
|
|
18972
18985
|
var RecentTracksPageSchema = object({
|
|
18973
18986
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
@@ -23005,8 +23018,22 @@ DeviceType.Automation, method(object({ deviceId: number().int().nonnegative() })
|
|
|
23005
23018
|
* threshold.
|
|
23006
23019
|
*/
|
|
23007
23020
|
var BatteryStatusSchema = object({
|
|
23008
|
-
/**
|
|
23009
|
-
|
|
23021
|
+
/**
|
|
23022
|
+
* 0..100 inclusive, firmware-reported. **`null` means NOT YET KNOWN** — the
|
|
23023
|
+
* provider has registered the capability but no reading has landed.
|
|
23024
|
+
*
|
|
23025
|
+
* It is nullable because it was not, and the only value a provider could
|
|
23026
|
+
* seed with was `0`. A battery camera behind an NVR therefore announced
|
|
23027
|
+
* itself at 0% on every start and corrected itself a moment later, which is
|
|
23028
|
+
* indistinguishable from a real flat battery: it fires the low-battery alert
|
|
23029
|
+
* every time the hub restarts. Unknown is not empty (D315), and on a battery
|
|
23030
|
+
* reading the difference is an alarm.
|
|
23031
|
+
*
|
|
23032
|
+
* `vacuum-control` and `lawn-mower-control` already model it this way.
|
|
23033
|
+
* Consumers must SKIP a null rather than coerce it — `battery-band` already
|
|
23034
|
+
* declines to band a non-finite reading, which is the correct shape.
|
|
23035
|
+
*/
|
|
23036
|
+
percentage: number().min(0).max(100).nullable(),
|
|
23010
23037
|
/**
|
|
23011
23038
|
* Charging source. `'dc'` covers wall/USB adapters; `'solar'` is
|
|
23012
23039
|
* Reolink-specific for the Solar Panel 2 accessory (will become
|