@camstack/addon-provider-dreame 0.2.0 → 0.2.2
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 +86 -9
- package/dist/addon.mjs +86 -9
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -12359,7 +12359,8 @@ var PipelineStepInputSchema = lazy(() => object({
|
|
|
12359
12359
|
modelId: string().optional(),
|
|
12360
12360
|
enabled: boolean().default(true),
|
|
12361
12361
|
children: array(PipelineStepInputSchema).optional(),
|
|
12362
|
-
settings: record(string(), unknown()).optional()
|
|
12362
|
+
settings: record(string(), unknown()).optional(),
|
|
12363
|
+
jumpDeviceKey: string().optional()
|
|
12363
12364
|
}));
|
|
12364
12365
|
var ModelSubstitutionSchema = object({
|
|
12365
12366
|
addonId: string(),
|
|
@@ -12698,10 +12699,40 @@ var NativeCropBboxSchema = object({
|
|
|
12698
12699
|
});
|
|
12699
12700
|
/** Result of a best-effort native-resolution crop (`getNativeCrop`). */
|
|
12700
12701
|
var NativeCropResultSchema = object({
|
|
12701
|
-
/**
|
|
12702
|
-
|
|
12702
|
+
/**
|
|
12703
|
+
* Packed rgb (24-bit) pixels of the crop. Present on the DEFAULT (raw) path —
|
|
12704
|
+
* same-node (in-process / UDS) callers get zero-copy RGB and encode locally.
|
|
12705
|
+
* OMITTED when the caller requested `encodeJpeg` (the cross-node compressed
|
|
12706
|
+
* path below), where shipping raw RGB is both an invariant violation and, for
|
|
12707
|
+
* a native full frame (~26 MB at 4K), larger than Moleculer's 10 MB
|
|
12708
|
+
* `maxPacketSize` → the packet is dropped and the call 60s-times-out. That is
|
|
12709
|
+
* the cross-node native-media miss: `bytes` is replaced by `jpeg`.
|
|
12710
|
+
*/
|
|
12711
|
+
bytes: _instanceof(Uint8Array).optional(),
|
|
12712
|
+
/**
|
|
12713
|
+
* Base64 JPEG of the crop — the COMPRESSED cross-node payload. The OWNING node
|
|
12714
|
+
* (which holds the native surface) encodes it in-process, so a native 4K frame
|
|
12715
|
+
* ships as ~0.5–2 MB (well under `maxPacketSize`) and NO raw pixels ever cross
|
|
12716
|
+
* a process boundary (CLAUDE.md invariant #21). Present ONLY when the request
|
|
12717
|
+
* set `encodeJpeg: true`; `bytes` is then absent.
|
|
12718
|
+
*/
|
|
12719
|
+
jpeg: string().optional(),
|
|
12703
12720
|
width: number().int().positive(),
|
|
12704
|
-
height: number().int().positive()
|
|
12721
|
+
height: number().int().positive(),
|
|
12722
|
+
/**
|
|
12723
|
+
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
12724
|
+
* `keyFrame`) can reject a degraded fallback:
|
|
12725
|
+
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
12726
|
+
* quality path).
|
|
12727
|
+
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
12728
|
+
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
12729
|
+
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
12730
|
+
*
|
|
12731
|
+
* OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
|
|
12732
|
+
* treated as `native` (accepted) by every consumer so mixed-version clusters
|
|
12733
|
+
* keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
|
|
12734
|
+
*/
|
|
12735
|
+
tier: _enum(["native", "ram-fullframe"]).optional()
|
|
12705
12736
|
});
|
|
12706
12737
|
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
12707
12738
|
* originating detection, in FRAME-space coordinates. Reuses
|
|
@@ -12831,6 +12862,20 @@ var RunnerFrameSourceSchema = discriminatedUnion("kind", [object({ kind: literal
|
|
|
12831
12862
|
hubHostnameOverride: string().optional()
|
|
12832
12863
|
})]).describe("Per-camera frame-source mode for the runner (P2c)");
|
|
12833
12864
|
/**
|
|
12865
|
+
* One ENABLED inference device on the runner's node, as the step-tree
|
|
12866
|
+
* device-jump resolver sees it (phase 1). The orchestrator populates this
|
|
12867
|
+
* roster on the attach payload whenever the camera is elected onto a specific
|
|
12868
|
+
* `deviceKey` and the node has ≥2 enabled devices — it is the candidate set the
|
|
12869
|
+
* runner auto-jumps an enrichment step to when the elected device's format
|
|
12870
|
+
* cannot run that step's model. `weight`/`maxSessions` mirror the balancer's
|
|
12871
|
+
* per-device knobs so the auto choice is weighted-least-loaded.
|
|
12872
|
+
*/
|
|
12873
|
+
var RunnerInferenceDeviceSchema = object({
|
|
12874
|
+
deviceKey: string(),
|
|
12875
|
+
weight: number().positive().default(1),
|
|
12876
|
+
maxSessions: number().int().positive().nullable().default(null)
|
|
12877
|
+
});
|
|
12878
|
+
/**
|
|
12834
12879
|
* Camera assignment payload sent by `addon-pipeline-orchestrator` to a
|
|
12835
12880
|
* specific runner instance via `attachCamera`. Carries everything the
|
|
12836
12881
|
* runner needs to subscribe to the local broker and execute inference.
|
|
@@ -12948,7 +12993,16 @@ var RunnerCameraConfigSchema = object({
|
|
|
12948
12993
|
* omitted ⇒ the runner's default device. The engine itself stays node-local —
|
|
12949
12994
|
* this only selects WHICH device pool of that node runs the session.
|
|
12950
12995
|
*/
|
|
12951
|
-
deviceKey: string().optional()
|
|
12996
|
+
deviceKey: string().optional(),
|
|
12997
|
+
/**
|
|
12998
|
+
* Step-tree device-jump roster (phase 1): the node's ENABLED inference
|
|
12999
|
+
* devices, populated by the orchestrator ONLY when `deviceKey` is set and the
|
|
13000
|
+
* node has ≥2 enabled devices. The runner uses it to AUTO-jump an enrichment
|
|
13001
|
+
* step whose model has no build for the elected device's format onto another
|
|
13002
|
+
* enabled device of the SAME node (weighted-least-loaded). Absent/single-entry
|
|
13003
|
+
* ⇒ no jump possible; the step runs on `deviceKey`.
|
|
13004
|
+
*/
|
|
13005
|
+
inferenceDevices: array(RunnerInferenceDeviceSchema).readonly().optional()
|
|
12952
13006
|
});
|
|
12953
13007
|
motionFpsField.min, motionFpsField.max, motionFpsField.step, motionFpsField.default, detectionFpsField.min, detectionFpsField.max, detectionFpsField.step, detectionFpsField.default, motionCooldownMsField.min, motionCooldownMsField.max, motionCooldownMsField.step, motionCooldownMsField.default, occupancyRecheckSecField.min, occupancyRecheckSecField.max, occupancyRecheckSecField.step, occupancyRecheckSecField.default, occupancyRecheckFramesField.min, occupancyRecheckFramesField.max, occupancyRecheckFramesField.step, occupancyRecheckFramesField.default;
|
|
12954
13008
|
/**
|
|
@@ -13004,7 +13058,18 @@ var RunnerLocalMetricsSchema = object({
|
|
|
13004
13058
|
method(RunnerCameraConfigSchema, object({ success: literal(true) }), { kind: "mutation" }), method(object({ deviceId: number() }), object({ success: literal(true) }), { kind: "mutation" }), method(ReportMotionInputSchema, object({ success: literal(true) }), { kind: "mutation" }), method(_void(), RunnerLocalLoadSchema), method(_void(), RunnerLocalMetricsSchema), method(object({ deviceId: number() }), CameraMetricsSchema.nullable()), method(_void(), array(CameraMetricsWithDeviceIdSchema).readonly()), method(_void(), array(number()).readonly()), method(object({
|
|
13005
13059
|
handle: FrameHandleSchema,
|
|
13006
13060
|
bbox: NativeCropBboxSchema,
|
|
13007
|
-
maxWidth: number().int().positive().optional()
|
|
13061
|
+
maxWidth: number().int().positive().optional(),
|
|
13062
|
+
/**
|
|
13063
|
+
* When `true`, the runner encodes the resolved crop to JPEG ON THE
|
|
13064
|
+
* OWNING NODE and returns it in `jpeg` (base64) INSTEAD of raw `bytes`.
|
|
13065
|
+
* Callers set this for CROSS-NODE fetches (`handle.nodeId` is a remote
|
|
13066
|
+
* agent) so the compressed payload fits Moleculer's `maxPacketSize` and
|
|
13067
|
+
* no raw pixels cross the process boundary. Same-node callers omit it
|
|
13068
|
+
* and keep the zero-copy raw `bytes` path. Additive + optional: a
|
|
13069
|
+
* pre-encode runner (version skew) ignores it and returns `bytes`, so
|
|
13070
|
+
* the caller falls back to encoding locally.
|
|
13071
|
+
*/
|
|
13072
|
+
encodeJpeg: boolean().optional()
|
|
13008
13073
|
}), NativeCropResultSchema.nullable()), method(object({
|
|
13009
13074
|
deviceId: number(),
|
|
13010
13075
|
frameHandle: FrameHandleSchema.optional(),
|
|
@@ -17722,7 +17787,8 @@ var LinkedDeviceSchema = object({
|
|
|
17722
17787
|
deviceId: number(),
|
|
17723
17788
|
name: string(),
|
|
17724
17789
|
location: string().nullable(),
|
|
17725
|
-
features: array(string())
|
|
17790
|
+
features: array(string()),
|
|
17791
|
+
producesTrackedEvents: boolean().optional()
|
|
17726
17792
|
});
|
|
17727
17793
|
var SavedDeviceRowSchema = object({
|
|
17728
17794
|
/** Numeric id reserved at allocateDeviceId time. */
|
|
@@ -19352,6 +19418,7 @@ var TrackSchema = object({
|
|
|
19352
19418
|
deviceId: number(),
|
|
19353
19419
|
className: string(),
|
|
19354
19420
|
label: string().optional(),
|
|
19421
|
+
producingDeviceName: string().optional(),
|
|
19355
19422
|
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
19356
19423
|
source: TrackSourceSchema.optional(),
|
|
19357
19424
|
firstSeen: number(),
|
|
@@ -19489,7 +19556,8 @@ var MediaFileKindEnum = _enum([
|
|
|
19489
19556
|
"fullFrameBoxed",
|
|
19490
19557
|
"faceCrop",
|
|
19491
19558
|
"plateCrop",
|
|
19492
|
-
"keyFrame"
|
|
19559
|
+
"keyFrame",
|
|
19560
|
+
"keyFrameSmall"
|
|
19493
19561
|
]);
|
|
19494
19562
|
var MediaFileSchema = object({
|
|
19495
19563
|
key: string(),
|
|
@@ -19820,7 +19888,16 @@ var PipelineTemplateSchema = object({
|
|
|
19820
19888
|
});
|
|
19821
19889
|
var DeviceStepConfigSchema = object({
|
|
19822
19890
|
modelId: string().optional(),
|
|
19823
|
-
settings: record(string(), unknown()).optional()
|
|
19891
|
+
settings: record(string(), unknown()).optional(),
|
|
19892
|
+
/**
|
|
19893
|
+
* Step-tree device jump (same-node, phase 1) — OPTIONAL manual override.
|
|
19894
|
+
* When set, this step runs on the named enabled device of the SAME node
|
|
19895
|
+
* (`<backend>:<device>`) instead of the camera's elected device, bypassing
|
|
19896
|
+
* the runtime AUTO-jump. The orchestrator rejects a `jumpDeviceKey` pointing
|
|
19897
|
+
* at a disabled/absent device on that node at save time. Absent ⇒ the runner
|
|
19898
|
+
* auto-jumps only when the effective device's format cannot run the step.
|
|
19899
|
+
*/
|
|
19900
|
+
jumpDeviceKey: string().optional()
|
|
19824
19901
|
});
|
|
19825
19902
|
var AgentPipelineSettingsSchema = object({
|
|
19826
19903
|
maxCameras: number().int().nonnegative().nullable().default(null),
|
package/dist/addon.mjs
CHANGED
|
@@ -12359,7 +12359,8 @@ var PipelineStepInputSchema = lazy(() => object({
|
|
|
12359
12359
|
modelId: string().optional(),
|
|
12360
12360
|
enabled: boolean().default(true),
|
|
12361
12361
|
children: array(PipelineStepInputSchema).optional(),
|
|
12362
|
-
settings: record(string(), unknown()).optional()
|
|
12362
|
+
settings: record(string(), unknown()).optional(),
|
|
12363
|
+
jumpDeviceKey: string().optional()
|
|
12363
12364
|
}));
|
|
12364
12365
|
var ModelSubstitutionSchema = object({
|
|
12365
12366
|
addonId: string(),
|
|
@@ -12698,10 +12699,40 @@ var NativeCropBboxSchema = object({
|
|
|
12698
12699
|
});
|
|
12699
12700
|
/** Result of a best-effort native-resolution crop (`getNativeCrop`). */
|
|
12700
12701
|
var NativeCropResultSchema = object({
|
|
12701
|
-
/**
|
|
12702
|
-
|
|
12702
|
+
/**
|
|
12703
|
+
* Packed rgb (24-bit) pixels of the crop. Present on the DEFAULT (raw) path —
|
|
12704
|
+
* same-node (in-process / UDS) callers get zero-copy RGB and encode locally.
|
|
12705
|
+
* OMITTED when the caller requested `encodeJpeg` (the cross-node compressed
|
|
12706
|
+
* path below), where shipping raw RGB is both an invariant violation and, for
|
|
12707
|
+
* a native full frame (~26 MB at 4K), larger than Moleculer's 10 MB
|
|
12708
|
+
* `maxPacketSize` → the packet is dropped and the call 60s-times-out. That is
|
|
12709
|
+
* the cross-node native-media miss: `bytes` is replaced by `jpeg`.
|
|
12710
|
+
*/
|
|
12711
|
+
bytes: _instanceof(Uint8Array).optional(),
|
|
12712
|
+
/**
|
|
12713
|
+
* Base64 JPEG of the crop — the COMPRESSED cross-node payload. The OWNING node
|
|
12714
|
+
* (which holds the native surface) encodes it in-process, so a native 4K frame
|
|
12715
|
+
* ships as ~0.5–2 MB (well under `maxPacketSize`) and NO raw pixels ever cross
|
|
12716
|
+
* a process boundary (CLAUDE.md invariant #21). Present ONLY when the request
|
|
12717
|
+
* set `encodeJpeg: true`; `bytes` is then absent.
|
|
12718
|
+
*/
|
|
12719
|
+
jpeg: string().optional(),
|
|
12703
12720
|
width: number().int().positive(),
|
|
12704
|
-
height: number().int().positive()
|
|
12721
|
+
height: number().int().positive(),
|
|
12722
|
+
/**
|
|
12723
|
+
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
12724
|
+
* `keyFrame`) can reject a degraded fallback:
|
|
12725
|
+
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
12726
|
+
* quality path).
|
|
12727
|
+
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
12728
|
+
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
12729
|
+
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
12730
|
+
*
|
|
12731
|
+
* OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
|
|
12732
|
+
* treated as `native` (accepted) by every consumer so mixed-version clusters
|
|
12733
|
+
* keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
|
|
12734
|
+
*/
|
|
12735
|
+
tier: _enum(["native", "ram-fullframe"]).optional()
|
|
12705
12736
|
});
|
|
12706
12737
|
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
12707
12738
|
* originating detection, in FRAME-space coordinates. Reuses
|
|
@@ -12831,6 +12862,20 @@ var RunnerFrameSourceSchema = discriminatedUnion("kind", [object({ kind: literal
|
|
|
12831
12862
|
hubHostnameOverride: string().optional()
|
|
12832
12863
|
})]).describe("Per-camera frame-source mode for the runner (P2c)");
|
|
12833
12864
|
/**
|
|
12865
|
+
* One ENABLED inference device on the runner's node, as the step-tree
|
|
12866
|
+
* device-jump resolver sees it (phase 1). The orchestrator populates this
|
|
12867
|
+
* roster on the attach payload whenever the camera is elected onto a specific
|
|
12868
|
+
* `deviceKey` and the node has ≥2 enabled devices — it is the candidate set the
|
|
12869
|
+
* runner auto-jumps an enrichment step to when the elected device's format
|
|
12870
|
+
* cannot run that step's model. `weight`/`maxSessions` mirror the balancer's
|
|
12871
|
+
* per-device knobs so the auto choice is weighted-least-loaded.
|
|
12872
|
+
*/
|
|
12873
|
+
var RunnerInferenceDeviceSchema = object({
|
|
12874
|
+
deviceKey: string(),
|
|
12875
|
+
weight: number().positive().default(1),
|
|
12876
|
+
maxSessions: number().int().positive().nullable().default(null)
|
|
12877
|
+
});
|
|
12878
|
+
/**
|
|
12834
12879
|
* Camera assignment payload sent by `addon-pipeline-orchestrator` to a
|
|
12835
12880
|
* specific runner instance via `attachCamera`. Carries everything the
|
|
12836
12881
|
* runner needs to subscribe to the local broker and execute inference.
|
|
@@ -12948,7 +12993,16 @@ var RunnerCameraConfigSchema = object({
|
|
|
12948
12993
|
* omitted ⇒ the runner's default device. The engine itself stays node-local —
|
|
12949
12994
|
* this only selects WHICH device pool of that node runs the session.
|
|
12950
12995
|
*/
|
|
12951
|
-
deviceKey: string().optional()
|
|
12996
|
+
deviceKey: string().optional(),
|
|
12997
|
+
/**
|
|
12998
|
+
* Step-tree device-jump roster (phase 1): the node's ENABLED inference
|
|
12999
|
+
* devices, populated by the orchestrator ONLY when `deviceKey` is set and the
|
|
13000
|
+
* node has ≥2 enabled devices. The runner uses it to AUTO-jump an enrichment
|
|
13001
|
+
* step whose model has no build for the elected device's format onto another
|
|
13002
|
+
* enabled device of the SAME node (weighted-least-loaded). Absent/single-entry
|
|
13003
|
+
* ⇒ no jump possible; the step runs on `deviceKey`.
|
|
13004
|
+
*/
|
|
13005
|
+
inferenceDevices: array(RunnerInferenceDeviceSchema).readonly().optional()
|
|
12952
13006
|
});
|
|
12953
13007
|
motionFpsField.min, motionFpsField.max, motionFpsField.step, motionFpsField.default, detectionFpsField.min, detectionFpsField.max, detectionFpsField.step, detectionFpsField.default, motionCooldownMsField.min, motionCooldownMsField.max, motionCooldownMsField.step, motionCooldownMsField.default, occupancyRecheckSecField.min, occupancyRecheckSecField.max, occupancyRecheckSecField.step, occupancyRecheckSecField.default, occupancyRecheckFramesField.min, occupancyRecheckFramesField.max, occupancyRecheckFramesField.step, occupancyRecheckFramesField.default;
|
|
12954
13008
|
/**
|
|
@@ -13004,7 +13058,18 @@ var RunnerLocalMetricsSchema = object({
|
|
|
13004
13058
|
method(RunnerCameraConfigSchema, object({ success: literal(true) }), { kind: "mutation" }), method(object({ deviceId: number() }), object({ success: literal(true) }), { kind: "mutation" }), method(ReportMotionInputSchema, object({ success: literal(true) }), { kind: "mutation" }), method(_void(), RunnerLocalLoadSchema), method(_void(), RunnerLocalMetricsSchema), method(object({ deviceId: number() }), CameraMetricsSchema.nullable()), method(_void(), array(CameraMetricsWithDeviceIdSchema).readonly()), method(_void(), array(number()).readonly()), method(object({
|
|
13005
13059
|
handle: FrameHandleSchema,
|
|
13006
13060
|
bbox: NativeCropBboxSchema,
|
|
13007
|
-
maxWidth: number().int().positive().optional()
|
|
13061
|
+
maxWidth: number().int().positive().optional(),
|
|
13062
|
+
/**
|
|
13063
|
+
* When `true`, the runner encodes the resolved crop to JPEG ON THE
|
|
13064
|
+
* OWNING NODE and returns it in `jpeg` (base64) INSTEAD of raw `bytes`.
|
|
13065
|
+
* Callers set this for CROSS-NODE fetches (`handle.nodeId` is a remote
|
|
13066
|
+
* agent) so the compressed payload fits Moleculer's `maxPacketSize` and
|
|
13067
|
+
* no raw pixels cross the process boundary. Same-node callers omit it
|
|
13068
|
+
* and keep the zero-copy raw `bytes` path. Additive + optional: a
|
|
13069
|
+
* pre-encode runner (version skew) ignores it and returns `bytes`, so
|
|
13070
|
+
* the caller falls back to encoding locally.
|
|
13071
|
+
*/
|
|
13072
|
+
encodeJpeg: boolean().optional()
|
|
13008
13073
|
}), NativeCropResultSchema.nullable()), method(object({
|
|
13009
13074
|
deviceId: number(),
|
|
13010
13075
|
frameHandle: FrameHandleSchema.optional(),
|
|
@@ -17722,7 +17787,8 @@ var LinkedDeviceSchema = object({
|
|
|
17722
17787
|
deviceId: number(),
|
|
17723
17788
|
name: string(),
|
|
17724
17789
|
location: string().nullable(),
|
|
17725
|
-
features: array(string())
|
|
17790
|
+
features: array(string()),
|
|
17791
|
+
producesTrackedEvents: boolean().optional()
|
|
17726
17792
|
});
|
|
17727
17793
|
var SavedDeviceRowSchema = object({
|
|
17728
17794
|
/** Numeric id reserved at allocateDeviceId time. */
|
|
@@ -19352,6 +19418,7 @@ var TrackSchema = object({
|
|
|
19352
19418
|
deviceId: number(),
|
|
19353
19419
|
className: string(),
|
|
19354
19420
|
label: string().optional(),
|
|
19421
|
+
producingDeviceName: string().optional(),
|
|
19355
19422
|
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
19356
19423
|
source: TrackSourceSchema.optional(),
|
|
19357
19424
|
firstSeen: number(),
|
|
@@ -19489,7 +19556,8 @@ var MediaFileKindEnum = _enum([
|
|
|
19489
19556
|
"fullFrameBoxed",
|
|
19490
19557
|
"faceCrop",
|
|
19491
19558
|
"plateCrop",
|
|
19492
|
-
"keyFrame"
|
|
19559
|
+
"keyFrame",
|
|
19560
|
+
"keyFrameSmall"
|
|
19493
19561
|
]);
|
|
19494
19562
|
var MediaFileSchema = object({
|
|
19495
19563
|
key: string(),
|
|
@@ -19820,7 +19888,16 @@ var PipelineTemplateSchema = object({
|
|
|
19820
19888
|
});
|
|
19821
19889
|
var DeviceStepConfigSchema = object({
|
|
19822
19890
|
modelId: string().optional(),
|
|
19823
|
-
settings: record(string(), unknown()).optional()
|
|
19891
|
+
settings: record(string(), unknown()).optional(),
|
|
19892
|
+
/**
|
|
19893
|
+
* Step-tree device jump (same-node, phase 1) — OPTIONAL manual override.
|
|
19894
|
+
* When set, this step runs on the named enabled device of the SAME node
|
|
19895
|
+
* (`<backend>:<device>`) instead of the camera's elected device, bypassing
|
|
19896
|
+
* the runtime AUTO-jump. The orchestrator rejects a `jumpDeviceKey` pointing
|
|
19897
|
+
* at a disabled/absent device on that node at save time. Absent ⇒ the runner
|
|
19898
|
+
* auto-jumps only when the effective device's format cannot run the step.
|
|
19899
|
+
*/
|
|
19900
|
+
jumpDeviceKey: string().optional()
|
|
19824
19901
|
});
|
|
19825
19902
|
var AgentPipelineSettingsSchema = object({
|
|
19826
19903
|
maxCameras: number().int().nonnegative().nullable().default(null),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-dreame",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Dreame robot-vacuum / lawn-mower device-provider addon for CamStack — wraps the @apocaliss92/nodedreame Dreamehome cloud client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|