@camstack/types 1.0.3 → 1.0.5
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/capabilities/addons.cap.d.ts +194 -123
- package/dist/capabilities/alerts.cap.d.ts +5 -5
- package/dist/capabilities/camera-streams.cap.d.ts +5 -5
- package/dist/capabilities/index.d.ts +2 -1
- package/dist/capabilities/pipeline-executor.cap.d.ts +48 -1
- package/dist/capabilities/pipeline-orchestrator.cap.d.ts +521 -1
- package/dist/capabilities/schemas/streaming-shared.d.ts +4 -4
- package/dist/capabilities/stream-broker.cap.d.ts +2 -2
- package/dist/capabilities/webrtc-session.cap.d.ts +2 -2
- package/dist/enums/event-category.d.ts +19 -6
- package/dist/generated/addon-api.d.ts +616 -168
- package/dist/generated/device-proxy.d.ts +1 -1
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/system-proxy.d.ts +3 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.js +431 -66
- package/dist/index.mjs +405 -67
- package/dist/interfaces/config-port.d.ts +15 -0
- package/dist/interfaces/event-bus.d.ts +20 -7
- package/dist/interfaces/pipeline-executor-capability.d.ts +8 -0
- package/dist/lifecycle/framework-swap.d.ts +36 -0
- package/dist/lifecycle/index.d.ts +2 -0
- package/dist/lifecycle/job.d.ts +177 -0
- package/dist/types/agent-pipeline-settings.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -472,6 +472,18 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
472
472
|
*/
|
|
473
473
|
EventCategory["PipelineEngineMetricsSnapshot"] = "pipeline.engine-metrics-snapshot";
|
|
474
474
|
/**
|
|
475
|
+
* Per-node detection-engine runtime-provisioning transition. Emitted by
|
|
476
|
+
* the detection-pipeline provider on every state change of its lazy
|
|
477
|
+
* engine-provisioning machine (idle → installing → verifying → ready,
|
|
478
|
+
* or → failed with a `nextRetryAt`). Payload is the
|
|
479
|
+
* `EngineProvisioningState` snapshot; `event.source.nodeId` carries the
|
|
480
|
+
* node. The Pipeline page subscribes to drive a live "installing
|
|
481
|
+
* OpenVINO… / ready" indicator per node without polling
|
|
482
|
+
* `pipelineExecutor.getEngineProvisioning`. Telemetry-grade (D8): the UI
|
|
483
|
+
* also reads the cap snapshot on mount / reconnect. Phase 2.
|
|
484
|
+
*/
|
|
485
|
+
EventCategory["PipelineEngineProvisioning"] = "pipeline.engine-provisioning";
|
|
486
|
+
/**
|
|
475
487
|
* Cluster topology snapshot. Carries the same payload returned by
|
|
476
488
|
* `nodes.topology` (every reachable node + addons + processes).
|
|
477
489
|
* Emitted by the hub on any agent / addon lifecycle change
|
|
@@ -621,14 +633,15 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
621
633
|
EventCategory["DeviceSleeping"] = "device.sleeping";
|
|
622
634
|
EventCategory["RetentionCleanup"] = "retention.cleanup";
|
|
623
635
|
/**
|
|
624
|
-
*
|
|
625
|
-
*
|
|
626
|
-
*
|
|
627
|
-
* to
|
|
628
|
-
*
|
|
629
|
-
* Spec: docs/superpowers/specs/2026-05-21-addons-bulk-update-progress-design.md
|
|
636
|
+
* Legacy bulk-update progress snapshot (payload `BulkUpdateState`). No longer
|
|
637
|
+
* emitted — F3 removed the coordinator that produced it; "Update all" now runs
|
|
638
|
+
* as one lifecycle engine job (`AddonsJobProgress`/`AddonsJobLog`). Retained
|
|
639
|
+
* (with `BulkUpdateState`) only to avoid regenerating the event maps; removed
|
|
640
|
+
* in F4 once live bulk progress is re-implemented over the engine events.
|
|
630
641
|
*/
|
|
631
642
|
EventCategory["AddonsBulkUpdateProgress"] = "addons.bulk-update-progress";
|
|
643
|
+
EventCategory["AddonsJobProgress"] = "addons.job-progress";
|
|
644
|
+
EventCategory["AddonsJobLog"] = "addons.job-log";
|
|
632
645
|
/**
|
|
633
646
|
* A container's child visibility toggled (hidden/shown). Emitted by the
|
|
634
647
|
* `accessories` cap when a child device is hidden or revealed.
|
|
@@ -8400,6 +8413,24 @@ var DetectorOutputSchema = z.object({
|
|
|
8400
8413
|
inferenceMs: z.number(),
|
|
8401
8414
|
modelId: z.string()
|
|
8402
8415
|
});
|
|
8416
|
+
var EngineProvisioningSchema = z.object({
|
|
8417
|
+
runtimeId: z.enum([
|
|
8418
|
+
"onnx",
|
|
8419
|
+
"openvino",
|
|
8420
|
+
"coreml"
|
|
8421
|
+
]).nullable(),
|
|
8422
|
+
device: z.string().nullable(),
|
|
8423
|
+
state: z.enum([
|
|
8424
|
+
"idle",
|
|
8425
|
+
"installing",
|
|
8426
|
+
"verifying",
|
|
8427
|
+
"ready",
|
|
8428
|
+
"failed"
|
|
8429
|
+
]),
|
|
8430
|
+
progress: z.number().optional(),
|
|
8431
|
+
error: z.string().optional(),
|
|
8432
|
+
nextRetryAt: z.number().optional()
|
|
8433
|
+
});
|
|
8403
8434
|
var PipelineStepInputSchema = z.lazy(() => z.object({
|
|
8404
8435
|
addonId: z.string(),
|
|
8405
8436
|
modelId: z.string(),
|
|
@@ -8499,6 +8530,15 @@ var pipelineExecutorCapability = {
|
|
|
8499
8530
|
kind: "mutation",
|
|
8500
8531
|
auth: "admin"
|
|
8501
8532
|
}),
|
|
8533
|
+
/**
|
|
8534
|
+
* Per-node detection-engine provisioning snapshot. Returns the live
|
|
8535
|
+
* state of the lazy runtime-provisioning machine on `nodeId`
|
|
8536
|
+
* (idle / installing / verifying / ready / failed). The UI pairs this
|
|
8537
|
+
* one-shot query with the `pipeline.engine-provisioning` live event
|
|
8538
|
+
* (emitted on every transition) to drive a per-node "engine ready?"
|
|
8539
|
+
* indicator without polling. Phase 2.
|
|
8540
|
+
*/
|
|
8541
|
+
getEngineProvisioning: method(z.object({ nodeId: z.string() }), EngineProvisioningSchema),
|
|
8502
8542
|
getVideoPipelineSteps: method(z.void(), z.record(z.string(), z.object({
|
|
8503
8543
|
modelId: z.string(),
|
|
8504
8544
|
settings: z.record(z.string(), z.unknown()).readonly()
|
|
@@ -12924,6 +12964,7 @@ function createDeviceProxy(api, binding, opts) {
|
|
|
12924
12964
|
setCameraStepOverride: (input) => dispatchSystem("pipelineOrchestrator", "setCameraStepOverride", "mutation", input),
|
|
12925
12965
|
setCameraPipelineForAgent: (input) => dispatchSystem("pipelineOrchestrator", "setCameraPipelineForAgent", "mutation", input),
|
|
12926
12966
|
resolvePipeline: (input) => dispatchSystem("pipelineOrchestrator", "resolvePipeline", "query", input),
|
|
12967
|
+
getCameraStatus: (input) => dispatchSystem("pipelineOrchestrator", "getCameraStatus", "query", input),
|
|
12927
12968
|
getDeviceSettingsContribution: (input) => dispatchSystem("pipelineOrchestrator", "getDeviceSettingsContribution", "query", input),
|
|
12928
12969
|
getDeviceLiveContribution: (input) => dispatchSystem("pipelineOrchestrator", "getDeviceLiveContribution", "query", input),
|
|
12929
12970
|
applyDeviceSettingsPatch: (input) => dispatchSystem("pipelineOrchestrator", "applyDeviceSettingsPatch", "mutation", input)
|
|
@@ -13086,10 +13127,6 @@ function createSystemProxy(api) {
|
|
|
13086
13127
|
listCapabilityProviders: (input) => dispatch("addons", "listCapabilityProviders", "query", input),
|
|
13087
13128
|
setCapabilityProviderEnabled: (input) => dispatch("addons", "setCapabilityProviderEnabled", "mutation", input),
|
|
13088
13129
|
updateFrameworkPackage: (input) => dispatch("addons", "updateFrameworkPackage", "mutation", input),
|
|
13089
|
-
startBulkUpdate: (input) => dispatch("addons", "startBulkUpdate", "mutation", input),
|
|
13090
|
-
getBulkUpdateState: (input) => dispatch("addons", "getBulkUpdateState", "query", input),
|
|
13091
|
-
cancelBulkUpdate: (input) => dispatch("addons", "cancelBulkUpdate", "mutation", input),
|
|
13092
|
-
listActiveBulkUpdates: (input) => dispatch("addons", "listActiveBulkUpdates", "query", input),
|
|
13093
13130
|
getVersions: (input) => dispatch("addons", "getVersions", "query", input),
|
|
13094
13131
|
restartAddon: (input) => dispatch("addons", "restartAddon", "mutation", input),
|
|
13095
13132
|
retryLoad: (input) => dispatch("addons", "retryLoad", "mutation", input),
|
|
@@ -13099,6 +13136,10 @@ function createSystemProxy(api) {
|
|
|
13099
13136
|
setAddonAutoUpdate: (input) => dispatch("addons", "setAddonAutoUpdate", "mutation", input),
|
|
13100
13137
|
applyAutoUpdateToAll: (input) => dispatch("addons", "applyAutoUpdateToAll", "mutation", input),
|
|
13101
13138
|
custom: (input) => dispatch("addons", "custom", "mutation", input),
|
|
13139
|
+
startJob: (input) => dispatch("addons", "startJob", "mutation", input),
|
|
13140
|
+
getJob: (input) => dispatch("addons", "getJob", "query", input),
|
|
13141
|
+
listJobs: (input) => dispatch("addons", "listJobs", "query", input),
|
|
13142
|
+
cancelJob: (input) => dispatch("addons", "cancelJob", "mutation", input),
|
|
13102
13143
|
onAddonLogs: (input, push) => dispatch("addons", "onAddonLogs", "subscription", input, push)
|
|
13103
13144
|
},
|
|
13104
13145
|
addonSettings: {
|
|
@@ -13335,6 +13376,7 @@ function createSystemProxy(api) {
|
|
|
13335
13376
|
getSelectedEngine: (input) => dispatch("pipelineExecutor", "getSelectedEngine", "query", input),
|
|
13336
13377
|
getDefaultSteps: (input) => dispatch("pipelineExecutor", "getDefaultSteps", "query", input),
|
|
13337
13378
|
reprobeEngine: (input) => dispatch("pipelineExecutor", "reprobeEngine", "mutation", input),
|
|
13379
|
+
getEngineProvisioning: (input) => dispatch("pipelineExecutor", "getEngineProvisioning", "query", input),
|
|
13338
13380
|
getVideoPipelineSteps: (input) => dispatch("pipelineExecutor", "getVideoPipelineSteps", "query", input),
|
|
13339
13381
|
setVideoPipelineSteps: (input) => dispatch("pipelineExecutor", "setVideoPipelineSteps", "mutation", input),
|
|
13340
13382
|
getSchema: (input) => dispatch("pipelineExecutor", "getSchema", "query", input),
|
|
@@ -13378,6 +13420,8 @@ function createSystemProxy(api) {
|
|
|
13378
13420
|
listAgentSettings: (input) => dispatch("pipelineOrchestrator", "listAgentSettings", "query", input),
|
|
13379
13421
|
setAgentAddonDefaults: (input) => dispatch("pipelineOrchestrator", "setAgentAddonDefaults", "mutation", input),
|
|
13380
13422
|
removeAgentSettings: (input) => dispatch("pipelineOrchestrator", "removeAgentSettings", "mutation", input),
|
|
13423
|
+
setAgentMaxCameras: (input) => dispatch("pipelineOrchestrator", "setAgentMaxCameras", "mutation", input),
|
|
13424
|
+
getCameraStatuses: (input) => dispatch("pipelineOrchestrator", "getCameraStatuses", "query", input),
|
|
13381
13425
|
listTemplates: (input) => dispatch("pipelineOrchestrator", "listTemplates", "query", input),
|
|
13382
13426
|
saveTemplate: (input) => dispatch("pipelineOrchestrator", "saveTemplate", "mutation", input),
|
|
13383
13427
|
updateTemplate: (input) => dispatch("pipelineOrchestrator", "updateTemplate", "mutation", input),
|
|
@@ -16993,7 +17037,10 @@ var AgentAddonConfigSchema = z.object({
|
|
|
16993
17037
|
modelId: z.string(),
|
|
16994
17038
|
settings: z.record(z.string(), z.unknown()).readonly()
|
|
16995
17039
|
});
|
|
16996
|
-
var AgentPipelineSettingsSchema = z.object({
|
|
17040
|
+
var AgentPipelineSettingsSchema = z.object({
|
|
17041
|
+
addonDefaults: z.record(z.string(), AgentAddonConfigSchema).readonly(),
|
|
17042
|
+
maxCameras: z.number().int().nonnegative().nullable().default(null)
|
|
17043
|
+
});
|
|
16997
17044
|
var CameraPipelineForAgentSchema = z.object({
|
|
16998
17045
|
steps: z.array(PipelineStepInputSchema).readonly(),
|
|
16999
17046
|
audio: z.object({
|
|
@@ -17095,6 +17142,141 @@ var GlobalMetricsSchema = z.object({
|
|
|
17095
17142
|
* capability providers.
|
|
17096
17143
|
*/
|
|
17097
17144
|
var CapabilityBindingsSchema = z.record(z.string(), z.string());
|
|
17145
|
+
/** Stream entry surfaced from the stream-catalog for one device. */
|
|
17146
|
+
var CameraSourceStreamSchema = z.object({
|
|
17147
|
+
camStreamId: z.string(),
|
|
17148
|
+
codec: z.string(),
|
|
17149
|
+
width: z.number(),
|
|
17150
|
+
height: z.number(),
|
|
17151
|
+
fps: z.number(),
|
|
17152
|
+
kind: z.string()
|
|
17153
|
+
});
|
|
17154
|
+
/** Source block — always present; derives from the stream catalog. */
|
|
17155
|
+
var CameraSourceStatusSchema = z.object({ streams: z.array(CameraSourceStreamSchema).readonly() });
|
|
17156
|
+
/** Assignment block — always present (orchestrator-local, no remote call). */
|
|
17157
|
+
var CameraAssignmentStatusSchema = z.object({
|
|
17158
|
+
detectionNodeId: z.string().nullable(),
|
|
17159
|
+
decoderNodeId: z.string().nullable(),
|
|
17160
|
+
audioNodeId: z.string().nullable(),
|
|
17161
|
+
pinned: z.object({
|
|
17162
|
+
detection: z.boolean(),
|
|
17163
|
+
decoder: z.boolean(),
|
|
17164
|
+
audio: z.boolean()
|
|
17165
|
+
}),
|
|
17166
|
+
reasons: z.object({
|
|
17167
|
+
detection: z.string().optional(),
|
|
17168
|
+
decoder: z.string().optional(),
|
|
17169
|
+
audio: z.string().optional()
|
|
17170
|
+
})
|
|
17171
|
+
});
|
|
17172
|
+
/** Broker profile slot entry within the broker block. */
|
|
17173
|
+
var CameraBrokerProfileSchema = z.object({
|
|
17174
|
+
profile: z.string(),
|
|
17175
|
+
status: z.string(),
|
|
17176
|
+
codec: z.string(),
|
|
17177
|
+
width: z.number(),
|
|
17178
|
+
height: z.number(),
|
|
17179
|
+
subscribers: z.number(),
|
|
17180
|
+
inFps: z.number(),
|
|
17181
|
+
outFps: z.number()
|
|
17182
|
+
});
|
|
17183
|
+
/** Broker block — null when the broker stage is unreachable or inactive. */
|
|
17184
|
+
var CameraBrokerStatusSchema = z.object({
|
|
17185
|
+
profiles: z.array(CameraBrokerProfileSchema).readonly(),
|
|
17186
|
+
webrtcSessions: z.number(),
|
|
17187
|
+
rtspRestream: z.boolean()
|
|
17188
|
+
});
|
|
17189
|
+
/** Shared-memory ring statistics within the decoder block. */
|
|
17190
|
+
var CameraDecoderShmSchema = z.object({
|
|
17191
|
+
framesWritten: z.number(),
|
|
17192
|
+
getFrameHits: z.number(),
|
|
17193
|
+
getFrameMisses: z.number(),
|
|
17194
|
+
budgetMb: z.number()
|
|
17195
|
+
});
|
|
17196
|
+
/** Decoder block — null when the decoder stage is unreachable or inactive. */
|
|
17197
|
+
var CameraDecoderStatusSchema = z.object({
|
|
17198
|
+
nodeId: z.string(),
|
|
17199
|
+
formats: z.array(z.string()).readonly(),
|
|
17200
|
+
sessionCount: z.number(),
|
|
17201
|
+
shm: CameraDecoderShmSchema
|
|
17202
|
+
});
|
|
17203
|
+
/** Motion block — null when motion detection is not active for this device. */
|
|
17204
|
+
var CameraMotionStatusSchema = z.object({
|
|
17205
|
+
enabled: z.boolean(),
|
|
17206
|
+
fps: z.number()
|
|
17207
|
+
});
|
|
17208
|
+
/** Detection engine provisioning state (mirrors pipeline-executor provisioning states). */
|
|
17209
|
+
var CameraDetectionProvisioningStateSchema = z.enum([
|
|
17210
|
+
"idle",
|
|
17211
|
+
"installing",
|
|
17212
|
+
"verifying",
|
|
17213
|
+
"ready",
|
|
17214
|
+
"failed"
|
|
17215
|
+
]);
|
|
17216
|
+
/** Detection provisioning sub-block. */
|
|
17217
|
+
var CameraDetectionProvisioningSchema = z.object({
|
|
17218
|
+
state: CameraDetectionProvisioningStateSchema,
|
|
17219
|
+
error: z.string().optional()
|
|
17220
|
+
});
|
|
17221
|
+
/** Detection phase — derived from the runner's engine phase. */
|
|
17222
|
+
var CameraDetectionPhaseSchema = z.enum([
|
|
17223
|
+
"idle",
|
|
17224
|
+
"watching",
|
|
17225
|
+
"active"
|
|
17226
|
+
]);
|
|
17227
|
+
/** Detection block — null when no detection node is assigned or reachable. */
|
|
17228
|
+
var CameraDetectionStatusSchema = z.object({
|
|
17229
|
+
nodeId: z.string(),
|
|
17230
|
+
engine: z.object({
|
|
17231
|
+
backend: z.string(),
|
|
17232
|
+
device: z.string()
|
|
17233
|
+
}),
|
|
17234
|
+
phase: CameraDetectionPhaseSchema,
|
|
17235
|
+
configuredFps: z.number(),
|
|
17236
|
+
actualFps: z.number(),
|
|
17237
|
+
queueDepth: z.number(),
|
|
17238
|
+
avgInferenceMs: z.number(),
|
|
17239
|
+
provisioning: CameraDetectionProvisioningSchema
|
|
17240
|
+
});
|
|
17241
|
+
/** Audio block — null when no audio node is assigned or reachable. */
|
|
17242
|
+
var CameraAudioStatusSchema = z.object({
|
|
17243
|
+
nodeId: z.string(),
|
|
17244
|
+
enabled: z.boolean()
|
|
17245
|
+
});
|
|
17246
|
+
/** Recording mode enum (matches recording cap). */
|
|
17247
|
+
var CameraRecordingModeSchema = z.enum([
|
|
17248
|
+
"off",
|
|
17249
|
+
"continuous",
|
|
17250
|
+
"events"
|
|
17251
|
+
]);
|
|
17252
|
+
/** Recording block — null when no recording cap is active for this device. */
|
|
17253
|
+
var CameraRecordingStatusSchema = z.object({
|
|
17254
|
+
mode: CameraRecordingModeSchema,
|
|
17255
|
+
active: z.boolean(),
|
|
17256
|
+
storageBytes: z.number()
|
|
17257
|
+
});
|
|
17258
|
+
/**
|
|
17259
|
+
* Aggregated per-camera pipeline status — server-composed, single call.
|
|
17260
|
+
*
|
|
17261
|
+
* The `assignment` and `source` blocks are always present.
|
|
17262
|
+
* Every other block is `null` when the stage is inactive or unreachable
|
|
17263
|
+
* during the bounded parallel fan-out in the orchestrator implementation.
|
|
17264
|
+
*
|
|
17265
|
+
* See spec: `docs/superpowers/specs/2026-06-24-camera-status-aggregator-cap.md`
|
|
17266
|
+
*/
|
|
17267
|
+
var CameraStatusSchema = z.object({
|
|
17268
|
+
deviceId: z.number(),
|
|
17269
|
+
assignment: CameraAssignmentStatusSchema,
|
|
17270
|
+
source: CameraSourceStatusSchema,
|
|
17271
|
+
broker: CameraBrokerStatusSchema.nullable(),
|
|
17272
|
+
decoder: CameraDecoderStatusSchema.nullable(),
|
|
17273
|
+
motion: CameraMotionStatusSchema.nullable(),
|
|
17274
|
+
detection: CameraDetectionStatusSchema.nullable(),
|
|
17275
|
+
audio: CameraAudioStatusSchema.nullable(),
|
|
17276
|
+
recording: CameraRecordingStatusSchema.nullable(),
|
|
17277
|
+
/** Unix timestamp (ms) when this snapshot was composed server-side. */
|
|
17278
|
+
fetchedAt: z.number()
|
|
17279
|
+
});
|
|
17098
17280
|
/**
|
|
17099
17281
|
* Pipeline Orchestrator capability — global load balancer + camera dispatcher.
|
|
17100
17282
|
*
|
|
@@ -17271,6 +17453,25 @@ var pipelineOrchestratorCapability = {
|
|
|
17271
17453
|
kind: "mutation",
|
|
17272
17454
|
auth: "admin"
|
|
17273
17455
|
}),
|
|
17456
|
+
/**
|
|
17457
|
+
* Set the per-node camera cap for one agent.
|
|
17458
|
+
*
|
|
17459
|
+
* `maxCameras: 0` and `maxCameras: null` are both treated as unlimited
|
|
17460
|
+
* by the load balancer (0 is stored as-is; the balancer treats ≤0 as
|
|
17461
|
+
* unlimited alongside null). Pass `null` to clear an existing cap.
|
|
17462
|
+
* Note: the admin UI normalises 0→null before calling this method, so
|
|
17463
|
+
* `maxCameras: 0` only reaches the store via direct SDK or CLI calls.
|
|
17464
|
+
* Changes take effect immediately on the next dispatch cycle — cameras
|
|
17465
|
+
* currently assigned over-cap are left in place (no forced eviction),
|
|
17466
|
+
* but new assignments obey the updated cap.
|
|
17467
|
+
*/
|
|
17468
|
+
setAgentMaxCameras: method(z.object({
|
|
17469
|
+
agentNodeId: z.string(),
|
|
17470
|
+
maxCameras: z.number().int().nonnegative().nullable()
|
|
17471
|
+
}), z.object({ success: z.literal(true) }), {
|
|
17472
|
+
kind: "mutation",
|
|
17473
|
+
auth: "admin"
|
|
17474
|
+
}),
|
|
17274
17475
|
/** Read one camera's settings. Null when never touched (inherits agent defaults fully). */
|
|
17275
17476
|
getCameraSettings: method(z.object({ deviceId: z.number() }), CameraPipelineSettingsSchema.nullable()),
|
|
17276
17477
|
/** Set or clear the 3-state toggle for one (camera, addonId). Pass `enabled: null` to clear and revert to agent default. */
|
|
@@ -17311,6 +17512,29 @@ var pipelineOrchestratorCapability = {
|
|
|
17311
17512
|
deviceId: z.number(),
|
|
17312
17513
|
agentNodeId: z.string().optional()
|
|
17313
17514
|
}), CameraPipelineConfigSchema),
|
|
17515
|
+
/**
|
|
17516
|
+
* Server-composed aggregated status for a single camera.
|
|
17517
|
+
*
|
|
17518
|
+
* Fans out in parallel (bounded, per-stage graceful degradation) to
|
|
17519
|
+
* broker / decoder / motion / detection / audio / recording source caps
|
|
17520
|
+
* via `ctx.api`. A stage whose source errors or times out becomes `null`
|
|
17521
|
+
* in the returned payload — one slow agent never breaks the whole call.
|
|
17522
|
+
*
|
|
17523
|
+
* Intended for "on open / on camera select" snapshots. Live deltas
|
|
17524
|
+
* keep arriving from the existing ~1Hz events the UI already subscribes to.
|
|
17525
|
+
*/
|
|
17526
|
+
getCameraStatus: method(z.object({ deviceId: z.number() }), CameraStatusSchema),
|
|
17527
|
+
/**
|
|
17528
|
+
* Server-composed aggregated status for multiple cameras in one call.
|
|
17529
|
+
*
|
|
17530
|
+
* `deviceIds` defaults to all cameras currently tracked by the
|
|
17531
|
+
* orchestrator's assignment map when omitted.
|
|
17532
|
+
*
|
|
17533
|
+
* Runs per-device composition in parallel (bounded). Use this to
|
|
17534
|
+
* populate the cluster assignments table and the pipeline flow overview
|
|
17535
|
+
* rail without issuing N parallel browser round-trips.
|
|
17536
|
+
*/
|
|
17537
|
+
getCameraStatuses: method(z.object({ deviceIds: z.array(z.number()).optional() }), z.array(CameraStatusSchema).readonly()),
|
|
17314
17538
|
/** List every template the operator has saved. */
|
|
17315
17539
|
listTemplates: method(z.void(), z.array(PipelineTemplateSchema).readonly()),
|
|
17316
17540
|
/** Create a new named preset from a given CameraPipelineConfig. */
|
|
@@ -22097,6 +22321,71 @@ var integrationsCapability = {
|
|
|
22097
22321
|
}
|
|
22098
22322
|
};
|
|
22099
22323
|
//#endregion
|
|
22324
|
+
//#region src/lifecycle/job.ts
|
|
22325
|
+
var jobKindSchema = z.enum([
|
|
22326
|
+
"install",
|
|
22327
|
+
"update",
|
|
22328
|
+
"uninstall",
|
|
22329
|
+
"restart"
|
|
22330
|
+
]);
|
|
22331
|
+
var taskPhaseSchema = z.enum([
|
|
22332
|
+
"queued",
|
|
22333
|
+
"fetching",
|
|
22334
|
+
"staged",
|
|
22335
|
+
"validating",
|
|
22336
|
+
"applying",
|
|
22337
|
+
"restarting",
|
|
22338
|
+
"applied",
|
|
22339
|
+
"done",
|
|
22340
|
+
"failed",
|
|
22341
|
+
"skipped"
|
|
22342
|
+
]);
|
|
22343
|
+
var taskTargetSchema = z.enum(["framework", "addon"]);
|
|
22344
|
+
var taskLogEntrySchema = z.object({
|
|
22345
|
+
tsMs: z.number(),
|
|
22346
|
+
nodeId: z.string(),
|
|
22347
|
+
packageName: z.string(),
|
|
22348
|
+
phase: taskPhaseSchema,
|
|
22349
|
+
message: z.string()
|
|
22350
|
+
});
|
|
22351
|
+
var lifecycleTaskSchema = z.object({
|
|
22352
|
+
taskId: z.string(),
|
|
22353
|
+
nodeId: z.string(),
|
|
22354
|
+
packageName: z.string(),
|
|
22355
|
+
fromVersion: z.string().nullable(),
|
|
22356
|
+
toVersion: z.string(),
|
|
22357
|
+
target: taskTargetSchema,
|
|
22358
|
+
phase: taskPhaseSchema,
|
|
22359
|
+
stagedPath: z.string().nullable(),
|
|
22360
|
+
attempts: z.number(),
|
|
22361
|
+
steps: z.array(taskLogEntrySchema),
|
|
22362
|
+
error: z.string().nullable(),
|
|
22363
|
+
startedAtMs: z.number().nullable(),
|
|
22364
|
+
finishedAtMs: z.number().nullable()
|
|
22365
|
+
});
|
|
22366
|
+
var lifecycleJobStateSchema = z.enum([
|
|
22367
|
+
"running",
|
|
22368
|
+
"completed",
|
|
22369
|
+
"failed",
|
|
22370
|
+
"partially-failed",
|
|
22371
|
+
"cancelled"
|
|
22372
|
+
]);
|
|
22373
|
+
var lifecycleJobScopeSchema = z.enum([
|
|
22374
|
+
"single",
|
|
22375
|
+
"bulk",
|
|
22376
|
+
"cluster"
|
|
22377
|
+
]);
|
|
22378
|
+
var lifecycleJobSchema = z.object({
|
|
22379
|
+
jobId: z.string(),
|
|
22380
|
+
kind: jobKindSchema,
|
|
22381
|
+
createdAtMs: z.number(),
|
|
22382
|
+
createdBy: z.string(),
|
|
22383
|
+
scope: lifecycleJobScopeSchema,
|
|
22384
|
+
tasks: z.array(lifecycleTaskSchema),
|
|
22385
|
+
state: lifecycleJobStateSchema,
|
|
22386
|
+
schemaVersion: z.literal(1)
|
|
22387
|
+
});
|
|
22388
|
+
//#endregion
|
|
22100
22389
|
//#region src/capabilities/addons.cap.ts
|
|
22101
22390
|
/**
|
|
22102
22391
|
* addons — system-scoped singleton capability for addon package
|
|
@@ -22280,7 +22569,7 @@ var BulkUpdatePhaseSchema = z.enum([
|
|
|
22280
22569
|
"restarting",
|
|
22281
22570
|
"finalizing"
|
|
22282
22571
|
]);
|
|
22283
|
-
|
|
22572
|
+
z.object({
|
|
22284
22573
|
id: z.string(),
|
|
22285
22574
|
nodeId: z.string(),
|
|
22286
22575
|
startedAtMs: z.number(),
|
|
@@ -22516,54 +22805,6 @@ var addonsCapability = {
|
|
|
22516
22805
|
kind: "mutation",
|
|
22517
22806
|
auth: "admin"
|
|
22518
22807
|
}),
|
|
22519
|
-
/**
|
|
22520
|
-
* Kicks off a server-side bulk update operation and returns the bulk
|
|
22521
|
-
* id immediately. The operation runs asynchronously; observe progress
|
|
22522
|
-
* via the `AddonsBulkUpdateProgress` event or `getBulkUpdateState`.
|
|
22523
|
-
* Items with `isSystem: true` use `deferRestart` — the hub restarts
|
|
22524
|
-
* ONCE at the end of the system phase, after all system packages are
|
|
22525
|
-
* installed.
|
|
22526
|
-
*
|
|
22527
|
-
* `items[].version` is REQUIRED — callers must pass the resolved
|
|
22528
|
-
* version from `listUpdates`. There is no `'latest'` default here
|
|
22529
|
-
* (unlike `updatePackage`) to guarantee deterministic bulk rolls.
|
|
22530
|
-
*/
|
|
22531
|
-
startBulkUpdate: method(z.object({
|
|
22532
|
-
nodeId: z.string(),
|
|
22533
|
-
items: z.array(z.object({
|
|
22534
|
-
name: z.string(),
|
|
22535
|
-
version: z.string(),
|
|
22536
|
-
isSystem: z.boolean()
|
|
22537
|
-
})).readonly()
|
|
22538
|
-
}), z.object({ id: z.string() }), {
|
|
22539
|
-
kind: "mutation",
|
|
22540
|
-
auth: "admin"
|
|
22541
|
-
}),
|
|
22542
|
-
/**
|
|
22543
|
-
* Returns the current state of a bulk update by id.
|
|
22544
|
-
* Returns `null` if the id is unknown or has been auto-cleaned
|
|
22545
|
-
* (5 minutes after `completedAt` the record is evicted from memory).
|
|
22546
|
-
*/
|
|
22547
|
-
getBulkUpdateState: method(z.object({ id: z.string() }), BulkUpdateStateSchema.nullable(), { auth: "admin" }),
|
|
22548
|
-
/**
|
|
22549
|
-
* Cancels an in-flight bulk update. The update loop exits after the
|
|
22550
|
-
* currently-processing item completes — cancellation is not
|
|
22551
|
-
* instantaneous. Has no effect once the `restarting` phase has been
|
|
22552
|
-
* entered (the hub is already shutting down at that point).
|
|
22553
|
-
* Returns `{ cancelled: false }` if the id is unknown, the operation
|
|
22554
|
-
* has already completed, or the `restarting` phase is active.
|
|
22555
|
-
*/
|
|
22556
|
-
cancelBulkUpdate: method(z.object({ id: z.string() }), z.object({ cancelled: z.boolean() }), {
|
|
22557
|
-
kind: "mutation",
|
|
22558
|
-
auth: "admin"
|
|
22559
|
-
}),
|
|
22560
|
-
/**
|
|
22561
|
-
* Lists all currently active (non-completed) bulk updates.
|
|
22562
|
-
* If `nodeId` is provided, filters to only bulk updates targeting
|
|
22563
|
-
* that node. Useful for restoring an in-progress banner on a fresh
|
|
22564
|
-
* page load when the UI reconnects mid-operation.
|
|
22565
|
-
*/
|
|
22566
|
-
listActiveBulkUpdates: method(z.object({ nodeId: z.string().optional() }), z.array(BulkUpdateStateSchema).readonly(), { auth: "admin" }),
|
|
22567
22808
|
getVersions: method(z.object({ name: z.string() }), z.array(PackageVersionInfoSchema).readonly()),
|
|
22568
22809
|
restartAddon: method(z.object({ addonId: z.string() }), RestartAddonResultSchema, {
|
|
22569
22810
|
kind: "mutation",
|
|
@@ -22600,6 +22841,51 @@ var addonsCapability = {
|
|
|
22600
22841
|
auth: "admin"
|
|
22601
22842
|
}),
|
|
22602
22843
|
custom: method(CustomActionInputSchema, z.unknown(), { kind: "mutation" }),
|
|
22844
|
+
/**
|
|
22845
|
+
* Start a lifecycle job (install / update / uninstall / restart) for one
|
|
22846
|
+
* or more addon packages. Returns the `jobId` immediately — the job runs
|
|
22847
|
+
* asynchronously. Observe progress via `EventCategory.AddonsJobProgress` /
|
|
22848
|
+
* `AddonsJobLog` events or poll `getJob`.
|
|
22849
|
+
*
|
|
22850
|
+
* For a single-addon update on the hub the provider also routes
|
|
22851
|
+
* `updatePackage` through this path so the fast swap + atomic-restart
|
|
22852
|
+
* path (`applyStagedAddonUpdate`) is always used.
|
|
22853
|
+
*/
|
|
22854
|
+
startJob: method(z.object({
|
|
22855
|
+
kind: z.enum([
|
|
22856
|
+
"install",
|
|
22857
|
+
"update",
|
|
22858
|
+
"uninstall",
|
|
22859
|
+
"restart"
|
|
22860
|
+
]),
|
|
22861
|
+
targets: z.array(z.object({
|
|
22862
|
+
name: z.string().min(1),
|
|
22863
|
+
version: z.string().min(1)
|
|
22864
|
+
})).min(1),
|
|
22865
|
+
nodeIds: z.array(z.string()).optional()
|
|
22866
|
+
}), z.object({ jobId: z.string() }), {
|
|
22867
|
+
kind: "mutation",
|
|
22868
|
+
auth: "admin"
|
|
22869
|
+
}),
|
|
22870
|
+
/**
|
|
22871
|
+
* Retrieve a lifecycle job by id. Returns `null` when the id is unknown
|
|
22872
|
+
* (e.g. evicted after the retention window).
|
|
22873
|
+
*/
|
|
22874
|
+
getJob: method(z.object({ jobId: z.string() }), lifecycleJobSchema.nullable(), { auth: "admin" }),
|
|
22875
|
+
/**
|
|
22876
|
+
* List lifecycle jobs. When `activeOnly` is true, only jobs still in
|
|
22877
|
+
* `running` state are returned.
|
|
22878
|
+
*/
|
|
22879
|
+
listJobs: method(z.object({ activeOnly: z.boolean().optional() }), z.array(lifecycleJobSchema), { auth: "admin" }),
|
|
22880
|
+
/**
|
|
22881
|
+
* Cancel a lifecycle job that is queued but not yet actively running.
|
|
22882
|
+
* Returns `{ cancelled: false }` if the job is unknown, already in a
|
|
22883
|
+
* terminal state, or actively executing (cannot abort mid-flight).
|
|
22884
|
+
*/
|
|
22885
|
+
cancelJob: method(z.object({ jobId: z.string() }), z.object({ cancelled: z.boolean() }), {
|
|
22886
|
+
kind: "mutation",
|
|
22887
|
+
auth: "admin"
|
|
22888
|
+
}),
|
|
22603
22889
|
onAddonLogs: method(z.object({
|
|
22604
22890
|
addonId: z.string(),
|
|
22605
22891
|
level: LogLevelSchema$1.optional()
|
|
@@ -23561,7 +23847,7 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
23561
23847
|
addonId: null,
|
|
23562
23848
|
access: "create"
|
|
23563
23849
|
},
|
|
23564
|
-
"addons.
|
|
23850
|
+
"addons.cancelJob": {
|
|
23565
23851
|
capName: "addons",
|
|
23566
23852
|
capScope: "system",
|
|
23567
23853
|
addonId: null,
|
|
@@ -23591,7 +23877,7 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
23591
23877
|
addonId: null,
|
|
23592
23878
|
access: "view"
|
|
23593
23879
|
},
|
|
23594
|
-
"addons.
|
|
23880
|
+
"addons.getJob": {
|
|
23595
23881
|
capName: "addons",
|
|
23596
23882
|
capScope: "system",
|
|
23597
23883
|
addonId: null,
|
|
@@ -23639,19 +23925,19 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
23639
23925
|
addonId: null,
|
|
23640
23926
|
access: "view"
|
|
23641
23927
|
},
|
|
23642
|
-
"addons.
|
|
23928
|
+
"addons.listCapabilityProviders": {
|
|
23643
23929
|
capName: "addons",
|
|
23644
23930
|
capScope: "system",
|
|
23645
23931
|
addonId: null,
|
|
23646
23932
|
access: "view"
|
|
23647
23933
|
},
|
|
23648
|
-
"addons.
|
|
23934
|
+
"addons.listFrameworkPackages": {
|
|
23649
23935
|
capName: "addons",
|
|
23650
23936
|
capScope: "system",
|
|
23651
23937
|
addonId: null,
|
|
23652
23938
|
access: "view"
|
|
23653
23939
|
},
|
|
23654
|
-
"addons.
|
|
23940
|
+
"addons.listJobs": {
|
|
23655
23941
|
capName: "addons",
|
|
23656
23942
|
capScope: "system",
|
|
23657
23943
|
addonId: null,
|
|
@@ -23735,7 +24021,7 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
23735
24021
|
addonId: null,
|
|
23736
24022
|
access: "create"
|
|
23737
24023
|
},
|
|
23738
|
-
"addons.
|
|
24024
|
+
"addons.startJob": {
|
|
23739
24025
|
capName: "addons",
|
|
23740
24026
|
capScope: "system",
|
|
23741
24027
|
addonId: null,
|
|
@@ -25961,6 +26247,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
25961
26247
|
addonId: null,
|
|
25962
26248
|
access: "view"
|
|
25963
26249
|
},
|
|
26250
|
+
"pipelineExecutor.getEngineProvisioning": {
|
|
26251
|
+
capName: "pipeline-executor",
|
|
26252
|
+
capScope: "system",
|
|
26253
|
+
addonId: null,
|
|
26254
|
+
access: "view"
|
|
26255
|
+
},
|
|
25964
26256
|
"pipelineExecutor.getGlobalPipelineConfig": {
|
|
25965
26257
|
capName: "pipeline-executor",
|
|
25966
26258
|
capScope: "system",
|
|
@@ -26165,6 +26457,18 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
26165
26457
|
addonId: null,
|
|
26166
26458
|
access: "view"
|
|
26167
26459
|
},
|
|
26460
|
+
"pipelineOrchestrator.getCameraStatus": {
|
|
26461
|
+
capName: "pipeline-orchestrator",
|
|
26462
|
+
capScope: "system",
|
|
26463
|
+
addonId: null,
|
|
26464
|
+
access: "view"
|
|
26465
|
+
},
|
|
26466
|
+
"pipelineOrchestrator.getCameraStatuses": {
|
|
26467
|
+
capName: "pipeline-orchestrator",
|
|
26468
|
+
capScope: "system",
|
|
26469
|
+
addonId: null,
|
|
26470
|
+
access: "view"
|
|
26471
|
+
},
|
|
26168
26472
|
"pipelineOrchestrator.getCameraStepOverrides": {
|
|
26169
26473
|
capName: "pipeline-orchestrator",
|
|
26170
26474
|
capScope: "system",
|
|
@@ -26249,6 +26553,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
|
|
|
26249
26553
|
addonId: null,
|
|
26250
26554
|
access: "create"
|
|
26251
26555
|
},
|
|
26556
|
+
"pipelineOrchestrator.setAgentMaxCameras": {
|
|
26557
|
+
capName: "pipeline-orchestrator",
|
|
26558
|
+
capScope: "system",
|
|
26559
|
+
addonId: null,
|
|
26560
|
+
access: "create"
|
|
26561
|
+
},
|
|
26252
26562
|
"pipelineOrchestrator.setCameraPipelineForAgent": {
|
|
26253
26563
|
capName: "pipeline-orchestrator",
|
|
26254
26564
|
capScope: "system",
|
|
@@ -28022,6 +28332,34 @@ function getCapsByProviderKind(kind) {
|
|
|
28022
28332
|
return out;
|
|
28023
28333
|
}
|
|
28024
28334
|
//#endregion
|
|
28335
|
+
//#region src/lifecycle/framework-swap.ts
|
|
28336
|
+
var frameworkSwapPackageSchema = z.object({
|
|
28337
|
+
name: z.string(),
|
|
28338
|
+
stagedPath: z.string(),
|
|
28339
|
+
backupPath: z.string(),
|
|
28340
|
+
toVersion: z.string(),
|
|
28341
|
+
fromVersion: z.string().nullable()
|
|
28342
|
+
});
|
|
28343
|
+
var pendingFrameworkSwapSchema = z.object({
|
|
28344
|
+
jobId: z.string(),
|
|
28345
|
+
taskId: z.string(),
|
|
28346
|
+
packages: z.array(frameworkSwapPackageSchema),
|
|
28347
|
+
requestedAtMs: z.number(),
|
|
28348
|
+
schemaVersion: z.literal(1)
|
|
28349
|
+
});
|
|
28350
|
+
var frameworkSwapConfirmSchema = z.object({
|
|
28351
|
+
jobId: z.string(),
|
|
28352
|
+
taskId: z.string(),
|
|
28353
|
+
backups: z.array(z.object({
|
|
28354
|
+
name: z.string(),
|
|
28355
|
+
backupPath: z.string(),
|
|
28356
|
+
livePath: z.string()
|
|
28357
|
+
})),
|
|
28358
|
+
appliedAtMs: z.number(),
|
|
28359
|
+
bootAttempts: z.number(),
|
|
28360
|
+
schemaVersion: z.literal(1)
|
|
28361
|
+
});
|
|
28362
|
+
//#endregion
|
|
28025
28363
|
//#region src/util/location-match.ts
|
|
28026
28364
|
/**
|
|
28027
28365
|
* Pure fuzzy matcher for adoption location import. Normalized
|
|
@@ -28359,4 +28697,4 @@ function bindAddonActions(api, addonId, catalog) {
|
|
|
28359
28697
|
return out;
|
|
28360
28698
|
}
|
|
28361
28699
|
//#endregion
|
|
28362
|
-
export { ACCESSORY_LABEL, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationControlStatusSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BATTERY_DEVICE_PROFILE, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraStreamSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_FEATURES, DEFAULT_RETENTION, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_INFO, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderAssignmentSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DetectorOutputSchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindSchema, EventSourceType, ExportSetupFieldSchema, ExportSetupSchema, ExposedDeviceSchema, ExposedResourceSchema, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageStatusSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, MACRO_LABELS, METHOD_ACCESS_MAP, MODEL_FORMATS, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationHistoryEntrySchema, NotificationRuleSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OauthIntegrationDescriptorSchema, ObjectEventSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, RECOGNITION_TYPES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingModeSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingRuleSchema, RecordingScheduleSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RegisteredStreamSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, ScopedTokenSchema, ScopedTokenSummarySchema, ScriptRunnerStatusSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamInfoSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TIMEZONES, TamperStatusSchema, TankStatusSchema, TemperatureSensorStatusSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackSchema, TrackStateSchema, TrackedDetectionSchema, TurnServerSchema, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WidgetHostEnum, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, advancedNotifierCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, applyTransform, asBoolean, asJsonArray, asJsonObject, asNumber, asString, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioMetricsCapability, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, colorCapability, connectivityCapability, consumablesCapability, contactCapability, controlCapability, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, decoderCapability, defineCustomActions, detectionPipelineCapability, deviceAdoptionCapability, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateSchemaFields, errMsg, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, hfModelUrl, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isDeployableToAgent, isDeviceConfigCap, isEvent, lawnMowerControlCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, migrateConfigToBands, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, osdCapability, parseCameraStreamConfig, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, pickPreferredRtspEntry, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, presenceCapability, pressureSensorCapability, privacyMaskCapability, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readinessKey, rebootCapability, recordingCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveDetectionRuntime, resolveDeviceProfile, resolveModelFormat, resolveRunnerId, restreamerCapability, runInferenceStep, scopeKey, scriptRunnerCapability, selectAssignedProfileSlots, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, snapshotProviderCapability, ssoBridgeCapability, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, streamingEngineCapability, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, temperatureSensorCapability, toDeviceSummary, toStreamSourceEntry, toastCapability, turnProviderCapability, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, valveCapability, vibrationCapability, videoclipsCapability, waterHeaterCapability, weatherCapability, webrtcCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|
|
28700
|
+
export { ACCESSORY_LABEL, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationControlStatusSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BATTERY_DEVICE_PROFILE, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusSchema, CameraStreamSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_FEATURES, DEFAULT_RETENTION, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_INFO, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderAssignmentSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DetectorOutputSchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindSchema, EventSourceType, ExportSetupFieldSchema, ExportSetupSchema, ExposedDeviceSchema, ExposedResourceSchema, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageStatusSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, MACRO_LABELS, METHOD_ACCESS_MAP, MODEL_FORMATS, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationHistoryEntrySchema, NotificationRuleSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OauthIntegrationDescriptorSchema, ObjectEventSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, RECOGNITION_TYPES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingModeSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingRuleSchema, RecordingScheduleSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RegisteredStreamSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, ScopedTokenSchema, ScopedTokenSummarySchema, ScriptRunnerStatusSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamInfoSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TIMEZONES, TamperStatusSchema, TankStatusSchema, TemperatureSensorStatusSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackSchema, TrackStateSchema, TrackedDetectionSchema, TurnServerSchema, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WidgetHostEnum, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, advancedNotifierCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, applyTransform, asBoolean, asJsonArray, asJsonObject, asNumber, asString, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioMetricsCapability, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, colorCapability, connectivityCapability, consumablesCapability, contactCapability, controlCapability, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, decoderCapability, defineCustomActions, detectionPipelineCapability, deviceAdoptionCapability, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateSchemaFields, errMsg, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, frameworkSwapConfirmSchema, frameworkSwapPackageSchema, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, hfModelUrl, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isDeployableToAgent, isDeviceConfigCap, isEvent, jobKindSchema, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, migrateConfigToBands, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, osdCapability, parseCameraStreamConfig, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, pendingFrameworkSwapSchema, pickPreferredRtspEntry, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, presenceCapability, pressureSensorCapability, privacyMaskCapability, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readinessKey, rebootCapability, recordingCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveDetectionRuntime, resolveDeviceProfile, resolveModelFormat, resolveRunnerId, restreamerCapability, runInferenceStep, scopeKey, scriptRunnerCapability, selectAssignedProfileSlots, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, snapshotProviderCapability, ssoBridgeCapability, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, streamingEngineCapability, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, toDeviceSummary, toStreamSourceEntry, toastCapability, turnProviderCapability, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, valveCapability, vibrationCapability, videoclipsCapability, waterHeaterCapability, weatherCapability, webrtcCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|