@camstack/addon-provider-rademacher 0.2.56 → 0.2.57
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/addon.js +30 -3
- package/dist/addon.mjs +30 -3
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20168,7 +20168,20 @@ var RecentTracksQueryInput = object({
|
|
|
20168
20168
|
projection: TrackProjectionSchema.optional(),
|
|
20169
20169
|
/** Include stationary-promoted rows (parked objects). Default false: the
|
|
20170
20170
|
* feed lists passages; parking records live on the stationary registry. */
|
|
20171
|
-
includeStationary: boolean().optional()
|
|
20171
|
+
includeStationary: boolean().optional(),
|
|
20172
|
+
/**
|
|
20173
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20174
|
+
*
|
|
20175
|
+
* The same filter `listTracks` takes, because the timeline's class chips must
|
|
20176
|
+
* mean the same thing whether the scope is one camera or twelve. Until this
|
|
20177
|
+
* existed the scoped feed downloaded a page and narrowed it on the phone
|
|
20178
|
+
* while the single-camera path narrowed the read — one filter, two costs.
|
|
20179
|
+
*
|
|
20180
|
+
* A SUPERSET prefilter on `classes[]`, like its single-camera twin: rows
|
|
20181
|
+
* whose class list is unreadable are kept, and the client's rule stays the
|
|
20182
|
+
* exact one.
|
|
20183
|
+
*/
|
|
20184
|
+
classes: array(string()).optional()
|
|
20172
20185
|
});
|
|
20173
20186
|
var RecentTracksPageSchema = object({
|
|
20174
20187
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
@@ -24338,8 +24351,22 @@ var automationControlCapability = {
|
|
|
24338
24351
|
* threshold.
|
|
24339
24352
|
*/
|
|
24340
24353
|
var BatteryStatusSchema = object({
|
|
24341
|
-
/**
|
|
24342
|
-
|
|
24354
|
+
/**
|
|
24355
|
+
* 0..100 inclusive, firmware-reported. **`null` means NOT YET KNOWN** — the
|
|
24356
|
+
* provider has registered the capability but no reading has landed.
|
|
24357
|
+
*
|
|
24358
|
+
* It is nullable because it was not, and the only value a provider could
|
|
24359
|
+
* seed with was `0`. A battery camera behind an NVR therefore announced
|
|
24360
|
+
* itself at 0% on every start and corrected itself a moment later, which is
|
|
24361
|
+
* indistinguishable from a real flat battery: it fires the low-battery alert
|
|
24362
|
+
* every time the hub restarts. Unknown is not empty (D315), and on a battery
|
|
24363
|
+
* reading the difference is an alarm.
|
|
24364
|
+
*
|
|
24365
|
+
* `vacuum-control` and `lawn-mower-control` already model it this way.
|
|
24366
|
+
* Consumers must SKIP a null rather than coerce it — `battery-band` already
|
|
24367
|
+
* declines to band a non-finite reading, which is the correct shape.
|
|
24368
|
+
*/
|
|
24369
|
+
percentage: number().min(0).max(100).nullable(),
|
|
24343
24370
|
/**
|
|
24344
24371
|
* Charging source. `'dc'` covers wall/USB adapters; `'solar'` is
|
|
24345
24372
|
* Reolink-specific for the Solar Panel 2 accessory (will become
|
package/dist/addon.mjs
CHANGED
|
@@ -20167,7 +20167,20 @@ var RecentTracksQueryInput = object({
|
|
|
20167
20167
|
projection: TrackProjectionSchema.optional(),
|
|
20168
20168
|
/** Include stationary-promoted rows (parked objects). Default false: the
|
|
20169
20169
|
* feed lists passages; parking records live on the stationary registry. */
|
|
20170
|
-
includeStationary: boolean().optional()
|
|
20170
|
+
includeStationary: boolean().optional(),
|
|
20171
|
+
/**
|
|
20172
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20173
|
+
*
|
|
20174
|
+
* The same filter `listTracks` takes, because the timeline's class chips must
|
|
20175
|
+
* mean the same thing whether the scope is one camera or twelve. Until this
|
|
20176
|
+
* existed the scoped feed downloaded a page and narrowed it on the phone
|
|
20177
|
+
* while the single-camera path narrowed the read — one filter, two costs.
|
|
20178
|
+
*
|
|
20179
|
+
* A SUPERSET prefilter on `classes[]`, like its single-camera twin: rows
|
|
20180
|
+
* whose class list is unreadable are kept, and the client's rule stays the
|
|
20181
|
+
* exact one.
|
|
20182
|
+
*/
|
|
20183
|
+
classes: array(string()).optional()
|
|
20171
20184
|
});
|
|
20172
20185
|
var RecentTracksPageSchema = object({
|
|
20173
20186
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
@@ -24337,8 +24350,22 @@ var automationControlCapability = {
|
|
|
24337
24350
|
* threshold.
|
|
24338
24351
|
*/
|
|
24339
24352
|
var BatteryStatusSchema = object({
|
|
24340
|
-
/**
|
|
24341
|
-
|
|
24353
|
+
/**
|
|
24354
|
+
* 0..100 inclusive, firmware-reported. **`null` means NOT YET KNOWN** — the
|
|
24355
|
+
* provider has registered the capability but no reading has landed.
|
|
24356
|
+
*
|
|
24357
|
+
* It is nullable because it was not, and the only value a provider could
|
|
24358
|
+
* seed with was `0`. A battery camera behind an NVR therefore announced
|
|
24359
|
+
* itself at 0% on every start and corrected itself a moment later, which is
|
|
24360
|
+
* indistinguishable from a real flat battery: it fires the low-battery alert
|
|
24361
|
+
* every time the hub restarts. Unknown is not empty (D315), and on a battery
|
|
24362
|
+
* reading the difference is an alarm.
|
|
24363
|
+
*
|
|
24364
|
+
* `vacuum-control` and `lawn-mower-control` already model it this way.
|
|
24365
|
+
* Consumers must SKIP a null rather than coerce it — `battery-band` already
|
|
24366
|
+
* declines to band a non-finite reading, which is the correct shape.
|
|
24367
|
+
*/
|
|
24368
|
+
percentage: number().min(0).max(100).nullable(),
|
|
24342
24369
|
/**
|
|
24343
24370
|
* Charging source. `'dc'` covers wall/USB adapters; `'solar'` is
|
|
24344
24371
|
* Reolink-specific for the Solar Panel 2 accessory (will become
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-rademacher",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.57",
|
|
4
4
|
"description": "Rademacher HomePilot device-provider addon for CamStack — wraps the @apocaliss92/noderademacher local-hub client (roller shutters over the cover cap)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|