@camstack/addon-pipeline 1.0.4 → 1.0.6
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/audio-analyzer/index.js +1 -1
- package/dist/audio-analyzer/index.mjs +1 -1
- package/dist/audio-codec-nodeav/index.js +1 -1
- package/dist/audio-codec-nodeav/index.mjs +1 -1
- package/dist/decoder-nodeav/index.js +1 -1
- package/dist/decoder-nodeav/index.mjs +1 -1
- package/dist/detection-pipeline/index.js +704 -398
- package/dist/detection-pipeline/index.mjs +705 -398
- package/dist/{dist-C1goFC50.js → dist-BiUtYscO.js} +323 -29
- package/dist/{dist-XRXnZrVC.mjs → dist-DsDFrG0I.mjs} +323 -29
- package/dist/motion-wasm/index.js +1 -1
- package/dist/motion-wasm/index.mjs +1 -1
- package/dist/pipeline-runner/index.js +1 -1
- package/dist/pipeline-runner/index.mjs +1 -1
- package/dist/recorder/index.js +1 -1
- package/dist/recorder/index.mjs +1 -1
- package/dist/stream-broker/_stub.js +2 -2
- package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-dGO6_Xee.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-CbTGCEnd.mjs} +3 -3
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-3STWM0yI.mjs +26 -0
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-Dsz9DmNr.mjs +26 -0
- package/dist/stream-broker/{hostInit-ClKL4kbX.mjs → hostInit-BJ3QDdFs.mjs} +3 -3
- package/dist/stream-broker/index.js +1 -1
- package/dist/stream-broker/index.mjs +1 -1
- package/dist/stream-broker/remoteEntry.js +1 -1
- package/embed-dist/assets/{MaskShapeCanvas-DI4BY7W2-DEYqSd2k.js → MaskShapeCanvas-DI4BY7W2-B4oJIlgF.js} +1 -1
- package/embed-dist/assets/{MotionZonesSettings-C1EEbk2V-CRvYkSju.js → MotionZonesSettings-C1EEbk2V-CUopGB1R.js} +1 -1
- package/embed-dist/assets/{PrivacyMaskSettings-APgPLF7p-CIq73-7y.js → PrivacyMaskSettings-APgPLF7p-CyTsHaor.js} +1 -1
- package/embed-dist/assets/{index-C5Az4io-.js → index-hwJEVIPM.js} +9 -9
- package/embed-dist/index.html +1 -1
- package/package.json +3 -4
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Tf-HACFd.mjs +0 -26
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-B0Z2W5UM.mjs +0 -26
|
@@ -4981,6 +4981,18 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
4981
4981
|
*/
|
|
4982
4982
|
EventCategory["PipelineEngineMetricsSnapshot"] = "pipeline.engine-metrics-snapshot";
|
|
4983
4983
|
/**
|
|
4984
|
+
* Per-node detection-engine runtime-provisioning transition. Emitted by
|
|
4985
|
+
* the detection-pipeline provider on every state change of its lazy
|
|
4986
|
+
* engine-provisioning machine (idle → installing → verifying → ready,
|
|
4987
|
+
* or → failed with a `nextRetryAt`). Payload is the
|
|
4988
|
+
* `EngineProvisioningState` snapshot; `event.source.nodeId` carries the
|
|
4989
|
+
* node. The Pipeline page subscribes to drive a live "installing
|
|
4990
|
+
* OpenVINO… / ready" indicator per node without polling
|
|
4991
|
+
* `pipelineExecutor.getEngineProvisioning`. Telemetry-grade (D8): the UI
|
|
4992
|
+
* also reads the cap snapshot on mount / reconnect. Phase 2.
|
|
4993
|
+
*/
|
|
4994
|
+
EventCategory["PipelineEngineProvisioning"] = "pipeline.engine-provisioning";
|
|
4995
|
+
/**
|
|
4984
4996
|
* Cluster topology snapshot. Carries the same payload returned by
|
|
4985
4997
|
* `nodes.topology` (every reachable node + addons + processes).
|
|
4986
4998
|
* Emitted by the hub on any agent / addon lifecycle change
|
|
@@ -5130,14 +5142,15 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
5130
5142
|
EventCategory["DeviceSleeping"] = "device.sleeping";
|
|
5131
5143
|
EventCategory["RetentionCleanup"] = "retention.cleanup";
|
|
5132
5144
|
/**
|
|
5133
|
-
*
|
|
5134
|
-
*
|
|
5135
|
-
*
|
|
5136
|
-
* to
|
|
5137
|
-
*
|
|
5138
|
-
* Spec: docs/superpowers/specs/2026-05-21-addons-bulk-update-progress-design.md
|
|
5145
|
+
* Legacy bulk-update progress snapshot (payload `BulkUpdateState`). No longer
|
|
5146
|
+
* emitted — F3 removed the coordinator that produced it; "Update all" now runs
|
|
5147
|
+
* as one lifecycle engine job (`AddonsJobProgress`/`AddonsJobLog`). Retained
|
|
5148
|
+
* (with `BulkUpdateState`) only to avoid regenerating the event maps; removed
|
|
5149
|
+
* in F4 once live bulk progress is re-implemented over the engine events.
|
|
5139
5150
|
*/
|
|
5140
5151
|
EventCategory["AddonsBulkUpdateProgress"] = "addons.bulk-update-progress";
|
|
5152
|
+
EventCategory["AddonsJobProgress"] = "addons.job-progress";
|
|
5153
|
+
EventCategory["AddonsJobLog"] = "addons.job-log";
|
|
5141
5154
|
/**
|
|
5142
5155
|
* A container's child visibility toggled (hidden/shown). Emitted by the
|
|
5143
5156
|
* `accessories` cap when a child device is hidden or revealed.
|
|
@@ -9997,6 +10010,24 @@ var DetectorOutputSchema = object({
|
|
|
9997
10010
|
inferenceMs: number(),
|
|
9998
10011
|
modelId: string()
|
|
9999
10012
|
});
|
|
10013
|
+
var EngineProvisioningSchema = object({
|
|
10014
|
+
runtimeId: _enum([
|
|
10015
|
+
"onnx",
|
|
10016
|
+
"openvino",
|
|
10017
|
+
"coreml"
|
|
10018
|
+
]).nullable(),
|
|
10019
|
+
device: string().nullable(),
|
|
10020
|
+
state: _enum([
|
|
10021
|
+
"idle",
|
|
10022
|
+
"installing",
|
|
10023
|
+
"verifying",
|
|
10024
|
+
"ready",
|
|
10025
|
+
"failed"
|
|
10026
|
+
]),
|
|
10027
|
+
progress: number().optional(),
|
|
10028
|
+
error: string().optional(),
|
|
10029
|
+
nextRetryAt: number().optional()
|
|
10030
|
+
});
|
|
10000
10031
|
var PipelineStepInputSchema = lazy(() => object({
|
|
10001
10032
|
addonId: string(),
|
|
10002
10033
|
modelId: string(),
|
|
@@ -10096,6 +10127,15 @@ var pipelineExecutorCapability = {
|
|
|
10096
10127
|
kind: "mutation",
|
|
10097
10128
|
auth: "admin"
|
|
10098
10129
|
}),
|
|
10130
|
+
/**
|
|
10131
|
+
* Per-node detection-engine provisioning snapshot. Returns the live
|
|
10132
|
+
* state of the lazy runtime-provisioning machine on `nodeId`
|
|
10133
|
+
* (idle / installing / verifying / ready / failed). The UI pairs this
|
|
10134
|
+
* one-shot query with the `pipeline.engine-provisioning` live event
|
|
10135
|
+
* (emitted on every transition) to drive a per-node "engine ready?"
|
|
10136
|
+
* indicator without polling. Phase 2.
|
|
10137
|
+
*/
|
|
10138
|
+
getEngineProvisioning: method(object({ nodeId: string() }), EngineProvisioningSchema),
|
|
10099
10139
|
getVideoPipelineSteps: method(_void(), record(string(), object({
|
|
10100
10140
|
modelId: string(),
|
|
10101
10141
|
settings: record(string(), unknown()).readonly()
|
|
@@ -14098,7 +14138,10 @@ var AgentAddonConfigSchema = object({
|
|
|
14098
14138
|
modelId: string(),
|
|
14099
14139
|
settings: record(string(), unknown()).readonly()
|
|
14100
14140
|
});
|
|
14101
|
-
var AgentPipelineSettingsSchema = object({
|
|
14141
|
+
var AgentPipelineSettingsSchema = object({
|
|
14142
|
+
addonDefaults: record(string(), AgentAddonConfigSchema).readonly(),
|
|
14143
|
+
maxCameras: number().int().nonnegative().nullable().default(null)
|
|
14144
|
+
});
|
|
14102
14145
|
var CameraPipelineForAgentSchema = object({
|
|
14103
14146
|
steps: array(PipelineStepInputSchema).readonly(),
|
|
14104
14147
|
audio: object({
|
|
@@ -14200,6 +14243,133 @@ var GlobalMetricsSchema = object({
|
|
|
14200
14243
|
* capability providers.
|
|
14201
14244
|
*/
|
|
14202
14245
|
var CapabilityBindingsSchema = record(string(), string());
|
|
14246
|
+
/** Source block — always present; derives from the stream catalog. */
|
|
14247
|
+
var CameraSourceStatusSchema = object({ streams: array(object({
|
|
14248
|
+
camStreamId: string(),
|
|
14249
|
+
codec: string(),
|
|
14250
|
+
width: number(),
|
|
14251
|
+
height: number(),
|
|
14252
|
+
fps: number(),
|
|
14253
|
+
kind: string()
|
|
14254
|
+
})).readonly() });
|
|
14255
|
+
/** Assignment block — always present (orchestrator-local, no remote call). */
|
|
14256
|
+
var CameraAssignmentStatusSchema = object({
|
|
14257
|
+
detectionNodeId: string().nullable(),
|
|
14258
|
+
decoderNodeId: string().nullable(),
|
|
14259
|
+
audioNodeId: string().nullable(),
|
|
14260
|
+
pinned: object({
|
|
14261
|
+
detection: boolean(),
|
|
14262
|
+
decoder: boolean(),
|
|
14263
|
+
audio: boolean()
|
|
14264
|
+
}),
|
|
14265
|
+
reasons: object({
|
|
14266
|
+
detection: string().optional(),
|
|
14267
|
+
decoder: string().optional(),
|
|
14268
|
+
audio: string().optional()
|
|
14269
|
+
})
|
|
14270
|
+
});
|
|
14271
|
+
/** Broker block — null when the broker stage is unreachable or inactive. */
|
|
14272
|
+
var CameraBrokerStatusSchema = object({
|
|
14273
|
+
profiles: array(object({
|
|
14274
|
+
profile: string(),
|
|
14275
|
+
status: string(),
|
|
14276
|
+
codec: string(),
|
|
14277
|
+
width: number(),
|
|
14278
|
+
height: number(),
|
|
14279
|
+
subscribers: number(),
|
|
14280
|
+
inFps: number(),
|
|
14281
|
+
outFps: number()
|
|
14282
|
+
})).readonly(),
|
|
14283
|
+
webrtcSessions: number(),
|
|
14284
|
+
rtspRestream: boolean()
|
|
14285
|
+
});
|
|
14286
|
+
/** Shared-memory ring statistics within the decoder block. */
|
|
14287
|
+
var CameraDecoderShmSchema = object({
|
|
14288
|
+
framesWritten: number(),
|
|
14289
|
+
getFrameHits: number(),
|
|
14290
|
+
getFrameMisses: number(),
|
|
14291
|
+
budgetMb: number()
|
|
14292
|
+
});
|
|
14293
|
+
/** Decoder block — null when the decoder stage is unreachable or inactive. */
|
|
14294
|
+
var CameraDecoderStatusSchema = object({
|
|
14295
|
+
nodeId: string(),
|
|
14296
|
+
formats: array(string()).readonly(),
|
|
14297
|
+
sessionCount: number(),
|
|
14298
|
+
shm: CameraDecoderShmSchema
|
|
14299
|
+
});
|
|
14300
|
+
/** Motion block — null when motion detection is not active for this device. */
|
|
14301
|
+
var CameraMotionStatusSchema = object({
|
|
14302
|
+
enabled: boolean(),
|
|
14303
|
+
fps: number()
|
|
14304
|
+
});
|
|
14305
|
+
/** Detection provisioning sub-block. */
|
|
14306
|
+
var CameraDetectionProvisioningSchema = object({
|
|
14307
|
+
state: _enum([
|
|
14308
|
+
"idle",
|
|
14309
|
+
"installing",
|
|
14310
|
+
"verifying",
|
|
14311
|
+
"ready",
|
|
14312
|
+
"failed"
|
|
14313
|
+
]),
|
|
14314
|
+
error: string().optional()
|
|
14315
|
+
});
|
|
14316
|
+
/** Detection phase — derived from the runner's engine phase. */
|
|
14317
|
+
var CameraDetectionPhaseSchema = _enum([
|
|
14318
|
+
"idle",
|
|
14319
|
+
"watching",
|
|
14320
|
+
"active"
|
|
14321
|
+
]);
|
|
14322
|
+
/** Detection block — null when no detection node is assigned or reachable. */
|
|
14323
|
+
var CameraDetectionStatusSchema = object({
|
|
14324
|
+
nodeId: string(),
|
|
14325
|
+
engine: object({
|
|
14326
|
+
backend: string(),
|
|
14327
|
+
device: string()
|
|
14328
|
+
}),
|
|
14329
|
+
phase: CameraDetectionPhaseSchema,
|
|
14330
|
+
configuredFps: number(),
|
|
14331
|
+
actualFps: number(),
|
|
14332
|
+
queueDepth: number(),
|
|
14333
|
+
avgInferenceMs: number(),
|
|
14334
|
+
provisioning: CameraDetectionProvisioningSchema
|
|
14335
|
+
});
|
|
14336
|
+
/** Audio block — null when no audio node is assigned or reachable. */
|
|
14337
|
+
var CameraAudioStatusSchema = object({
|
|
14338
|
+
nodeId: string(),
|
|
14339
|
+
enabled: boolean()
|
|
14340
|
+
});
|
|
14341
|
+
/** Recording block — null when no recording cap is active for this device. */
|
|
14342
|
+
var CameraRecordingStatusSchema = object({
|
|
14343
|
+
mode: _enum([
|
|
14344
|
+
"off",
|
|
14345
|
+
"continuous",
|
|
14346
|
+
"events"
|
|
14347
|
+
]),
|
|
14348
|
+
active: boolean(),
|
|
14349
|
+
storageBytes: number()
|
|
14350
|
+
});
|
|
14351
|
+
/**
|
|
14352
|
+
* Aggregated per-camera pipeline status — server-composed, single call.
|
|
14353
|
+
*
|
|
14354
|
+
* The `assignment` and `source` blocks are always present.
|
|
14355
|
+
* Every other block is `null` when the stage is inactive or unreachable
|
|
14356
|
+
* during the bounded parallel fan-out in the orchestrator implementation.
|
|
14357
|
+
*
|
|
14358
|
+
* See spec: `docs/superpowers/specs/2026-06-24-camera-status-aggregator-cap.md`
|
|
14359
|
+
*/
|
|
14360
|
+
var CameraStatusSchema = object({
|
|
14361
|
+
deviceId: number(),
|
|
14362
|
+
assignment: CameraAssignmentStatusSchema,
|
|
14363
|
+
source: CameraSourceStatusSchema,
|
|
14364
|
+
broker: CameraBrokerStatusSchema.nullable(),
|
|
14365
|
+
decoder: CameraDecoderStatusSchema.nullable(),
|
|
14366
|
+
motion: CameraMotionStatusSchema.nullable(),
|
|
14367
|
+
detection: CameraDetectionStatusSchema.nullable(),
|
|
14368
|
+
audio: CameraAudioStatusSchema.nullable(),
|
|
14369
|
+
recording: CameraRecordingStatusSchema.nullable(),
|
|
14370
|
+
/** Unix timestamp (ms) when this snapshot was composed server-side. */
|
|
14371
|
+
fetchedAt: number()
|
|
14372
|
+
});
|
|
14203
14373
|
method(object({
|
|
14204
14374
|
deviceId: number(),
|
|
14205
14375
|
agentNodeId: string()
|
|
@@ -14267,6 +14437,12 @@ method(object({
|
|
|
14267
14437
|
}), {
|
|
14268
14438
|
kind: "mutation",
|
|
14269
14439
|
auth: "admin"
|
|
14440
|
+
}), method(object({
|
|
14441
|
+
agentNodeId: string(),
|
|
14442
|
+
maxCameras: number().int().nonnegative().nullable()
|
|
14443
|
+
}), object({ success: literal(true) }), {
|
|
14444
|
+
kind: "mutation",
|
|
14445
|
+
auth: "admin"
|
|
14270
14446
|
}), method(object({ deviceId: number() }), CameraPipelineSettingsSchema.nullable()), method(object({
|
|
14271
14447
|
deviceId: number(),
|
|
14272
14448
|
addonId: string(),
|
|
@@ -14292,7 +14468,7 @@ method(object({
|
|
|
14292
14468
|
}), method(object({
|
|
14293
14469
|
deviceId: number(),
|
|
14294
14470
|
agentNodeId: string().optional()
|
|
14295
|
-
}), CameraPipelineConfigSchema), method(_void(), array(PipelineTemplateSchema).readonly()), method(object({
|
|
14471
|
+
}), CameraPipelineConfigSchema), method(object({ deviceId: number() }), CameraStatusSchema), method(object({ deviceIds: array(number()).optional() }), array(CameraStatusSchema).readonly()), method(_void(), array(PipelineTemplateSchema).readonly()), method(object({
|
|
14296
14472
|
name: string(),
|
|
14297
14473
|
description: string().optional(),
|
|
14298
14474
|
config: CameraPipelineConfigSchema
|
|
@@ -17441,6 +17617,69 @@ method(_void(), array(IntegrationWithStateSchema)), method(object({ id: string()
|
|
|
17441
17617
|
kind: "mutation",
|
|
17442
17618
|
auth: "admin"
|
|
17443
17619
|
});
|
|
17620
|
+
var jobKindSchema = _enum([
|
|
17621
|
+
"install",
|
|
17622
|
+
"update",
|
|
17623
|
+
"uninstall",
|
|
17624
|
+
"restart"
|
|
17625
|
+
]);
|
|
17626
|
+
var taskPhaseSchema = _enum([
|
|
17627
|
+
"queued",
|
|
17628
|
+
"fetching",
|
|
17629
|
+
"staged",
|
|
17630
|
+
"validating",
|
|
17631
|
+
"applying",
|
|
17632
|
+
"restarting",
|
|
17633
|
+
"applied",
|
|
17634
|
+
"done",
|
|
17635
|
+
"failed",
|
|
17636
|
+
"skipped"
|
|
17637
|
+
]);
|
|
17638
|
+
var taskTargetSchema = _enum(["framework", "addon"]);
|
|
17639
|
+
var taskLogEntrySchema = object({
|
|
17640
|
+
tsMs: number(),
|
|
17641
|
+
nodeId: string(),
|
|
17642
|
+
packageName: string(),
|
|
17643
|
+
phase: taskPhaseSchema,
|
|
17644
|
+
message: string()
|
|
17645
|
+
});
|
|
17646
|
+
var lifecycleTaskSchema = object({
|
|
17647
|
+
taskId: string(),
|
|
17648
|
+
nodeId: string(),
|
|
17649
|
+
packageName: string(),
|
|
17650
|
+
fromVersion: string().nullable(),
|
|
17651
|
+
toVersion: string(),
|
|
17652
|
+
target: taskTargetSchema,
|
|
17653
|
+
phase: taskPhaseSchema,
|
|
17654
|
+
stagedPath: string().nullable(),
|
|
17655
|
+
attempts: number(),
|
|
17656
|
+
steps: array(taskLogEntrySchema),
|
|
17657
|
+
error: string().nullable(),
|
|
17658
|
+
startedAtMs: number().nullable(),
|
|
17659
|
+
finishedAtMs: number().nullable()
|
|
17660
|
+
});
|
|
17661
|
+
var lifecycleJobStateSchema = _enum([
|
|
17662
|
+
"running",
|
|
17663
|
+
"completed",
|
|
17664
|
+
"failed",
|
|
17665
|
+
"partially-failed",
|
|
17666
|
+
"cancelled"
|
|
17667
|
+
]);
|
|
17668
|
+
var lifecycleJobScopeSchema = _enum([
|
|
17669
|
+
"single",
|
|
17670
|
+
"bulk",
|
|
17671
|
+
"cluster"
|
|
17672
|
+
]);
|
|
17673
|
+
var lifecycleJobSchema = object({
|
|
17674
|
+
jobId: string(),
|
|
17675
|
+
kind: jobKindSchema,
|
|
17676
|
+
createdAtMs: number(),
|
|
17677
|
+
createdBy: string(),
|
|
17678
|
+
scope: lifecycleJobScopeSchema,
|
|
17679
|
+
tasks: array(lifecycleTaskSchema),
|
|
17680
|
+
state: lifecycleJobStateSchema,
|
|
17681
|
+
schemaVersion: literal(1)
|
|
17682
|
+
});
|
|
17444
17683
|
/**
|
|
17445
17684
|
* addons — system-scoped singleton capability for addon package
|
|
17446
17685
|
* management (install, update, configure, restart) and per-addon log
|
|
@@ -17623,7 +17862,7 @@ var BulkUpdatePhaseSchema = _enum([
|
|
|
17623
17862
|
"restarting",
|
|
17624
17863
|
"finalizing"
|
|
17625
17864
|
]);
|
|
17626
|
-
|
|
17865
|
+
object({
|
|
17627
17866
|
id: string(),
|
|
17628
17867
|
nodeId: string(),
|
|
17629
17868
|
startedAtMs: number(),
|
|
@@ -17726,20 +17965,7 @@ method(_void(), array(AddonListItemSchema).readonly()), method(object({
|
|
|
17726
17965
|
}), UpdateFrameworkPackageResultSchema, {
|
|
17727
17966
|
kind: "mutation",
|
|
17728
17967
|
auth: "admin"
|
|
17729
|
-
}), method(object({
|
|
17730
|
-
nodeId: string(),
|
|
17731
|
-
items: array(object({
|
|
17732
|
-
name: string(),
|
|
17733
|
-
version: string(),
|
|
17734
|
-
isSystem: boolean()
|
|
17735
|
-
})).readonly()
|
|
17736
|
-
}), object({ id: string() }), {
|
|
17737
|
-
kind: "mutation",
|
|
17738
|
-
auth: "admin"
|
|
17739
|
-
}), method(object({ id: string() }), BulkUpdateStateSchema.nullable(), { auth: "admin" }), method(object({ id: string() }), object({ cancelled: boolean() }), {
|
|
17740
|
-
kind: "mutation",
|
|
17741
|
-
auth: "admin"
|
|
17742
|
-
}), method(object({ nodeId: string().optional() }), array(BulkUpdateStateSchema).readonly(), { auth: "admin" }), method(object({ name: string() }), array(PackageVersionInfoSchema).readonly()), method(object({ addonId: string() }), RestartAddonResultSchema, {
|
|
17968
|
+
}), method(object({ name: string() }), array(PackageVersionInfoSchema).readonly()), method(object({ addonId: string() }), RestartAddonResultSchema, {
|
|
17743
17969
|
kind: "mutation",
|
|
17744
17970
|
auth: "admin"
|
|
17745
17971
|
}), method(object({ packageName: string() }), object({ success: literal(true) }), {
|
|
@@ -17761,6 +17987,24 @@ method(_void(), array(AddonListItemSchema).readonly()), method(object({
|
|
|
17761
17987
|
kind: "mutation",
|
|
17762
17988
|
auth: "admin"
|
|
17763
17989
|
}), method(CustomActionInputSchema, unknown(), { kind: "mutation" }), method(object({
|
|
17990
|
+
kind: _enum([
|
|
17991
|
+
"install",
|
|
17992
|
+
"update",
|
|
17993
|
+
"uninstall",
|
|
17994
|
+
"restart"
|
|
17995
|
+
]),
|
|
17996
|
+
targets: array(object({
|
|
17997
|
+
name: string().min(1),
|
|
17998
|
+
version: string().min(1)
|
|
17999
|
+
})).min(1),
|
|
18000
|
+
nodeIds: array(string()).optional()
|
|
18001
|
+
}), object({ jobId: string() }), {
|
|
18002
|
+
kind: "mutation",
|
|
18003
|
+
auth: "admin"
|
|
18004
|
+
}), method(object({ jobId: string() }), lifecycleJobSchema.nullable(), { auth: "admin" }), method(object({ activeOnly: boolean().optional() }), array(lifecycleJobSchema), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
18005
|
+
kind: "mutation",
|
|
18006
|
+
auth: "admin"
|
|
18007
|
+
}), method(object({
|
|
17764
18008
|
addonId: string(),
|
|
17765
18009
|
level: LogLevelSchema$1.optional()
|
|
17766
18010
|
}), LogStreamEntrySchema, { kind: "subscription" });
|
|
@@ -17801,7 +18045,7 @@ Object.freeze({
|
|
|
17801
18045
|
addonId: null,
|
|
17802
18046
|
access: "create"
|
|
17803
18047
|
},
|
|
17804
|
-
"addons.
|
|
18048
|
+
"addons.cancelJob": {
|
|
17805
18049
|
capName: "addons",
|
|
17806
18050
|
capScope: "system",
|
|
17807
18051
|
addonId: null,
|
|
@@ -17831,7 +18075,7 @@ Object.freeze({
|
|
|
17831
18075
|
addonId: null,
|
|
17832
18076
|
access: "view"
|
|
17833
18077
|
},
|
|
17834
|
-
"addons.
|
|
18078
|
+
"addons.getJob": {
|
|
17835
18079
|
capName: "addons",
|
|
17836
18080
|
capScope: "system",
|
|
17837
18081
|
addonId: null,
|
|
@@ -17879,19 +18123,19 @@ Object.freeze({
|
|
|
17879
18123
|
addonId: null,
|
|
17880
18124
|
access: "view"
|
|
17881
18125
|
},
|
|
17882
|
-
"addons.
|
|
18126
|
+
"addons.listCapabilityProviders": {
|
|
17883
18127
|
capName: "addons",
|
|
17884
18128
|
capScope: "system",
|
|
17885
18129
|
addonId: null,
|
|
17886
18130
|
access: "view"
|
|
17887
18131
|
},
|
|
17888
|
-
"addons.
|
|
18132
|
+
"addons.listFrameworkPackages": {
|
|
17889
18133
|
capName: "addons",
|
|
17890
18134
|
capScope: "system",
|
|
17891
18135
|
addonId: null,
|
|
17892
18136
|
access: "view"
|
|
17893
18137
|
},
|
|
17894
|
-
"addons.
|
|
18138
|
+
"addons.listJobs": {
|
|
17895
18139
|
capName: "addons",
|
|
17896
18140
|
capScope: "system",
|
|
17897
18141
|
addonId: null,
|
|
@@ -17975,7 +18219,7 @@ Object.freeze({
|
|
|
17975
18219
|
addonId: null,
|
|
17976
18220
|
access: "create"
|
|
17977
18221
|
},
|
|
17978
|
-
"addons.
|
|
18222
|
+
"addons.startJob": {
|
|
17979
18223
|
capName: "addons",
|
|
17980
18224
|
capScope: "system",
|
|
17981
18225
|
addonId: null,
|
|
@@ -20201,6 +20445,12 @@ Object.freeze({
|
|
|
20201
20445
|
addonId: null,
|
|
20202
20446
|
access: "view"
|
|
20203
20447
|
},
|
|
20448
|
+
"pipelineExecutor.getEngineProvisioning": {
|
|
20449
|
+
capName: "pipeline-executor",
|
|
20450
|
+
capScope: "system",
|
|
20451
|
+
addonId: null,
|
|
20452
|
+
access: "view"
|
|
20453
|
+
},
|
|
20204
20454
|
"pipelineExecutor.getGlobalPipelineConfig": {
|
|
20205
20455
|
capName: "pipeline-executor",
|
|
20206
20456
|
capScope: "system",
|
|
@@ -20405,6 +20655,18 @@ Object.freeze({
|
|
|
20405
20655
|
addonId: null,
|
|
20406
20656
|
access: "view"
|
|
20407
20657
|
},
|
|
20658
|
+
"pipelineOrchestrator.getCameraStatus": {
|
|
20659
|
+
capName: "pipeline-orchestrator",
|
|
20660
|
+
capScope: "system",
|
|
20661
|
+
addonId: null,
|
|
20662
|
+
access: "view"
|
|
20663
|
+
},
|
|
20664
|
+
"pipelineOrchestrator.getCameraStatuses": {
|
|
20665
|
+
capName: "pipeline-orchestrator",
|
|
20666
|
+
capScope: "system",
|
|
20667
|
+
addonId: null,
|
|
20668
|
+
access: "view"
|
|
20669
|
+
},
|
|
20408
20670
|
"pipelineOrchestrator.getCameraStepOverrides": {
|
|
20409
20671
|
capName: "pipeline-orchestrator",
|
|
20410
20672
|
capScope: "system",
|
|
@@ -20489,6 +20751,12 @@ Object.freeze({
|
|
|
20489
20751
|
addonId: null,
|
|
20490
20752
|
access: "create"
|
|
20491
20753
|
},
|
|
20754
|
+
"pipelineOrchestrator.setAgentMaxCameras": {
|
|
20755
|
+
capName: "pipeline-orchestrator",
|
|
20756
|
+
capScope: "system",
|
|
20757
|
+
addonId: null,
|
|
20758
|
+
access: "create"
|
|
20759
|
+
},
|
|
20492
20760
|
"pipelineOrchestrator.setCameraPipelineForAgent": {
|
|
20493
20761
|
capName: "pipeline-orchestrator",
|
|
20494
20762
|
capScope: "system",
|
|
@@ -21962,6 +22230,32 @@ Object.freeze({
|
|
|
21962
22230
|
"network-access": "ingress",
|
|
21963
22231
|
"smtp-provider": "email"
|
|
21964
22232
|
});
|
|
22233
|
+
var frameworkSwapPackageSchema = object({
|
|
22234
|
+
name: string(),
|
|
22235
|
+
stagedPath: string(),
|
|
22236
|
+
backupPath: string(),
|
|
22237
|
+
toVersion: string(),
|
|
22238
|
+
fromVersion: string().nullable()
|
|
22239
|
+
});
|
|
22240
|
+
object({
|
|
22241
|
+
jobId: string(),
|
|
22242
|
+
taskId: string(),
|
|
22243
|
+
packages: array(frameworkSwapPackageSchema),
|
|
22244
|
+
requestedAtMs: number(),
|
|
22245
|
+
schemaVersion: literal(1)
|
|
22246
|
+
});
|
|
22247
|
+
object({
|
|
22248
|
+
jobId: string(),
|
|
22249
|
+
taskId: string(),
|
|
22250
|
+
backups: array(object({
|
|
22251
|
+
name: string(),
|
|
22252
|
+
backupPath: string(),
|
|
22253
|
+
livePath: string()
|
|
22254
|
+
})),
|
|
22255
|
+
appliedAtMs: number(),
|
|
22256
|
+
bootAttempts: number(),
|
|
22257
|
+
schemaVersion: literal(1)
|
|
22258
|
+
});
|
|
21965
22259
|
/**
|
|
21966
22260
|
* Names that, when used as URL query parameters, almost certainly carry
|
|
21967
22261
|
* a secret. Matching is case-insensitive and anchored to the full param
|
|
@@ -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-
|
|
5
|
+
const require_dist = require("../dist-BiUtYscO.js");
|
|
6
6
|
let node_fs = require("node:fs");
|
|
7
7
|
let node_path = require("node:path");
|
|
8
8
|
//#region src/motion-wasm/wasm-motion-detector.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as motionDetectionCapability, M as evaluateZoneRules, P as hydrateSchema, d as DeviceType, i as BaseAddon } from "../dist-
|
|
1
|
+
import { B as motionDetectionCapability, M as evaluateZoneRules, P as hydrateSchema, d as DeviceType, i as BaseAddon } from "../dist-DsDFrG0I.mjs";
|
|
2
2
|
import { readFileSync } from "node:fs";
|
|
3
3
|
import { join } from "node:path";
|
|
4
4
|
//#region src/motion-wasm/wasm-motion-detector.ts
|
|
@@ -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-
|
|
5
|
+
const require_dist = require("../dist-BiUtYscO.js");
|
|
6
6
|
let _camstack_shm_ring = require("@camstack/shm-ring");
|
|
7
7
|
//#region src/pipeline-runner/frame-queue.ts
|
|
8
8
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as boolean, D as customAction, E as createEvent, I as makeSourceBrokerId, Q as array, W as pipelineRunnerCapability, Z as _enum, i as BaseAddon, it as object, j as errMsg, k as defineCustomActions, ot as string, p as EventCategory, rt as number, tt as lazy } from "../dist-
|
|
1
|
+
import { $ as boolean, D as customAction, E as createEvent, I as makeSourceBrokerId, Q as array, W as pipelineRunnerCapability, Z as _enum, i as BaseAddon, it as object, j as errMsg, k as defineCustomActions, ot as string, p as EventCategory, rt as number, tt as lazy } from "../dist-DsDFrG0I.mjs";
|
|
2
2
|
import { FrameRingReaderCache } from "@camstack/shm-ring";
|
|
3
3
|
//#region src/pipeline-runner/frame-queue.ts
|
|
4
4
|
/**
|
package/dist/recorder/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const require_chunk = require("../chunk-D6vf50IK.js");
|
|
2
|
-
const require_dist = require("../dist-
|
|
2
|
+
const require_dist = require("../dist-BiUtYscO.js");
|
|
3
3
|
let node_fs = require("node:fs");
|
|
4
4
|
let node_path = require("node:path");
|
|
5
5
|
node_path = require_chunk.__toESM(node_path);
|
package/dist/recorder/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as recordingCapability, J as storageEvictableCapability, K as selectAssignedProfileSlots, P as hydrateSchema, T as createDurableState, at as record, g as RecordingConfigSchema, i as BaseAddon, j as errMsg, ot as string, p as EventCategory, z as migrateConfigToBands } from "../dist-
|
|
1
|
+
import { G as recordingCapability, J as storageEvictableCapability, K as selectAssignedProfileSlots, P as hydrateSchema, T as createDurableState, at as record, g as RecordingConfigSchema, i as BaseAddon, j as errMsg, ot as string, p as EventCategory, z as migrateConfigToBands } from "../dist-DsDFrG0I.mjs";
|
|
2
2
|
import { promises } from "node:fs";
|
|
3
3
|
import path from "node:path";
|
|
4
4
|
import { createFileDataPlaneHandler } from "@camstack/system";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { a as e, i as t, n, o as r, r as i, t as a } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare__react__loadShare__.js-C9j-2lBe.mjs";
|
|
2
|
-
import { a as o, c as s, i as c, l, n as u, o as d, r as f, s as p, t as m, u as h } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-
|
|
2
|
+
import { a as o, c as s, i as c, l, n as u, o as d, r as f, s as p, t as m, u as h } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-Dsz9DmNr.mjs";
|
|
3
3
|
import { n as g, r as _, t as v } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-XO0-Pyu6.mjs";
|
|
4
4
|
import { n as y, t as b } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_tanstack_mf_1_react_mf_2_query__loadShare__.js-BO7TIbJV.mjs";
|
|
5
|
-
import { t as x } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-
|
|
5
|
+
import { t as x } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-3STWM0yI.mjs";
|
|
6
6
|
//#region ../../node_modules/lucide-react/dist/esm/shared/src/utils.js
|
|
7
7
|
var S = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), C = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), w = (e) => {
|
|
8
8
|
let t = C(e);
|
|
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
|
|
|
3
3
|
var e = {
|
|
4
4
|
"@camstack/sdk": {
|
|
5
5
|
name: "@camstack/sdk",
|
|
6
|
-
version: "1.0.
|
|
6
|
+
version: "1.0.5",
|
|
7
7
|
scope: ["default"],
|
|
8
8
|
loaded: !1,
|
|
9
9
|
from: "addon_stream_broker_widgets",
|
|
@@ -18,7 +18,7 @@ var e = {
|
|
|
18
18
|
},
|
|
19
19
|
"@camstack/types": {
|
|
20
20
|
name: "@camstack/types",
|
|
21
|
-
version: "1.0.
|
|
21
|
+
version: "1.0.5",
|
|
22
22
|
scope: ["default"],
|
|
23
23
|
loaded: !1,
|
|
24
24
|
from: "addon_stream_broker_widgets",
|
|
@@ -33,7 +33,7 @@ var e = {
|
|
|
33
33
|
},
|
|
34
34
|
"@camstack/ui-library": {
|
|
35
35
|
name: "@camstack/ui-library",
|
|
36
|
-
version: "1.0.
|
|
36
|
+
version: "1.0.5",
|
|
37
37
|
scope: ["default"],
|
|
38
38
|
loaded: !1,
|
|
39
39
|
from: "addon_stream_broker_widgets",
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
//#region \0virtual:mf:__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js
|
|
2
|
+
var e = "__mf_init__virtual:mf:__mfe_internal__addon_stream_broker_widgets__mf_v__runtimeInit__mf_v__.js__", t = globalThis[e];
|
|
3
|
+
if (!t) {
|
|
4
|
+
let n, r, i = new Promise((e, t) => {
|
|
5
|
+
n = e, r = t;
|
|
6
|
+
});
|
|
7
|
+
t = globalThis[e] = {
|
|
8
|
+
initPromise: i,
|
|
9
|
+
initResolve: n,
|
|
10
|
+
initReject: r
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
var n = t.initPromise, r = "__mf_module_cache__";
|
|
14
|
+
globalThis[r] ||= {
|
|
15
|
+
share: {},
|
|
16
|
+
remote: {}
|
|
17
|
+
}, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
|
|
18
|
+
var i = globalThis[r], a, o = (e) => {
|
|
19
|
+
e.ACCESSORY_LABEL, e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionReleaseInputSchema, e.AdoptionStatusSchema, e.AgentLoadSummarySchema, e.AirQualitySensorStatusSchema, e.AlarmArmModeSchema, e.AlarmPanelStatusSchema, e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, e.ApiKeyRecordSchema, e.ApiKeySummarySchema, e.ArchiveEntrySchema, e.ArchiveManifestSchema, e.AudioAnalysisResultSchema, e.AudioAnalysisSettingsSchema, e.AudioChunkInputSchema, e.AudioClassSummarySchema, e.AudioClassificationLabelSchema, e.AudioClassificationResultSchema, e.AudioCodecInfoSchema, e.AudioDecodeSessionConfigSchema, e.AudioEncodeSchema, e.AudioEncodeSessionConfigSchema, e.AudioEncodedChunkSchema, e.AudioEventSchema, e.AudioLevelSchema, e.AudioMetricsHistoryPointSchema, e.AudioMetricsHistorySchema, e.AudioMetricsSnapshotSchema, e.AudioPcmChunkSchema, e.AuthResultSchema, e.AutoUpdateSettingsSchema, e.AutomationControlStatusSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BATTERY_DEVICE_PROFILE, e.BackupDestinationInfoSchema, e.BackupEntrySchema, e.BaseAddon, e.BaseDevice, e.BaseDeviceProvider, e.BatteryStatusSchema, e.BinaryStatusSchema, e.BoundingBoxSchema, e.BrightnessStatusSchema, e.BrokerAddInputSchema, e.BrokerAudioClientSchema, e.BrokerClientsSchema, e.BrokerConnectionDetailsSchema, e.BrokerConsumerAttributionSchema, e.BrokerConsumerKindSchema, e.BrokerDecodedClientSchema, e.BrokerEncodedClientSchema, e.BrokerGetStateInputSchema, e.BrokerInfoSchema, e.BrokerProviderInfoSchema, e.BrokerPublishInputSchema, e.BrokerRegistryStatusSchema, e.BrokerRtspClientSchema, e.BrokerStatsSchema, e.BrokerStatusEnum, e.BrokerStatusSchema, e.BrokerSubscribeInputSchema, e.BrokerSubscribeResultSchema, e.BrokerTestConnectionResultSchema, e.BrokerUnsubscribeInputSchema, e.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_PROVIDER_KIND_MAP, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CamProfileSchema, e.CamStreamDescriptorSchema, e.CamStreamKindSchema, e.CamStreamResolutionSchema, e.CameraAssignmentStatusSchema, e.CameraAudioStatusSchema, e.CameraBrokerProfileSchema, e.CameraBrokerStatusSchema, e.CameraCredentialsSchema, e.CameraCredentialsStatusSchema, e.CameraDecoderShmSchema, e.CameraDecoderStatusSchema, e.CameraDetectionPhaseSchema, e.CameraDetectionProvisioningSchema, e.CameraDetectionProvisioningStateSchema, e.CameraDetectionStatusSchema, e.CameraMetricsSchema, e.CameraMetricsWithDeviceIdSchema, e.CameraMotionStatusSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusSchema, e.CameraStreamSchema, e.CandidateQueryFilterSchema, e.CapScopeSchema, e.CapabilityBindingsSchema, e.CarbonMonoxideStatusSchema, e.ChargingStatus, e.ClientNetworkStatsSchema, e.ClimateControlStatusSchema, e.ClipPlaybackSchema, e.ClipSchema, e.ClusterAddonNodeDeploymentSchema, e.ClusterAddonStatusEntrySchema, e.CollectionColumnSchema, e.CollectionIndexSchema, e.ColorStatusSchema, e.ConfigEntrySchema, e.ConfigSectionWithValuesSchema, e.ConfigTabDeclarationSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.CoverStateSchema, e.CoverStatusSchema, e.CreateApiKeyInputSchema, e.CreateApiKeyResultSchema, e.CreateIntegrationInputSchema, e.CreateScopedTokenInputSchema, e.CreateScopedTokenResultSchema, e.CreateUserInputSchema, e.CustomActionInputSchema, e.DATAPLANE_SECRET_HEADER, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_FEATURES, e.DEFAULT_RETENTION, e.DEVICE_CAP_NAMES, e.DEVICE_PROFILES, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATUS_METHOD, e.DEVICE_TYPE_INFO, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderAssignmentSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetectionSourceSchema, e.DetectorOutputSchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, e.DeviceFeature, e.DeviceInfoSchema, e.DeviceNetworkStatsSchema, e.DeviceRole, e.DeviceRuntimeState, e.DeviceStatusSchema, e.DeviceType, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.ElementConfigStore, e.EmbeddingInfoSchema, e.EmbeddingResultSchema, e.EncodeProfileSchema, e.EncodedPacketSchema, e.EnrichedWidgetMetadataSchema, e.EnumSensorDateTimeFormatSchema, e.EnumSensorStatusSchema, e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindSchema, e.EventSourceType, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExposedDeviceSchema, e.ExposedResourceSchema, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.GasStatusSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.ImageStatusSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.MACRO_LABELS, e.METHOD_ACCESS_MAP, e.MODEL_FORMATS, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.NativeDetectionSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationHistoryEntrySchema, e.NotificationRuleSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdStatusSchema, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.RECOGNITION_TYPES, e.RUNTIME_DEFAULTS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadSegmentBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingModeSchema, e.RecordingRangeSchema, e.RecordingRetentionSchema, e.RecordingRuleSchema, e.RecordingScheduleSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RegisteredStreamSchema, e.ReportMotionInputSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCOPE_PRESETS, e.SOURCE_INFO_METADATA_KEY, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScriptRunnerStatusSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StorageAbortUploadInputSchema, e.StorageBeginDownloadInputSchema, e.StorageBeginDownloadResultSchema, e.StorageBeginUploadInputSchema, e.StorageBeginUploadResultSchema, e.StorageEndDownloadInputSchema, e.StorageFinalizeUploadInputSchema, e.StorageLocationDeclarationSchema, e.StorageLocationRefSchema, e.StorageLocationSchema, e.StorageLocationTypeSchema, e.StorageProviderInfoSchema, e.StorageReadChunkInputSchema, e.StorageTestLocationResultSchema, e.StorageWriteChunkInputSchema, e.StreamCodecSchema, e.StreamFormatSchema, e.StreamInfoSchema, e.StreamNetworkStatsSchema, e.StreamParamsOptionsSchema, e.StreamParamsStatusSchema, e.StreamProfileConfigSchema, e.StreamProfileOptionsSchema, e.StreamProfilePatchSchema, e.StreamProfileSchema, e.StreamSourceEntrySchema, e.StreamSourceSchema, e.SubscribeAudioChunksInputSchema, e.SubscribeAudioChunksResultSchema, e.SubscribeFramesInputSchema, e.SubscribeFramesResultSchema, e.SwitchStatusSchema, e.SystemMetricsSchema, e.SystemMirror, e.TIMEZONES, e.TamperStatusSchema, e.TankStatusSchema, e.TemperatureSensorStatusSchema, e.TestConnectionResultSchema, e.ToastSchema, e.TokenScopeSchema, e.TopologyNodeSchema, e.TopologyProcessSchema, e.TopologyServiceSchema, e.TrackSchema, e.TrackStateSchema, e.TrackedDetectionSchema, e.TurnServerSchema, e.UnifiedBrokerInfoSchema, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WELL_KNOWN_TABS, e.WELL_KNOWN_TAB_MAP, e.WaterHeaterStatusSchema, e.WeatherStatusSchema, e.WebrtcStreamChoiceSchema, e.WebrtcStreamTargetSchema, e.WidgetHostEnum, e.WidgetMetadataSchema, e.WidgetRemoteSchema, e.WidgetSizeEnum, e.YAMNET_TO_MACRO, e.ZoneKindEnum, e.ZoneRuleModeEnum, e.ZoneRuleSchema, e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, e.accessoriesCapability, e.accessoryStableId, e.addonPagesCapability, e.addonPagesSourceCapability, e.addonRoutesCapability, e.addonSettingsCapability, e.addonWidgetsCapability, e.addonWidgetsSourceCapability, e.addonsCapability, e.adminUiCapability, e.advancedNotifierCapability, e.airQualitySensorCapability, e.alarmPanelCapability, e.alertsCapability, e.ambientLightSensorCapability, e.applyTransform, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioMetricsCapability, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildStreamParamsConfigSchema, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, e.carbonMonoxideCapability, e.cellsToRects, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.colorCapability, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.cosineSimilarity, e.coverCapability, e.createDeviceProxy, e.createDurableState, e.createEvent, e.createLazyTrpcSource, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.decoderCapability, e.defineCustomActions, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.enumSensorCapability, e.enumerateSchemaFields, e.errMsg, e.errMsg$1, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.formatForBackend, e.formatForRuntime, e.frameworkSwapConfirmSchema, e.frameworkSwapPackageSchema, e.gasCapability, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.hfModelUrl, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.integrationsCapability, e.intercomCapability, e.isAgentOnlyPlacement, e.isDeployableToAgent, e.isDeviceConfigCap, e.isEvent, e.jobKindSchema, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logDestinationCapability, e.makeProfileBrokerId, a = e.makeSourceBrokerId, e.mapAudioLabelToMacro, e.maskUrlCredentials, e.mediaPlayerCapability, e.mergeSourceInfo, e.meshNetworkCapability, e.method, e.metricsProviderCapability, e.migrateConfigToBands, e.motionCapability, e.motionDetectionCapability, e.motionTriggerCapability, e.motionZonesCapability, e.mqttBrokerCapability, e.nativeObjectDetectionCapability, e.networkAccessCapability, e.networkQualityCapability, e.nodesCapability, e.normalizeAddonInitResult, e.normalizeUnit, e.notificationOutputCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.osdCapability, e.parseCameraStreamConfig, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProfileBrokerId, e.parseStreamParamsFormPatch, e.pendingFrameworkSwapSchema, e.pickPreferredRtspEntry, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.powerMeterCapability, e.presenceCapability, e.pressureSensorCapability, e.privacyMaskCapability, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readinessKey, e.rebootCapability, e.recordingCapability, e.rectsToCells, e.requiresPython, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveDetectionRuntime, e.resolveDeviceProfile, e.resolveModelFormat, e.resolveRunnerId, e.restreamerCapability, e.runInferenceStep, e.scopeKey, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.snapshotProviderCapability, e.ssoBridgeCapability, e.storageCapability, e.storageEvictableCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.streamingEngineCapability, e.switchCapability, e.synthesizeSourceInfo, e.systemCapability, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.toDeviceSummary, e.toStreamSourceEntry, e.toastCapability, e.turnProviderCapability, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.valveCapability, e.vibrationCapability, e.videoclipsCapability, e.waterHeaterCapability, e.weatherCapability, e.webrtcCapability, e.webrtcClientHintsSchema, e.webrtcSessionCapability, e.wiringAddonHealthSchema, e.wiringHealthSnapshotSchema, e.wiringNodeHealthSchema, e.wiringProbeKindSchema, e.wiringProbeResultSchema, e.zodEntriesToConfigUI, e.zoneAnalyticsCapability, e.zoneRulesCapability, e.zonesCapability, e.default;
|
|
20
|
+
}, s = i.share["default:@camstack/types"];
|
|
21
|
+
s === void 0 ? n.then(() => {
|
|
22
|
+
if (s = i.share["default:@camstack/types"], s === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
|
|
23
|
+
o(s);
|
|
24
|
+
}) : o(s);
|
|
25
|
+
//#endregion
|
|
26
|
+
export { a as t };
|