@camstack/addon-provider-rademacher 0.2.0 → 0.2.1
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 +20 -3
- package/dist/addon.mjs +20 -3
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -13648,7 +13648,21 @@ var NativeCropResultSchema = object({
|
|
|
13648
13648
|
/** Packed rgb (24-bit) pixels of the crop. */
|
|
13649
13649
|
bytes: _instanceof(Uint8Array),
|
|
13650
13650
|
width: number().int().positive(),
|
|
13651
|
-
height: number().int().positive()
|
|
13651
|
+
height: number().int().positive(),
|
|
13652
|
+
/**
|
|
13653
|
+
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
13654
|
+
* `keyFrame`) can reject a degraded fallback:
|
|
13655
|
+
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
13656
|
+
* quality path).
|
|
13657
|
+
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
13658
|
+
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
13659
|
+
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
13660
|
+
*
|
|
13661
|
+
* OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
|
|
13662
|
+
* treated as `native` (accepted) by every consumer so mixed-version clusters
|
|
13663
|
+
* keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
|
|
13664
|
+
*/
|
|
13665
|
+
tier: _enum(["native", "ram-fullframe"]).optional()
|
|
13652
13666
|
});
|
|
13653
13667
|
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
13654
13668
|
* originating detection, in FRAME-space coordinates. Reuses
|
|
@@ -18652,7 +18666,8 @@ var LinkedDeviceSchema = object({
|
|
|
18652
18666
|
deviceId: number(),
|
|
18653
18667
|
name: string(),
|
|
18654
18668
|
location: string().nullable(),
|
|
18655
|
-
features: array(string())
|
|
18669
|
+
features: array(string()),
|
|
18670
|
+
producesTrackedEvents: boolean().optional()
|
|
18656
18671
|
});
|
|
18657
18672
|
var SavedDeviceRowSchema = object({
|
|
18658
18673
|
/** Numeric id reserved at allocateDeviceId time. */
|
|
@@ -20282,6 +20297,7 @@ var TrackSchema = object({
|
|
|
20282
20297
|
deviceId: number(),
|
|
20283
20298
|
className: string(),
|
|
20284
20299
|
label: string().optional(),
|
|
20300
|
+
producingDeviceName: string().optional(),
|
|
20285
20301
|
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
20286
20302
|
source: TrackSourceSchema.optional(),
|
|
20287
20303
|
firstSeen: number(),
|
|
@@ -20419,7 +20435,8 @@ var MediaFileKindEnum = _enum([
|
|
|
20419
20435
|
"fullFrameBoxed",
|
|
20420
20436
|
"faceCrop",
|
|
20421
20437
|
"plateCrop",
|
|
20422
|
-
"keyFrame"
|
|
20438
|
+
"keyFrame",
|
|
20439
|
+
"keyFrameSmall"
|
|
20423
20440
|
]);
|
|
20424
20441
|
var MediaFileSchema = object({
|
|
20425
20442
|
key: string(),
|
package/dist/addon.mjs
CHANGED
|
@@ -13647,7 +13647,21 @@ var NativeCropResultSchema = object({
|
|
|
13647
13647
|
/** Packed rgb (24-bit) pixels of the crop. */
|
|
13648
13648
|
bytes: _instanceof(Uint8Array),
|
|
13649
13649
|
width: number().int().positive(),
|
|
13650
|
-
height: number().int().positive()
|
|
13650
|
+
height: number().int().positive(),
|
|
13651
|
+
/**
|
|
13652
|
+
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
13653
|
+
* `keyFrame`) can reject a degraded fallback:
|
|
13654
|
+
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
13655
|
+
* quality path).
|
|
13656
|
+
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
13657
|
+
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
13658
|
+
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
13659
|
+
*
|
|
13660
|
+
* OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
|
|
13661
|
+
* treated as `native` (accepted) by every consumer so mixed-version clusters
|
|
13662
|
+
* keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
|
|
13663
|
+
*/
|
|
13664
|
+
tier: _enum(["native", "ram-fullframe"]).optional()
|
|
13651
13665
|
});
|
|
13652
13666
|
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
13653
13667
|
* originating detection, in FRAME-space coordinates. Reuses
|
|
@@ -18651,7 +18665,8 @@ var LinkedDeviceSchema = object({
|
|
|
18651
18665
|
deviceId: number(),
|
|
18652
18666
|
name: string(),
|
|
18653
18667
|
location: string().nullable(),
|
|
18654
|
-
features: array(string())
|
|
18668
|
+
features: array(string()),
|
|
18669
|
+
producesTrackedEvents: boolean().optional()
|
|
18655
18670
|
});
|
|
18656
18671
|
var SavedDeviceRowSchema = object({
|
|
18657
18672
|
/** Numeric id reserved at allocateDeviceId time. */
|
|
@@ -20281,6 +20296,7 @@ var TrackSchema = object({
|
|
|
20281
20296
|
deviceId: number(),
|
|
20282
20297
|
className: string(),
|
|
20283
20298
|
label: string().optional(),
|
|
20299
|
+
producingDeviceName: string().optional(),
|
|
20284
20300
|
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
20285
20301
|
source: TrackSourceSchema.optional(),
|
|
20286
20302
|
firstSeen: number(),
|
|
@@ -20418,7 +20434,8 @@ var MediaFileKindEnum = _enum([
|
|
|
20418
20434
|
"fullFrameBoxed",
|
|
20419
20435
|
"faceCrop",
|
|
20420
20436
|
"plateCrop",
|
|
20421
|
-
"keyFrame"
|
|
20437
|
+
"keyFrame",
|
|
20438
|
+
"keyFrameSmall"
|
|
20422
20439
|
]);
|
|
20423
20440
|
var MediaFileSchema = object({
|
|
20424
20441
|
key: string(),
|
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.1",
|
|
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",
|