@camstack/types 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/capabilities/device-manager.cap.d.ts +2 -0
- package/dist/capabilities/index.d.ts +1 -1
- package/dist/capabilities/pipeline-analytics.cap.d.ts +11 -0
- package/dist/capabilities/pipeline-runner.cap.d.ts +17 -4
- package/dist/generated/addon-api.d.ts +18 -6
- package/dist/index.js +31 -7
- package/dist/index.mjs +30 -8
- package/package.json +1 -1
|
@@ -213,6 +213,7 @@ export declare const LinkedDeviceSchema: z.ZodObject<{
|
|
|
213
213
|
name: z.ZodString;
|
|
214
214
|
location: z.ZodNullable<z.ZodString>;
|
|
215
215
|
features: z.ZodArray<z.ZodString>;
|
|
216
|
+
producesTrackedEvents: z.ZodOptional<z.ZodBoolean>;
|
|
216
217
|
}, z.core.$strip>;
|
|
217
218
|
export type LinkedDevice = z.infer<typeof LinkedDeviceSchema>;
|
|
218
219
|
export { StreamSourceEntrySchema };
|
|
@@ -1059,6 +1060,7 @@ export declare const deviceManagerCapability: {
|
|
|
1059
1060
|
name: z.ZodString;
|
|
1060
1061
|
location: z.ZodNullable<z.ZodString>;
|
|
1061
1062
|
features: z.ZodArray<z.ZodString>;
|
|
1063
|
+
producesTrackedEvents: z.ZodOptional<z.ZodBoolean>;
|
|
1062
1064
|
}, z.core.$strip>>;
|
|
1063
1065
|
}, z.core.$strip>, import("./capability-definition.js").CapabilityMethodKind>;
|
|
1064
1066
|
/** Get stream sources for a camera device. */
|
|
@@ -84,7 +84,7 @@ export { ModelSubstitutionSchema, PipelineDefaultStepSchema, PipelineEngineChoic
|
|
|
84
84
|
export type { CameraAssignmentStatus, CameraAudioStatus, CameraBrokerProfile, CameraBrokerStatus, CameraDecoderShm, CameraDecoderStatus, CameraDetectionPhase, CameraDetectionProvisioning, CameraDetectionProvisioningState, CameraDetectionStatus, CameraMotionStatus, CameraRecordingMode, CameraRecordingStatus, CameraSourceStatus, CameraSourceStream, CameraStatus, IngestOwner, NodeInferenceDevice, NodeInferenceDevices, } from './pipeline-orchestrator.cap.js';
|
|
85
85
|
export { AgentLoadSummarySchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusSchema, CapabilityBindingsSchema, GlobalMetricsSchema, IngestOwnerSchema, PipelineAssignmentSchema, pipelineOrchestratorCapability, } from './pipeline-orchestrator.cap.js';
|
|
86
86
|
export type { DetailParent, DetailResult, MotionSource, MotionSources, ReportMotionInput, RunDetailSubtreeInput, RunDetailSubtreeResult, RunnerFrameSource, } from './pipeline-runner.cap.js';
|
|
87
|
-
export { MotionSourceEnum, MotionSourcesSchema, pipelineRunnerCapability, ReportMotionInputSchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, } from './pipeline-runner.cap.js';
|
|
87
|
+
export { MotionSourceEnum, MotionSourcesSchema, NativeCropBboxSchema, NativeCropResultSchema, pipelineRunnerCapability, ReportMotionInputSchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, } from './pipeline-runner.cap.js';
|
|
88
88
|
export { AudioChunkInputSchema, AudioClassificationLabelSchema, AudioLevelSchema, BoundingBoxSchema, FrameInputSchema, SpatialDetectionSchema, } from './schemas/detection-shared.js';
|
|
89
89
|
export { CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, OrchestratorMetricsSchema, } from './schemas/orchestrator-metrics.js';
|
|
90
90
|
export type { CameraStream, CamProfile, CamStreamKind, DecodedAudioChunkWire, FrameHandleFormat, ProfileRtspEntry, ProfileSlot, ProfileSlotStatus, SubscribeAudioChunksInput, SubscribeAudioChunksResult, SubscribeFramesInput, SubscribeFramesResult, } from './schemas/streaming-shared.js';
|
|
@@ -200,6 +200,7 @@ declare const TrackSchema: z.ZodObject<{
|
|
|
200
200
|
deviceId: z.ZodNumber;
|
|
201
201
|
className: z.ZodString;
|
|
202
202
|
label: z.ZodOptional<z.ZodString>;
|
|
203
|
+
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
203
204
|
source: z.ZodOptional<z.ZodEnum<{
|
|
204
205
|
sensor: "sensor";
|
|
205
206
|
pipeline: "pipeline";
|
|
@@ -357,6 +358,7 @@ declare const MediaFileKindEnum: z.ZodEnum<{
|
|
|
357
358
|
faceCrop: "faceCrop";
|
|
358
359
|
plateCrop: "plateCrop";
|
|
359
360
|
keyFrame: "keyFrame";
|
|
361
|
+
keyFrameSmall: "keyFrameSmall";
|
|
360
362
|
}>;
|
|
361
363
|
export type MediaFileKind = z.infer<typeof MediaFileKindEnum>;
|
|
362
364
|
declare const MediaFileSchema: z.ZodObject<{
|
|
@@ -372,6 +374,7 @@ declare const MediaFileSchema: z.ZodObject<{
|
|
|
372
374
|
faceCrop: "faceCrop";
|
|
373
375
|
plateCrop: "plateCrop";
|
|
374
376
|
keyFrame: "keyFrame";
|
|
377
|
+
keyFrameSmall: "keyFrameSmall";
|
|
375
378
|
}>;
|
|
376
379
|
base64: z.ZodString;
|
|
377
380
|
sizeBytes: z.ZodNumber;
|
|
@@ -396,6 +399,7 @@ declare const RecentTracksPageSchema: z.ZodObject<{
|
|
|
396
399
|
deviceId: z.ZodNumber;
|
|
397
400
|
className: z.ZodString;
|
|
398
401
|
label: z.ZodOptional<z.ZodString>;
|
|
402
|
+
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
399
403
|
source: z.ZodOptional<z.ZodEnum<{
|
|
400
404
|
sensor: "sensor";
|
|
401
405
|
pipeline: "pipeline";
|
|
@@ -576,6 +580,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
576
580
|
deviceId: z.ZodNumber;
|
|
577
581
|
className: z.ZodString;
|
|
578
582
|
label: z.ZodOptional<z.ZodString>;
|
|
583
|
+
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
579
584
|
source: z.ZodOptional<z.ZodEnum<{
|
|
580
585
|
sensor: "sensor";
|
|
581
586
|
pipeline: "pipeline";
|
|
@@ -644,6 +649,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
644
649
|
deviceId: z.ZodNumber;
|
|
645
650
|
className: z.ZodString;
|
|
646
651
|
label: z.ZodOptional<z.ZodString>;
|
|
652
|
+
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
647
653
|
source: z.ZodOptional<z.ZodEnum<{
|
|
648
654
|
sensor: "sensor";
|
|
649
655
|
pipeline: "pipeline";
|
|
@@ -734,6 +740,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
734
740
|
deviceId: z.ZodNumber;
|
|
735
741
|
className: z.ZodString;
|
|
736
742
|
label: z.ZodOptional<z.ZodString>;
|
|
743
|
+
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
737
744
|
source: z.ZodOptional<z.ZodEnum<{
|
|
738
745
|
sensor: "sensor";
|
|
739
746
|
pipeline: "pipeline";
|
|
@@ -820,6 +827,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
820
827
|
deviceId: z.ZodNumber;
|
|
821
828
|
className: z.ZodString;
|
|
822
829
|
label: z.ZodOptional<z.ZodString>;
|
|
830
|
+
producingDeviceName: z.ZodOptional<z.ZodString>;
|
|
823
831
|
source: z.ZodOptional<z.ZodEnum<{
|
|
824
832
|
sensor: "sensor";
|
|
825
833
|
pipeline: "pipeline";
|
|
@@ -1252,6 +1260,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1252
1260
|
faceCrop: "faceCrop";
|
|
1253
1261
|
plateCrop: "plateCrop";
|
|
1254
1262
|
keyFrame: "keyFrame";
|
|
1263
|
+
keyFrameSmall: "keyFrameSmall";
|
|
1255
1264
|
}>>;
|
|
1256
1265
|
}, z.core.$strip>, z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1257
1266
|
key: z.ZodString;
|
|
@@ -1266,6 +1275,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1266
1275
|
faceCrop: "faceCrop";
|
|
1267
1276
|
plateCrop: "plateCrop";
|
|
1268
1277
|
keyFrame: "keyFrame";
|
|
1278
|
+
keyFrameSmall: "keyFrameSmall";
|
|
1269
1279
|
}>;
|
|
1270
1280
|
base64: z.ZodString;
|
|
1271
1281
|
sizeBytes: z.ZodNumber;
|
|
@@ -1286,6 +1296,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1286
1296
|
faceCrop: "faceCrop";
|
|
1287
1297
|
plateCrop: "plateCrop";
|
|
1288
1298
|
keyFrame: "keyFrame";
|
|
1299
|
+
keyFrameSmall: "keyFrameSmall";
|
|
1289
1300
|
}>;
|
|
1290
1301
|
base64: z.ZodString;
|
|
1291
1302
|
sizeBytes: z.ZodNumber;
|
|
@@ -18,6 +18,10 @@ export declare const NativeCropResultSchema: z.ZodObject<{
|
|
|
18
18
|
bytes: z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>;
|
|
19
19
|
width: z.ZodNumber;
|
|
20
20
|
height: z.ZodNumber;
|
|
21
|
+
tier: z.ZodOptional<z.ZodEnum<{
|
|
22
|
+
native: "native";
|
|
23
|
+
"ram-fullframe": "ram-fullframe";
|
|
24
|
+
}>>;
|
|
21
25
|
}, z.core.$strip>;
|
|
22
26
|
export type NativeCropBbox = z.infer<typeof NativeCropBboxSchema>;
|
|
23
27
|
export type NativeCropCapResult = z.infer<typeof NativeCropResultSchema>;
|
|
@@ -447,10 +451,15 @@ export declare const pipelineRunnerCapability: {
|
|
|
447
451
|
* `FrameHandle` that rode an inference-result event and a normalized `bbox`,
|
|
448
452
|
* the runner asks the decode worker still holding that frame's NATIVE
|
|
449
453
|
* surface to GPU/CPU-crop ONLY the ROI at native res and download just the
|
|
450
|
-
* crop.
|
|
451
|
-
*
|
|
452
|
-
*
|
|
453
|
-
*
|
|
454
|
+
* crop. Routed to the frame's owning node by `handle.nodeId`; NEVER ships a
|
|
455
|
+
* full native frame.
|
|
456
|
+
*
|
|
457
|
+
* Miss behaviour differs by request shape (see `NativeCropResultSchema.tier`):
|
|
458
|
+
* - an ROI (subject-crop) miss returns `null` — the caller reports the miss
|
|
459
|
+
* and retries; it is NEVER handed a ≤640 crop masquerading as native.
|
|
460
|
+
* - a FULL-FRAME miss falls back to the ≤640 RAM `RetainedFrameStore`, tagged
|
|
461
|
+
* `tier: 'ram-fullframe'` (honest lower-res for the blank-frame guard /
|
|
462
|
+
* 640-snapshot resolve). A native hit is tagged `tier: 'native'`.
|
|
454
463
|
*/
|
|
455
464
|
readonly getNativeCrop: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
|
|
456
465
|
handle: z.ZodObject<{
|
|
@@ -482,6 +491,10 @@ export declare const pipelineRunnerCapability: {
|
|
|
482
491
|
bytes: z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>;
|
|
483
492
|
width: z.ZodNumber;
|
|
484
493
|
height: z.ZodNumber;
|
|
494
|
+
tier: z.ZodOptional<z.ZodEnum<{
|
|
495
|
+
native: "native";
|
|
496
|
+
"ram-fullframe": "ram-fullframe";
|
|
497
|
+
}>>;
|
|
485
498
|
}, z.core.$strip>>, import("./capability-definition.js").CapabilityMethodKind>;
|
|
486
499
|
/**
|
|
487
500
|
* Two-plane design: run the DETAIL subtree (crop children —
|
|
@@ -4885,6 +4885,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
4885
4885
|
name: string;
|
|
4886
4886
|
location: string | null;
|
|
4887
4887
|
features: string[];
|
|
4888
|
+
producesTrackedEvents?: boolean | undefined;
|
|
4888
4889
|
}[];
|
|
4889
4890
|
};
|
|
4890
4891
|
meta: object;
|
|
@@ -9659,6 +9660,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
9659
9660
|
state: "idle" | "left" | "moving" | "new" | "entered";
|
|
9660
9661
|
active: boolean;
|
|
9661
9662
|
label?: string | undefined;
|
|
9663
|
+
producingDeviceName?: string | undefined;
|
|
9662
9664
|
source?: "pipeline" | "sensor" | undefined;
|
|
9663
9665
|
classes?: readonly string[] | undefined;
|
|
9664
9666
|
importance?: number | undefined;
|
|
@@ -9723,6 +9725,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
9723
9725
|
state: "idle" | "left" | "moving" | "new" | "entered";
|
|
9724
9726
|
active: boolean;
|
|
9725
9727
|
label?: string | undefined;
|
|
9728
|
+
producingDeviceName?: string | undefined;
|
|
9726
9729
|
source?: "pipeline" | "sensor" | undefined;
|
|
9727
9730
|
classes?: readonly string[] | undefined;
|
|
9728
9731
|
importance?: number | undefined;
|
|
@@ -9803,6 +9806,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
9803
9806
|
state: "idle" | "left" | "moving" | "new" | "entered";
|
|
9804
9807
|
active: boolean;
|
|
9805
9808
|
label?: string | undefined;
|
|
9809
|
+
producingDeviceName?: string | undefined;
|
|
9806
9810
|
source?: "pipeline" | "sensor" | undefined;
|
|
9807
9811
|
classes?: readonly string[] | undefined;
|
|
9808
9812
|
importance?: number | undefined;
|
|
@@ -9872,6 +9876,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
9872
9876
|
state: "idle" | "left" | "moving" | "new" | "entered";
|
|
9873
9877
|
active: boolean;
|
|
9874
9878
|
label?: string | undefined;
|
|
9879
|
+
producingDeviceName?: string | undefined;
|
|
9875
9880
|
source?: "pipeline" | "sensor" | undefined;
|
|
9876
9881
|
classes?: readonly string[] | undefined;
|
|
9877
9882
|
importance?: number | undefined;
|
|
@@ -10197,11 +10202,11 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
10197
10202
|
input: {
|
|
10198
10203
|
[x: string]: unknown;
|
|
10199
10204
|
eventId: string;
|
|
10200
|
-
kind?: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | undefined;
|
|
10205
|
+
kind?: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | undefined;
|
|
10201
10206
|
};
|
|
10202
10207
|
output: readonly {
|
|
10203
10208
|
key: string;
|
|
10204
|
-
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame";
|
|
10209
|
+
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall";
|
|
10205
10210
|
base64: string;
|
|
10206
10211
|
sizeBytes: number;
|
|
10207
10212
|
timestamp: number;
|
|
@@ -10215,7 +10220,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
10215
10220
|
};
|
|
10216
10221
|
output: readonly {
|
|
10217
10222
|
key: string;
|
|
10218
|
-
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame";
|
|
10223
|
+
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall";
|
|
10219
10224
|
base64: string;
|
|
10220
10225
|
sizeBytes: number;
|
|
10221
10226
|
timestamp: number;
|
|
@@ -11922,6 +11927,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
11922
11927
|
bytes: Uint8Array<ArrayBuffer>;
|
|
11923
11928
|
width: number;
|
|
11924
11929
|
height: number;
|
|
11930
|
+
tier?: "native" | "ram-fullframe" | undefined;
|
|
11925
11931
|
} | null;
|
|
11926
11932
|
meta: object;
|
|
11927
11933
|
}>;
|
|
@@ -21689,6 +21695,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
21689
21695
|
name: string;
|
|
21690
21696
|
location: string | null;
|
|
21691
21697
|
features: string[];
|
|
21698
|
+
producesTrackedEvents?: boolean | undefined;
|
|
21692
21699
|
}[];
|
|
21693
21700
|
};
|
|
21694
21701
|
meta: object;
|
|
@@ -26463,6 +26470,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
26463
26470
|
state: "idle" | "left" | "moving" | "new" | "entered";
|
|
26464
26471
|
active: boolean;
|
|
26465
26472
|
label?: string | undefined;
|
|
26473
|
+
producingDeviceName?: string | undefined;
|
|
26466
26474
|
source?: "pipeline" | "sensor" | undefined;
|
|
26467
26475
|
classes?: readonly string[] | undefined;
|
|
26468
26476
|
importance?: number | undefined;
|
|
@@ -26527,6 +26535,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
26527
26535
|
state: "idle" | "left" | "moving" | "new" | "entered";
|
|
26528
26536
|
active: boolean;
|
|
26529
26537
|
label?: string | undefined;
|
|
26538
|
+
producingDeviceName?: string | undefined;
|
|
26530
26539
|
source?: "pipeline" | "sensor" | undefined;
|
|
26531
26540
|
classes?: readonly string[] | undefined;
|
|
26532
26541
|
importance?: number | undefined;
|
|
@@ -26607,6 +26616,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
26607
26616
|
state: "idle" | "left" | "moving" | "new" | "entered";
|
|
26608
26617
|
active: boolean;
|
|
26609
26618
|
label?: string | undefined;
|
|
26619
|
+
producingDeviceName?: string | undefined;
|
|
26610
26620
|
source?: "pipeline" | "sensor" | undefined;
|
|
26611
26621
|
classes?: readonly string[] | undefined;
|
|
26612
26622
|
importance?: number | undefined;
|
|
@@ -26676,6 +26686,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
26676
26686
|
state: "idle" | "left" | "moving" | "new" | "entered";
|
|
26677
26687
|
active: boolean;
|
|
26678
26688
|
label?: string | undefined;
|
|
26689
|
+
producingDeviceName?: string | undefined;
|
|
26679
26690
|
source?: "pipeline" | "sensor" | undefined;
|
|
26680
26691
|
classes?: readonly string[] | undefined;
|
|
26681
26692
|
importance?: number | undefined;
|
|
@@ -27001,11 +27012,11 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
27001
27012
|
input: {
|
|
27002
27013
|
[x: string]: unknown;
|
|
27003
27014
|
eventId: string;
|
|
27004
|
-
kind?: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | undefined;
|
|
27015
|
+
kind?: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | undefined;
|
|
27005
27016
|
};
|
|
27006
27017
|
output: readonly {
|
|
27007
27018
|
key: string;
|
|
27008
|
-
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame";
|
|
27019
|
+
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall";
|
|
27009
27020
|
base64: string;
|
|
27010
27021
|
sizeBytes: number;
|
|
27011
27022
|
timestamp: number;
|
|
@@ -27019,7 +27030,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
27019
27030
|
};
|
|
27020
27031
|
output: readonly {
|
|
27021
27032
|
key: string;
|
|
27022
|
-
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame";
|
|
27033
|
+
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall";
|
|
27023
27034
|
base64: string;
|
|
27024
27035
|
sizeBytes: number;
|
|
27025
27036
|
timestamp: number;
|
|
@@ -28726,6 +28737,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
28726
28737
|
bytes: Uint8Array<ArrayBuffer>;
|
|
28727
28738
|
width: number;
|
|
28728
28739
|
height: number;
|
|
28740
|
+
tier?: "native" | "ram-fullframe" | undefined;
|
|
28729
28741
|
} | null;
|
|
28730
28742
|
meta: object;
|
|
28731
28743
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -8496,7 +8496,21 @@ var NativeCropResultSchema = zod.z.object({
|
|
|
8496
8496
|
/** Packed rgb (24-bit) pixels of the crop. */
|
|
8497
8497
|
bytes: zod.z.instanceof(Uint8Array),
|
|
8498
8498
|
width: zod.z.number().int().positive(),
|
|
8499
|
-
height: zod.z.number().int().positive()
|
|
8499
|
+
height: zod.z.number().int().positive(),
|
|
8500
|
+
/**
|
|
8501
|
+
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
8502
|
+
* `keyFrame`) can reject a degraded fallback:
|
|
8503
|
+
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
8504
|
+
* quality path).
|
|
8505
|
+
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
8506
|
+
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
8507
|
+
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
8508
|
+
*
|
|
8509
|
+
* OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
|
|
8510
|
+
* treated as `native` (accepted) by every consumer so mixed-version clusters
|
|
8511
|
+
* keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
|
|
8512
|
+
*/
|
|
8513
|
+
tier: zod.z.enum(["native", "ram-fullframe"]).optional()
|
|
8500
8514
|
});
|
|
8501
8515
|
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
8502
8516
|
* originating detection, in FRAME-space coordinates. Reuses
|
|
@@ -8974,10 +8988,15 @@ var pipelineRunnerCapability = {
|
|
|
8974
8988
|
* `FrameHandle` that rode an inference-result event and a normalized `bbox`,
|
|
8975
8989
|
* the runner asks the decode worker still holding that frame's NATIVE
|
|
8976
8990
|
* surface to GPU/CPU-crop ONLY the ROI at native res and download just the
|
|
8977
|
-
* crop.
|
|
8978
|
-
*
|
|
8979
|
-
*
|
|
8980
|
-
*
|
|
8991
|
+
* crop. Routed to the frame's owning node by `handle.nodeId`; NEVER ships a
|
|
8992
|
+
* full native frame.
|
|
8993
|
+
*
|
|
8994
|
+
* Miss behaviour differs by request shape (see `NativeCropResultSchema.tier`):
|
|
8995
|
+
* - an ROI (subject-crop) miss returns `null` — the caller reports the miss
|
|
8996
|
+
* and retries; it is NEVER handed a ≤640 crop masquerading as native.
|
|
8997
|
+
* - a FULL-FRAME miss falls back to the ≤640 RAM `RetainedFrameStore`, tagged
|
|
8998
|
+
* `tier: 'ram-fullframe'` (honest lower-res for the blank-frame guard /
|
|
8999
|
+
* 640-snapshot resolve). A native hit is tagged `tier: 'native'`.
|
|
8981
9000
|
*/
|
|
8982
9001
|
getNativeCrop: require_sleep.method(zod.z.object({
|
|
8983
9002
|
handle: require_sleep.FrameHandleSchema,
|
|
@@ -16642,7 +16661,8 @@ var LinkedDeviceSchema = zod.z.object({
|
|
|
16642
16661
|
deviceId: zod.z.number(),
|
|
16643
16662
|
name: zod.z.string(),
|
|
16644
16663
|
location: zod.z.string().nullable(),
|
|
16645
|
-
features: zod.z.array(zod.z.string())
|
|
16664
|
+
features: zod.z.array(zod.z.string()),
|
|
16665
|
+
producesTrackedEvents: zod.z.boolean().optional()
|
|
16646
16666
|
});
|
|
16647
16667
|
var SavedDeviceRowSchema = zod.z.object({
|
|
16648
16668
|
/** Numeric id reserved at allocateDeviceId time. */
|
|
@@ -18914,6 +18934,7 @@ var TrackSchema = zod.z.object({
|
|
|
18914
18934
|
deviceId: zod.z.number(),
|
|
18915
18935
|
className: zod.z.string(),
|
|
18916
18936
|
label: zod.z.string().optional(),
|
|
18937
|
+
producingDeviceName: zod.z.string().optional(),
|
|
18917
18938
|
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
18918
18939
|
source: TrackSourceSchema.optional(),
|
|
18919
18940
|
firstSeen: zod.z.number(),
|
|
@@ -19051,7 +19072,8 @@ var MediaFileKindEnum = zod.z.enum([
|
|
|
19051
19072
|
"fullFrameBoxed",
|
|
19052
19073
|
"faceCrop",
|
|
19053
19074
|
"plateCrop",
|
|
19054
|
-
"keyFrame"
|
|
19075
|
+
"keyFrame",
|
|
19076
|
+
"keyFrameSmall"
|
|
19055
19077
|
]);
|
|
19056
19078
|
var MediaFileSchema = zod.z.object({
|
|
19057
19079
|
key: zod.z.string(),
|
|
@@ -32070,6 +32092,8 @@ exports.MotionZonePatchSchema = MotionZonePatchSchema;
|
|
|
32070
32092
|
exports.MotionZoneRegionSchema = MotionZoneRegionSchema;
|
|
32071
32093
|
exports.MotionZoneStatusSchema = MotionZoneStatusSchema;
|
|
32072
32094
|
exports.MqttBrokerStatusSchema = StatusSchema;
|
|
32095
|
+
exports.NativeCropBboxSchema = NativeCropBboxSchema;
|
|
32096
|
+
exports.NativeCropResultSchema = NativeCropResultSchema;
|
|
32073
32097
|
exports.NativeDetectionSchema = NativeDetectionSchema;
|
|
32074
32098
|
exports.NativeObjectClassEnum = NativeObjectClassEnum;
|
|
32075
32099
|
exports.NativeObjectDetectionRuntimeStateSchema = NativeObjectDetectionRuntimeStateSchema;
|
package/dist/index.mjs
CHANGED
|
@@ -8495,7 +8495,21 @@ var NativeCropResultSchema = z.object({
|
|
|
8495
8495
|
/** Packed rgb (24-bit) pixels of the crop. */
|
|
8496
8496
|
bytes: z.instanceof(Uint8Array),
|
|
8497
8497
|
width: z.number().int().positive(),
|
|
8498
|
-
height: z.number().int().positive()
|
|
8498
|
+
height: z.number().int().positive(),
|
|
8499
|
+
/**
|
|
8500
|
+
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
8501
|
+
* `keyFrame`) can reject a degraded fallback:
|
|
8502
|
+
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
8503
|
+
* quality path).
|
|
8504
|
+
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
8505
|
+
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
8506
|
+
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
8507
|
+
*
|
|
8508
|
+
* OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
|
|
8509
|
+
* treated as `native` (accepted) by every consumer so mixed-version clusters
|
|
8510
|
+
* keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
|
|
8511
|
+
*/
|
|
8512
|
+
tier: z.enum(["native", "ram-fullframe"]).optional()
|
|
8499
8513
|
});
|
|
8500
8514
|
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
8501
8515
|
* originating detection, in FRAME-space coordinates. Reuses
|
|
@@ -8973,10 +8987,15 @@ var pipelineRunnerCapability = {
|
|
|
8973
8987
|
* `FrameHandle` that rode an inference-result event and a normalized `bbox`,
|
|
8974
8988
|
* the runner asks the decode worker still holding that frame's NATIVE
|
|
8975
8989
|
* surface to GPU/CPU-crop ONLY the ROI at native res and download just the
|
|
8976
|
-
* crop.
|
|
8977
|
-
*
|
|
8978
|
-
*
|
|
8979
|
-
*
|
|
8990
|
+
* crop. Routed to the frame's owning node by `handle.nodeId`; NEVER ships a
|
|
8991
|
+
* full native frame.
|
|
8992
|
+
*
|
|
8993
|
+
* Miss behaviour differs by request shape (see `NativeCropResultSchema.tier`):
|
|
8994
|
+
* - an ROI (subject-crop) miss returns `null` — the caller reports the miss
|
|
8995
|
+
* and retries; it is NEVER handed a ≤640 crop masquerading as native.
|
|
8996
|
+
* - a FULL-FRAME miss falls back to the ≤640 RAM `RetainedFrameStore`, tagged
|
|
8997
|
+
* `tier: 'ram-fullframe'` (honest lower-res for the blank-frame guard /
|
|
8998
|
+
* 640-snapshot resolve). A native hit is tagged `tier: 'native'`.
|
|
8980
8999
|
*/
|
|
8981
9000
|
getNativeCrop: method(z.object({
|
|
8982
9001
|
handle: FrameHandleSchema,
|
|
@@ -16641,7 +16660,8 @@ var LinkedDeviceSchema = z.object({
|
|
|
16641
16660
|
deviceId: z.number(),
|
|
16642
16661
|
name: z.string(),
|
|
16643
16662
|
location: z.string().nullable(),
|
|
16644
|
-
features: z.array(z.string())
|
|
16663
|
+
features: z.array(z.string()),
|
|
16664
|
+
producesTrackedEvents: z.boolean().optional()
|
|
16645
16665
|
});
|
|
16646
16666
|
var SavedDeviceRowSchema = z.object({
|
|
16647
16667
|
/** Numeric id reserved at allocateDeviceId time. */
|
|
@@ -18913,6 +18933,7 @@ var TrackSchema = z.object({
|
|
|
18913
18933
|
deviceId: z.number(),
|
|
18914
18934
|
className: z.string(),
|
|
18915
18935
|
label: z.string().optional(),
|
|
18936
|
+
producingDeviceName: z.string().optional(),
|
|
18916
18937
|
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
18917
18938
|
source: TrackSourceSchema.optional(),
|
|
18918
18939
|
firstSeen: z.number(),
|
|
@@ -19050,7 +19071,8 @@ var MediaFileKindEnum = z.enum([
|
|
|
19050
19071
|
"fullFrameBoxed",
|
|
19051
19072
|
"faceCrop",
|
|
19052
19073
|
"plateCrop",
|
|
19053
|
-
"keyFrame"
|
|
19074
|
+
"keyFrame",
|
|
19075
|
+
"keyFrameSmall"
|
|
19054
19076
|
]);
|
|
19055
19077
|
var MediaFileSchema = z.object({
|
|
19056
19078
|
key: z.string(),
|
|
@@ -31710,4 +31732,4 @@ function enumerateInferenceDevices(hw) {
|
|
|
31710
31732
|
return out;
|
|
31711
31733
|
}
|
|
31712
31734
|
//#endregion
|
|
31713
|
-
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, AttachmentMediaTypeSchema, AttachmentSchema, 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, BacklightModeSchema, 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_NODE_PIN_CONTEXT_KEY, 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, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_RETENTION, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceLinkModeSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventSourceType, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionEvalError, ExpressionParseError, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LabelDefinitionSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, MODEL_FORMATS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionSchema, NotificationFormatSchema, NotificationHistoryEntrySchema, NotificationRuleSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RESERVED_BINDING_NAMES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingModeSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingRuleSchema, RecordingScheduleSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RenderedAsSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, 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, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMEZONES, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestResultSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackProjectionSchema, TrackSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, 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, buildEventKindDescriptor, buildModelVariantGroups, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, compileExpression, compileExpressionSafe, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dayNightCapability, decoderCapability, defaultDeviceFor, defineCustomActions, describeModelVariant, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateLinkExpression, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isArrayOutputSchema, isCollectionArrayMethod, isDeployableToAgent, isDeviceConfigCap, isEvent, isNode, isObjectInput, isVoidInput, jobKindSchema, kebabToCamel, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, migrateConfigToBands, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, petFeederCapability, pickAccessoryControl, pickPreferredRtspEntry, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readNodePin, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveMutate, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, runInferenceStep, runtimeDevices, sceneMonitorCapability, scopeKey, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, supportedRuntimes, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, textToHtml, toDeviceSummary, toExpressionValue, toStreamSourceEntry, toastCapability, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, valveCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|
|
31735
|
+
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, AttachmentMediaTypeSchema, AttachmentSchema, 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, BacklightModeSchema, 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_NODE_PIN_CONTEXT_KEY, 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, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_RETENTION, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceLinkModeSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventSourceType, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionEvalError, ExpressionParseError, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LabelDefinitionSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, MODEL_FORMATS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, NativeCropBboxSchema, NativeCropResultSchema, NativeDetectionSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionSchema, NotificationFormatSchema, NotificationHistoryEntrySchema, NotificationRuleSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RESERVED_BINDING_NAMES, RUNTIME_DEFAULTS, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingModeSchema, RecordingRangeSchema, RecordingRetentionSchema, RecordingRuleSchema, RecordingScheduleSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RenderedAsSchema, ReportMotionInputSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, 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, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMEZONES, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestResultSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackProjectionSchema, TrackSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VibrationStatusSchema, VideoEncodeSchema, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, 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, buildEventKindDescriptor, buildModelVariantGroups, buildStreamParamsConfigSchema, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, carbonMonoxideCapability, cellsToRects, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, compileExpression, compileExpressionSafe, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, cosineSimilarity, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dayNightCapability, decoderCapability, defaultDeviceFor, defineCustomActions, describeModelVariant, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceStateCapability, deviceStatusCapability, doorbellCapability, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateLinkExpression, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, isAgentOnlyPlacement, isArrayOutputSchema, isCollectionArrayMethod, isDeployableToAgent, isDeviceConfigCap, isEvent, isNode, isObjectInput, isVoidInput, jobKindSchema, kebabToCamel, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logDestinationCapability, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, metricsProviderCapability, migrateConfigToBands, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeUnit, notificationOutputCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, petFeederCapability, pickAccessoryControl, pickPreferredRtspEntry, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readNodePin, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveMutate, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, runInferenceStep, runtimeDevices, sceneMonitorCapability, scopeKey, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, storageCapability, storageEvictableCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, supportedRuntimes, switchCapability, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, textToHtml, toDeviceSummary, toExpressionValue, toStreamSourceEntry, toastCapability, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, valveCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
|