@camstack/addon-model-studio 1.1.65 → 1.1.67
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/{MotionZonesSettings-CSCscEA_.mjs → MotionZonesSettings-Db0aScD3.mjs} +2 -2
- package/dist/{PrivacyMaskSettings-DSQAiDGn.mjs → PrivacyMaskSettings-cR3N_ytC.mjs} +4 -4
- package/dist/{SceneMonitorEditor-DtQhcKSo.mjs → SceneMonitorEditor-DXVHDH0R.mjs} +3 -3
- package/dist/_stub.js +622 -614
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-DfRzGW52.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-C8IQbCbH.mjs} +4 -4
- package/dist/_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BCT-V4ES.mjs +26 -0
- package/dist/{hostInit-jqpYQcCX.mjs → hostInit-CkaBFfbc.mjs} +3 -3
- package/dist/model-studio.addon.js +282 -4
- package/dist/model-studio.addon.mjs +282 -4
- package/dist/{player-overlays-VHxUWGXW.mjs → player-overlays-lBkRCWTl.mjs} +1 -1
- package/dist/remoteEntry.js +1 -1
- package/dist/{responsive-CL6N6yeH.mjs → responsive-yDg54Ukl.mjs} +1 -1
- package/dist/{square-N3Udlp-x.mjs → square-CRbl_bVG.mjs} +1 -1
- package/dist/{trash-2-B_yvxJJq.mjs → trash-2-6w-9eKkh.mjs} +1 -1
- package/dist/{use-device-snapshot-Dxqt0y0z.mjs → use-device-snapshot-czNca4dI.mjs} +1 -1
- package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-BT6OEgJQ.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-C0fXheVA.mjs} +1 -1
- package/package.json +1 -1
- package/dist/_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BpnVF-LU.mjs +0 -26
|
@@ -8564,6 +8564,20 @@ var RelocateJobSchema = object({
|
|
|
8564
8564
|
* in its row, not in its name, so `MediaRelocateEngine` never reconciles one.
|
|
8565
8565
|
*/
|
|
8566
8566
|
rowsReconciled: number().int().nonnegative().optional(),
|
|
8567
|
+
/**
|
|
8568
|
+
* Rows this run FORGOT because the file they name is not on disk.
|
|
8569
|
+
*
|
|
8570
|
+
* The mover derived the path from the row's own fields and `stat`ed it; an
|
|
8571
|
+
* ENOENT there is a per-path confirmation that the segment is gone (D296),
|
|
8572
|
+
* and the durable row is dropped through the same channel eviction uses. It
|
|
8573
|
+
* is reported for the same reason `rowsReconciled` is: this is a durable
|
|
8574
|
+
* mutation nobody asked for, and a migration that quietly erases hour rows is
|
|
8575
|
+
* the same failure as one that quietly skips them (D295).
|
|
8576
|
+
*
|
|
8577
|
+
* The production drain of 2026-08-30 would have reported 11 074 here — the
|
|
8578
|
+
* ledger claimed 5.65 GB of footage that no longer existed.
|
|
8579
|
+
*/
|
|
8580
|
+
rowsForgotten: number().int().nonnegative().optional(),
|
|
8567
8581
|
startedAt: number(),
|
|
8568
8582
|
finishedAt: number().nullable(),
|
|
8569
8583
|
error: string().nullable()
|
|
@@ -8927,6 +8941,91 @@ var RelocateResidueSchema = object({
|
|
|
8927
8941
|
segments: number().int().nonnegative(),
|
|
8928
8942
|
bytes: number().int().nonnegative()
|
|
8929
8943
|
}).nullable();
|
|
8944
|
+
/**
|
|
8945
|
+
* Ask one location whether its durable hour rows describe the disk — the walk
|
|
8946
|
+
* (D319).
|
|
8947
|
+
*
|
|
8948
|
+
* `apply` DEFAULTS TO FALSE and that default is the product: the operator's
|
|
8949
|
+
* missing tool is the question, and the dry run is how they sanity-check the
|
|
8950
|
+
* destructive run before authorising it.
|
|
8951
|
+
*/
|
|
8952
|
+
var LedgerWalkInputSchema = object({
|
|
8953
|
+
locationId: string().min(1),
|
|
8954
|
+
/** Forget the confirmed-absent rows, rather than only counting them. */
|
|
8955
|
+
apply: boolean().optional(),
|
|
8956
|
+
/** Narrow to one camera. */
|
|
8957
|
+
deviceId: number().int().positive().optional(),
|
|
8958
|
+
/** Narrow to these recording profiles; empty/absent = every profile. */
|
|
8959
|
+
profiles: array(string().min(1)).optional()
|
|
8960
|
+
});
|
|
8961
|
+
/** Why a whole walk did nothing. Every one leaves the ledger untouched. */
|
|
8962
|
+
var LedgerWalkRefusalSchema = _enum([
|
|
8963
|
+
"location-unknown",
|
|
8964
|
+
"source-writable",
|
|
8965
|
+
"no-ledger",
|
|
8966
|
+
"archive-unreadable",
|
|
8967
|
+
"anchor-absent",
|
|
8968
|
+
"anchor-unreadable",
|
|
8969
|
+
"anchor-moved"
|
|
8970
|
+
]);
|
|
8971
|
+
_enum([
|
|
8972
|
+
"live-tail",
|
|
8973
|
+
"listing-error",
|
|
8974
|
+
"path-mismatch",
|
|
8975
|
+
"durable-refused"
|
|
8976
|
+
]);
|
|
8977
|
+
/** Every skip reason, always present, always a number — so a reason that never
|
|
8978
|
+
* fired reports as zero rather than absent and the report shape is constant
|
|
8979
|
+
* between passes. Spelled out rather than `z.record` for exactly that. */
|
|
8980
|
+
var LedgerWalkSkipCountsSchema = object({
|
|
8981
|
+
"live-tail": number().int().nonnegative(),
|
|
8982
|
+
"listing-error": number().int().nonnegative(),
|
|
8983
|
+
"path-mismatch": number().int().nonnegative(),
|
|
8984
|
+
"durable-refused": number().int().nonnegative()
|
|
8985
|
+
});
|
|
8986
|
+
/** One camera's share of a walk, so a report names cameras and not rows. */
|
|
8987
|
+
var LedgerWalkDeviceReportSchema = object({
|
|
8988
|
+
deviceId: number().int(),
|
|
8989
|
+
hoursWalked: number().int().nonnegative(),
|
|
8990
|
+
hoursMissing: number().int().nonnegative(),
|
|
8991
|
+
ghostSegments: number().int().nonnegative(),
|
|
8992
|
+
ghostBytes: number().int().nonnegative(),
|
|
8993
|
+
forgottenSegments: number().int().nonnegative(),
|
|
8994
|
+
orphanFiles: number().int().nonnegative()
|
|
8995
|
+
});
|
|
8996
|
+
/**
|
|
8997
|
+
* What one walk claimed, listed, found and (only when armed) forgot.
|
|
8998
|
+
*
|
|
8999
|
+
* `archiveSegments` is the **M** and `segmentsClaimed` the **N** (D295), so a
|
|
9000
|
+
* walk that saw a fraction of the location is visible in its own report rather
|
|
9001
|
+
* than in the absence of one.
|
|
9002
|
+
*/
|
|
9003
|
+
var LedgerWalkReportSchema = object({
|
|
9004
|
+
locationId: string(),
|
|
9005
|
+
applied: boolean(),
|
|
9006
|
+
refused: LedgerWalkRefusalSchema.nullable(),
|
|
9007
|
+
archiveSegments: number().int().nonnegative().nullable(),
|
|
9008
|
+
archiveBytes: number().int().nonnegative().nullable(),
|
|
9009
|
+
hoursClaimed: number().int().nonnegative(),
|
|
9010
|
+
hoursWalked: number().int().nonnegative(),
|
|
9011
|
+
hoursMissing: number().int().nonnegative(),
|
|
9012
|
+
/** `readdir` calls issued — the cost, stated in the unit that is paid. */
|
|
9013
|
+
listings: number().int().nonnegative(),
|
|
9014
|
+
segmentsClaimed: number().int().nonnegative(),
|
|
9015
|
+
ghostSegments: number().int().nonnegative(),
|
|
9016
|
+
ghostBytes: number().int().nonnegative(),
|
|
9017
|
+
ghostHoursWhole: number().int().nonnegative(),
|
|
9018
|
+
forgottenSegments: number().int().nonnegative(),
|
|
9019
|
+
forgottenBytes: number().int().nonnegative(),
|
|
9020
|
+
/** Files under a claimed hour that no durable row names. Never deleted. */
|
|
9021
|
+
orphanFiles: number().int().nonnegative(),
|
|
9022
|
+
orphanSample: array(string()).readonly(),
|
|
9023
|
+
hoursSkipped: number().int().nonnegative(),
|
|
9024
|
+
skippedByReason: LedgerWalkSkipCountsSchema,
|
|
9025
|
+
/** The walk stopped at its per-pass hour bound with claims unwalked. */
|
|
9026
|
+
bounded: boolean(),
|
|
9027
|
+
byDevice: array(LedgerWalkDeviceReportSchema).readonly()
|
|
9028
|
+
});
|
|
8930
9029
|
/** How many rows a media pass would still act on against a given target — the
|
|
8931
9030
|
* media lane's denominator AND its residue, from ONE derivation so the two can
|
|
8932
9031
|
* never disagree. `null` = the count could not be taken. */
|
|
@@ -19262,13 +19361,15 @@ var ListGroupsPageSchema = object({
|
|
|
19262
19361
|
groups: array(AnalyticsGroupRecordSchema).readonly(),
|
|
19263
19362
|
nextCursor: string().nullable()
|
|
19264
19363
|
});
|
|
19364
|
+
var KEY_EVENTS_DEFAULT_LIMIT = 50;
|
|
19365
|
+
var KEY_EVENTS_MAX_LIMIT = 200;
|
|
19265
19366
|
var KeyEventQueryInput = object({
|
|
19266
19367
|
deviceId: number(),
|
|
19267
19368
|
/** Window lower bound (track firstSeen ≥ since). */
|
|
19268
19369
|
since: number(),
|
|
19269
19370
|
/** Window upper bound (track firstSeen ≤ until). */
|
|
19270
19371
|
until: number(),
|
|
19271
|
-
limit: number().int().min(1).max(
|
|
19372
|
+
limit: number().int().min(1).max(KEY_EVENTS_MAX_LIMIT).default(KEY_EVENTS_DEFAULT_LIMIT),
|
|
19272
19373
|
/** Drop tracks scoring below this importance. */
|
|
19273
19374
|
minImportance: number().min(0).max(1).optional(),
|
|
19274
19375
|
/** Restrict to a single class (e.g. 'person'). */
|
|
@@ -19290,6 +19391,32 @@ var KeyEventSchema = object({
|
|
|
19290
19391
|
...TrackFlagFields,
|
|
19291
19392
|
...TrackRetrainFields
|
|
19292
19393
|
});
|
|
19394
|
+
/** `getKeyEvents`' window and filters, asked of a SET of cameras at once. */
|
|
19395
|
+
var KeyEventBatchQueryInput = object({
|
|
19396
|
+
deviceIds: array(number()).min(1).max(200),
|
|
19397
|
+
since: number(),
|
|
19398
|
+
until: number(),
|
|
19399
|
+
/** Applied PER CAMERA, exactly as `getKeyEvents.limit` is — never a total
|
|
19400
|
+
* across the set, which would let a busy camera starve a quiet one of its
|
|
19401
|
+
* rows and change what the merged feed contains. */
|
|
19402
|
+
limit: number().int().min(1).max(KEY_EVENTS_MAX_LIMIT).default(KEY_EVENTS_DEFAULT_LIMIT),
|
|
19403
|
+
minImportance: number().min(0).max(1).optional(),
|
|
19404
|
+
classFilter: string().optional()
|
|
19405
|
+
});
|
|
19406
|
+
/**
|
|
19407
|
+
* One camera's key events in a batch answer.
|
|
19408
|
+
*
|
|
19409
|
+
* The row exists for every requested id. `getKeyEvents` degrades to `[]` on
|
|
19410
|
+
* error rather than throwing, so a camera whose store read failed and one with
|
|
19411
|
+
* no events in the window were ALREADY indistinguishable per camera — the
|
|
19412
|
+
* batch does not make that worse, and the row keeps the deviceId the single
|
|
19413
|
+
* method's output never carried (the caller used to stamp it from the fan-out
|
|
19414
|
+
* key, which only worked because there was one query per camera).
|
|
19415
|
+
*/
|
|
19416
|
+
var KeyEventsForDeviceSchema = object({
|
|
19417
|
+
deviceId: number(),
|
|
19418
|
+
events: array(KeyEventSchema).readonly()
|
|
19419
|
+
});
|
|
19293
19420
|
object({
|
|
19294
19421
|
trackId: string(),
|
|
19295
19422
|
className: string(),
|
|
@@ -19509,6 +19636,47 @@ var RebuildStatusSchema = object({
|
|
|
19509
19636
|
/** Present when the pass ended by throwing. */
|
|
19510
19637
|
error: string().nullable()
|
|
19511
19638
|
});
|
|
19639
|
+
/**
|
|
19640
|
+
* Acknowledgement that a debug-media reclaim STARTED.
|
|
19641
|
+
*
|
|
19642
|
+
* The pass is paced at ~2 MB/s over a standing 100 GB — tens of minutes — so
|
|
19643
|
+
* it runs detached and this returns immediately. Awaiting it is how the
|
|
19644
|
+
* `addons.custom` door hit the 60 s UDS deadline while the walk carried on
|
|
19645
|
+
* with no status. Poll {@link pipelineAnalyticsCapability.methods.getMediaReclaimStatus}.
|
|
19646
|
+
*/
|
|
19647
|
+
var MediaReclaimStartResultSchema = object({
|
|
19648
|
+
started: boolean(),
|
|
19649
|
+
/** True when a pass was already running; the new request is ignored. */
|
|
19650
|
+
alreadyRunning: boolean()
|
|
19651
|
+
});
|
|
19652
|
+
var MediaReclaimInputSchema = object({
|
|
19653
|
+
mode: _enum(["report", "reclaim"]).default("report"),
|
|
19654
|
+
scopes: array(_enum(["motion-still", "track-filmstrip"])).min(1).optional(),
|
|
19655
|
+
deviceIds: array(number().int()).min(1).optional(),
|
|
19656
|
+
restart: boolean().optional(),
|
|
19657
|
+
pageSize: number().int().min(50).max(5e3).optional(),
|
|
19658
|
+
maxRowsPerDevice: number().int().min(1).max(5e5).optional(),
|
|
19659
|
+
maxReclaimPerDevice: number().int().min(1).max(5e5).optional(),
|
|
19660
|
+
maxBytesPerRun: number().int().min(1).optional(),
|
|
19661
|
+
budgetMinutes: number().int().min(1).max(720).optional(),
|
|
19662
|
+
throttleBytesPerSec: number().int().min(64 * 1024).optional(),
|
|
19663
|
+
graceMinutes: number().int().min(1).max(10080).optional()
|
|
19664
|
+
});
|
|
19665
|
+
var MediaReclaimStatusSchema = object({
|
|
19666
|
+
running: boolean(),
|
|
19667
|
+
mode: _enum(["report", "reclaim"]).nullable(),
|
|
19668
|
+
totalExamined: number(),
|
|
19669
|
+
totalEligible: number(),
|
|
19670
|
+
totalReclaimed: number(),
|
|
19671
|
+
totalBytesReclaimed: number(),
|
|
19672
|
+
totalRefused: number(),
|
|
19673
|
+
/** Device+scope windows finished in this pass. */
|
|
19674
|
+
devicesDone: number(),
|
|
19675
|
+
complete: boolean().nullable(),
|
|
19676
|
+
startedAtMs: number().nullable(),
|
|
19677
|
+
finishedAtMs: number().nullable(),
|
|
19678
|
+
error: string().nullable()
|
|
19679
|
+
});
|
|
19512
19680
|
var ReplayFrameInputSchema = object({
|
|
19513
19681
|
timestamp: number(),
|
|
19514
19682
|
frame: PipelineRunResultBridge
|
|
@@ -19559,7 +19727,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19559
19727
|
until: number().optional(),
|
|
19560
19728
|
kinds: array(string()).optional(),
|
|
19561
19729
|
limit: number().int().min(1).max(MAX_EVENT_QUERY_LIMIT).default(DEFAULT_EVENT_QUERY_LIMIT)
|
|
19562
|
-
}), array(SensorEventSchema).readonly()), method(KeyEventQueryInput, array(KeyEventSchema).readonly()), method(object({
|
|
19730
|
+
}), array(SensorEventSchema).readonly()), method(KeyEventQueryInput, array(KeyEventSchema).readonly()), method(KeyEventBatchQueryInput, array(KeyEventsForDeviceSchema).readonly()), method(object({
|
|
19563
19731
|
deviceId: number(),
|
|
19564
19732
|
since: number(),
|
|
19565
19733
|
until: number(),
|
|
@@ -19650,6 +19818,12 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19650
19818
|
}), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
|
|
19651
19819
|
kind: "query",
|
|
19652
19820
|
auth: "admin"
|
|
19821
|
+
}), method(MediaReclaimInputSchema, MediaReclaimStartResultSchema, {
|
|
19822
|
+
kind: "mutation",
|
|
19823
|
+
auth: "admin"
|
|
19824
|
+
}), method(object({}), MediaReclaimStatusSchema, {
|
|
19825
|
+
kind: "query",
|
|
19826
|
+
auth: "admin"
|
|
19653
19827
|
}), method(object({ deviceIds: array(number()).optional() }), TrainingExportSummarySchema, {
|
|
19654
19828
|
kind: "query",
|
|
19655
19829
|
auth: "admin"
|
|
@@ -27211,6 +27385,9 @@ method(object({
|
|
|
27211
27385
|
}), method(RelocateResidueInputSchema, RelocateResidueSchema, {
|
|
27212
27386
|
kind: "query",
|
|
27213
27387
|
auth: "admin"
|
|
27388
|
+
}), method(LedgerWalkInputSchema, LedgerWalkReportSchema, {
|
|
27389
|
+
kind: "mutation",
|
|
27390
|
+
auth: "admin"
|
|
27214
27391
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
27215
27392
|
kind: "mutation",
|
|
27216
27393
|
auth: "admin"
|
|
@@ -27602,7 +27779,26 @@ var SceneMonitorStatusSchema = object({
|
|
|
27602
27779
|
monitors: array(SceneMonitorSchema),
|
|
27603
27780
|
lastFetchedAt: number()
|
|
27604
27781
|
});
|
|
27605
|
-
|
|
27782
|
+
/**
|
|
27783
|
+
* One camera's row in a `listScenesBatch` answer.
|
|
27784
|
+
*
|
|
27785
|
+
* `status` is NULLABLE and the nullability is the whole point. `scene-monitor`
|
|
27786
|
+
* is a `defaultActive` wrapper, so every camera is asked; a camera whose
|
|
27787
|
+
* provider is absent (pipeline-analytics not deployed, the post-processing node
|
|
27788
|
+
* down) cannot answer, and that is not the same fact as a camera with no scenes
|
|
27789
|
+
* configured. Fanned out per camera the difference was visible — one query
|
|
27790
|
+
* errored while the others resolved — and a batch that returned only the rows
|
|
27791
|
+
* it managed would have destroyed it, silently, by making an unreachable camera
|
|
27792
|
+
* indistinguishable from one that answered `monitors: []`.
|
|
27793
|
+
*
|
|
27794
|
+
* So: EVERY requested deviceId gets a row. `status: null` means "this camera
|
|
27795
|
+
* could not be read"; `status.monitors: []` means "read, and it has none".
|
|
27796
|
+
*/
|
|
27797
|
+
var SceneMonitorStatusForDeviceSchema = object({
|
|
27798
|
+
deviceId: number(),
|
|
27799
|
+
status: SceneMonitorStatusSchema.nullable()
|
|
27800
|
+
});
|
|
27801
|
+
DeviceType.Camera, method(object({ deviceId: number() }), SceneMonitorStatusSchema), method(object({ deviceIds: array(number()).min(1).max(200) }), array(SceneMonitorStatusForDeviceSchema).readonly()), method(object({
|
|
27606
27802
|
deviceId: number(),
|
|
27607
27803
|
label: string(),
|
|
27608
27804
|
roi: MaskRectShapeSchema,
|
|
@@ -28926,6 +29122,27 @@ var CameraOccupancySnapshotSchema = object({
|
|
|
28926
29122
|
stationaryObjects: array(StationaryObjectSchema).readonly().optional()
|
|
28927
29123
|
});
|
|
28928
29124
|
/**
|
|
29125
|
+
* One camera's row in a `getCurrentSnapshotBatch` answer.
|
|
29126
|
+
*
|
|
29127
|
+
* THREE outcomes, and the single-camera method could only express two of them
|
|
29128
|
+
* because `snapshot: null` was already spoken for:
|
|
29129
|
+
*
|
|
29130
|
+
* - `read: 'read'`, `snapshot` present — the live occupancy reading.
|
|
29131
|
+
* - `read: 'read'`, `snapshot: null` — read, and this camera has no reading
|
|
29132
|
+
* yet: no frame since boot, and no parked-object registry to hydrate from.
|
|
29133
|
+
* - `read: 'unreadable'` — the owner could not answer for this
|
|
29134
|
+
* camera. `snapshot` is null, and it does NOT mean "nothing parked here".
|
|
29135
|
+
*
|
|
29136
|
+
* Collapsing the last two is the failure this field exists to prevent: a
|
|
29137
|
+
* hydration that threw would otherwise render as an empty Stationary section,
|
|
29138
|
+
* which is a definite claim about a camera nobody could read.
|
|
29139
|
+
*/
|
|
29140
|
+
var CameraOccupancySnapshotForDeviceSchema = object({
|
|
29141
|
+
deviceId: number(),
|
|
29142
|
+
read: _enum(["read", "unreadable"]),
|
|
29143
|
+
snapshot: CameraOccupancySnapshotSchema.nullable()
|
|
29144
|
+
});
|
|
29145
|
+
/**
|
|
28929
29146
|
* Time-series resolution. The history methods return one bucket per
|
|
28930
29147
|
* step over the requested range. Smaller resolutions cost more
|
|
28931
29148
|
* memory + bandwidth; bound to discrete steps so caller cannot ask
|
|
@@ -28949,7 +29166,7 @@ var HistoryPointSchema = object({
|
|
|
28949
29166
|
/** Object count averaged over the bucket (rounded to nearest integer). */
|
|
28950
29167
|
count: number().int().nonnegative()
|
|
28951
29168
|
});
|
|
28952
|
-
DeviceType.Camera, method(object({ deviceId: number() }), CameraOccupancySnapshotSchema.nullable()), method(object({
|
|
29169
|
+
DeviceType.Camera, method(object({ deviceId: number() }), CameraOccupancySnapshotSchema.nullable()), method(object({ deviceIds: array(number()).min(1).max(200) }), array(CameraOccupancySnapshotForDeviceSchema).readonly()), method(object({
|
|
28953
29170
|
deviceId: number(),
|
|
28954
29171
|
zoneId: string(),
|
|
28955
29172
|
className: string().optional()
|
|
@@ -32254,6 +32471,18 @@ Object.freeze({
|
|
|
32254
32471
|
addonId: null,
|
|
32255
32472
|
access: "view"
|
|
32256
32473
|
},
|
|
32474
|
+
"pipelineAnalytics.getKeyEventsBatch": {
|
|
32475
|
+
capName: "pipeline-analytics",
|
|
32476
|
+
capScope: "device",
|
|
32477
|
+
addonId: null,
|
|
32478
|
+
access: "view"
|
|
32479
|
+
},
|
|
32480
|
+
"pipelineAnalytics.getMediaReclaimStatus": {
|
|
32481
|
+
capName: "pipeline-analytics",
|
|
32482
|
+
capScope: "device",
|
|
32483
|
+
addonId: null,
|
|
32484
|
+
access: "view"
|
|
32485
|
+
},
|
|
32257
32486
|
"pipelineAnalytics.getMotionEvents": {
|
|
32258
32487
|
capName: "pipeline-analytics",
|
|
32259
32488
|
capScope: "device",
|
|
@@ -32428,6 +32657,12 @@ Object.freeze({
|
|
|
32428
32657
|
addonId: null,
|
|
32429
32658
|
access: "create"
|
|
32430
32659
|
},
|
|
32660
|
+
"pipelineAnalytics.reclaimDebugMedia": {
|
|
32661
|
+
capName: "pipeline-analytics",
|
|
32662
|
+
capScope: "device",
|
|
32663
|
+
addonId: null,
|
|
32664
|
+
access: "create"
|
|
32665
|
+
},
|
|
32431
32666
|
"pipelineAnalytics.reconcileFromDisk": {
|
|
32432
32667
|
capName: "pipeline-analytics",
|
|
32433
32668
|
capScope: "device",
|
|
@@ -33430,6 +33665,12 @@ Object.freeze({
|
|
|
33430
33665
|
addonId: null,
|
|
33431
33666
|
access: "view"
|
|
33432
33667
|
},
|
|
33668
|
+
"recording.reconcileLedgerAgainstDisk": {
|
|
33669
|
+
capName: "recording",
|
|
33670
|
+
capScope: "system",
|
|
33671
|
+
addonId: null,
|
|
33672
|
+
access: "create"
|
|
33673
|
+
},
|
|
33433
33674
|
"recording.refreshStorageLocationsForMigration": {
|
|
33434
33675
|
capName: "recording",
|
|
33435
33676
|
capScope: "system",
|
|
@@ -33556,6 +33797,12 @@ Object.freeze({
|
|
|
33556
33797
|
addonId: null,
|
|
33557
33798
|
access: "view"
|
|
33558
33799
|
},
|
|
33800
|
+
"sceneMonitor.listScenesBatch": {
|
|
33801
|
+
capName: "scene-monitor",
|
|
33802
|
+
capScope: "device",
|
|
33803
|
+
addonId: null,
|
|
33804
|
+
access: "view"
|
|
33805
|
+
},
|
|
33559
33806
|
"sceneMonitor.recheckNow": {
|
|
33560
33807
|
capName: "scene-monitor",
|
|
33561
33808
|
capScope: "device",
|
|
@@ -34912,6 +35159,12 @@ Object.freeze({
|
|
|
34912
35159
|
addonId: null,
|
|
34913
35160
|
access: "view"
|
|
34914
35161
|
},
|
|
35162
|
+
"zoneAnalytics.getCurrentSnapshotBatch": {
|
|
35163
|
+
capName: "zone-analytics",
|
|
35164
|
+
capScope: "device",
|
|
35165
|
+
addonId: null,
|
|
35166
|
+
access: "view"
|
|
35167
|
+
},
|
|
34915
35168
|
"zoneAnalytics.getUnzonedHistory": {
|
|
34916
35169
|
capName: "zone-analytics",
|
|
34917
35170
|
capScope: "device",
|
|
@@ -35916,6 +36169,11 @@ Object.freeze({
|
|
|
35916
36169
|
form: "single",
|
|
35917
36170
|
optional: false
|
|
35918
36171
|
}],
|
|
36172
|
+
"pipelineAnalytics.getKeyEventsBatch": [{
|
|
36173
|
+
name: "deviceIds",
|
|
36174
|
+
form: "array",
|
|
36175
|
+
optional: false
|
|
36176
|
+
}],
|
|
35919
36177
|
"pipelineAnalytics.getMotionEvents": [{
|
|
35920
36178
|
name: "deviceId",
|
|
35921
36179
|
form: "single",
|
|
@@ -36021,6 +36279,11 @@ Object.freeze({
|
|
|
36021
36279
|
form: "single",
|
|
36022
36280
|
optional: true
|
|
36023
36281
|
}],
|
|
36282
|
+
"pipelineAnalytics.reclaimDebugMedia": [{
|
|
36283
|
+
name: "deviceIds",
|
|
36284
|
+
form: "array",
|
|
36285
|
+
optional: true
|
|
36286
|
+
}],
|
|
36024
36287
|
"pipelineAnalytics.reconcileFromDisk": [{
|
|
36025
36288
|
name: "deviceId",
|
|
36026
36289
|
form: "single",
|
|
@@ -36356,6 +36619,11 @@ Object.freeze({
|
|
|
36356
36619
|
form: "single",
|
|
36357
36620
|
optional: false
|
|
36358
36621
|
}],
|
|
36622
|
+
"recording.reconcileLedgerAgainstDisk": [{
|
|
36623
|
+
name: "deviceId",
|
|
36624
|
+
form: "single",
|
|
36625
|
+
optional: true
|
|
36626
|
+
}],
|
|
36359
36627
|
"recording.relocateFootage": [{
|
|
36360
36628
|
name: "deviceId",
|
|
36361
36629
|
form: "single",
|
|
@@ -36421,6 +36689,11 @@ Object.freeze({
|
|
|
36421
36689
|
form: "single",
|
|
36422
36690
|
optional: false
|
|
36423
36691
|
}],
|
|
36692
|
+
"sceneMonitor.listScenesBatch": [{
|
|
36693
|
+
name: "deviceIds",
|
|
36694
|
+
form: "array",
|
|
36695
|
+
optional: false
|
|
36696
|
+
}],
|
|
36424
36697
|
"sceneMonitor.recheckNow": [{
|
|
36425
36698
|
name: "deviceId",
|
|
36426
36699
|
form: "single",
|
|
@@ -36682,6 +36955,11 @@ Object.freeze({
|
|
|
36682
36955
|
form: "single",
|
|
36683
36956
|
optional: false
|
|
36684
36957
|
}],
|
|
36958
|
+
"zoneAnalytics.getCurrentSnapshotBatch": [{
|
|
36959
|
+
name: "deviceIds",
|
|
36960
|
+
form: "array",
|
|
36961
|
+
optional: false
|
|
36962
|
+
}],
|
|
36685
36963
|
"zoneAnalytics.getUnzonedHistory": [{
|
|
36686
36964
|
name: "deviceId",
|
|
36687
36965
|
form: "single",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { h as e, l as t, u as n, y as r } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
|
|
2
|
-
import { o as i, s as a } from "./responsive-
|
|
2
|
+
import { o as i, s as a } from "./responsive-yDg54Ukl.mjs";
|
|
3
3
|
import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
|
|
4
4
|
var l = a("chevron-down", [["path", {
|
|
5
5
|
d: "m6 9 6 6 6-6",
|
package/dist/remoteEntry.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-
|
|
1
|
+
import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-C0fXheVA.mjs";
|
|
2
2
|
export { t as get, e as init };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { c as e, g as t, h as n, l as r, n as i, p as a, r as o, t as s, u as c, y as l } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
|
|
2
2
|
import "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
|
|
3
|
-
import { n as u } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-
|
|
3
|
+
import { n as u } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BCT-V4ES.mjs";
|
|
4
4
|
//#region ../ui-library/node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js
|
|
5
5
|
l();
|
|
6
6
|
var d = (...e) => e.filter((e, t, n) => !!e && e.trim() !== "" && n.indexOf(e) === t).join(" ").trim(), f = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), p = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), m = (e) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { c as e, h as t, p as n, y as r } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
|
|
2
|
-
import { s as i } from "./responsive-
|
|
2
|
+
import { s as i } from "./responsive-yDg54Ukl.mjs";
|
|
3
3
|
var a = i("camera", [["path", {
|
|
4
4
|
d: "M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",
|
|
5
5
|
key: "18u6gg"
|
|
@@ -2753,7 +2753,7 @@ async function rr(e) {
|
|
|
2753
2753
|
}
|
|
2754
2754
|
}
|
|
2755
2755
|
async function ir() {
|
|
2756
|
-
return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-
|
|
2756
|
+
return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-C8IQbCbH.mjs")).catch((e) => {
|
|
2757
2757
|
throw tr = void 0, e;
|
|
2758
2758
|
}), tr;
|
|
2759
2759
|
}
|
package/package.json
CHANGED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
//#region \0virtual:mf:__mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js
|
|
2
|
-
var e = "__mf_init__virtual:mf:__mfe_internal__addon_model_studio_page__mf_v__runtimeInit__mf_v__.js__", t = globalThis[e];
|
|
3
|
-
if (!t) {
|
|
4
|
-
let n, r, i = new Promise((e, t) => {
|
|
5
|
-
n = e, r = t;
|
|
6
|
-
});
|
|
7
|
-
t = globalThis[e] = {
|
|
8
|
-
initPromise: i,
|
|
9
|
-
initResolve: n,
|
|
10
|
-
initReject: r
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
var n = t.initPromise, r = "__mf_module_cache__";
|
|
14
|
-
globalThis[r] ||= {
|
|
15
|
-
share: {},
|
|
16
|
-
remote: {}
|
|
17
|
-
}, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
|
|
18
|
-
var i = globalThis[r], a, o, s, c, l, u, d, f, p, m, h, g, _, v, y, b, x, S, C, w, T, E, D = (e) => {
|
|
19
|
-
e.ACCESSORY_LABEL, e.ACCESS_ROLES, e.ALEXA_EGRESS_PROFILE, a = e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_ANALYSIS_CAP_NAME, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AUDIO_PRESETS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionCandidateResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionJobSchema, e.AdoptionJobStateSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionOutcomeSchema, e.AdoptionReleaseInputSchema, e.AdoptionStatusSchema, e.AgentLoadSummarySchema, e.AirQualitySensorStatusSchema, e.AlarmArmModeSchema, e.AlarmPanelStatusSchema, e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, e.AnalyticsGroupDetailSchema, e.AnalyticsGroupMemberSchema, e.AnalyticsGroupRecordSchema, e.ApiKeyRecordSchema, e.ApiKeySummarySchema, e.ArchiveEntrySchema, e.ArchiveManifestSchema, e.AttachmentMediaTypeSchema, e.AttachmentSchema, e.AudioAnalysisResultSchema, e.AudioAnalysisSettingsSchema, e.AudioChunkInputSchema, e.AudioClassSummarySchema, e.AudioClassificationLabelSchema, e.AudioClassificationResultSchema, e.AudioCodecInfoSchema, e.AudioDecodeSessionConfigSchema, e.AudioEncodeSchema, e.AudioEncodeSessionConfigSchema, e.AudioEncodedChunkSchema, e.AudioEventSchema, e.AudioLevelSchema, e.AudioMetricsHistoryPointSchema, e.AudioMetricsHistorySchema, e.AudioMetricsSnapshotSchema, e.AudioPcmChunkSchema, e.AuthResultSchema, e.AutoUpdateSettingsSchema, e.AutomationActionSchema, e.AutomationConditionOperatorSchema, e.AutomationConditionSchema, e.AutomationControlStatusSchema, e.AutomationRecipeSchema, e.AutomationTriggerSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BASE_LIVE_EGRESS_PROFILE, e.BATTERY_DEVICE_PROFILE, e.BATTERY_UNREACHABLE_AFTER_MS, e.BOOT_RECOVERY_BACKOFF_MS, e.BacklightModeSchema, e.BackupDestinationInfoSchema, e.BackupEntrySchema, e.BaseAddon, e.BaseDevice, e.BaseDeviceProvider, e.BatteryStatusSchema, e.BinaryStatusSchema, e.BoundingBoxSchema, e.BrightnessStatusSchema, e.BrokerAddInputSchema, e.BrokerAudioClientSchema, e.BrokerClientsSchema, e.BrokerConnectionDetailsSchema, e.BrokerConsumerAttributionSchema, e.BrokerConsumerKindSchema, e.BrokerDecodedClientSchema, e.BrokerEncodedClientSchema, e.BrokerGetStateInputSchema, e.BrokerInfoSchema, e.BrokerProviderInfoSchema, e.BrokerPublishInputSchema, e.BrokerRegistryStatusSchema, e.BrokerRtspClientSchema, e.BrokerStatsSchema, e.BrokerStatusEnum, e.BrokerStatusSchema, e.BrokerSubscribeInputSchema, e.BrokerSubscribeResultSchema, e.BrokerTestConnectionResultSchema, e.BrokerUnsubscribeInputSchema, e.BulkRecordSchema, e.CAMERA_SWITCH_CATALOG, e.CAMERA_SWITCH_ORDER, e.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_NODE_PIN_CONTEXT_KEY, e.CAP_PROVIDER_KIND_MAP, e.CLASS_MAP_MACRO_TARGETS, e.CLUSTER_MODEL_SCOPED_STEPS, e.CLUSTER_MODEL_SECTION_ID, e.CLUSTER_STEP_SETTING_FIELDS, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CONNECTION_TEST_TIMEOUT_MS, e.CORE_BLOCKS_ADDON_ID, e.CORE_BLOCK_ADDON_PREFIX, e.CamProfileSchema, e.CamStreamDescriptorSchema, e.CamStreamKindSchema, e.CamStreamResolutionSchema, e.CameraAssignmentStatusSchema, e.CameraAudioStatusSchema, e.CameraBrokerProfileSchema, e.CameraBrokerStatusSchema, e.CameraCredentialsSchema, e.CameraCredentialsStatusSchema, e.CameraDecoderShmSchema, e.CameraDecoderStatusSchema, e.CameraDetectionPhaseSchema, e.CameraDetectionProvisioningSchema, e.CameraDetectionProvisioningStateSchema, e.CameraDetectionStatusSchema, e.CameraMetricsSchema, e.CameraMetricsWithDeviceIdSchema, e.CameraMotionStatusSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusDegradationReasonSchema, e.CameraStatusDegradationSchema, e.CameraStatusSchema, e.CameraStatusStageSchema, e.CameraStreamSchema, e.CameraSwitchAuthoritySchema, e.CameraSwitchGroupSchema, e.CameraSwitchIdSchema, e.CameraSwitchSchema, e.CameraSwitchUnavailableReasonSchema, e.CandidateQueryFilterSchema, e.CapScopeSchema, e.CapabilityBindingsSchema, e.CarbonMonoxideStatusSchema, e.ChargingStatus, e.ClientNetworkStatsSchema, e.ClimateControlStatusSchema, e.ClipPlaybackSchema, e.ClipSchema, e.ClusterAddonNodeDeploymentSchema, e.ClusterAddonStatusEntrySchema, e.CollectionColumnSchema, e.CollectionIndexSchema, e.ColorStatusSchema, e.ConfigEntrySchema, e.ConfigSectionWithValuesSchema, e.ConfigTabDeclarationSchema, e.ConnectionTestDescriptorSchema, e.ConnectionTestInputSchema, e.ConnectionTestOutcomeSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, o = e.ConvertArtifactSchema, e.ConvertResultSchema, s = e.ConvertTargetSchema, e.CoreBlockCompileResultSchema, e.CoreBlockInputSchema, e.CoreBlockPlacementSchema, e.CoreBlockSchema, e.CoreBlockStatusSchema, e.CoverStateSchema, e.CoverStatusSchema, e.CreateApiKeyInputSchema, e.CreateApiKeyResultSchema, e.CreateIntegrationInputSchema, e.CreateScopedTokenInputSchema, e.CreateScopedTokenResultSchema, e.CreateUserInputSchema, e.CustomActionInputSchema, c = e.CustomModelDescriptorSchema, e.DATAPLANE_SECRET_HEADER, e.DECLARED_DEVICE_SWEEP_LIMIT, e.DECLARED_INTEGRATION_FIXED_KEY, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_CLUSTER_STEP_MODELS, e.DEFAULT_CLUSTER_STEP_SETTINGS, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_DETAIL_CROP_CONVENTION, e.DEFAULT_EVENTS_BAND_BUFFER_SEC, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_FIRST_SIGHTING_FRESHNESS_MS, e.DEFAULT_MIN_LANDMARK_FACE_SIZE_PX, e.DEFAULT_NATIVE_LEASE_SETTINGS, e.DEFAULT_POOL_MEMORY_POLICY, e.DEFAULT_RECORDING_PROFILES, e.DEFAULT_RETENTION, e.DEFAULT_RUNTIME_STATE_DURABILITY, e.DEFAULT_TIMELAPSE_PREVIEW_TEXT, e.DEFAULT_TOKEN_EXPIRY, e.DETAIL_CROP_PADDING_FIELD, e.DETAIL_CROP_PADDING_KEY, e.DETAIL_CROP_SECTION_ID, e.DETAIL_CROP_SQUARE_KEY, e.DETECTION_MACRO_CLASSES, e.DETECTION_PIPELINE_CAP_NAME, e.DEVICE_BACKEND_TO_FORMAT, e.DEVICE_CAP_NAMES, e.DEVICE_CHILDREN_BATCH_MAX, e.DEVICE_PROFILES, e.DEVICE_SCOPED_CAPS, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATE_READERS, e.DEVICE_STATUS_METHOD, l = e.DEVICE_TYPE_CONTROL_KIND, e.DEVICE_TYPE_INFO, e.DataStoreEngineInfoSchema, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DeclaredDevices, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetailCropConventionSchema, e.DetectionCatalogClassMapSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, u = e.DeviceFeature, e.DeviceInfoSchema, e.DeviceNetworkStatsSchema, d = e.DeviceRole, e.DeviceRuntimeState, e.DeviceSelectorSchema, e.DeviceStatusSchema, f = e.DeviceType, e.DiagnosticIdSchema, e.DiagnosticWindowPatchSchema, e.DiagnosticWindowSchema, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DiskReconcileJobSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, p = e.EVENT_TAXONOMY, e.EXPORT_DENSE_MAX_RANGES, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, e.EgressEncodeSchema, e.EgressRateControlSchema, e.EgressTranscodeRequestSchema, e.EgressTranscodeSchema, e.ElementConfigStore, e.EmbeddingInfoSchema, e.EmbeddingResultSchema, e.EncodeProfileSchema, e.EncodedPacketSchema, e.EnrichedWidgetMetadataSchema, e.EnumSensorDateTimeFormatSchema, e.EnumSensorStatusSchema, m = e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindCategorySchema, e.EventKindDescriptorSchema, e.EventKindIconSchema, e.EventKindSchema, e.EventKindsForDeviceSchema, e.EventMediaArtifactSchema, e.EventMediaCoverageSchema, e.EventMediaKindSchema, e.EventMediaProductionSchema, e.EventSourceType, e.ExportBytesSchema, e.ExportDenseRangeSchema, e.ExportDenseSchema, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, h = e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionBindingSourceSchema, e.ExpressionEvalError, e.ExpressionFieldBindingSchema, e.ExpressionGlobalBindingSchema, e.ExpressionLiteralBindingSchema, e.ExpressionParseError, e.ExpressionSourceSchema, e.FIRST_LEVEL_MACRO_CLASSES, e.FULL_IMAGE_BBOX, e.FailureContributionSchema, e.FailureCounters, e.FailureReasonCountSchema, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.Fmp4BoxSplitter, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.FrameLazyCountersSchema, e.FrameLazyMetricsSchema, e.GasStatusSchema, e.GetLoggingSettingsInputSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HAP_AUDIO_BASE, e.HAP_AUDIO_BITRATE_KBPS, e.HAP_AUDIO_VBV_KBITS, e.HAP_KEYFRAME_INTERVAL_SEC, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HfModelResolutionSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.INFERENCE_DEVICE_EXCLUSION_REASONS, e.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.InferenceDeviceExclusionReasonSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOAD_CONTRIBUTION_ATTRIBUTIONS, e.LOAD_CONTRIBUTION_ROLES, e.LOG_CHANNEL_TICK_MS, e.LOG_LEVEL_RANK, e.LabelAttributionSchema, e.LabelDefinitionSchema, e.LabelTierSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LinkedDevicesModeSchema, e.ListGroupsPageSchema, e.ListGroupsQueryInput, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmDownloadProgressSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRetryPolicySchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmTimeoutDefaults, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LoadContributionSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogChannelApplyResultSchema, e.LogChannelDescriptorSchema, e.LogChannelGate, e.LogChannelLevelSchema, e.LogChannelRegistry, e.LogChannelWindowPatchSchema, e.LogChannelWindowSchema, e.LogChannelWindowStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoggingEffectiveSchema, e.LoggingExplicitSchema, e.LoggingLevelLayerSchema, e.LoggingLevelSourceSchema, e.LoggingScopeKindSchema, e.LoggingSettingsPatchSchema, e.LoggingSettingsStateSchema, e.LoginMethodContributionSchema, e.LoginStageEnum, e.MACRO_LABELS, e.MAX_CLIP_EVENT_IDS, e.MAX_CLIP_LABELS, e.MAX_CONDITION_DEPTH, e.MAX_CONDITION_LEAVES, e.MAX_EXPRESSION_AST_NODES, e.MAX_EXPRESSION_BINDINGS, e.MAX_EXPRESSION_CALL_ARGS, e.MAX_EXPRESSION_EVAL_STEPS, e.MAX_EXPRESSION_SOURCE_LENGTH, e.MAX_KEYS, e.MAX_REASONS_PER_KEY, e.MAX_SENSOR_TRIGGER_DEVICES, e.METHOD_ACCESS_MAP, e.METHOD_DEVICE_SELECTORS, g = e.MODEL_FORMATS, e.MODEL_PROVIDER_IDS, e.MOTION_TRIGGER_FEATURE, e.ManagedModelCatalogEntrySchema, e.ManagedModelExtraFileSchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileInfoSchema, e.MediaFileKindEnum, e.MediaFileRefSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MediaRelocateModeSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, _ = e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, v = e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelProviderIdSchema, e.ModelSubstitutionSchema, e.ModelVariantGroupSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.MutationFilterSchema, e.NATIVE_LEASE_ACTIVITY_FIELD, e.NATIVE_LEASE_ACTIVITY_KEY, e.NATIVE_LEASE_ADMISSION_FIELD, e.NATIVE_LEASE_ADMISSION_KEY, e.NATIVE_LEASE_BUDGET_FIELD, e.NATIVE_LEASE_BUDGET_KEY, e.NATIVE_LEASE_HOLD_FIELD, e.NATIVE_LEASE_HOLD_KEY, e.NATIVE_LEASE_SCENE_BUDGET_FIELD, e.NATIVE_LEASE_SCENE_BUDGET_KEY, e.NATIVE_LEASE_SECTION_ID, e.NATIVE_LEASE_TILE_BUDGET_FIELD, e.NATIVE_LEASE_TILE_BUDGET_KEY, e.NC_ALARM_SYSTEM_EVENT_KINDS, e.NC_AUDIO_CONFIRM_HITS_DEFAULT, e.NC_AUDIO_CONFIRM_HITS_MAX, e.NC_AUDIO_CONFIRM_HITS_MIN, e.NC_AUDIO_CONFIRM_WINDOW_MAX_SEC, e.NC_AUDIO_CONFIRM_WINDOW_MIN_SEC, e.NC_AUDIO_CONFIRM_WINDOW_SEC_DEFAULT, e.NC_AUDIO_DBFS_FLOOR, e.NC_AUDIO_DB_MAX, e.NC_AUDIO_DB_MIN, e.NC_AUDIO_DB_OFFERED, e.NC_AUDIO_DB_STEP, e.NC_AUDIO_DEFAULTS, e.NC_AUDIO_HIT_PERCENT_MAX, e.NC_AUDIO_HIT_PERCENT_MIN, e.NC_AUDIO_SAMPLING_MAX_SEC, e.NC_AUDIO_SAMPLING_MIN_SEC, e.NC_AUDIO_SEED, e.NC_AUTHORABLE_SYSTEM_EVENT_KINDS, e.NC_BASE_CONDITION_KEYS, e.NC_CONDITION_CATALOG, e.NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.NC_CONFIRM_DEFAULT_TIMEOUT_MS, e.NC_CONFIRM_MAX_TIMEOUT_MS, e.NC_CONFIRM_MIN_TIMEOUT_MS, e.NC_DEFAULT_SNOOZE_MINUTES, e.NC_HISTORY_LIMIT_DEFAULT, e.NC_HISTORY_LIMIT_MAX, e.NC_MAX_PER_TRACK_IMMEDIATE, e.NC_OCCUPANCY_DEFAULTS, e.NC_RULE_EDITOR_SECTION_ORDER, e.NC_RULE_KIND_SPECS, e.NC_RULE_SECTIONS, e.NC_SNOOZE_MAX_MINUTES, e.NC_SYSTEM_DELIVERY, e.NC_SYSTEM_EVENT_FILTER_KEYS, e.NC_TAXONOMY, e.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeLeaseAdmissionSchema, e.NativeLeaseSettingsSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NcAlarmConfigSchema, e.NcAlarmModeCoverageSchema, e.NcAlarmSettingsPatchSchema, e.NcAlarmSettingsSchema, e.NcAlarmSkipReasonSchema, e.NcAlarmSkippedDeviceSchema, e.NcAudioConditionSchema, e.NcConditionDescriptorSchema, e.NcConditionsSchema, e.NcConfirmExpectSchema, e.NcConfirmSchema, e.NcCrossingSchema, e.NcDeliverySchema, e.NcDeviceStateConditionSchema, e.NcHistoryEntrySchema, e.NcHistoryFilterSchema, e.NcHistoryRecordKindSchema, e.NcHistoryStatusSchema, e.NcHistorySubjectSchema, e.NcMediaFrameSchema, e.NcMediaPolicySchema, e.NcOccupancyConditionSchema, e.NcPlateMatcherSchema, e.NcRuleActionSchema, e.NcRuleActionSequenceSchema, e.NcRuleActionsSchema, e.NcRuleInputSchema, e.NcRuleNotificationButtonSchema, e.NcRulePatchSchema, e.NcRuleSchema, e.NcRuleTargetSchema, e.NcSceneConditionSchema, e.NcScheduleSchema, e.NcScheduleWindowSchema, e.NcSnoozeInputSchema, e.NcSnoozeSchema, e.NcSnoozeScopeSchema, e.NcSnoozeSuppressedSchema, e.NcSystemEventConditionSchema, e.NcSystemEventKindSchema, e.NcTaxonomyEntrySchema, e.NcTaxonomySchema, e.NcTestResultSchema, e.NcThrottleGranularitySchema, e.NcThrottleSchema, e.NcZoneConditionSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionIconSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPERATOR_WRITTEN_STALE_MS, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OVERFLOW_REASON, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OpsLogDomainSchema, e.OpsLogEntrySchema, e.OpsLogOpSchema, e.OpsLogQueryInputSchema, e.OpsLogReasonSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdRenderOutcomeEnum, e.OsdRenderResultSchema, e.OsdSlotBindingSchema, e.OsdSlotViewSchema, e.OsdSourceOptionSchema, e.OsdSourceSchema, e.OsdSourceValueTypeEnum, e.OsdStatusSchema, y = e.PET_FEEDER_MANUAL_FEED_MAX, b = e.PET_FEEDER_MANUAL_FEED_MIN, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PRIVACY_MASK_CAP_NAME, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeyLoginMethodSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PipelineValidationIssueSchema, e.PipelineValidationResultSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PoolMemoryWatchdog, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzOptionsSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.RATE_CONTROL_RELAXED, e.RATE_CONTROL_TIGHT, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RECORDING_EXPORT_MAX_READ_BYTES, e.REDACTED_SECRET, e.RESERVED_BINDING_NAMES, e.RESTORED_CAP_NAMES, e.ROOT_BUCKET_KEY, e.RUNTIME_DEFAULTS, e.RUNTIME_STATE_POLICY, e.RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadGopBytesResultSchema, e.ReadSegmentBytesResultSchema, e.ReadWindowBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecentTracksPageSchema, e.RecentTracksQueryInput, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingObjectTriggerClassSchema, e.RecordingRangeSchema, e.RecordingRebalanceInputSchema, e.RecordingRebalanceMoveSchema, e.RecordingRebalancePlanSchema, e.RecordingRebalanceSkipReasonSchema, e.RecordingRebalanceSkipSchema, e.RecordingRetentionSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RelocatableMediaCountInputSchema, e.RelocatableMediaCountSchema, e.RelocateFootageClassSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RelocateResidueInputSchema, e.RelocateResidueSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.ReportedFailureContributionSchema, e.ReportedLoadContributionSchema, e.RequestCensusGroupSchema, e.RequestCensusProcedureSchema, e.RequestCensusSnapshotSchema, e.RequestCensusStatusSchema, e.RetrainAnnotationDraftSchema, e.RetrainAnnotationKindSchema, e.RetrainAnnotationSchema, e.RetrainAnnotationSourceSchema, e.RetrainAssistResultSchema, e.RetrainAssistSubjectSchema, e.RetrainCopyRefusalSchema, e.RetrainFrameCandidateSchema, e.RetrainFrameListSchema, e.RetrainFrameSchema, e.RetrainFrameSelectionSchema, e.RetrainMacroClassSchema, e.RetrainStatusSchema, e.RetrainTrackSchema, e.RetrainTransitionResultSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerInferenceDeviceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCENE_CONDITIONS, e.SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, e.SCENE_DEFAULT_ANCHOR_THRESHOLD, e.SCENE_DEFAULT_CHECK_INTERVAL_SEC, e.SCENE_DEFAULT_OBSERVATION_SPACING_SEC, e.SCENE_DEFAULT_QUIET_SECONDS, e.SCENE_DEFAULT_UNCOVERED_POLICY, e.SCENE_DIVERGED, e.SCENE_RESET_RECAPTURES, e.SCOPE_PRESETS, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_CAPS, e.SOURCE_CAP_ACTIVE_FIELD, e.SOURCE_CAP_CHANGED_AT_FIELD, e.SOURCE_DEVICE_TYPES, e.SOURCE_INFO_METADATA_KEY, e.STORAGE_ACCESS_FALLBACK, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SYSTEM_SCOPE_DEVICE_METHODS, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneConfirmSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.SceneUnavailableSchema, e.SceneUncoveredPolicySchema, e.SceneVerdictSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SetLoggingSettingsInputSchema, e.SetSiteLocationInputSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SiteLocationSchema, e.SiteLocationSourceSchema, e.SiteLocationStatusSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, x = e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, e.StorageAccessSchema, e.StorageBeginDownloadInputSchema, e.StorageBeginDownloadResultSchema, e.StorageBeginUploadInputSchema, e.StorageBeginUploadResultSchema, e.StorageEndDownloadInputSchema, e.StorageFinalizeUploadInputSchema, e.StorageLocationDeclarationSchema, e.StorageLocationRefSchema, e.StorageLocationSchema, e.StorageLocationTypeSchema, e.StorageMigrationClassSchema, e.StorageMigrationDestinationsSchema, e.StorageMigrationDrainInputSchema, e.StorageMigrationFindingCodeSchema, e.StorageMigrationFindingSchema, e.StorageMigrationFootageMoveInputSchema, e.StorageMigrationInputSchema, e.StorageMigrationJobSchema, e.StorageMigrationLaneSchema, e.StorageMigrationLeaseInputSchema, e.StorageMigrationMediaMoveInputSchema, e.StorageMigrationModeSchema, e.StorageMigrationMoveProgressSchema, e.StorageMigrationMoveSchema, e.StorageMigrationMoverSchema, e.StorageMigrationParticipantSchema, e.StorageMigrationPhaseSchema, e.StorageMigrationPlanSchema, e.StorageMigrationResidueSchema, e.StorageProviderInfoSchema, e.StorageReadChunkInputSchema, e.StorageTestLocationResultSchema, e.StorageWriteChunkInputSchema, e.StreamCodecSchema, e.StreamFormatSchema, e.StreamNetworkStatsSchema, e.StreamParamsOptionsSchema, e.StreamParamsStatusSchema, e.StreamProfileConfigSchema, e.StreamProfileOptionsSchema, e.StreamProfilePatchSchema, e.StreamProfileSchema, e.StreamSourceEntrySchema, e.StreamSourceSchema, e.SubscribeAudioChunksInputSchema, e.SubscribeAudioChunksResultSchema, e.SubscribeFramesInputSchema, e.SubscribeFramesResultSchema, e.SwitchStatusSchema, e.SystemMetricsSchema, e.SystemMirror, e.TAXONOMY_COLORS, e.TIMELAPSE_DENSE_FLOOR_SEC, e.TIMEZONES, e.TRANSCODE_DOWN_MAX_BITRATE_KBPS, e.TRANSCODE_DOWN_MAX_HEIGHT, e.TamperStatusSchema, e.TankStatusSchema, e.TargetKindCapsSchema, e.TargetKindLevelSchema, e.TargetKindSchema, e.TargetSchema, e.TemperatureSensorStatusSchema, e.TerminalInstanceInfoSchema, e.TerminalLegacyCameraSchema, e.TerminalOutputBatchSchema, e.TerminalOutputEventSchema, e.TerminalProfileInfoSchema, e.TerminalSessionInfoSchema, e.TestConnectionResultSchema, e.TestConnectionStatusEnum, e.TestResultSchema, e.TimelapseRuleInputSchema, e.TimelapseRulePatchSchema, e.TimelapseRuleSchema, e.TimelapseTemplateSchema, e.ToastSchema, e.TokenScopeSchema, e.TopologyNodeSchema, e.TopologyProcessSchema, e.TopologyServiceSchema, e.TrackCascadeCountsSchema, e.TrackEnvelopeSchema, e.TrackFlagsPatchSchema, e.TrackFlagsSchema, e.TrackProjectionSchema, e.TrackSchema, e.TrackSourceSchema, e.TrackStateSchema, e.TrackZoneFilterSchema, e.TrackedDetectionSchema, e.TrainingExportDeviceTotalsSchema, e.TrainingExportSummarySchema, e.TransportPlaneCountsSchema, e.TransportPlaneSchema, e.TurnServerSchema, e.UNATTRIBUTED_BUCKET_KEY, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UnstampedEventMediaCountSchema, e.UnstampedRowsSchema, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VISIT_MERGE_GAP_MS, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VectorDeclareIndexInputSchema, e.VectorDeleteByFilterInputSchema, e.VectorDeleteInputSchema, e.VectorDeleteResultSchema, e.VectorFilterSchema, e.VectorGetInputSchema, e.VectorGetResultSchema, e.VectorItemSchema, e.VectorMatchSchema, e.VectorMetadataSchema, e.VectorMetricSchema, e.VectorQueryInputSchema, e.VectorQueryResultSchema, e.VectorStatsInputSchema, e.VectorStatsResultSchema, e.VectorUpsertInputSchema, e.VectorUpsertResultSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WEBRTC_EGRESS_PROFILE, e.WELL_KNOWN_TABS, e.WELL_KNOWN_TAB_MAP, e.WaterHeaterStatusSchema, e.WeatherStatusSchema, e.WebrtcStreamChoiceSchema, e.WebrtcStreamTargetSchema, e.WhiteBalanceModeSchema, e.WidgetHostEnum, e.WidgetLoginMethodSchema, e.WidgetMetadataSchema, e.WidgetRemoteSchema, e.WidgetSizeEnum, e.YAMNET_TO_MACRO, e.ZoneCrossingDirectionSchema, e.ZoneCrossingSchema, e.ZoneKindEnum, e.ZoneRuleModeEnum, e.ZoneRuleSchema, e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, e.__resetLogChannelRegistryForTests, e.accessoriesCapability, e.accessoryStableId, e.addonPagesCapability, e.addonPagesSourceCapability, e.addonRoutesCapability, e.addonSettingsCapability, e.addonWidgetsCapability, e.addonWidgetsSourceCapability, e.addonsCapability, e.adminUiCapability, e.airQualitySensorCapability, e.alarmPanelCapability, e.alertsCapability, e.ambientLightSensorCapability, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.assertTimelapseCadences, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioIsFailClosed, e.audioKindId, e.audioLabelChoices, e.audioMetricsCapability, e.audioModeOf, e.audioOrDefaults, e.audioPlanFromEncodeProfile, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.bareAddonId, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildAudioArgs, e.buildEventKindDescriptor, e.buildFfmpegArgs, e.buildInputArgs, e.buildModelVariantGroups, e.buildNcTaxonomy, e.buildRoleScopes, e.buildStreamParamsConfigSchema, e.buildVideoArgs, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, S = e.canConvertUnit, e.canonicalEgressPlan, e.carbonMonoxideCapability, e.cellsToRects, e.classifyBearerPrincipal, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.clusterModelSettingKey, e.clusterStepSettingFieldsFor, e.clusterStepSettingKey, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.collectSecretConfigKeys, e.colorCapability, e.colorForKind, e.commitWatchdogRestart, e.compileExpression, e.compileExpressionSafe, e.composeSwitchedOff, e.conditionDepth, e.conditionExclusionReason, e.conditionVisibleForKind, e.connectionTestCapability, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.coreBlockAddonId, e.coreBlockIdFromAddonId, e.coreBlocksCapability, e.cosineSimilarity, e.countConditionLeaves, e.coverCapability, C = e.createDeviceProxy, e.createDurableState, e.createEvent, e.createEventBusSliceSource, e.createExpressionScope, e.createHwAccelCache, e.createLazyTrpcSource, e.createLogChannelsProvider, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, w = e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.declarationOwnerNodeId, e.declareLogChannel, e.decodeVectorBase64, e.decoderCapability, e.defaultDeliveryForSection, e.defaultDeviceFor, T = e.defineCustomActions, e.deriveBatteryPresence, e.deriveCameraSwitches, e.deriveDetailCropRect, e.deriveRecordingMode, e.describeModelVariant, e.detectAccessRole, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceBackendToFormat, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceSelectorMatches, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.droppedConditionsForKind, e.egressTranscodeSharingKey, e.egressTransportFromRequest, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.encodeVectorBase64, e.enumSensorCapability, e.enumerateInferenceDevices, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateExpressionSource, e.evaluatePoolMemory, e.evaluateSensorEdge, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.failureContributionCapability, e.failureRate, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.foldSnapshotByFunction, e.formatForBackend, e.formatForRuntime, e.gasCapability, e.generateAutomationBlock, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getLogChannelRegistry, e.getTaxonomyEntry, e.hasMotionTrigger, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.inferModelProvider, e.initialPoolMemoryState, e.integrationsCapability, e.intercomCapability, e.invocationFromEncodeProfile, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isAudioLabelSelected, e.isAudioRule, e.isBaseConditionKey, e.isBatteryPresenceFault, e.isClusterScopedStep, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDetectionMacroClass, e.isDeviceConfigCap, e.isDeviceScopedCap, e.isEvent, e.isFirstLevelMacroClass, e.isIsolatedBuiltin, e.isNode, e.isObjectInput, e.isOccupancyRule, e.isRestoredCap, e.isSameAddonId, e.isScheduleActive, e.isSecretConfigField, e.isSoftwareDecode, e.isSourceCap, e.isSystemDelivery, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.knownValues, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.loadContributionCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logBannerArgs, e.logChannelsCapability, e.logDestinationCapability, e.logLevelAtMost, e.loginMethodCapability, e.looseSchema, e.makeProfileBrokerId, e.makeSourceBrokerId, e.mapAudioLabelToMacro, e.markdownToHtmlLite, e.markdownToText, e.maskUrlCredentials, e.mediaPlayerCapability, e.mergeSourceInfo, e.meshNetworkCapability, e.method, e.methodAccessForHttpMethod, e.metricsProviderCapability, e.modelConvertCapability, e.modelDistributorCapability, e.modelFormatForRuntime, e.motionCapability, e.motionDetectionCapability, e.motionTriggerCapability, e.motionZonesCapability, e.mqttBrokerCapability, e.nativeObjectDetectionCapability, e.networkAccessCapability, e.networkQualityCapability, e.nodePin, e.nodesCapability, e.normalizeAddonInitResult, e.normalizeAudioLabel, e.normalizeTokenScopes, e.normalizeUnit, e.notificationOutputCapability, e.notificationRulesCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.objectInputDeclaresAddonId, e.osdCapability, e.osdManagerCapability, e.overlayClusterStepSettings, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProcStatus, e.parseProfileBrokerId, e.parseRuleSection, e.parseStreamParamsFormPatch, e.patchAudio, e.petFeederCapability, e.pickAccessoryControl, e.pickClusterStepModels, e.pickClusterStepSettings, e.pickDetailCropConvention, e.pickNativeLeaseOverride, e.pickPreferredRtspEntry, e.pickRestartCandidate, e.pickVideoEncoder, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.poolMemoryThreshold, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.principalMayReachAddon, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readClusterStepModels, e.readClusterStepSettings, e.readDetailCropConvention, e.readDeviceStateFrom, e.readNativeLeaseOverride, e.readNodePin, e.readTimelapseGeneratedAt, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.reducePoints, e.requiresPython, e.resetPoolBaseline, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveBucketMs, e.resolveCapMount, e.resolveClusterStepModelId, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveEgressDecodeHwAccel, e.resolveFormat, e.resolveHydratedFieldValue, e.resolveMethodAuth, e.resolveModelFormat, e.resolveMutate, e.resolvePoolMemoryPolicy, e.resolveRecordingProfiles, e.resolveRunnerId, e.resolveVariantModelId, e.resolveViewableDeviceIds, e.roleSpec, e.ruleEditorSectionsForKind, e.ruleKindOf, e.ruleKindSpec, e.ruleMatchesSection, e.ruleSection, e.ruleSectionOf, e.ruleSeedForSection, e.runInferenceStep, e.runtimeDevices, e.runtimeStatePolicyFor, e.sceneMonitorCapability, e.schemaDeclaresAnyField, e.scopeInherits, e.scopeKey, e.scopesAllowAddon, e.scopesAllowDeviceCap, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.sliceActiveValue, e.sliceChangedAt, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, e.stateVocabularyFor, e.storageCapability, e.storageEvictableCapability, e.storageMigrationCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.summarisePrivacyAudio, e.summarizeEffectiveScope, e.supportedRuntimes, e.switchCapability, e.switchedOffIds, e.synthesizeSourceInfo, e.systemCapability, e.systemEventFilterApplies, e.systemEventFilterAppliesToAnyKind, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.terminalSessionCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toNodeId, e.toStreamSourceEntry, e.toastCapability, e.toggleAudioLabel, e.tokenize, e.transcodeBody, E = e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.validateRecipeBounds, e.valveCapability, e.vectorDimFromBase64, e.vectorStoreCapability, e.vibrationCapability, e.videoclipsCapability, e.viewerUiCapability, e.waterHeaterCapability, e.weatherCapability, e.webrtcClientHintsSchema, e.webrtcSessionCapability, e.wiringAddonHealthSchema, e.wiringHealthSnapshotSchema, e.wiringNodeHealthSchema, e.wiringProbeKindSchema, e.wiringProbeResultSchema, e.zodEntriesToConfigUI, e.zoneAnalyticsCapability, e.zoneRulesCapability, e.zonesCapability, e.default;
|
|
20
|
-
}, O = i.share["default:@camstack/types"];
|
|
21
|
-
O === void 0 ? n.then(() => {
|
|
22
|
-
if (O = i.share["default:@camstack/types"], O === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
|
|
23
|
-
D(O);
|
|
24
|
-
}) : D(O);
|
|
25
|
-
//#endregion
|
|
26
|
-
export { x as S, g as _, E as a, y as b, c, d, f, h as g, m as h, T as i, l, a as m, C as n, o, p, w as r, s, S as t, u, _ as v, b as x, v as y };
|