@camstack/addon-auth 1.2.46 → 1.2.48
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/{dist-CkZWLfyy.mjs → dist-Cejgb_kg.mjs} +333 -12
- package/dist/{dist-CjPxMQ_H.js → dist-DJ0XK1ze.js} +333 -12
- package/dist/magic-link/auth-magic-link.addon.js +1 -1
- package/dist/magic-link/auth-magic-link.addon.mjs +1 -1
- package/dist/oidc/auth-oidc.addon.js +1 -1
- package/dist/oidc/auth-oidc.addon.mjs +1 -1
- package/dist/webauthn/_stub.js +1 -1
- package/dist/webauthn/{_virtual_mf-localSharedImportMap___mfe_internal__addon_auth_webauthn_widgets-BE2AJnUM.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_auth_webauthn_widgets-CdJ1lSwb.mjs} +3 -3
- package/dist/webauthn/{_virtual_mf___mfe_internal__addon_auth_webauthn_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-SVe2Khet.mjs → _virtual_mf___mfe_internal__addon_auth_webauthn_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-Cyq-cpgK.mjs} +1 -1
- package/dist/webauthn/auth-webauthn.addon.js +1 -1
- package/dist/webauthn/auth-webauthn.addon.mjs +1 -1
- package/dist/webauthn/{hostInit-C8eE42FC.mjs → hostInit-DuoEZux8.mjs} +3 -3
- package/dist/webauthn/remoteEntry.js +1 -1
- package/package.json +1 -1
|
@@ -8278,13 +8278,49 @@ var StorageMigrationParticipantSchema = _enum([
|
|
|
8278
8278
|
"recorder",
|
|
8279
8279
|
"analytics"
|
|
8280
8280
|
]);
|
|
8281
|
+
/**
|
|
8282
|
+
* The mover's own numbers, folded onto the coordinator's durable move record.
|
|
8283
|
+
*
|
|
8284
|
+
* The long half of a non-blocking migration is `draining`, and it is measured
|
|
8285
|
+
* in hours: 136 885 files at ~4 MB/s is about five of them. Before this shape
|
|
8286
|
+
* existed the only place those numbers appeared was a Loki line, so an operator
|
|
8287
|
+
* watching the Admin UI saw `phase: draining` and nothing else for a whole
|
|
8288
|
+
* afternoon.
|
|
8289
|
+
*
|
|
8290
|
+
* It is POLLED, never pushed. Events are telemetry and may be dropped
|
|
8291
|
+
* (D8/D11), and a dropped progress event is indistinguishable from a stalled
|
|
8292
|
+
* mover — which is the exact failure this is meant to end. The coordinator's
|
|
8293
|
+
* `waitForMoves` already fetches the whole {@link RelocateJob} on every tick to
|
|
8294
|
+
* read `state`; folding the counters costs no extra read and makes the durable
|
|
8295
|
+
* record say afterwards how far a move actually got.
|
|
8296
|
+
*
|
|
8297
|
+
* `filesTotal` is `null` for "no honest denominator" and is never zero-filled:
|
|
8298
|
+
* a windowed footage job (`sinceMs`) and a node with no ledger both genuinely
|
|
8299
|
+
* cannot say M, and a 0 there would render as "100 % done".
|
|
8300
|
+
*/
|
|
8301
|
+
var StorageMigrationMoveProgressSchema = object({
|
|
8302
|
+
filesMoved: number().int().nonnegative(),
|
|
8303
|
+
/** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
|
|
8304
|
+
filesTotal: number().int().nonnegative().nullable(),
|
|
8305
|
+
bytesMoved: number().int().nonnegative(),
|
|
8306
|
+
/** The MOVER's start, not the migration's: a drain restarted after an addon
|
|
8307
|
+
* crash gets a new mover, and a rate computed from the migration's start
|
|
8308
|
+
* would silently average in the time nothing was running. */
|
|
8309
|
+
startedAt: number(),
|
|
8310
|
+
/** When the coordinator last read these numbers. Paired with `startedAt` it
|
|
8311
|
+
* is the only honest rate: both clocks are the hub's, so a UI never has to
|
|
8312
|
+
* subtract its own. */
|
|
8313
|
+
observedAt: number()
|
|
8314
|
+
});
|
|
8281
8315
|
var StorageMigrationMoveSchema = object({
|
|
8282
8316
|
storageClass: StorageMigrationClassSchema,
|
|
8283
8317
|
fromLocationId: string(),
|
|
8284
8318
|
toLocationId: string(),
|
|
8285
8319
|
moverJobId: string().nullable(),
|
|
8286
8320
|
state: RelocateJobStateSchema.nullable(),
|
|
8287
|
-
error: string().nullable()
|
|
8321
|
+
error: string().nullable(),
|
|
8322
|
+
/** Last observed mover counters; `null` until the mover has been polled once. */
|
|
8323
|
+
progress: StorageMigrationMoveProgressSchema.nullable()
|
|
8288
8324
|
});
|
|
8289
8325
|
var StorageMigrationJobSchema = object({
|
|
8290
8326
|
jobId: string(),
|
|
@@ -8330,6 +8366,98 @@ var StorageMigrationPlanSchema = object({
|
|
|
8330
8366
|
findings: array(StorageMigrationFindingSchema)
|
|
8331
8367
|
});
|
|
8332
8368
|
/**
|
|
8369
|
+
* A mover as it exists RIGHT NOW, whether or not a migration job owns it.
|
|
8370
|
+
*
|
|
8371
|
+
* The coordinator's job record is the state of record for a migration, and its
|
|
8372
|
+
* moves carry {@link StorageMigrationMoveProgress}. But the movers are usable
|
|
8373
|
+
* standalone — `recording.relocateFootage` and `pipelineAnalytics.relocateMedia`
|
|
8374
|
+
* are both operator-callable, and on 2026-08-29 a five-hour drain was armed that
|
|
8375
|
+
* way because no supported UI path existed. A mover armed like that has no job
|
|
8376
|
+
* to fold progress into, so it has to be readable on its own or it is invisible.
|
|
8377
|
+
*
|
|
8378
|
+
* `migrationJobId` is what tells the two apart: `null` means nothing here
|
|
8379
|
+
* orchestrated it.
|
|
8380
|
+
*/
|
|
8381
|
+
var StorageMigrationMoverSchema = object({
|
|
8382
|
+
lane: _enum(["footage", "media"]),
|
|
8383
|
+
job: RelocateJobSchema,
|
|
8384
|
+
/** The coordinator job that armed this mover, or `null` for a mover armed
|
|
8385
|
+
* directly against the owning addon. */
|
|
8386
|
+
migrationJobId: string().nullable(),
|
|
8387
|
+
/** When the hub read these counters. Stamped here so a rate is `bytesMoved`
|
|
8388
|
+
* over (`observedAt` − `job.startedAt`) with BOTH ends on the hub's clock —
|
|
8389
|
+
* a browser subtracting its own `Date.now()` from a server `startedAt` is a
|
|
8390
|
+
* rate made of two different clocks. */
|
|
8391
|
+
observedAt: number()
|
|
8392
|
+
});
|
|
8393
|
+
/**
|
|
8394
|
+
* What a SOURCE still holds for one storage class — the number that makes a
|
|
8395
|
+
* "drain remaining" action honest rather than hopeful.
|
|
8396
|
+
*
|
|
8397
|
+
* It comes from the archive (`SegmentHourLedger.census` for footage, the media
|
|
8398
|
+
* engine's own selection count for media), never from the resident index: a
|
|
8399
|
+
* drain sized off `RecordingIndex` is what reported `done` over 80.3 GB it had
|
|
8400
|
+
* never been told about (D295).
|
|
8401
|
+
*
|
|
8402
|
+
* `items`/`bytes` are `null` for "the archive could not be asked", which is
|
|
8403
|
+
* deliberately NOT zero: a drain is still offered for an unknown residue,
|
|
8404
|
+
* because refusing on an unanswerable read would hide exactly the case an
|
|
8405
|
+
* operator needs to act on.
|
|
8406
|
+
*/
|
|
8407
|
+
var StorageMigrationResidueSchema = object({
|
|
8408
|
+
storageClass: StorageMigrationClassSchema,
|
|
8409
|
+
/** The location still holding the data. `'*'` for the media lane, whose rows
|
|
8410
|
+
* move from wherever they are rather than from one named source. */
|
|
8411
|
+
fromLocationId: string(),
|
|
8412
|
+
/** Where a drain would move it — the class's CURRENT default. */
|
|
8413
|
+
toLocationId: string(),
|
|
8414
|
+
/** Segments (footage lane) or rows (media lane) still on the source. */
|
|
8415
|
+
items: number().int().nonnegative().nullable(),
|
|
8416
|
+
/** Bytes on the source; `null` when the lane counts rows rather than bytes. */
|
|
8417
|
+
bytes: number().int().nonnegative().nullable()
|
|
8418
|
+
});
|
|
8419
|
+
/**
|
|
8420
|
+
* Run the DRAIN half and nothing else.
|
|
8421
|
+
*
|
|
8422
|
+
* A migration that reached `done` has already repointed, so `start` correctly
|
|
8423
|
+
* refuses its destination ("already the default") — there is nothing left to
|
|
8424
|
+
* repoint. But the drain can fail, be cancelled, be interrupted by a restart,
|
|
8425
|
+
* or finish against a work list that was a tenth of the archive (D295), and
|
|
8426
|
+
* before this there was no supported way to run only that half: the only way
|
|
8427
|
+
* through was calling `recording.relocateFootage` by hand over admin tRPC.
|
|
8428
|
+
*
|
|
8429
|
+
* `drain` NEVER calls `setDefaultLocations`. That is what keeps `start`'s
|
|
8430
|
+
* refusal meaningful: the two verbs are disjoint, so nothing here can silently
|
|
8431
|
+
* re-repoint a class that is already migrated.
|
|
8432
|
+
*/
|
|
8433
|
+
var StorageMigrationDrainInputSchema = object({
|
|
8434
|
+
/** The classes to drain. Each must appear in `storageMigration.residue`, so
|
|
8435
|
+
* a class whose source is already empty is refused rather than started. */
|
|
8436
|
+
classes: array(StorageMigrationClassSchema).min(1),
|
|
8437
|
+
throttleMbps: number().min(1).max(1e3).optional()
|
|
8438
|
+
});
|
|
8439
|
+
/** What a footage source still holds, asked of the durable hour ledger. */
|
|
8440
|
+
var RelocateResidueInputSchema = object({
|
|
8441
|
+
fromLocationId: string().min(1),
|
|
8442
|
+
/** Narrow to one logical class; omit for every profile on the location. */
|
|
8443
|
+
footageClass: RelocateFootageClassSchema.optional()
|
|
8444
|
+
});
|
|
8445
|
+
/** `null` = the archive could not answer (no ledger on this node, or the
|
|
8446
|
+
* aggregate failed). Never conflated with an empty source. */
|
|
8447
|
+
var RelocateResidueSchema = object({
|
|
8448
|
+
segments: number().int().nonnegative(),
|
|
8449
|
+
bytes: number().int().nonnegative()
|
|
8450
|
+
}).nullable();
|
|
8451
|
+
/** How many rows a media pass would still act on against a given target — the
|
|
8452
|
+
* media lane's denominator AND its residue, from ONE derivation so the two can
|
|
8453
|
+
* never disagree. `null` = the count could not be taken. */
|
|
8454
|
+
var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
|
|
8455
|
+
var RelocatableMediaCountInputSchema = object({
|
|
8456
|
+
toLocationId: string().min(1),
|
|
8457
|
+
/** Omitted = `move`. */
|
|
8458
|
+
mode: MediaRelocateModeSchema.optional()
|
|
8459
|
+
});
|
|
8460
|
+
/**
|
|
8333
8461
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
8334
8462
|
* storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
|
|
8335
8463
|
* so the persisted record schema and the consumer-facing cap can both consume it
|
|
@@ -8433,6 +8561,32 @@ var StorageLocationRefSchema = union([StorageLocationTypeSchema, string().regex(
|
|
|
8433
8561
|
* two addons declaring the same `id` must agree on `cardinality` (validated
|
|
8434
8562
|
* at kernel aggregation time, not here).
|
|
8435
8563
|
*/
|
|
8564
|
+
/**
|
|
8565
|
+
* `StorageAccess` — how the service that DECLARED a storage-location kind
|
|
8566
|
+
* actually reaches the bytes. It is the constraint that decides which
|
|
8567
|
+
* `storage-provider`s may back a location of that kind.
|
|
8568
|
+
*
|
|
8569
|
+
* - `'local-path'` — the service asks `storage.resolve` for a path string and
|
|
8570
|
+
* then does its own `node:fs` I/O on it (the recorder's segment writer, the
|
|
8571
|
+
* post-analysis media roots). Only a provider that serves a genuine local
|
|
8572
|
+
* filesystem (`getProviderInfo().nodeLocal === true`) can satisfy that: a
|
|
8573
|
+
* remote provider's `resolve` returns a path on the REMOTE host, and
|
|
8574
|
+
* `fs.readdir` of it on this node either fails or — far worse — succeeds
|
|
8575
|
+
* against a same-named local directory that is something else entirely.
|
|
8576
|
+
*
|
|
8577
|
+
* - `'cap-mediated'` — every byte travels through the `storage` cap
|
|
8578
|
+
* (`read`/`write`, or `beginUpload`/`writeChunk`/`finalizeUpload`). The
|
|
8579
|
+
* service never sees a path, so any provider can back it. `backups` is the
|
|
8580
|
+
* one kind that qualifies today.
|
|
8581
|
+
*
|
|
8582
|
+
* Before this existed, `recordings` was unreachable by SFTP/S3/WebDAV only as
|
|
8583
|
+
* an EMERGENT property of how the recorder happened to be written. Nothing
|
|
8584
|
+
* refused the configuration; the first write simply went somewhere wrong, and
|
|
8585
|
+
* a recording write that goes wrong surfaces as a silent black window rather
|
|
8586
|
+
* than an error (the read path does not `stat`). This turns that accident into
|
|
8587
|
+
* a declared, enforced, testable refusal.
|
|
8588
|
+
*/
|
|
8589
|
+
var StorageAccessSchema = _enum(["local-path", "cap-mediated"]);
|
|
8436
8590
|
var StorageLocationDeclarationSchema = object({
|
|
8437
8591
|
/**
|
|
8438
8592
|
* Global location identifier, e.g. `recordings` or `recordingsLow`.
|
|
@@ -8452,6 +8606,19 @@ var StorageLocationDeclarationSchema = object({
|
|
|
8452
8606
|
*/
|
|
8453
8607
|
cardinality: _enum(["single", "multi"]),
|
|
8454
8608
|
/**
|
|
8609
|
+
* HOW the declaring service reaches the bytes — and therefore WHICH
|
|
8610
|
+
* providers may back a location of this kind. See {@link StorageAccessSchema}
|
|
8611
|
+
* and {@link STORAGE_ACCESS_FALLBACK}.
|
|
8612
|
+
*
|
|
8613
|
+
* Absent means `'local-path'`. That default is FAIL-CLOSED on purpose: it
|
|
8614
|
+
* can only over-restrict (refuse a remote provider for a kind that might
|
|
8615
|
+
* have coped) and never under-restrict. Declaring `'cap-mediated'` is the
|
|
8616
|
+
* permissive direction and is therefore never inferred — a repo guard
|
|
8617
|
+
* (`scripts/check-storage-access-declarations.ts`) refuses to let it be
|
|
8618
|
+
* reached by omission.
|
|
8619
|
+
*/
|
|
8620
|
+
access: StorageAccessSchema.optional(),
|
|
8621
|
+
/**
|
|
8455
8622
|
* When set, the default instance for this location inherits its resolved
|
|
8456
8623
|
* root from the named location's default instance. Useful for derivative
|
|
8457
8624
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
@@ -18036,8 +18203,10 @@ var TrackSchema = object({
|
|
|
18036
18203
|
lastSeen: number(),
|
|
18037
18204
|
/** Frame-rate position history (subject to maxPositionHistory cap). */
|
|
18038
18205
|
positions: array(TrackPositionSchema).readonly(),
|
|
18039
|
-
/** Periodic snapshots at snapshotIntervalMs cadence
|
|
18040
|
-
*
|
|
18206
|
+
/** Periodic snapshots at snapshotIntervalMs cadence — DEBUG media, produced
|
|
18207
|
+
* only while `MediaSettings.debugMediaEnabled` is on for the camera (D299;
|
|
18208
|
+
* the retired `saveThumbnails` used to gate this and the rolling
|
|
18209
|
+
* `lastFrame` together). Empty is the healthy default, not a capture gap. */
|
|
18041
18210
|
snapshots: array(TrackSnapshotSchema).readonly(),
|
|
18042
18211
|
/** Deduplicated zones the track has entered at least once. Zone IDS. */
|
|
18043
18212
|
zonesVisited: array(string()).readonly(),
|
|
@@ -18897,7 +19066,10 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
18897
19066
|
}), method(RelocateMediaInputSchema, object({ jobId: string() }), {
|
|
18898
19067
|
kind: "mutation",
|
|
18899
19068
|
auth: "admin"
|
|
18900
|
-
}), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(
|
|
19069
|
+
}), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, {
|
|
19070
|
+
kind: "query",
|
|
19071
|
+
auth: "admin"
|
|
19072
|
+
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
18901
19073
|
kind: "query",
|
|
18902
19074
|
auth: "admin"
|
|
18903
19075
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
@@ -20856,6 +21028,9 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
|
|
|
20856
21028
|
}), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
20857
21029
|
kind: "mutation",
|
|
20858
21030
|
auth: "admin"
|
|
21031
|
+
}), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
|
|
21032
|
+
kind: "mutation",
|
|
21033
|
+
auth: "admin"
|
|
20859
21034
|
});
|
|
20860
21035
|
var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
|
|
20861
21036
|
providerId: string().min(1),
|
|
@@ -21289,12 +21464,38 @@ response: record(string(), unknown()) }), object({
|
|
|
21289
21464
|
*
|
|
21290
21465
|
* ## Why this is a capability and not a helper
|
|
21291
21466
|
*
|
|
21292
|
-
*
|
|
21293
|
-
*
|
|
21294
|
-
*
|
|
21295
|
-
*
|
|
21296
|
-
*
|
|
21297
|
-
*
|
|
21467
|
+
* This capability was introduced with the claim that SIX stores in
|
|
21468
|
+
* `addon-post-analysis` held vectors in a `JSON` settings-store column — object
|
|
21469
|
+
* CLIP, face, plate, vehicle, identity, and the event store's derivatives. That
|
|
21470
|
+
* claim was never true, and leaving it here made five stores look like pending
|
|
21471
|
+
* work when three of them have no vector at all. Counted column by column on
|
|
21472
|
+
* 2026-08-30, exactly THREE ever held one:
|
|
21473
|
+
*
|
|
21474
|
+
* - `object-clip` — 512-dim CLIP image embedding, migrated 2026-08-06.
|
|
21475
|
+
* - `faces.embedding` — 512-dim ArcFace face embedding, migrated 2026-08-30.
|
|
21476
|
+
* - `identity-samples.embedding` — the same ArcFace vector for an ENROLLED
|
|
21477
|
+
* face, migrated 2026-08-30 into its OWN index (see below).
|
|
21478
|
+
*
|
|
21479
|
+
* `plates` and `vehicle-samples` store a plate STRING and a score; `vehicles`
|
|
21480
|
+
* and `identities` store a name; the event store stores no derivative vector.
|
|
21481
|
+
* They are not migration candidates and never were.
|
|
21482
|
+
*
|
|
21483
|
+
* Measured on the live hub the JSON encoding cost ~11.7 KB per row (512 floats
|
|
21484
|
+
* as TEXT, `JSON.parse`d on every search) and made semantic search load 5,000
|
|
21485
|
+
* rows before ranking anything.
|
|
21486
|
+
*
|
|
21487
|
+
* ## One index per COMPARISON, never per encoder
|
|
21488
|
+
*
|
|
21489
|
+
* `faces` and `identity-samples` hold the same 512 ArcFace dims from the same
|
|
21490
|
+
* model, and they still get two indexes. An index is a set of things that are
|
|
21491
|
+
* ranked against each other and that live and die together, and these two are
|
|
21492
|
+
* neither: a `faces` row is TRACK-OWNED and cascades away with its track under
|
|
21493
|
+
* a per-camera capacity cap, an `identity-samples` row is retention-EXEMPT
|
|
21494
|
+
* forever and is the gallery every recognition ranks against. One index would
|
|
21495
|
+
* mean every gallery load and every reconcile carried a filter whose failure
|
|
21496
|
+
* mode is either ranking a candidate against itself or reclaiming an enrolled
|
|
21497
|
+
* person's only sample. The dimension they share is not a reason to share an
|
|
21498
|
+
* index; the question they answer is, and it differs.
|
|
21298
21499
|
*
|
|
21299
21500
|
* The fix is not a faster loop, it is a different backend — and the backend
|
|
21300
21501
|
* should be replaceable without touching six callers. So: a singleton
|
|
@@ -21399,7 +21600,20 @@ var VectorQueryResultSchema = object({
|
|
|
21399
21600
|
*/
|
|
21400
21601
|
scanned: number(),
|
|
21401
21602
|
/** True when the backend could not consider every row that passed the filter. */
|
|
21402
|
-
truncated: boolean()
|
|
21603
|
+
truncated: boolean(),
|
|
21604
|
+
/**
|
|
21605
|
+
* The `topK` the backend actually ran with.
|
|
21606
|
+
*
|
|
21607
|
+
* Every backend has a ceiling — sqlite-vec's is 4,096 — and a caller asking
|
|
21608
|
+
* past it used to learn nothing but a boolean, from a WARN in the provider's
|
|
21609
|
+
* own log rather than in its answer. That is how an audit asking for 20,000
|
|
21610
|
+
* consumed 4,096 and reported `examined: 4096` as if it had walked the index,
|
|
21611
|
+
* for weeks. `truncated` says THAT the answer was short; this says BY HOW
|
|
21612
|
+
* MUCH, in the return value, where the caller cannot fail to see it.
|
|
21613
|
+
*
|
|
21614
|
+
* Equals the requested `topK` whenever nothing was lowered.
|
|
21615
|
+
*/
|
|
21616
|
+
effectiveTopK: number().int().positive()
|
|
21403
21617
|
});
|
|
21404
21618
|
var VectorDeleteInputSchema = object({
|
|
21405
21619
|
index: string(),
|
|
@@ -21428,6 +21642,68 @@ var VectorGetResultSchema = object({ items: array(object({
|
|
|
21428
21642
|
id: string(),
|
|
21429
21643
|
metadata: VectorMetadataSchema
|
|
21430
21644
|
})) });
|
|
21645
|
+
/**
|
|
21646
|
+
* Ids to read back WITH their vectors.
|
|
21647
|
+
*
|
|
21648
|
+
* The sibling of {@link VectorGetResultSchema}, and deliberately a separate
|
|
21649
|
+
* method rather than a flag on it: `getByIds` promises no vectors and its one
|
|
21650
|
+
* caller depends on that promise. This one promises the opposite.
|
|
21651
|
+
*
|
|
21652
|
+
* It exists because a store cannot put its vectors here otherwise. An ArcFace
|
|
21653
|
+
* gallery is ranked IN PROCESS, per detection, against every enrolled sample —
|
|
21654
|
+
* a per-face cross-process KNN would be a network round trip inside the
|
|
21655
|
+
* recognition loop. So the gallery is loaded once and held in RAM, and loading
|
|
21656
|
+
* it requires the index to hand the floats back. Without this method the only
|
|
21657
|
+
* way to keep a readable vector is a JSON column, which is the thing this
|
|
21658
|
+
* capability exists to delete.
|
|
21659
|
+
*
|
|
21660
|
+
* BOUNDED BY THE CALLER: ids are named, never "everything". Enumerating an
|
|
21661
|
+
* index is {@link VectorScanInputSchema}'s job, and it returns no vectors.
|
|
21662
|
+
*/
|
|
21663
|
+
var VectorFetchInputSchema = object({
|
|
21664
|
+
index: string(),
|
|
21665
|
+
ids: array(string())
|
|
21666
|
+
});
|
|
21667
|
+
var VectorFetchResultSchema = object({ items: array(object({
|
|
21668
|
+
id: string(),
|
|
21669
|
+
/** base64 Float32LE — the same wire form `upsert` accepts. */
|
|
21670
|
+
vector: string(),
|
|
21671
|
+
metadata: VectorMetadataSchema
|
|
21672
|
+
})) });
|
|
21673
|
+
/**
|
|
21674
|
+
* ENUMERATE an index: one page of rows in a stable order, no ranking.
|
|
21675
|
+
*
|
|
21676
|
+
* A reconcile does not want the nearest rows, it wants ALL of them, and asking
|
|
21677
|
+
* a KNN for "all" is the wrong question twice over. It hits the backend's `k`
|
|
21678
|
+
* ceiling — 4,096 on sqlite-vec against a 22,128-row index — and it needs a
|
|
21679
|
+
* probe vector it does not have, so the audit passed a ZERO vector whose cosine
|
|
21680
|
+
* distance to every row is degenerate. `examined: 4096` then read as "we
|
|
21681
|
+
* looked" for as long as anyone cared to read it.
|
|
21682
|
+
*
|
|
21683
|
+
* This is the primitive that question actually needs: a bounded page, ordered
|
|
21684
|
+
* by the backend's own row order, costing no distance computation at all.
|
|
21685
|
+
* Vectors are NOT returned — an enumeration that shipped 2 KB per row would be
|
|
21686
|
+
* the full-table read this capability was built to stop.
|
|
21687
|
+
*/
|
|
21688
|
+
var VectorScanInputSchema = object({
|
|
21689
|
+
index: string(),
|
|
21690
|
+
/** Opaque resume point. `0` starts at the top; pass back `nextCursor`. */
|
|
21691
|
+
cursor: number().int().nonnegative().default(0),
|
|
21692
|
+
limit: number().int().positive()
|
|
21693
|
+
});
|
|
21694
|
+
var VectorScanResultSchema = object({
|
|
21695
|
+
items: array(object({
|
|
21696
|
+
id: string(),
|
|
21697
|
+
metadata: VectorMetadataSchema
|
|
21698
|
+
})),
|
|
21699
|
+
/**
|
|
21700
|
+
* Where the next page starts, or `null` when the walk reached the end.
|
|
21701
|
+
*
|
|
21702
|
+
* `null` is the ONLY end-of-index signal. A caller must not infer the end
|
|
21703
|
+
* from a short page: a backend is free to return fewer rows than asked.
|
|
21704
|
+
*/
|
|
21705
|
+
nextCursor: number().int().nonnegative().nullable()
|
|
21706
|
+
});
|
|
21431
21707
|
var VectorStatsInputSchema = object({ index: string() });
|
|
21432
21708
|
var VectorStatsResultSchema = object({
|
|
21433
21709
|
/** Provider id, so an operator can tell brute force from an ANN index. */
|
|
@@ -21446,7 +21722,7 @@ method(VectorDeclareIndexInputSchema, _void(), {
|
|
|
21446
21722
|
}), method(VectorUpsertInputSchema, VectorUpsertResultSchema, {
|
|
21447
21723
|
kind: "mutation",
|
|
21448
21724
|
auth: "admin"
|
|
21449
|
-
}), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
|
|
21725
|
+
}), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorFetchInputSchema, VectorFetchResultSchema, { auth: "admin" }), method(VectorScanInputSchema, VectorScanResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
|
|
21450
21726
|
kind: "mutation",
|
|
21451
21727
|
auth: "admin"
|
|
21452
21728
|
}), method(VectorDeleteByFilterInputSchema, VectorDeleteResultSchema, {
|
|
@@ -26350,6 +26626,9 @@ method(object({
|
|
|
26350
26626
|
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
26351
26627
|
kind: "query",
|
|
26352
26628
|
auth: "admin"
|
|
26629
|
+
}), method(RelocateResidueInputSchema, RelocateResidueSchema, {
|
|
26630
|
+
kind: "query",
|
|
26631
|
+
auth: "admin"
|
|
26353
26632
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
26354
26633
|
kind: "mutation",
|
|
26355
26634
|
auth: "admin"
|
|
@@ -31315,6 +31594,12 @@ Object.freeze({
|
|
|
31315
31594
|
addonId: null,
|
|
31316
31595
|
access: "create"
|
|
31317
31596
|
},
|
|
31597
|
+
"pipelineAnalytics.countRelocatableMedia": {
|
|
31598
|
+
capName: "pipeline-analytics",
|
|
31599
|
+
capScope: "device",
|
|
31600
|
+
addonId: null,
|
|
31601
|
+
access: "view"
|
|
31602
|
+
},
|
|
31318
31603
|
"pipelineAnalytics.countUnstampedEventMedia": {
|
|
31319
31604
|
capName: "pipeline-analytics",
|
|
31320
31605
|
capScope: "device",
|
|
@@ -32479,6 +32764,12 @@ Object.freeze({
|
|
|
32479
32764
|
addonId: null,
|
|
32480
32765
|
access: "view"
|
|
32481
32766
|
},
|
|
32767
|
+
"recording.getRelocateResidue": {
|
|
32768
|
+
capName: "recording",
|
|
32769
|
+
capScope: "system",
|
|
32770
|
+
addonId: null,
|
|
32771
|
+
access: "view"
|
|
32772
|
+
},
|
|
32482
32773
|
"recording.getStorageMigrationMoveStatus": {
|
|
32483
32774
|
capName: "recording",
|
|
32484
32775
|
capScope: "system",
|
|
@@ -33025,12 +33316,30 @@ Object.freeze({
|
|
|
33025
33316
|
addonId: null,
|
|
33026
33317
|
access: "create"
|
|
33027
33318
|
},
|
|
33319
|
+
"storageMigration.drain": {
|
|
33320
|
+
capName: "storage-migration",
|
|
33321
|
+
capScope: "system",
|
|
33322
|
+
addonId: null,
|
|
33323
|
+
access: "create"
|
|
33324
|
+
},
|
|
33325
|
+
"storageMigration.movers": {
|
|
33326
|
+
capName: "storage-migration",
|
|
33327
|
+
capScope: "system",
|
|
33328
|
+
addonId: null,
|
|
33329
|
+
access: "view"
|
|
33330
|
+
},
|
|
33028
33331
|
"storageMigration.plan": {
|
|
33029
33332
|
capName: "storage-migration",
|
|
33030
33333
|
capScope: "system",
|
|
33031
33334
|
addonId: null,
|
|
33032
33335
|
access: "view"
|
|
33033
33336
|
},
|
|
33337
|
+
"storageMigration.residue": {
|
|
33338
|
+
capName: "storage-migration",
|
|
33339
|
+
capScope: "system",
|
|
33340
|
+
addonId: null,
|
|
33341
|
+
access: "view"
|
|
33342
|
+
},
|
|
33034
33343
|
"storageMigration.start": {
|
|
33035
33344
|
capName: "storage-migration",
|
|
33036
33345
|
capScope: "system",
|
|
@@ -33865,6 +34174,12 @@ Object.freeze({
|
|
|
33865
34174
|
addonId: null,
|
|
33866
34175
|
access: "delete"
|
|
33867
34176
|
},
|
|
34177
|
+
"vectorStore.fetchByIds": {
|
|
34178
|
+
capName: "vector-store",
|
|
34179
|
+
capScope: "system",
|
|
34180
|
+
addonId: null,
|
|
34181
|
+
access: "view"
|
|
34182
|
+
},
|
|
33868
34183
|
"vectorStore.getByIds": {
|
|
33869
34184
|
capName: "vector-store",
|
|
33870
34185
|
capScope: "system",
|
|
@@ -33877,6 +34192,12 @@ Object.freeze({
|
|
|
33877
34192
|
addonId: null,
|
|
33878
34193
|
access: "view"
|
|
33879
34194
|
},
|
|
34195
|
+
"vectorStore.scan": {
|
|
34196
|
+
capName: "vector-store",
|
|
34197
|
+
capScope: "system",
|
|
34198
|
+
addonId: null,
|
|
34199
|
+
access: "view"
|
|
34200
|
+
},
|
|
33880
34201
|
"vectorStore.stats": {
|
|
33881
34202
|
capName: "vector-store",
|
|
33882
34203
|
capScope: "system",
|
|
@@ -8278,13 +8278,49 @@ var StorageMigrationParticipantSchema = _enum([
|
|
|
8278
8278
|
"recorder",
|
|
8279
8279
|
"analytics"
|
|
8280
8280
|
]);
|
|
8281
|
+
/**
|
|
8282
|
+
* The mover's own numbers, folded onto the coordinator's durable move record.
|
|
8283
|
+
*
|
|
8284
|
+
* The long half of a non-blocking migration is `draining`, and it is measured
|
|
8285
|
+
* in hours: 136 885 files at ~4 MB/s is about five of them. Before this shape
|
|
8286
|
+
* existed the only place those numbers appeared was a Loki line, so an operator
|
|
8287
|
+
* watching the Admin UI saw `phase: draining` and nothing else for a whole
|
|
8288
|
+
* afternoon.
|
|
8289
|
+
*
|
|
8290
|
+
* It is POLLED, never pushed. Events are telemetry and may be dropped
|
|
8291
|
+
* (D8/D11), and a dropped progress event is indistinguishable from a stalled
|
|
8292
|
+
* mover — which is the exact failure this is meant to end. The coordinator's
|
|
8293
|
+
* `waitForMoves` already fetches the whole {@link RelocateJob} on every tick to
|
|
8294
|
+
* read `state`; folding the counters costs no extra read and makes the durable
|
|
8295
|
+
* record say afterwards how far a move actually got.
|
|
8296
|
+
*
|
|
8297
|
+
* `filesTotal` is `null` for "no honest denominator" and is never zero-filled:
|
|
8298
|
+
* a windowed footage job (`sinceMs`) and a node with no ledger both genuinely
|
|
8299
|
+
* cannot say M, and a 0 there would render as "100 % done".
|
|
8300
|
+
*/
|
|
8301
|
+
var StorageMigrationMoveProgressSchema = object({
|
|
8302
|
+
filesMoved: number().int().nonnegative(),
|
|
8303
|
+
/** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
|
|
8304
|
+
filesTotal: number().int().nonnegative().nullable(),
|
|
8305
|
+
bytesMoved: number().int().nonnegative(),
|
|
8306
|
+
/** The MOVER's start, not the migration's: a drain restarted after an addon
|
|
8307
|
+
* crash gets a new mover, and a rate computed from the migration's start
|
|
8308
|
+
* would silently average in the time nothing was running. */
|
|
8309
|
+
startedAt: number(),
|
|
8310
|
+
/** When the coordinator last read these numbers. Paired with `startedAt` it
|
|
8311
|
+
* is the only honest rate: both clocks are the hub's, so a UI never has to
|
|
8312
|
+
* subtract its own. */
|
|
8313
|
+
observedAt: number()
|
|
8314
|
+
});
|
|
8281
8315
|
var StorageMigrationMoveSchema = object({
|
|
8282
8316
|
storageClass: StorageMigrationClassSchema,
|
|
8283
8317
|
fromLocationId: string(),
|
|
8284
8318
|
toLocationId: string(),
|
|
8285
8319
|
moverJobId: string().nullable(),
|
|
8286
8320
|
state: RelocateJobStateSchema.nullable(),
|
|
8287
|
-
error: string().nullable()
|
|
8321
|
+
error: string().nullable(),
|
|
8322
|
+
/** Last observed mover counters; `null` until the mover has been polled once. */
|
|
8323
|
+
progress: StorageMigrationMoveProgressSchema.nullable()
|
|
8288
8324
|
});
|
|
8289
8325
|
var StorageMigrationJobSchema = object({
|
|
8290
8326
|
jobId: string(),
|
|
@@ -8330,6 +8366,98 @@ var StorageMigrationPlanSchema = object({
|
|
|
8330
8366
|
findings: array(StorageMigrationFindingSchema)
|
|
8331
8367
|
});
|
|
8332
8368
|
/**
|
|
8369
|
+
* A mover as it exists RIGHT NOW, whether or not a migration job owns it.
|
|
8370
|
+
*
|
|
8371
|
+
* The coordinator's job record is the state of record for a migration, and its
|
|
8372
|
+
* moves carry {@link StorageMigrationMoveProgress}. But the movers are usable
|
|
8373
|
+
* standalone — `recording.relocateFootage` and `pipelineAnalytics.relocateMedia`
|
|
8374
|
+
* are both operator-callable, and on 2026-08-29 a five-hour drain was armed that
|
|
8375
|
+
* way because no supported UI path existed. A mover armed like that has no job
|
|
8376
|
+
* to fold progress into, so it has to be readable on its own or it is invisible.
|
|
8377
|
+
*
|
|
8378
|
+
* `migrationJobId` is what tells the two apart: `null` means nothing here
|
|
8379
|
+
* orchestrated it.
|
|
8380
|
+
*/
|
|
8381
|
+
var StorageMigrationMoverSchema = object({
|
|
8382
|
+
lane: _enum(["footage", "media"]),
|
|
8383
|
+
job: RelocateJobSchema,
|
|
8384
|
+
/** The coordinator job that armed this mover, or `null` for a mover armed
|
|
8385
|
+
* directly against the owning addon. */
|
|
8386
|
+
migrationJobId: string().nullable(),
|
|
8387
|
+
/** When the hub read these counters. Stamped here so a rate is `bytesMoved`
|
|
8388
|
+
* over (`observedAt` − `job.startedAt`) with BOTH ends on the hub's clock —
|
|
8389
|
+
* a browser subtracting its own `Date.now()` from a server `startedAt` is a
|
|
8390
|
+
* rate made of two different clocks. */
|
|
8391
|
+
observedAt: number()
|
|
8392
|
+
});
|
|
8393
|
+
/**
|
|
8394
|
+
* What a SOURCE still holds for one storage class — the number that makes a
|
|
8395
|
+
* "drain remaining" action honest rather than hopeful.
|
|
8396
|
+
*
|
|
8397
|
+
* It comes from the archive (`SegmentHourLedger.census` for footage, the media
|
|
8398
|
+
* engine's own selection count for media), never from the resident index: a
|
|
8399
|
+
* drain sized off `RecordingIndex` is what reported `done` over 80.3 GB it had
|
|
8400
|
+
* never been told about (D295).
|
|
8401
|
+
*
|
|
8402
|
+
* `items`/`bytes` are `null` for "the archive could not be asked", which is
|
|
8403
|
+
* deliberately NOT zero: a drain is still offered for an unknown residue,
|
|
8404
|
+
* because refusing on an unanswerable read would hide exactly the case an
|
|
8405
|
+
* operator needs to act on.
|
|
8406
|
+
*/
|
|
8407
|
+
var StorageMigrationResidueSchema = object({
|
|
8408
|
+
storageClass: StorageMigrationClassSchema,
|
|
8409
|
+
/** The location still holding the data. `'*'` for the media lane, whose rows
|
|
8410
|
+
* move from wherever they are rather than from one named source. */
|
|
8411
|
+
fromLocationId: string(),
|
|
8412
|
+
/** Where a drain would move it — the class's CURRENT default. */
|
|
8413
|
+
toLocationId: string(),
|
|
8414
|
+
/** Segments (footage lane) or rows (media lane) still on the source. */
|
|
8415
|
+
items: number().int().nonnegative().nullable(),
|
|
8416
|
+
/** Bytes on the source; `null` when the lane counts rows rather than bytes. */
|
|
8417
|
+
bytes: number().int().nonnegative().nullable()
|
|
8418
|
+
});
|
|
8419
|
+
/**
|
|
8420
|
+
* Run the DRAIN half and nothing else.
|
|
8421
|
+
*
|
|
8422
|
+
* A migration that reached `done` has already repointed, so `start` correctly
|
|
8423
|
+
* refuses its destination ("already the default") — there is nothing left to
|
|
8424
|
+
* repoint. But the drain can fail, be cancelled, be interrupted by a restart,
|
|
8425
|
+
* or finish against a work list that was a tenth of the archive (D295), and
|
|
8426
|
+
* before this there was no supported way to run only that half: the only way
|
|
8427
|
+
* through was calling `recording.relocateFootage` by hand over admin tRPC.
|
|
8428
|
+
*
|
|
8429
|
+
* `drain` NEVER calls `setDefaultLocations`. That is what keeps `start`'s
|
|
8430
|
+
* refusal meaningful: the two verbs are disjoint, so nothing here can silently
|
|
8431
|
+
* re-repoint a class that is already migrated.
|
|
8432
|
+
*/
|
|
8433
|
+
var StorageMigrationDrainInputSchema = object({
|
|
8434
|
+
/** The classes to drain. Each must appear in `storageMigration.residue`, so
|
|
8435
|
+
* a class whose source is already empty is refused rather than started. */
|
|
8436
|
+
classes: array(StorageMigrationClassSchema).min(1),
|
|
8437
|
+
throttleMbps: number().min(1).max(1e3).optional()
|
|
8438
|
+
});
|
|
8439
|
+
/** What a footage source still holds, asked of the durable hour ledger. */
|
|
8440
|
+
var RelocateResidueInputSchema = object({
|
|
8441
|
+
fromLocationId: string().min(1),
|
|
8442
|
+
/** Narrow to one logical class; omit for every profile on the location. */
|
|
8443
|
+
footageClass: RelocateFootageClassSchema.optional()
|
|
8444
|
+
});
|
|
8445
|
+
/** `null` = the archive could not answer (no ledger on this node, or the
|
|
8446
|
+
* aggregate failed). Never conflated with an empty source. */
|
|
8447
|
+
var RelocateResidueSchema = object({
|
|
8448
|
+
segments: number().int().nonnegative(),
|
|
8449
|
+
bytes: number().int().nonnegative()
|
|
8450
|
+
}).nullable();
|
|
8451
|
+
/** How many rows a media pass would still act on against a given target — the
|
|
8452
|
+
* media lane's denominator AND its residue, from ONE derivation so the two can
|
|
8453
|
+
* never disagree. `null` = the count could not be taken. */
|
|
8454
|
+
var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
|
|
8455
|
+
var RelocatableMediaCountInputSchema = object({
|
|
8456
|
+
toLocationId: string().min(1),
|
|
8457
|
+
/** Omitted = `move`. */
|
|
8458
|
+
mode: MediaRelocateModeSchema.optional()
|
|
8459
|
+
});
|
|
8460
|
+
/**
|
|
8333
8461
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
8334
8462
|
* storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
|
|
8335
8463
|
* so the persisted record schema and the consumer-facing cap can both consume it
|
|
@@ -8433,6 +8561,32 @@ var StorageLocationRefSchema = union([StorageLocationTypeSchema, string().regex(
|
|
|
8433
8561
|
* two addons declaring the same `id` must agree on `cardinality` (validated
|
|
8434
8562
|
* at kernel aggregation time, not here).
|
|
8435
8563
|
*/
|
|
8564
|
+
/**
|
|
8565
|
+
* `StorageAccess` — how the service that DECLARED a storage-location kind
|
|
8566
|
+
* actually reaches the bytes. It is the constraint that decides which
|
|
8567
|
+
* `storage-provider`s may back a location of that kind.
|
|
8568
|
+
*
|
|
8569
|
+
* - `'local-path'` — the service asks `storage.resolve` for a path string and
|
|
8570
|
+
* then does its own `node:fs` I/O on it (the recorder's segment writer, the
|
|
8571
|
+
* post-analysis media roots). Only a provider that serves a genuine local
|
|
8572
|
+
* filesystem (`getProviderInfo().nodeLocal === true`) can satisfy that: a
|
|
8573
|
+
* remote provider's `resolve` returns a path on the REMOTE host, and
|
|
8574
|
+
* `fs.readdir` of it on this node either fails or — far worse — succeeds
|
|
8575
|
+
* against a same-named local directory that is something else entirely.
|
|
8576
|
+
*
|
|
8577
|
+
* - `'cap-mediated'` — every byte travels through the `storage` cap
|
|
8578
|
+
* (`read`/`write`, or `beginUpload`/`writeChunk`/`finalizeUpload`). The
|
|
8579
|
+
* service never sees a path, so any provider can back it. `backups` is the
|
|
8580
|
+
* one kind that qualifies today.
|
|
8581
|
+
*
|
|
8582
|
+
* Before this existed, `recordings` was unreachable by SFTP/S3/WebDAV only as
|
|
8583
|
+
* an EMERGENT property of how the recorder happened to be written. Nothing
|
|
8584
|
+
* refused the configuration; the first write simply went somewhere wrong, and
|
|
8585
|
+
* a recording write that goes wrong surfaces as a silent black window rather
|
|
8586
|
+
* than an error (the read path does not `stat`). This turns that accident into
|
|
8587
|
+
* a declared, enforced, testable refusal.
|
|
8588
|
+
*/
|
|
8589
|
+
var StorageAccessSchema = _enum(["local-path", "cap-mediated"]);
|
|
8436
8590
|
var StorageLocationDeclarationSchema = object({
|
|
8437
8591
|
/**
|
|
8438
8592
|
* Global location identifier, e.g. `recordings` or `recordingsLow`.
|
|
@@ -8452,6 +8606,19 @@ var StorageLocationDeclarationSchema = object({
|
|
|
8452
8606
|
*/
|
|
8453
8607
|
cardinality: _enum(["single", "multi"]),
|
|
8454
8608
|
/**
|
|
8609
|
+
* HOW the declaring service reaches the bytes — and therefore WHICH
|
|
8610
|
+
* providers may back a location of this kind. See {@link StorageAccessSchema}
|
|
8611
|
+
* and {@link STORAGE_ACCESS_FALLBACK}.
|
|
8612
|
+
*
|
|
8613
|
+
* Absent means `'local-path'`. That default is FAIL-CLOSED on purpose: it
|
|
8614
|
+
* can only over-restrict (refuse a remote provider for a kind that might
|
|
8615
|
+
* have coped) and never under-restrict. Declaring `'cap-mediated'` is the
|
|
8616
|
+
* permissive direction and is therefore never inferred — a repo guard
|
|
8617
|
+
* (`scripts/check-storage-access-declarations.ts`) refuses to let it be
|
|
8618
|
+
* reached by omission.
|
|
8619
|
+
*/
|
|
8620
|
+
access: StorageAccessSchema.optional(),
|
|
8621
|
+
/**
|
|
8455
8622
|
* When set, the default instance for this location inherits its resolved
|
|
8456
8623
|
* root from the named location's default instance. Useful for derivative
|
|
8457
8624
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
@@ -18036,8 +18203,10 @@ var TrackSchema = object({
|
|
|
18036
18203
|
lastSeen: number(),
|
|
18037
18204
|
/** Frame-rate position history (subject to maxPositionHistory cap). */
|
|
18038
18205
|
positions: array(TrackPositionSchema).readonly(),
|
|
18039
|
-
/** Periodic snapshots at snapshotIntervalMs cadence
|
|
18040
|
-
*
|
|
18206
|
+
/** Periodic snapshots at snapshotIntervalMs cadence — DEBUG media, produced
|
|
18207
|
+
* only while `MediaSettings.debugMediaEnabled` is on for the camera (D299;
|
|
18208
|
+
* the retired `saveThumbnails` used to gate this and the rolling
|
|
18209
|
+
* `lastFrame` together). Empty is the healthy default, not a capture gap. */
|
|
18041
18210
|
snapshots: array(TrackSnapshotSchema).readonly(),
|
|
18042
18211
|
/** Deduplicated zones the track has entered at least once. Zone IDS. */
|
|
18043
18212
|
zonesVisited: array(string()).readonly(),
|
|
@@ -18897,7 +19066,10 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
18897
19066
|
}), method(RelocateMediaInputSchema, object({ jobId: string() }), {
|
|
18898
19067
|
kind: "mutation",
|
|
18899
19068
|
auth: "admin"
|
|
18900
|
-
}), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(
|
|
19069
|
+
}), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, {
|
|
19070
|
+
kind: "query",
|
|
19071
|
+
auth: "admin"
|
|
19072
|
+
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
18901
19073
|
kind: "query",
|
|
18902
19074
|
auth: "admin"
|
|
18903
19075
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
@@ -20856,6 +21028,9 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
|
|
|
20856
21028
|
}), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
20857
21029
|
kind: "mutation",
|
|
20858
21030
|
auth: "admin"
|
|
21031
|
+
}), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
|
|
21032
|
+
kind: "mutation",
|
|
21033
|
+
auth: "admin"
|
|
20859
21034
|
});
|
|
20860
21035
|
var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
|
|
20861
21036
|
providerId: string().min(1),
|
|
@@ -21289,12 +21464,38 @@ response: record(string(), unknown()) }), object({
|
|
|
21289
21464
|
*
|
|
21290
21465
|
* ## Why this is a capability and not a helper
|
|
21291
21466
|
*
|
|
21292
|
-
*
|
|
21293
|
-
*
|
|
21294
|
-
*
|
|
21295
|
-
*
|
|
21296
|
-
*
|
|
21297
|
-
*
|
|
21467
|
+
* This capability was introduced with the claim that SIX stores in
|
|
21468
|
+
* `addon-post-analysis` held vectors in a `JSON` settings-store column — object
|
|
21469
|
+
* CLIP, face, plate, vehicle, identity, and the event store's derivatives. That
|
|
21470
|
+
* claim was never true, and leaving it here made five stores look like pending
|
|
21471
|
+
* work when three of them have no vector at all. Counted column by column on
|
|
21472
|
+
* 2026-08-30, exactly THREE ever held one:
|
|
21473
|
+
*
|
|
21474
|
+
* - `object-clip` — 512-dim CLIP image embedding, migrated 2026-08-06.
|
|
21475
|
+
* - `faces.embedding` — 512-dim ArcFace face embedding, migrated 2026-08-30.
|
|
21476
|
+
* - `identity-samples.embedding` — the same ArcFace vector for an ENROLLED
|
|
21477
|
+
* face, migrated 2026-08-30 into its OWN index (see below).
|
|
21478
|
+
*
|
|
21479
|
+
* `plates` and `vehicle-samples` store a plate STRING and a score; `vehicles`
|
|
21480
|
+
* and `identities` store a name; the event store stores no derivative vector.
|
|
21481
|
+
* They are not migration candidates and never were.
|
|
21482
|
+
*
|
|
21483
|
+
* Measured on the live hub the JSON encoding cost ~11.7 KB per row (512 floats
|
|
21484
|
+
* as TEXT, `JSON.parse`d on every search) and made semantic search load 5,000
|
|
21485
|
+
* rows before ranking anything.
|
|
21486
|
+
*
|
|
21487
|
+
* ## One index per COMPARISON, never per encoder
|
|
21488
|
+
*
|
|
21489
|
+
* `faces` and `identity-samples` hold the same 512 ArcFace dims from the same
|
|
21490
|
+
* model, and they still get two indexes. An index is a set of things that are
|
|
21491
|
+
* ranked against each other and that live and die together, and these two are
|
|
21492
|
+
* neither: a `faces` row is TRACK-OWNED and cascades away with its track under
|
|
21493
|
+
* a per-camera capacity cap, an `identity-samples` row is retention-EXEMPT
|
|
21494
|
+
* forever and is the gallery every recognition ranks against. One index would
|
|
21495
|
+
* mean every gallery load and every reconcile carried a filter whose failure
|
|
21496
|
+
* mode is either ranking a candidate against itself or reclaiming an enrolled
|
|
21497
|
+
* person's only sample. The dimension they share is not a reason to share an
|
|
21498
|
+
* index; the question they answer is, and it differs.
|
|
21298
21499
|
*
|
|
21299
21500
|
* The fix is not a faster loop, it is a different backend — and the backend
|
|
21300
21501
|
* should be replaceable without touching six callers. So: a singleton
|
|
@@ -21399,7 +21600,20 @@ var VectorQueryResultSchema = object({
|
|
|
21399
21600
|
*/
|
|
21400
21601
|
scanned: number(),
|
|
21401
21602
|
/** True when the backend could not consider every row that passed the filter. */
|
|
21402
|
-
truncated: boolean()
|
|
21603
|
+
truncated: boolean(),
|
|
21604
|
+
/**
|
|
21605
|
+
* The `topK` the backend actually ran with.
|
|
21606
|
+
*
|
|
21607
|
+
* Every backend has a ceiling — sqlite-vec's is 4,096 — and a caller asking
|
|
21608
|
+
* past it used to learn nothing but a boolean, from a WARN in the provider's
|
|
21609
|
+
* own log rather than in its answer. That is how an audit asking for 20,000
|
|
21610
|
+
* consumed 4,096 and reported `examined: 4096` as if it had walked the index,
|
|
21611
|
+
* for weeks. `truncated` says THAT the answer was short; this says BY HOW
|
|
21612
|
+
* MUCH, in the return value, where the caller cannot fail to see it.
|
|
21613
|
+
*
|
|
21614
|
+
* Equals the requested `topK` whenever nothing was lowered.
|
|
21615
|
+
*/
|
|
21616
|
+
effectiveTopK: number().int().positive()
|
|
21403
21617
|
});
|
|
21404
21618
|
var VectorDeleteInputSchema = object({
|
|
21405
21619
|
index: string(),
|
|
@@ -21428,6 +21642,68 @@ var VectorGetResultSchema = object({ items: array(object({
|
|
|
21428
21642
|
id: string(),
|
|
21429
21643
|
metadata: VectorMetadataSchema
|
|
21430
21644
|
})) });
|
|
21645
|
+
/**
|
|
21646
|
+
* Ids to read back WITH their vectors.
|
|
21647
|
+
*
|
|
21648
|
+
* The sibling of {@link VectorGetResultSchema}, and deliberately a separate
|
|
21649
|
+
* method rather than a flag on it: `getByIds` promises no vectors and its one
|
|
21650
|
+
* caller depends on that promise. This one promises the opposite.
|
|
21651
|
+
*
|
|
21652
|
+
* It exists because a store cannot put its vectors here otherwise. An ArcFace
|
|
21653
|
+
* gallery is ranked IN PROCESS, per detection, against every enrolled sample —
|
|
21654
|
+
* a per-face cross-process KNN would be a network round trip inside the
|
|
21655
|
+
* recognition loop. So the gallery is loaded once and held in RAM, and loading
|
|
21656
|
+
* it requires the index to hand the floats back. Without this method the only
|
|
21657
|
+
* way to keep a readable vector is a JSON column, which is the thing this
|
|
21658
|
+
* capability exists to delete.
|
|
21659
|
+
*
|
|
21660
|
+
* BOUNDED BY THE CALLER: ids are named, never "everything". Enumerating an
|
|
21661
|
+
* index is {@link VectorScanInputSchema}'s job, and it returns no vectors.
|
|
21662
|
+
*/
|
|
21663
|
+
var VectorFetchInputSchema = object({
|
|
21664
|
+
index: string(),
|
|
21665
|
+
ids: array(string())
|
|
21666
|
+
});
|
|
21667
|
+
var VectorFetchResultSchema = object({ items: array(object({
|
|
21668
|
+
id: string(),
|
|
21669
|
+
/** base64 Float32LE — the same wire form `upsert` accepts. */
|
|
21670
|
+
vector: string(),
|
|
21671
|
+
metadata: VectorMetadataSchema
|
|
21672
|
+
})) });
|
|
21673
|
+
/**
|
|
21674
|
+
* ENUMERATE an index: one page of rows in a stable order, no ranking.
|
|
21675
|
+
*
|
|
21676
|
+
* A reconcile does not want the nearest rows, it wants ALL of them, and asking
|
|
21677
|
+
* a KNN for "all" is the wrong question twice over. It hits the backend's `k`
|
|
21678
|
+
* ceiling — 4,096 on sqlite-vec against a 22,128-row index — and it needs a
|
|
21679
|
+
* probe vector it does not have, so the audit passed a ZERO vector whose cosine
|
|
21680
|
+
* distance to every row is degenerate. `examined: 4096` then read as "we
|
|
21681
|
+
* looked" for as long as anyone cared to read it.
|
|
21682
|
+
*
|
|
21683
|
+
* This is the primitive that question actually needs: a bounded page, ordered
|
|
21684
|
+
* by the backend's own row order, costing no distance computation at all.
|
|
21685
|
+
* Vectors are NOT returned — an enumeration that shipped 2 KB per row would be
|
|
21686
|
+
* the full-table read this capability was built to stop.
|
|
21687
|
+
*/
|
|
21688
|
+
var VectorScanInputSchema = object({
|
|
21689
|
+
index: string(),
|
|
21690
|
+
/** Opaque resume point. `0` starts at the top; pass back `nextCursor`. */
|
|
21691
|
+
cursor: number().int().nonnegative().default(0),
|
|
21692
|
+
limit: number().int().positive()
|
|
21693
|
+
});
|
|
21694
|
+
var VectorScanResultSchema = object({
|
|
21695
|
+
items: array(object({
|
|
21696
|
+
id: string(),
|
|
21697
|
+
metadata: VectorMetadataSchema
|
|
21698
|
+
})),
|
|
21699
|
+
/**
|
|
21700
|
+
* Where the next page starts, or `null` when the walk reached the end.
|
|
21701
|
+
*
|
|
21702
|
+
* `null` is the ONLY end-of-index signal. A caller must not infer the end
|
|
21703
|
+
* from a short page: a backend is free to return fewer rows than asked.
|
|
21704
|
+
*/
|
|
21705
|
+
nextCursor: number().int().nonnegative().nullable()
|
|
21706
|
+
});
|
|
21431
21707
|
var VectorStatsInputSchema = object({ index: string() });
|
|
21432
21708
|
var VectorStatsResultSchema = object({
|
|
21433
21709
|
/** Provider id, so an operator can tell brute force from an ANN index. */
|
|
@@ -21446,7 +21722,7 @@ method(VectorDeclareIndexInputSchema, _void(), {
|
|
|
21446
21722
|
}), method(VectorUpsertInputSchema, VectorUpsertResultSchema, {
|
|
21447
21723
|
kind: "mutation",
|
|
21448
21724
|
auth: "admin"
|
|
21449
|
-
}), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
|
|
21725
|
+
}), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorFetchInputSchema, VectorFetchResultSchema, { auth: "admin" }), method(VectorScanInputSchema, VectorScanResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
|
|
21450
21726
|
kind: "mutation",
|
|
21451
21727
|
auth: "admin"
|
|
21452
21728
|
}), method(VectorDeleteByFilterInputSchema, VectorDeleteResultSchema, {
|
|
@@ -26350,6 +26626,9 @@ method(object({
|
|
|
26350
26626
|
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
26351
26627
|
kind: "query",
|
|
26352
26628
|
auth: "admin"
|
|
26629
|
+
}), method(RelocateResidueInputSchema, RelocateResidueSchema, {
|
|
26630
|
+
kind: "query",
|
|
26631
|
+
auth: "admin"
|
|
26353
26632
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
26354
26633
|
kind: "mutation",
|
|
26355
26634
|
auth: "admin"
|
|
@@ -31315,6 +31594,12 @@ Object.freeze({
|
|
|
31315
31594
|
addonId: null,
|
|
31316
31595
|
access: "create"
|
|
31317
31596
|
},
|
|
31597
|
+
"pipelineAnalytics.countRelocatableMedia": {
|
|
31598
|
+
capName: "pipeline-analytics",
|
|
31599
|
+
capScope: "device",
|
|
31600
|
+
addonId: null,
|
|
31601
|
+
access: "view"
|
|
31602
|
+
},
|
|
31318
31603
|
"pipelineAnalytics.countUnstampedEventMedia": {
|
|
31319
31604
|
capName: "pipeline-analytics",
|
|
31320
31605
|
capScope: "device",
|
|
@@ -32479,6 +32764,12 @@ Object.freeze({
|
|
|
32479
32764
|
addonId: null,
|
|
32480
32765
|
access: "view"
|
|
32481
32766
|
},
|
|
32767
|
+
"recording.getRelocateResidue": {
|
|
32768
|
+
capName: "recording",
|
|
32769
|
+
capScope: "system",
|
|
32770
|
+
addonId: null,
|
|
32771
|
+
access: "view"
|
|
32772
|
+
},
|
|
32482
32773
|
"recording.getStorageMigrationMoveStatus": {
|
|
32483
32774
|
capName: "recording",
|
|
32484
32775
|
capScope: "system",
|
|
@@ -33025,12 +33316,30 @@ Object.freeze({
|
|
|
33025
33316
|
addonId: null,
|
|
33026
33317
|
access: "create"
|
|
33027
33318
|
},
|
|
33319
|
+
"storageMigration.drain": {
|
|
33320
|
+
capName: "storage-migration",
|
|
33321
|
+
capScope: "system",
|
|
33322
|
+
addonId: null,
|
|
33323
|
+
access: "create"
|
|
33324
|
+
},
|
|
33325
|
+
"storageMigration.movers": {
|
|
33326
|
+
capName: "storage-migration",
|
|
33327
|
+
capScope: "system",
|
|
33328
|
+
addonId: null,
|
|
33329
|
+
access: "view"
|
|
33330
|
+
},
|
|
33028
33331
|
"storageMigration.plan": {
|
|
33029
33332
|
capName: "storage-migration",
|
|
33030
33333
|
capScope: "system",
|
|
33031
33334
|
addonId: null,
|
|
33032
33335
|
access: "view"
|
|
33033
33336
|
},
|
|
33337
|
+
"storageMigration.residue": {
|
|
33338
|
+
capName: "storage-migration",
|
|
33339
|
+
capScope: "system",
|
|
33340
|
+
addonId: null,
|
|
33341
|
+
access: "view"
|
|
33342
|
+
},
|
|
33034
33343
|
"storageMigration.start": {
|
|
33035
33344
|
capName: "storage-migration",
|
|
33036
33345
|
capScope: "system",
|
|
@@ -33865,6 +34174,12 @@ Object.freeze({
|
|
|
33865
34174
|
addonId: null,
|
|
33866
34175
|
access: "delete"
|
|
33867
34176
|
},
|
|
34177
|
+
"vectorStore.fetchByIds": {
|
|
34178
|
+
capName: "vector-store",
|
|
34179
|
+
capScope: "system",
|
|
34180
|
+
addonId: null,
|
|
34181
|
+
access: "view"
|
|
34182
|
+
},
|
|
33868
34183
|
"vectorStore.getByIds": {
|
|
33869
34184
|
capName: "vector-store",
|
|
33870
34185
|
capScope: "system",
|
|
@@ -33877,6 +34192,12 @@ Object.freeze({
|
|
|
33877
34192
|
addonId: null,
|
|
33878
34193
|
access: "view"
|
|
33879
34194
|
},
|
|
34195
|
+
"vectorStore.scan": {
|
|
34196
|
+
capName: "vector-store",
|
|
34197
|
+
capScope: "system",
|
|
34198
|
+
addonId: null,
|
|
34199
|
+
access: "view"
|
|
34200
|
+
},
|
|
33880
34201
|
"vectorStore.stats": {
|
|
33881
34202
|
capName: "vector-store",
|
|
33882
34203
|
capScope: "system",
|
|
@@ -3,7 +3,7 @@ Object.defineProperties(exports, {
|
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
5
|
require("../chunk-Cek0wNdY.js");
|
|
6
|
-
const require_dist = require("../dist-
|
|
6
|
+
const require_dist = require("../dist-DJ0XK1ze.js");
|
|
7
7
|
//#region src/magic-link/auth-magic-link.addon.ts
|
|
8
8
|
/**
|
|
9
9
|
* Magic-link authentication addon.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as loginMethodCapability, c as BaseAddon, i as buildAddonRouteProvider, r as authProviderCapability, s as errMsg, t as addonRoutesCapability } from "../dist-
|
|
1
|
+
import { a as loginMethodCapability, c as BaseAddon, i as buildAddonRouteProvider, r as authProviderCapability, s as errMsg, t as addonRoutesCapability } from "../dist-Cejgb_kg.mjs";
|
|
2
2
|
//#region src/magic-link/auth-magic-link.addon.ts
|
|
3
3
|
/**
|
|
4
4
|
* Magic-link authentication addon.
|
|
@@ -3,7 +3,7 @@ Object.defineProperties(exports, {
|
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
5
|
const require_chunk = require("../chunk-Cek0wNdY.js");
|
|
6
|
-
const require_dist = require("../dist-
|
|
6
|
+
const require_dist = require("../dist-DJ0XK1ze.js");
|
|
7
7
|
let node_crypto = require("node:crypto");
|
|
8
8
|
node_crypto = require_chunk.__toESM(node_crypto);
|
|
9
9
|
//#region node_modules/jose/dist/webapi/lib/buffer_utils.js
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as loginMethodCapability, c as BaseAddon, i as buildAddonRouteProvider, r as authProviderCapability, s as errMsg, t as addonRoutesCapability } from "../dist-
|
|
1
|
+
import { a as loginMethodCapability, c as BaseAddon, i as buildAddonRouteProvider, r as authProviderCapability, s as errMsg, t as addonRoutesCapability } from "../dist-Cejgb_kg.mjs";
|
|
2
2
|
import * as crypto$1 from "node:crypto";
|
|
3
3
|
//#region node_modules/jose/dist/webapi/lib/buffer_utils.js
|
|
4
4
|
var encoder = new TextEncoder();
|
package/dist/webauthn/_stub.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { n as e, r as t, t as n } from "./_virtual_mf___mfe_internal__addon_auth_webauthn_widgets__loadShare__react__loadShare__.js-BIIa6vDX.mjs";
|
|
2
2
|
import { n as r, t as i } from "./_virtual_mf___mfe_internal__addon_auth_webauthn_widgets__loadShare___mf_0_tanstack_mf_1_react_mf_2_query__loadShare__.js-CQ-aEQ9b.mjs";
|
|
3
|
-
import { t as a } from "./_virtual_mf___mfe_internal__addon_auth_webauthn_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-
|
|
3
|
+
import { t as a } from "./_virtual_mf___mfe_internal__addon_auth_webauthn_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-Cyq-cpgK.mjs";
|
|
4
4
|
import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_auth_webauthn_widgets__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-BL2etuqg.mjs";
|
|
5
5
|
//#region ../../node_modules/lucide-react/dist/esm/shared/src/utils.js
|
|
6
6
|
var l = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), u = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), d = (e) => {
|
|
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
|
|
|
3
3
|
var e = {
|
|
4
4
|
"@camstack/sdk": {
|
|
5
5
|
name: "@camstack/sdk",
|
|
6
|
-
version: "1.2.
|
|
6
|
+
version: "1.2.48",
|
|
7
7
|
scope: ["default"],
|
|
8
8
|
loaded: !1,
|
|
9
9
|
from: "addon_auth_webauthn_widgets",
|
|
@@ -18,7 +18,7 @@ var e = {
|
|
|
18
18
|
},
|
|
19
19
|
"@camstack/types": {
|
|
20
20
|
name: "@camstack/types",
|
|
21
|
-
version: "1.2.
|
|
21
|
+
version: "1.2.126",
|
|
22
22
|
scope: ["default"],
|
|
23
23
|
loaded: !1,
|
|
24
24
|
from: "addon_auth_webauthn_widgets",
|
|
@@ -33,7 +33,7 @@ var e = {
|
|
|
33
33
|
},
|
|
34
34
|
"@camstack/ui-library": {
|
|
35
35
|
name: "@camstack/ui-library",
|
|
36
|
-
version: "1.2.
|
|
36
|
+
version: "1.2.89",
|
|
37
37
|
scope: ["default"],
|
|
38
38
|
loaded: !1,
|
|
39
39
|
from: "addon_auth_webauthn_widgets",
|
|
@@ -16,7 +16,7 @@ globalThis[r] ||= {
|
|
|
16
16
|
remote: {}
|
|
17
17
|
}, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
|
|
18
18
|
var i = globalThis[r], a, o = (e) => {
|
|
19
|
-
e.AddonGlobalSettingsForm, e.AgentStepEditor, e.AlarmHeroCard, e.AlarmPanelInlineControl, e.AppShell, e.ArcKnob, e.AudioClassificationList, e.AudioLevelWaveform, e.AudioWaveform, e.AutomationHeroCard, e.AutomationInlineControl, e.AutotrackSection, e.BTN_COMPACT, e.BTN_COMPACT_DANGER, e.BTN_COMPACT_PRIMARY, e.BTN_COMPACT_WARNING, e.Badge, e.BatteryBadge, e.BottomSheet, e.Breadcrumb, e.BrightnessPanel, e.Button, e.ButtonControl, e.ButtonHeroCard, e.CARD_MODE_MIN_COLUMNS, e.CENTER, e.CHIP_ACTIVE, e.CHIP_BASE, e.CHIP_INACTIVE, e.CLASS_COLORS, e.COLUMN_BREAKPOINT_CLASS, e.COLUMN_PRIORITY, e.COMMIT_DEDUPE_TOLERANCE_MS, e.COMMIT_DEDUPE_WINDOW_MS, e.CONTROL_CAP_NAMES, e.CONTROL_FILLS, e.Camera, e.CameraStreamPlayer, e.Card, e.Checkbox, e.ChildSectionAccordion, e.ClimatePanel, e.CodeBlock, e.CollapsibleCard, e.ConfigFormBuilder, e.ConfigFormField, e.ConfigSchemaField, e.ConfirmActionButton, e.ConfirmDialogProvider, e.ConsumablesPanel, e.ContainerChildrenProvider, e.ContainerPrimaryHero, e.ControlColumn, e.ControlHeroCard, e.ControlInlineControl, e.ControlPanel, e.CopyButton, e.CoverHeroCard, e.CoverInlineControl, e.CoverPanel, e.CustomFieldRenderersProvider, e.DEFAULT_COLOR, e.DEVICE_COLUMNS, e.DEVICE_LIST_PAGE_SIZE_KEY, e.DEVICE_LIST_PAGE_SIZE_OPTIONS, e.DEVICE_ROLE_META, e.DEVICE_TYPE_CONTROL, e.DEVICE_TYPE_META, e.DISPLAY_ICON_REGISTRY, e.DataTable, e.DetectionCanvas, e.DetectionOverlay, e.DetectionResultTree, e.DevShell, e.DeviceActivityPanel, e.DeviceBatchToolbar, e.DeviceCard, e.DeviceContextProvider, e.DeviceExportPanel, e.DeviceGrid, e.DeviceItem, e.DeviceList, e.DeviceMultiSelectField, e.DeviceSelectField, e.DeviceSelectorPicker, e.DeviceStepMatrix, e.Dialog, e.DialogBody, e.DialogContent, e.DialogDescription, e.DialogFooter, e.DialogHeader, e.DialogTitle, e.DialogTrigger, e.DiscoveryPanel, e.DoorbellRecentPanel, e.Dropdown, e.DropdownContent, e.DropdownItem, e.DropdownTrigger, e.DummyHeroCard, e.DummyInline, e.EVENT_KIND_ICONS, e.EmptyState, e.ErrorBox, e.EventKindGlyph, e.EventStream, e.EyeOff, e.FILL, e.FLEET_LIST_GC_TIME_MS, e.FLEET_LIST_QUERY_KEY, e.FLEET_LIST_STALE_TIME_MS, e.FanHeroCard, e.FanInlineControl, e.FanPanel, e.FilterBar, e.FloatingEventStream, e.FloatingLogStream, e.FloatingPanel, e.FormField, e.GRID_GAP, e.GRID_PAIRED, e.GRID_QUICK_STATS, e.GripTrack, e.GroupedModelSelector, e.HOST_WIDGETS, e.HlsVideo, e.HoverZoomImage, e.HumidifierHeroCard, e.HumidifierInlineControl, e.INPUT_COMPACT, e.IconAction, e.IconButton, e.ImageHeroCard, e.ImageInlineControl, e.ImageOff, e.ImageSelector, e.InferenceConfigSelector, e.Input, e.KebabMenu, e.KeyValueList, e.LIST_ROW, e.Label, e.LawnMowerHeroCard, e.LawnMowerInlineControl, e.LightHeroCard, e.LightInlineControl, e.LockHeroCard, e.LockInlineControl, e.LockPanel, e.LogStream, e.LoginForm, e.MODE_COLOR, e.MaskShapeCanvas, e.MediaPlayerHeroCard, e.MediaPlayerInlineControl, e.MediaPlayerPanel, e.Mic, e.MobileDrawer, e.ModelPicker, e.MotionZonesSettings, e.NodeMultiSelectField, e.NodePicker, e.NodeSelectField, e.OfflineBadge, e.PHASE_CONFIG, e.PRIORITY, e.PTZOverlay, e.PageHeader, e.PhaseIcon, e.PipelineBuilder, e.PipelineRuntimeSelector, e.PipelineStep, e.PipelineTreeMatrix, e.PlayerOverlaysProvider, e.Popover, e.PopoverContent, e.PopoverRowAction, e.PopoverTrigger, e.PrimaryChildPicker, e.PrivacyMaskSettings, e.ProviderBadge, e.PtzPanel, e.QrCode, e.RECONNECT_POLICY, e.RECORDED_PLAYBACK_MODES, e.RIGHT, e.ROI_AREA_WARN_FRACTION, e.ROLE_DESCRIPTOR, e.RadialGauge, e.RecordedPlaybackProvider, e.RecordingPanel, e.ResponseLog, e.RotateCcw, e.SCENE_CAPTURE_VARIANTS, e.SCENE_CAPTURE_VARIANTS$1, e.SECTION_BODY, e.SECTION_CARD, e.SECTION_HEADER, e.SETTING_ROW, e.SETTING_ROW_LABEL, e.SETTING_ROW_STACK_BREAKPOINT, e.SETTING_ROW_VALUE, e.SETTING_ROW_VALUE_TEXT, e.SPLIT_PANEL_OUTER, e.SPLIT_PANEL_SIDE, e.STACK_GAP, e.STATE_COLOR, e.SceneMonitorEditor, e.ScopePicker, e.ScriptHeroCard, e.ScriptInlineControl, e.ScrollArea, e.Select, e.SemanticBadge, e.SensorHeroCard, e.SensorInlineControl, e.SensorValueAtom, e.Separator, e.SettingRow, e.Sidebar, e.SidebarItem, e.Skeleton, e.SlideOverPanel, e.SlideToggle, e.SnapshotButton, e.SortHeaderButton, e.Square, e.StatCard, e.StateValuesStream, e.StatusBadge, e.StepTimings, e.StepTreeMaster, e.Stepper, e.StreamBrokerSelector, e.StreamPanel, e.Switch, e.SwitchHeroCard, e.SwitchInlineControl, e.SwitchPanel, e.SystemProvider, e.TABLE_SCROLL_MAX_H, e.TEXT_FIELD_LABEL, e.TEXT_HINT, e.TEXT_METRIC, e.TEXT_SECTION_LABEL, e.TEXT_VALUE, e.TIMEZONES, e.Tabs, e.TabsContent, e.TabsList, e.TabsTrigger, e.TapToggle, e.ThemeProvider, e.ThermostatHeroCard, e.ThermostatInlineControl, e.TimezoneSelector, e.Tooltip, e.TooltipContent, e.TooltipTrigger, e.Trash2, e.VacuumHeroCard, e.VacuumInlineControl, e.ValueReadout, e.ValveHeroCard, e.ValveInlineControl, e.VersionBadge, e.VodPlaybackProvider, e.WaterHeaterHeroCard, e.WaterHeaterInlineControl, e.WeatherHeroCard, e.WeatherInlineControl, e.WidgetMetricCard, e.WidgetPanel, e.WidgetRegistryProvider, e.WidgetSlot, e.ZoneEditingProvider, e.agentColumnKey, e.allDeviceTypeFilterOptions, e.applyFleetQueryDefaults, e.ariaSortForColumn, e.badgeFor, e.badgeFor$1, e.buildStepTreeFromSchema, e.childEntityId, e.childListName, e.cn, e.columnsForContext, e.containerChildToRef, e.countableDevices, e.coverHighlight, e.coverageLine, e.coverageLine$1, e.createLucideIcon, e.createSharedContext, e.createTheme, e.cursorFractionFor, e.darkColors, e.defaultTheme, e.deriveDeviceKind, e.describeDeviceSelector, e.deviceMatchesFilter, e.deviceOptionLabel, e.deviceRoleMeta, e.deviceRoleMetaOf, e.deviceTypeLabel, e.deviceTypeMeta, e.deviceTypeMetaOf, e.devicesToOptions, e.ensureMfHostInit, e.eventKindLabel, e.filterDeviceOptions, e.findTimezone, e.formatControlDateTime, e.formatLastSeen, e.formatNumeric, e.fuzzyMatch, e.getClassColor, e.getPhaseVisual, e.groupAgentColumns, e.groupChildrenByLayout, e.hardwareLabel, e.humanDuration, e.humidifierTint, e.initialScrubState, e.isAbsentProvider, e.isAbsentProvider$1, e.isFieldVisible, e.lawnMowerActivityMeta, e.lightColors, e.loadRemoteBundle, e.makeScrubBridge, e.metadataEntries, e.metadataString, e.mirror, e.mountAddonPage, e.nextReconnectAction, e.nextSort, e.nextSortDirection, e.nextTableSort, e.normalizeForSearch, e.overrideEntityIdFromLink, e.parseRecordedServerMessage, e.providerIcons, e.resolveContainerPrimary, e.resolveControlAlign, e.resolveDeviceControl, e.resolveDisplayIcon, e.resolveEffectiveDefaultModel, e.resolveEffectiveStepModel, e.resolveEventKindIcon, e.resolvePrimaryChild, e.resolveSensorDisplay, e.resolveStepDefaultModel, e.resolveTableLayout, e.roiTooLarge, e.roiTooLarge$1, e.scrubReducer, e.selectedDeviceOptions, e.serializeRecordedCommand, e.shouldCommit, e.shouldEmit, e.shouldUseSingleNode, e.sortRows, e.sortRowsByColumn, e.statusIcons, e.statusLine, e.statusLine$1, e.stepHasModelForFormat, e.stepModelOptions, e.stripParentNamePrefix, e.tabForSelector, e.tankAlert, e.themeToCss, e.trpc, e.useAccessoriesGetStatus, e.useAccessoriesSetChildHidden, e.useAddonPagesListPages, e.useAddonSettingsGetDeviceSettings, e.useAddonSettingsGetGlobalSettings, e.useAddonSettingsGetIntegrationSettings, e.useAddonSettingsUpdateDeviceSettings, e.useAddonSettingsUpdateGlobalSettings, e.useAddonWidgetsListWidgets, e.useAddonsApplyAutoUpdateToAll, e.useAddonsCancelJob, e.useAddonsCustom, e.useAddonsForceRefresh, e.useAddonsGetAddonAutoUpdate, e.useAddonsGetAutoUpdateSettings, e.useAddonsGetJob, e.useAddonsGetLastRestart, e.useAddonsGetLogs, e.useAddonsGetVersions, e.useAddonsInstallFromWorkspace, e.useAddonsInstallPackage, e.useAddonsIsWorkspaceAvailable, e.useAddonsList, e.useAddonsListCapabilityProviders, e.useAddonsListFrameworkPackages, e.useAddonsListJobs, e.useAddonsListPackages, e.useAddonsListUpdates, e.useAddonsListWorkspacePackages, e.useAddonsOnAddonLogs, e.useAddonsReloadPackages, e.useAddonsRestartAddon, e.useAddonsRestartServer, e.useAddonsRetryLoad, e.useAddonsRollbackPackage, e.useAddonsSearchAvailable, e.useAddonsSetAddonAutoUpdate, e.useAddonsSetAutoUpdateSettings, e.useAddonsSetCapabilityProviderEnabled, e.useAddonsStartJob, e.useAddonsUninstallPackage, e.useAddonsUpdatePackage, e.useAirQualitySensorGetStatus, e.useAlarmPanelArm, e.useAlarmPanelDisarm, e.useAlarmPanelGetStatus, e.useAlarmPanelTrigger, e.useAlertsDismiss, e.useAlertsEmit, e.useAlertsGetUnreadCount, e.useAlertsList, e.useAlertsMarkAllRead, e.useAlertsMarkRead, e.useAlertsUpdate, e.useAllWidgets, e.useAmbientLightSensorGetStatus, e.useAudioAnalysisApplyDeviceSettingsPatch, e.useAudioAnalysisGetDeviceLiveContribution, e.useAudioAnalysisGetDeviceSettingsContribution, e.useAudioAnalysisResolveDeviceSettings, e.useAudioAnalyzerAnalyseChunk, e.useAudioAnalyzerClassify, e.useAudioAnalyzerDispose, e.useAudioAnalyzerIsReady, e.useAudioAnalyzerReprobeAudioEngine, e.useAudioCodecCanHandle, e.useAudioCodecCloseSession, e.useAudioCodecCreateDecodeSession, e.useAudioCodecCreateEncodeSession, e.useAudioCodecFlushEncode, e.useAudioCodecListActiveSessions, e.useAudioCodecListSupportedCodecs, e.useAudioCodecPullEncoded, e.useAudioCodecPullPcm, e.useAudioCodecPushEncodedFrame, e.useAudioCodecPushPcm, e.useAudioMetricsGetCurrentSnapshot, e.useAudioMetricsGetHistory, e.useAutomationControlDisable, e.useAutomationControlEnable, e.useAutomationControlGetStatus, e.useAutomationControlTrigger, e.useBackupDelete, e.useBackupDeleteSchedule, e.useBackupGetEntries, e.useBackupList, e.useBackupListArchives, e.useBackupListDestinations, e.useBackupListLocations, e.useBackupListSchedules, e.useBackupPreviewSchedule, e.useBackupRestore, e.useBackupTrigger, e.useBackupUpsertDestinationPolicy, e.useBackupUpsertSchedule, e.useBatteryGetStatus, e.useBatteryWakeForStream, e.useBinaryGetStatus, e.useBrightnessGetStatus, e.useBrightnessSetBrightness, e.useBrokerAdd, e.useBrokerGet, e.useBrokerGetBrokerConfig, e.useBrokerGetSettings, e.useBrokerGetSettingsSchema, e.useBrokerGetState, e.useBrokerGetStatus, e.useBrokerList, e.useBrokerListProviders, e.useBrokerPublish, e.useBrokerRemove, e.useBrokerSetSettings, e.useBrokerSubscribe, e.useBrokerTestConnection, e.useBrokerTestSettings, e.useBrokerUnsubscribe, e.useButtonPress, e.useCameraCredentialsGetCredentials, e.useCameraCredentialsGetStatus, e.useCameraPipelineConfigApplyDeviceSettingsPatch, e.useCameraPipelineConfigGetDeviceLiveContribution, e.useCameraPipelineConfigGetDeviceSettingsContribution, e.useCameraStreamsGetBrokerStreams, e.useCameraStreamsGetCameraStreams, e.useCameraStreamsGetProfileRtspEntries, e.useCameraStreamsGetRtspEntries, e.useCameraStreamsPickStream, e.useCarbonMonoxideGetStatus, e.useClimateControlGetStatus, e.useClimateControlSetFanMode, e.useClimateControlSetMode, e.useClimateControlSetPreset, e.useClimateControlSetSwingHorizontal, e.useClimateControlSetSwingVertical, e.useClimateControlSetTarget, e.useClimateControlSetTargetHumidity, e.useClimateControlSetTargetRange, e.useClusterNodes, e.useColorGetStatus, e.useColorSetColor, e.useConfirm, e.useConnectionTestDescribeTest, e.useConnectionTestTestSettings, e.useConnectivityGetStatus, e.useConsumablesGetStatus, e.useConsumablesReset, e.useContactGetStatus, e.useContainerChildren, e.useControlGetStatus, e.useControlSetValue, e.useCoreBlocksCompile, e.useCoreBlocksCreate, e.useCoreBlocksDelete, e.useCoreBlocksGet, e.useCoreBlocksGetTypeDefs, e.useCoreBlocksList, e.useCoreBlocksRestart, e.useCoreBlocksSetEnabled, e.useCoreBlocksUpdate, e.useCoverClose, e.useCoverGetStatus, e.useCoverOpen, e.useCoverSetPosition, e.useCoverSetTiltPosition, e.useCoverStop, e.useCustomFieldRenderer, e.useDayNightGetOptions, e.useDayNightGetStatus, e.useDayNightSetSettings, e.useDebouncedString, e.useDecoderCreateSession, e.useDecoderDestroySession, e.useDecoderGetFrame, e.useDecoderGetInfo, e.useDecoderGetShmStats, e.useDecoderGetStats, e.useDecoderListActiveSessions, e.useDecoderOpenStream, e.useDecoderPullFrames, e.useDecoderPullHandles, e.useDecoderPushPacket, e.useDecoderReprobeHwaccel, e.useDecoderSupportsCodec, e.useDecoderUpdateConfig, e.useDetectionPipelineApplyDeviceSettingsPatch, e.useDetectionPipelineGetDeviceLiveContribution, e.useDetectionPipelineGetDeviceSettingsContribution, e.useDevShell, e.useDevice, e.useDeviceAdoptionAdopt, e.useDeviceAdoptionGetCandidate, e.useDeviceAdoptionGetStatus, e.useDeviceAdoptionListCandidateFilters, e.useDeviceAdoptionListCandidates, e.useDeviceAdoptionRefresh, e.useDeviceAdoptionRelease, e.useDeviceAdoptionResync, e.useDeviceAutotrack, e.useDeviceBattery, e.useDeviceCapSlice, e.useDeviceCapability, e.useDeviceDetections, e.useDeviceDiscoveryAdoptDevice, e.useDeviceDiscoveryGetStatus, e.useDeviceDiscoveryListDiscovered, e.useDeviceDiscoveryRefreshDiscovery, e.useDeviceDiscoveryReleaseDevice, e.useDeviceExportApplyDeviceSettingsPatch, e.useDeviceExportExposeDevice, e.useDeviceExportGetDeviceLiveContribution, e.useDeviceExportGetDeviceSettingsContribution, e.useDeviceExportGetStatus, e.useDeviceExportListExposedDevices, e.useDeviceExportListSupportedDeviceKinds, e.useDeviceExportUnexposeDevice, e.useDeviceId, e.useDeviceListPageSize, e.useDeviceManagerAddLocation, e.useDeviceManagerAdoptDevice, e.useDeviceManagerAdoptionAdopt, e.useDeviceManagerAdoptionCancelJob, e.useDeviceManagerAdoptionListCandidateFilters, e.useDeviceManagerAdoptionListCandidates, e.useDeviceManagerAdoptionListJobs, e.useDeviceManagerAdoptionRefresh, e.useDeviceManagerAdoptionRelease, e.useDeviceManagerAdoptionResync, e.useDeviceManagerAdoptionStartJob, e.useDeviceManagerAllocateDeviceId, e.useDeviceManagerApplyDeviceSettingsPatch, e.useDeviceManagerApplyInitialMeta, e.useDeviceManagerCreateDevice, e.useDeviceManagerDisable, e.useDeviceManagerDiscoverAllProviders, e.useDeviceManagerDiscoverDevices, e.useDeviceManagerDiscoverProvider, e.useDeviceManagerDiscoveryProviders, e.useDeviceManagerEnable, e.useDeviceManagerGetAllBindings, e.useDeviceManagerGetBindings, e.useDeviceManagerGetBindingsBatch, e.useDeviceManagerGetChildren, e.useDeviceManagerGetChildrenBatch, e.useDeviceManagerGetConfigSchema, e.useDeviceManagerGetCreationSchema, e.useDeviceManagerGetDevice, e.useDeviceManagerGetDeviceAggregate, e.useDeviceManagerGetDeviceLiveContribution, e.useDeviceManagerGetDeviceLiveInfoAggregate, e.useDeviceManagerGetDeviceSettingsAggregate, e.useDeviceManagerGetDeviceSettingsContribution, e.useDeviceManagerGetDeviceStatusAggregate, e.useDeviceManagerGetDeviceStatusAggregateBatch, e.useDeviceManagerGetLinkedDevices, e.useDeviceManagerGetLinkedDevicesBatch, e.useDeviceManagerGetRoleDisplayDefaults, e.useDeviceManagerGetSettingsSchema, e.useDeviceManagerGetStreamProfileMap, e.useDeviceManagerGetStreamSources, e.useDeviceManagerGetWireableFields, e.useDeviceManagerListAll, e.useDeviceManagerListBindableCapsForDeviceType, e.useDeviceManagerListLocations, e.useDeviceManagerListPersistedByAddon, e.useDeviceManagerListWrappersForCap, e.useDeviceManagerLoadConfig, e.useDeviceManagerLoadMeta, e.useDeviceManagerLoadRuntimeState, e.useDeviceManagerPersistConfig, e.useDeviceManagerProbeStreams, e.useDeviceManagerProviderCreationType, e.useDeviceManagerProviderDiscoveryParamsSchema, e.useDeviceManagerRegisterDevice, e.useDeviceManagerRemove, e.useDeviceManagerRemoveByIntegration, e.useDeviceManagerRemoveDevice, e.useDeviceManagerRemoveLocation, e.useDeviceManagerRunDeviceAction, e.useDeviceManagerSetChildLayout, e.useDeviceManagerSetDisabled, e.useDeviceManagerSetDisplay, e.useDeviceManagerSetIntegrationId, e.useDeviceManagerSetLinkDeviceId, e.useDeviceManagerSetLocation, e.useDeviceManagerSetMetadata, e.useDeviceManagerSetName, e.useDeviceManagerSetPrimaryChildEntityId, e.useDeviceManagerSetRole, e.useDeviceManagerSetRoleDisplayDefaults, e.useDeviceManagerSetStreamProfileMap, e.useDeviceManagerSetType, e.useDeviceManagerSetWrapperActive, e.useDeviceManagerTestCreationField, e.useDeviceManagerTestField, e.useDeviceManagerUpdateConfig, e.useDeviceManagerUpdateDeviceField, e.useDeviceManagerUpdateDeviceFieldsBatch, e.useDeviceOpsGetConfigEntries, e.useDeviceOpsGetRawState, e.useDeviceOpsGetSettingsSchema, e.useDeviceOpsGetStreamSources, e.useDeviceOpsRemoveDevice, e.useDeviceOpsRunAction, e.useDeviceOpsSetConfig, e.useDeviceProviderAdoptDiscoveredDevice, e.useDeviceProviderCreateDevice, e.useDeviceProviderDiscoverDevices, e.useDeviceProviderGetChildCreationSchema, e.useDeviceProviderGetDevices, e.useDeviceProviderGetDiscoveryParamsSchema, e.useDeviceProviderGetManualCreationType, e.useDeviceProviderGetStatus, e.useDeviceProviderStart, e.useDeviceProviderStop, e.useDeviceProviderSupportsDiscovery, e.useDeviceProviderSupportsManualCreation, e.useDeviceProviderTestCreationField, e.useDeviceProxy, e.useDeviceProxy$1, e.useDeviceSnapshot, e.useDeviceSnapshotImage, e.useDeviceSnapshotImage$1, e.useDeviceState, e.useDeviceStateGetAllSnapshots, e.useDeviceStateGetCapSlice, e.useDeviceStateGetSnapshot, e.useDeviceStateSetCapSlice, e.useDeviceStateSlice, e.useDeviceStateSlice$1, e.useDeviceStatusGetStatus, e.useDeviceWebrtc, e.useDevices, e.useDoorbellApplyDeviceSettingsPatch, e.useDoorbellEvents, e.useDoorbellGetDeviceLiveContribution, e.useDoorbellGetDeviceSettingsContribution, e.useDoorbellGetStatus, e.useEnumSensorGetStatus, e.useEventEmitterGetStatus, e.useEventInvalidation, e.useEventStreamLatest, e.useEventStreamMap, e.useEventsGetEventClipUrl, e.useEventsGetEventThumbnail, e.useEventsGetEvents, e.useFaceGalleryAssignFace, e.useFaceGalleryAssignFaces, e.useFaceGalleryCreateIdentity, e.useFaceGalleryDeleteFace, e.useFaceGalleryDeleteIdentity, e.useFaceGalleryGetFaceByTrack, e.useFaceGalleryGetFaceMedia, e.useFaceGalleryListIdentities, e.useFaceGalleryListIdentitySamples, e.useFaceGalleryListRecentFaces, e.useFaceGalleryRemoveSample, e.useFaceGalleryRenameIdentity, e.useFaceGallerySuggestFaceClusters, e.useFaceGalleryUnassignFace, e.useFaceGalleryUnassignFaces, e.useFanControlGetStatus, e.useFanControlSetDirection, e.useFanControlSetOscillating, e.useFanControlSetPercentage, e.useFanControlSetPreset, e.useFeatureProbeGetStatus, e.useFloodGetStatus, e.useGasGetStatus, e.useHumidifierGetStatus, e.useHumidifierSetMode, e.useHumidifierSetOn, e.useHumidifierSetTargetHumidity, e.useHumiditySensorGetStatus, e.useImageGetStatus, e.useImageSettingsGetOptions, e.useImageSettingsGetStatus, e.useImageSettingsSetSettings, e.useIntegrationsCreate, e.useIntegrationsDelete, e.useIntegrationsGet, e.useIntegrationsGetAvailableTypes, e.useIntegrationsGetByAddonId, e.useIntegrationsGetSettings, e.useIntegrationsList, e.useIntegrationsSetSettings, e.useIntegrationsTestConnection, e.useIntegrationsUpdate, e.useIntercomEndTalkSession, e.useIntercomGetStatus, e.useIntercomHandleAnswer, e.useIntercomPushTalkAudio, e.useIntercomStartSession, e.useIntercomStartTalkSession, e.useIntercomStopSession, e.useIsMidWidth, e.useIsMobile, e.useLawnMowerControlDock, e.useLawnMowerControlGetStatus, e.useLawnMowerControlPause, e.useLawnMowerControlStartMowing, e.useLiveBuffer, e.useLiveEvent, e.useLlmCancel, e.useLlmDeleteModel, e.useLlmDeleteProfile, e.useLlmGenerate, e.useLlmGenerateVision, e.useLlmGetDefaults, e.useLlmGetRuntimeStatus, e.useLlmGetUsage, e.useLlmInstallModel, e.useLlmListModelCatalog, e.useLlmListModels, e.useLlmListNodeModels, e.useLlmListProfileKinds, e.useLlmListProfiles, e.useLlmListRuntimeNodes, e.useLlmResolveModelRef, e.useLlmSetDefault, e.useLlmStartRuntime, e.useLlmStopRuntime, e.useLlmTestProfile, e.useLlmUpsertProfile, e.useLocalNetworkDownloadCa, e.useLocalNetworkGetAllowedAddresses, e.useLocalNetworkGetConnectionEndpoints, e.useLocalNetworkGetNotificationEndpoint, e.useLocalNetworkGetPreferred, e.useLocalNetworkGetTlsStatus, e.useLocalNetworkGetViewerEndpoints, e.useLocalNetworkList, e.useLocalNetworkRegenerateCertificate, e.useLocalNetworkResetAllowlistToBestMatch, e.useLocalNetworkRevertToGeneratedCertificate, e.useLocalNetworkSetAllowedAddresses, e.useLocalNetworkSetNotificationEndpoint, e.useLocalNetworkSetViewerEndpoints, e.useLocalNetworkUploadCertificate, e.useLockControlGetStatus, e.useLockControlLock, e.useLockControlOpen, e.useLockControlUnlock, e.useMediaPlayerGetStatus, e.useMediaPlayerNext, e.useMediaPlayerPause, e.useMediaPlayerPlay, e.useMediaPlayerPlayMedia, e.useMediaPlayerPrevious, e.useMediaPlayerSeek, e.useMediaPlayerSelectSource, e.useMediaPlayerSetMute, e.useMediaPlayerSetRepeat, e.useMediaPlayerSetShuffle, e.useMediaPlayerSetVolume, e.useMediaPlayerStop, e.useMeshNetworkGetStatus, e.useMeshNetworkJoin, e.useMeshNetworkLeave, e.useMeshNetworkListPeers, e.useMeshNetworkLogout, e.useMeshNetworkStartLogin, e.useMeshNetworkTestConnection, e.useMetricsProviderCollectSnapshot, e.useMetricsProviderDumpHeapSnapshot, e.useMetricsProviderGetAddonStats, e.useMetricsProviderGetCached, e.useMetricsProviderGetCpuTemperature, e.useMetricsProviderGetCurrent, e.useMetricsProviderGetDiskSpace, e.useMetricsProviderGetGpuInfo, e.useMetricsProviderGetLoadSeries, e.useMetricsProviderGetProcessStats, e.useMetricsProviderListAddonInstances, e.useMetricsProviderListNodeProcesses, e.useMotionDetectionAnalyze, e.useMotionDetectionApplyDeviceSettingsPatch, e.useMotionDetectionGetDeviceLiveContribution, e.useMotionDetectionGetDeviceSettingsContribution, e.useMotionDetectionRemoveCamera, e.useMotionDetectionReset, e.useMotionGetStatus, e.useMotionIsDetected, e.useMotionTriggerGetStatus, e.useMotionTriggerSetMotionTrigger, e.useMotionZonesGetOptions, e.useMotionZonesGetStatus, e.useMotionZonesSetZone, e.useMqttBrokerAddBroker, e.useMqttBrokerGetBrokerConfig, e.useMqttBrokerGetStatus, e.useMqttBrokerListBrokers, e.useMqttBrokerRemoveBroker, e.useMqttBrokerStartEmbeddedBroker, e.useMqttBrokerStopEmbeddedBroker, e.useMqttBrokerTestConnection, e.useNativeObjectDetectionGetStatus, e.useNativeObjectDetectionSetEnabled, e.useNetworkAccessGetEndpoint, e.useNetworkAccessGetStatus, e.useNetworkAccessListEndpoints, e.useNetworkAccessStart, e.useNetworkAccessStop, e.useNetworkQualityGetAllStats, e.useNetworkQualityGetDeviceStats, e.useNetworkQualityReportClientStats, e.useNodesClusterAddonStatus, e.useNodesDeployAddon, e.useNodesExecuteQuery, e.useNodesGetCapUsageGraph, e.useNodesGetNodeAddons, e.useNodesRenameNode, e.useNodesRestartAddon, e.useNodesRestartNode, e.useNodesRestartProcess, e.useNodesSetProcessLogLevel, e.useNodesShutdownNode, e.useNodesTopology, e.useNodesUndeployAddon, e.useNotificationOutputDeleteTarget, e.useNotificationOutputDiscoverTargets, e.useNotificationOutputListTargetKinds, e.useNotificationOutputListTargets, e.useNotificationOutputSend, e.useNotificationOutputSetTargetEnabled, e.useNotificationOutputTestTarget, e.useNotificationOutputUpsertTarget, e.useNotificationRulesCancelSnooze, e.useNotificationRulesCreateRule, e.useNotificationRulesCreateSnooze, e.useNotificationRulesDeleteRule, e.useNotificationRulesGetAlarmConfig, e.useNotificationRulesGetConditionCatalog, e.useNotificationRulesGetHistory, e.useNotificationRulesGetRule, e.useNotificationRulesListDeviceMutes, e.useNotificationRulesListRules, e.useNotificationRulesListSnoozes, e.useNotificationRulesResolveArtifactUrl, e.useNotificationRulesSetAlarmConfig, e.useNotificationRulesSetDeviceMuted, e.useNotificationRulesSetRuleEnabled, e.useNotificationRulesTestRule, e.useNotificationRulesUpdateRule, e.useNotifierCancel, e.useNotifierGetStatus, e.useNotifierSend, e.useNumericSensorGetStatus, e.useOptimisticSlice, e.useOptionalSystem, e.useOptionalWidgetRegistry, e.useOsdGetStatus, e.useOsdManagerClearSlotBinding, e.useOsdManagerCopyDeviceConfiguration, e.useOsdManagerGetConditionSupport, e.useOsdManagerGetDeviceOsd, e.useOsdManagerGetSourceCatalog, e.useOsdManagerPreviewSlot, e.useOsdManagerRenderDevice, e.useOsdManagerSetSlotBinding, e.useOsdSetOverlay, e.usePTZ, e.usePetFeederCallPet, e.usePetFeederCancelFeed, e.usePetFeederFeed, e.usePetFeederGetStatus, e.usePetFeederMarkFoodReplenished, e.usePetFeederPlaySound, e.usePetFeederResetDesiccant, e.usePetFeederSetChildLock, e.usePetFeederSetFeedSound, e.usePetFeederSetIndicatorLight, e.usePetFeederSetVolume, e.usePipelineAnalyticsApplyDeviceSettingsPatch, e.usePipelineAnalyticsCancelRelocateMedia, e.usePipelineAnalyticsCancelStorageMigrationMove, e.usePipelineAnalyticsClearTracks, e.usePipelineAnalyticsCompleteRetrainTrack, e.usePipelineAnalyticsCountUnstampedEventMedia, e.usePipelineAnalyticsDeleteDeviceEvents, e.usePipelineAnalyticsDeleteTracks, e.usePipelineAnalyticsDeselectRetrainFrame, e.usePipelineAnalyticsGetActiveTracks, e.usePipelineAnalyticsGetAudioEvents, e.usePipelineAnalyticsGetDeviceLiveContribution, e.usePipelineAnalyticsGetDeviceSettingsContribution, e.usePipelineAnalyticsGetEventDensity, e.usePipelineAnalyticsGetEventMedia, e.usePipelineAnalyticsGetEventStoreFootprint, e.usePipelineAnalyticsGetGroup, e.usePipelineAnalyticsGetKeyEvents, e.usePipelineAnalyticsGetMotionEvents, e.usePipelineAnalyticsGetObjectEmbeddingRebuildStatus, e.usePipelineAnalyticsGetObjectEvents, e.usePipelineAnalyticsGetRetrainExportUrl, e.usePipelineAnalyticsGetRetrainFrameImage, e.usePipelineAnalyticsGetSensorEvents, e.usePipelineAnalyticsGetStorageMigrationMoveStatus, e.usePipelineAnalyticsGetTrack, e.usePipelineAnalyticsGetTrackMedia, e.usePipelineAnalyticsGetTrainingExportSummary, e.usePipelineAnalyticsGetTrainingExportUrl, e.usePipelineAnalyticsListEventKinds, e.usePipelineAnalyticsListEventKindsBatch, e.usePipelineAnalyticsListGroups, e.usePipelineAnalyticsListOpsLog, e.usePipelineAnalyticsListRecentTracks, e.usePipelineAnalyticsListRelocateMediaJobs, e.usePipelineAnalyticsListRetrainAnnotations, e.usePipelineAnalyticsListRetrainFrames, e.usePipelineAnalyticsListRetrainStaging, e.usePipelineAnalyticsListTrackMedia, e.usePipelineAnalyticsListTracks, e.usePipelineAnalyticsPauseForStorageMigration, e.usePipelineAnalyticsProposeRetrainAnnotations, e.usePipelineAnalyticsPruneEvents, e.usePipelineAnalyticsPruneEventsBefore, e.usePipelineAnalyticsPruneTracksBefore, e.usePipelineAnalyticsRebuildObjectEmbeddings, e.usePipelineAnalyticsReconcileFromDisk, e.usePipelineAnalyticsRefreshStorageLocationsForMigration, e.usePipelineAnalyticsRelocateMedia, e.usePipelineAnalyticsRestageRetrainTrack, e.usePipelineAnalyticsResumeForStorageMigration, e.usePipelineAnalyticsRunReplayFrameProcessor, e.usePipelineAnalyticsSaveRetrainAnnotations, e.usePipelineAnalyticsSearchObjectEvents, e.usePipelineAnalyticsSelectRetrainFrames, e.usePipelineAnalyticsSetTrackFlags, e.usePipelineAnalyticsStartStorageMigrationMove, e.usePipelineAnalyticsWipeAllAnalytics, e.usePipelineAnalyticsWipeObjectEmbeddings, e.usePipelineExecutorCacheFrameInPool, e.usePipelineExecutorClearDeviceOverrides, e.usePipelineExecutorDeleteModel, e.usePipelineExecutorDeleteTemplate, e.usePipelineExecutorDownloadModel, e.usePipelineExecutorGetAddonModels, e.usePipelineExecutorGetAudioCapabilities, e.usePipelineExecutorGetAvailableEngines, e.usePipelineExecutorGetCapabilities, e.usePipelineExecutorGetDefaultSteps, e.usePipelineExecutorGetDetectionConfigSchema, e.usePipelineExecutorGetEffectiveTuning, e.usePipelineExecutorGetEngineProvisioning, e.usePipelineExecutorGetGlobalPipelineConfig, e.usePipelineExecutorGetGlobalSteps, e.usePipelineExecutorGetInferenceDeviceHealth, e.usePipelineExecutorGetOrchestratorConfigSchema, e.usePipelineExecutorGetReferenceAudio, e.usePipelineExecutorGetReferenceAudioFiles, e.usePipelineExecutorGetReferenceImage, e.usePipelineExecutorGetSchema, e.usePipelineExecutorGetSelectedEngine, e.usePipelineExecutorGetVideoPipelineSteps, e.usePipelineExecutorInferCached, e.usePipelineExecutorKillEngine, e.usePipelineExecutorListLoadedEngines, e.usePipelineExecutorListReferenceImages, e.usePipelineExecutorListTemplates, e.usePipelineExecutorRearmInferenceDevice, e.usePipelineExecutorRunAudioTest, e.usePipelineExecutorRunPipeline, e.usePipelineExecutorRunPipelineBatch, e.usePipelineExecutorSaveTemplate, e.usePipelineExecutorSetVideoPipelineSteps, e.usePipelineExecutorSpinEngine, e.usePipelineExecutorUncacheFrame, e.usePipelineExecutorUpdateTemplate, e.usePipelineExecutorValidatePipeline, e.usePipelineOrchestratorApplyDeviceSettingsPatch, e.usePipelineOrchestratorAssignAudio, e.usePipelineOrchestratorAssignPipeline, e.usePipelineOrchestratorDeleteTemplate, e.usePipelineOrchestratorGetAgentLoad, e.usePipelineOrchestratorGetAgentSettings, e.usePipelineOrchestratorGetAudioAssignment, e.usePipelineOrchestratorGetAudioAssignments, e.usePipelineOrchestratorGetAudioNodeLoad, e.usePipelineOrchestratorGetCameraMetrics, e.usePipelineOrchestratorGetCameraSettings, e.usePipelineOrchestratorGetCameraStatus, e.usePipelineOrchestratorGetCameraStatuses, e.usePipelineOrchestratorGetCameraStepOverrides, e.usePipelineOrchestratorGetCameraSwitches, e.usePipelineOrchestratorGetCapabilityBindings, e.usePipelineOrchestratorGetDeviceLiveContribution, e.usePipelineOrchestratorGetDeviceSettingsContribution, e.usePipelineOrchestratorGetGlobalMetrics, e.usePipelineOrchestratorGetIngestOwner, e.usePipelineOrchestratorGetNodeInferenceDevices, e.usePipelineOrchestratorGetPipelineAssignment, e.usePipelineOrchestratorGetPipelineAssignments, e.usePipelineOrchestratorGetPipelineDevicePin, e.usePipelineOrchestratorGetReconcileFromDiskStatus, e.usePipelineOrchestratorListAgentSettings, e.usePipelineOrchestratorListTemplates, e.usePipelineOrchestratorPauseForStorageMigration, e.usePipelineOrchestratorRebalance, e.usePipelineOrchestratorReconcileFromDisk, e.usePipelineOrchestratorRemoveAgentSettings, e.usePipelineOrchestratorResetNodePipelineDefaults, e.usePipelineOrchestratorResolvePipeline, e.usePipelineOrchestratorResumeForStorageMigration, e.usePipelineOrchestratorSaveTemplate, e.usePipelineOrchestratorSetAgentCapabilities, e.usePipelineOrchestratorSetAgentDetectWeight, e.usePipelineOrchestratorSetAgentInferenceDevices, e.usePipelineOrchestratorSetAgentMaxCameras, e.usePipelineOrchestratorSetAgentReachableHost, e.usePipelineOrchestratorSetCameraPipelineForAgent, e.usePipelineOrchestratorSetCameraStepOverride, e.usePipelineOrchestratorSetCameraStepToggle, e.usePipelineOrchestratorSetCameraSwitch, e.usePipelineOrchestratorSetCapabilityBinding, e.usePipelineOrchestratorSetPipelineDevicePin, e.usePipelineOrchestratorUnassignAudio, e.usePipelineOrchestratorUnassignPipeline, e.usePipelineOrchestratorUpdateTemplate, e.usePipelineRunnerAttachCamera, e.usePipelineRunnerDetachCamera, e.usePipelineRunnerGetAllCameraMetrics, e.usePipelineRunnerGetCameraMetrics, e.usePipelineRunnerGetLocalCameras, e.usePipelineRunnerGetLocalLoad, e.usePipelineRunnerGetLocalMetrics, e.usePipelineRunnerGetNativeCrop, e.usePipelineRunnerReportMotion, e.usePipelineRunnerRunDetailSubtree, e.usePipelineRunnerRunStatelessStep, e.usePlateGalleryAssignPlate, e.usePlateGalleryAssignPlates, e.usePlateGalleryCorrectPlateText, e.usePlateGalleryCreateVehicle, e.usePlateGalleryDeletePlate, e.usePlateGalleryDeleteVehicle, e.usePlateGalleryGetPlateByTrack, e.usePlateGalleryGetPlateMedia, e.usePlateGalleryListPlates, e.usePlateGalleryListVehicleSamples, e.usePlateGalleryListVehicles, e.usePlateGalleryRemoveVehicleSample, e.usePlateGalleryRenameVehicle, e.usePlateGallerySearchPlates, e.usePlateGallerySuggestPlateClusters, e.usePlateGalleryUnassignPlate, e.usePlateGalleryUnassignPlates, e.usePlayerOverlayLayer, e.usePlayerOverlayLayers, e.usePlayerToolbarButton, e.usePlayerToolbarButtons, e.usePowerMeterGetStatus, e.usePresenceGetStatus, e.usePressureSensorGetStatus, e.usePrivacyMaskGetOptions, e.usePrivacyMaskGetStatus, e.usePrivacyMaskSetAudioEnabled, e.usePrivacyMaskSetMask, e.usePtzAutotrackGetSettings, e.usePtzAutotrackGetStatus, e.usePtzAutotrackSetEnabled, e.usePtzAutotrackSetSettings, e.usePtzContinuousMove, e.usePtzDeletePreset, e.usePtzGetOptions, e.usePtzGetPosition, e.usePtzGetPresets, e.usePtzGetStatus, e.usePtzGoHome, e.usePtzGoToPreset, e.usePtzMove, e.usePtzSavePreset, e.usePtzSetAutofocus, e.usePtzStop, e.useRebootReboot, e.useRecordedPlayback, e.useRecordingApplyDeviceSettingsPatch, e.useRecordingCancelRelocateJob, e.useRecordingCancelStorageMigrationMove, e.useRecordingDeleteFootprint, e.useRecordingExportCancelExport, e.useRecordingExportCreateExport, e.useRecordingExportDeleteExport, e.useRecordingExportGetDownloadUrl, e.useRecordingExportGetExport, e.useRecordingExportListExports, e.useRecordingExportReadExportBytes, e.useRecordingGetAvailability, e.useRecordingGetDaysWithRecordings, e.useRecordingGetDeviceConfig, e.useRecordingGetDeviceLiveContribution, e.useRecordingGetDeviceSettingsContribution, e.useRecordingGetPlaybackManifest, e.useRecordingGetStatus, e.useRecordingGetStorageMigrationMoveStatus, e.useRecordingGetStorageUsage, e.useRecordingListOpsLog, e.useRecordingListRelocateJobs, e.useRecordingLocateSegment, e.useRecordingPauseForStorageMigration, e.useRecordingPlanStorageRebalance, e.useRecordingPruneFootage, e.useRecordingReadGopBytes, e.useRecordingReadSegmentBytes, e.useRecordingReadWindowBytes, e.useRecordingRefreshStorageLocationsForMigration, e.useRecordingRelocateFootage, e.useRecordingRenderClip, e.useRecordingRenderGif, e.useRecordingRescanStorage, e.useRecordingResumeForStorageMigration, e.useRecordingSetDeviceConfig, e.useRecordingStartStorageMigrationMove, e.useRecordingStartStorageRebalance, e.useRemoteComponent, e.useSceneMonitorCaptureReference, e.useSceneMonitorCreateScene, e.useSceneMonitorDeleteReference, e.useSceneMonitorDeleteScene, e.useSceneMonitorGetStatus, e.useSceneMonitorListScenes, e.useSceneMonitorRecheckNow, e.useSceneMonitorResetScene, e.useSceneMonitorUpdateScene, e.useScriptRunnerGetStatus, e.useScriptRunnerRun, e.useScriptRunnerStop, e.useScrubController, e.useServerManagementApplyServerUpdate, e.useServerManagementCheckServerUpdate, e.useServerManagementGetServerPackageStatus, e.useServerManagementRestartServer, e.useServerManagementRollbackServerUpdate, e.useSettingsStoreAggregate, e.useSettingsStoreCount, e.useSettingsStoreDeclareCollection, e.useSettingsStoreDelete, e.useSettingsStoreDeleteWhere, e.useSettingsStoreGet, e.useSettingsStoreHistogram, e.useSettingsStoreInsert, e.useSettingsStoreInsertMany, e.useSettingsStoreIsEmpty, e.useSettingsStoreQuery, e.useSettingsStoreSet, e.useSettingsStoreUpdate, e.useSettingsStoreUpdateWhere, e.useSmokeGetStatus, e.useSnapshotApplyDeviceSettingsPatch, e.useSnapshotGetDebugState, e.useSnapshotGetDeviceLiveContribution, e.useSnapshotGetDeviceSettingsContribution, e.useSnapshotGetSnapshot, e.useSnapshotGetSnapshotLinks, e.useSnapshotGetSnapshotOverview, e.useSnapshotGetStatus, e.useSnapshotInvalidateCache, e.useStorageAbortUpload, e.useStorageBeginDownload, e.useStorageBeginUpload, e.useStorageDelete, e.useStorageDeleteLocation, e.useStorageEndDownload, e.useStorageExists, e.useStorageFinalizeUpload, e.useStorageGetAvailableSpace, e.useStorageGetDefaultLocation, e.useStorageList, e.useStorageListLocationDeclarations, e.useStorageListLocations, e.useStorageListProviders, e.useStorageMigrationCancel, e.useStorageMigrationPlan, e.useStorageMigrationStart, e.useStorageMigrationStatus, e.useStorageRead, e.useStorageReadChunk, e.useStorageResolve, e.useStorageTestConfig, e.useStorageTestLocation, e.useStorageUpsertLocation, e.useStorageWrite, e.useStorageWriteChunk, e.useStreamBrokerAcquireEgressTranscode, e.useStreamBrokerApplyDeviceSettingsPatch, e.useStreamBrokerAssignProfile, e.useStreamBrokerFetchEventMedia, e.useStreamBrokerGetAllRtspEntries, e.useStreamBrokerGetBrokerStats, e.useStreamBrokerGetDeviceAudioMute, e.useStreamBrokerGetDeviceLiveContribution, e.useStreamBrokerGetDeviceSettingsContribution, e.useStreamBrokerGetPreBufferInfo, e.useStreamBrokerGetRtspEntry, e.useStreamBrokerGetRtspPort, e.useStreamBrokerGetStreamUrl, e.useStreamBrokerGetStreamWithCodec, e.useStreamBrokerIsRtspEnabled, e.useStreamBrokerKillClient, e.useStreamBrokerListAllCameraStreams, e.useStreamBrokerListAllProfileSlots, e.useStreamBrokerListClients, e.useStreamBrokerProbeStream, e.useStreamBrokerProduceEventMedia, e.useStreamBrokerPublishCameraStream, e.useStreamBrokerPullAudioChunks, e.useStreamBrokerPullFrameHandles, e.useStreamBrokerRegenerateRtspToken, e.useStreamBrokerReleaseEgressTranscode, e.useStreamBrokerReleaseStreamWithCodec, e.useStreamBrokerRenderPreBufferClip, e.useStreamBrokerRestartProfile, e.useStreamBrokerRetractCameraStream, e.useStreamBrokerSetDeviceAudioMute, e.useStreamBrokerSetPreBufferDuration, e.useStreamBrokerSetRtspEnabled, e.useStreamBrokerSubscribeAudioChunks, e.useStreamBrokerSubscribeFrames, e.useStreamBrokerUnassignProfile, e.useStreamBrokerUnsubscribeAudioChunks, e.useStreamBrokerUnsubscribeFrames, e.useStreamCatalogGetCatalog, e.useStreamParamsGetConfigSchema, e.useStreamParamsGetOptions, e.useStreamParamsGetStatus, e.useStreamParamsSetProfile, e.useSwitchGetStatus, e.useSwitchSetState, a = e.useSystem, e.useSystem$1, e.useSystemDetectSiteLocation, e.useSystemFeatureFlags, e.useSystemForceRetentionCleanup, e.useSystemGetFailureContributions, e.useSystemGetLoadContributions, e.useSystemGetLoggingSettings, e.useSystemGetRequestCensus, e.useSystemGetRetentionConfig, e.useSystemGetSiteLocation, e.useSystemHealth, e.useSystemInfo, e.useSystemMutation, e.useSystemNetworkAddresses, e.useSystemQuery, e.useSystemSetLoggingSettings, e.useSystemSetRetentionConfig, e.useSystemSetSiteLocation, e.useTamperGetStatus, e.useTemperatureSensorGetStatus, e.useTerminalSessionAdoptLegacyMonitor, e.useTerminalSessionClose, e.useTerminalSessionCreateInstance, e.useTerminalSessionDeleteInstance, e.useTerminalSessionListInstances, e.useTerminalSessionListLegacyCameras, e.useTerminalSessionListProfiles, e.useTerminalSessionListSessions, e.useTerminalSessionOpenSession, e.useTerminalSessionPullOutput, e.useTerminalSessionResize, e.useTerminalSessionSetInstanceEnabled, e.useTerminalSessionUpdateInstance, e.useTerminalSessionWriteInput, e.useThemeMode, e.useToastOnToast, e.useTurnProviderGetTurnServers, e.useUpdateGetStatus, e.useUpdateInstallUpdate, e.useUserManagementConfirmTotp, e.useUserManagementCreateApiKey, e.useUserManagementCreateScopedToken, e.useUserManagementCreateUser, e.useUserManagementDeleteUser, e.useUserManagementDisableTotp, e.useUserManagementGetTotpStatus, e.useUserManagementListApiKeys, e.useUserManagementListOauthSessions, e.useUserManagementListScopedTokens, e.useUserManagementListUsers, e.useUserManagementOauthExchangeCode, e.useUserManagementOauthIssueCode, e.useUserManagementOauthRefresh, e.useUserManagementOauthVerifyAccessToken, e.useUserManagementResetPassword, e.useUserManagementRevokeApiKey, e.useUserManagementRevokeOauthSession, e.useUserManagementRevokeScopedToken, e.useUserManagementSetUserScopes, e.useUserManagementSetupTotp, e.useUserManagementUpdateUser, e.useUserManagementValidateApiKey, e.useUserManagementValidateCredentials, e.useUserManagementValidateScopedToken, e.useUserManagementVerifyTotp, e.useVacuumControlGetStatus, e.useVacuumControlLocate, e.useVacuumControlPause, e.useVacuumControlReturnToBase, e.useVacuumControlSetFanSpeed, e.useVacuumControlStart, e.useVacuumControlStop, e.useValveClose, e.useValveGetStatus, e.useValveOpen, e.useValveSetPosition, e.useValveStop, e.useVibrationGetStatus, e.useVideoclipsGetClipPlayback, e.useVideoclipsListClips, e.useVodPlayback, e.useWaterHeaterGetStatus, e.useWaterHeaterSetAway, e.useWaterHeaterSetOperationMode, e.useWaterHeaterSetTargetTemp, e.useWeatherGetStatus, e.useWebrtcSessionAddIceCandidate, e.useWebrtcSessionCloseSession, e.useWebrtcSessionCreateSession, e.useWebrtcSessionGetIceCandidates, e.useWebrtcSessionGetSessionState, e.useWebrtcSessionHandleAnswer, e.useWebrtcSessionHandleOffer, e.useWebrtcSessionHasAdaptiveBitrate, e.useWebrtcSessionListStreams, e.useWidget, e.useWidgetMetadata, e.useWidgetRegistry, e.useZoneAnalyticsGetCameraHistory, e.useZoneAnalyticsGetCurrentSnapshot, e.useZoneAnalyticsGetUnzonedHistory, e.useZoneAnalyticsGetZoneHistory, e.useZoneEditing, e.useZoneRulesListRules, e.useZoneRulesSetRules, e.useZonesAddZone, e.useZonesListZones, e.useZonesRemoveZone, e.useZonesUpdateZone, e.vacuumStateMeta, e.validateScopes, e.valveStateMeta, e.variantLabel, e.variantLabel$1, e.waterHeaterPhase, e.waterHeaterTint, e.weatherConditionMeta, e.weatherTint, e.default;
|
|
19
|
+
e.AddonGlobalSettingsForm, e.AgentStepEditor, e.AlarmHeroCard, e.AlarmPanelInlineControl, e.AppShell, e.ArcKnob, e.AudioClassificationList, e.AudioLevelWaveform, e.AudioWaveform, e.AutomationHeroCard, e.AutomationInlineControl, e.AutotrackSection, e.BTN_COMPACT, e.BTN_COMPACT_DANGER, e.BTN_COMPACT_PRIMARY, e.BTN_COMPACT_WARNING, e.Badge, e.BatteryBadge, e.BottomSheet, e.Breadcrumb, e.BrightnessPanel, e.Button, e.ButtonControl, e.ButtonHeroCard, e.CARD_MODE_MIN_COLUMNS, e.CENTER, e.CHIP_ACTIVE, e.CHIP_BASE, e.CHIP_INACTIVE, e.CLASS_COLORS, e.COLUMN_BREAKPOINT_CLASS, e.COLUMN_PRIORITY, e.COMMIT_DEDUPE_TOLERANCE_MS, e.COMMIT_DEDUPE_WINDOW_MS, e.CONTROL_CAP_NAMES, e.CONTROL_FILLS, e.Camera, e.CameraStreamPlayer, e.Card, e.Checkbox, e.ChildSectionAccordion, e.ClimatePanel, e.CodeBlock, e.CollapsibleCard, e.ConfigFormBuilder, e.ConfigFormField, e.ConfigSchemaField, e.ConfirmActionButton, e.ConfirmDialogProvider, e.ConsumablesPanel, e.ContainerChildrenProvider, e.ContainerPrimaryHero, e.ControlColumn, e.ControlHeroCard, e.ControlInlineControl, e.ControlPanel, e.CopyButton, e.CoverHeroCard, e.CoverInlineControl, e.CoverPanel, e.CustomFieldRenderersProvider, e.DEFAULT_COLOR, e.DEVICE_COLUMNS, e.DEVICE_LIST_PAGE_SIZE_KEY, e.DEVICE_LIST_PAGE_SIZE_OPTIONS, e.DEVICE_ROLE_META, e.DEVICE_TYPE_CONTROL, e.DEVICE_TYPE_META, e.DISPLAY_ICON_REGISTRY, e.DataTable, e.DetectionCanvas, e.DetectionOverlay, e.DetectionResultTree, e.DevShell, e.DeviceActivityPanel, e.DeviceBatchToolbar, e.DeviceCard, e.DeviceContextProvider, e.DeviceExportPanel, e.DeviceGrid, e.DeviceItem, e.DeviceList, e.DeviceMultiSelectField, e.DeviceSelectField, e.DeviceSelectorPicker, e.DeviceStepMatrix, e.Dialog, e.DialogBody, e.DialogContent, e.DialogDescription, e.DialogFooter, e.DialogHeader, e.DialogTitle, e.DialogTrigger, e.DiscoveryPanel, e.DoorbellRecentPanel, e.Dropdown, e.DropdownContent, e.DropdownItem, e.DropdownTrigger, e.DummyHeroCard, e.DummyInline, e.EVENT_KIND_ICONS, e.EmptyState, e.ErrorBox, e.EventKindGlyph, e.EventStream, e.EyeOff, e.FILL, e.FLEET_LIST_GC_TIME_MS, e.FLEET_LIST_QUERY_KEY, e.FLEET_LIST_STALE_TIME_MS, e.FanHeroCard, e.FanInlineControl, e.FanPanel, e.FilterBar, e.FloatingEventStream, e.FloatingLogStream, e.FloatingPanel, e.FormField, e.GRID_GAP, e.GRID_PAIRED, e.GRID_QUICK_STATS, e.GripTrack, e.GroupedModelSelector, e.HOST_WIDGETS, e.HlsVideo, e.HoverZoomImage, e.HumidifierHeroCard, e.HumidifierInlineControl, e.INPUT_COMPACT, e.IconAction, e.IconButton, e.ImageHeroCard, e.ImageInlineControl, e.ImageOff, e.ImageSelector, e.InferenceConfigSelector, e.Input, e.KebabMenu, e.KeyValueList, e.LIST_ROW, e.Label, e.LawnMowerHeroCard, e.LawnMowerInlineControl, e.LightHeroCard, e.LightInlineControl, e.LockHeroCard, e.LockInlineControl, e.LockPanel, e.LogStream, e.LoginForm, e.MODE_COLOR, e.MaskShapeCanvas, e.MediaPlayerHeroCard, e.MediaPlayerInlineControl, e.MediaPlayerPanel, e.Mic, e.MobileDrawer, e.ModelPicker, e.MotionZonesSettings, e.NodeMultiSelectField, e.NodePicker, e.NodeSelectField, e.OfflineBadge, e.PHASE_CONFIG, e.PRIORITY, e.PTZOverlay, e.PageHeader, e.PhaseIcon, e.PipelineBuilder, e.PipelineRuntimeSelector, e.PipelineStep, e.PipelineTreeMatrix, e.PlayerOverlaysProvider, e.Popover, e.PopoverContent, e.PopoverRowAction, e.PopoverTrigger, e.PrimaryChildPicker, e.PrivacyMaskSettings, e.ProviderBadge, e.PtzPanel, e.QrCode, e.RECONNECT_POLICY, e.RECORDED_PLAYBACK_MODES, e.RIGHT, e.ROI_AREA_WARN_FRACTION, e.ROLE_DESCRIPTOR, e.RadialGauge, e.RecordedPlaybackProvider, e.RecordingPanel, e.ResponseLog, e.RotateCcw, e.SCENE_CAPTURE_VARIANTS, e.SCENE_CAPTURE_VARIANTS$1, e.SECTION_BODY, e.SECTION_CARD, e.SECTION_HEADER, e.SETTING_ROW, e.SETTING_ROW_LABEL, e.SETTING_ROW_STACK_BREAKPOINT, e.SETTING_ROW_VALUE, e.SETTING_ROW_VALUE_TEXT, e.SPLIT_PANEL_OUTER, e.SPLIT_PANEL_SIDE, e.STACK_GAP, e.STATE_COLOR, e.SceneMonitorEditor, e.ScopePicker, e.ScriptHeroCard, e.ScriptInlineControl, e.ScrollArea, e.Select, e.SemanticBadge, e.SensorHeroCard, e.SensorInlineControl, e.SensorValueAtom, e.Separator, e.SettingRow, e.Sidebar, e.SidebarItem, e.Skeleton, e.SlideOverPanel, e.SlideToggle, e.SnapshotButton, e.SortHeaderButton, e.Square, e.StatCard, e.StateValuesStream, e.StatusBadge, e.StepTimings, e.StepTreeMaster, e.Stepper, e.StreamBrokerSelector, e.StreamPanel, e.Switch, e.SwitchHeroCard, e.SwitchInlineControl, e.SwitchPanel, e.SystemProvider, e.TABLE_SCROLL_MAX_H, e.TEXT_FIELD_LABEL, e.TEXT_HINT, e.TEXT_METRIC, e.TEXT_SECTION_LABEL, e.TEXT_VALUE, e.TIMEZONES, e.Tabs, e.TabsContent, e.TabsList, e.TabsTrigger, e.TapToggle, e.ThemeProvider, e.ThermostatHeroCard, e.ThermostatInlineControl, e.TimezoneSelector, e.Tooltip, e.TooltipContent, e.TooltipTrigger, e.Trash2, e.VacuumHeroCard, e.VacuumInlineControl, e.ValueReadout, e.ValveHeroCard, e.ValveInlineControl, e.VersionBadge, e.VodPlaybackProvider, e.WaterHeaterHeroCard, e.WaterHeaterInlineControl, e.WeatherHeroCard, e.WeatherInlineControl, e.WidgetMetricCard, e.WidgetPanel, e.WidgetRegistryProvider, e.WidgetSlot, e.ZoneEditingProvider, e.agentColumnKey, e.allDeviceTypeFilterOptions, e.applyFleetQueryDefaults, e.ariaSortForColumn, e.badgeFor, e.badgeFor$1, e.buildStepTreeFromSchema, e.childEntityId, e.childListName, e.cn, e.columnsForContext, e.containerChildToRef, e.countableDevices, e.coverHighlight, e.coverageLine, e.coverageLine$1, e.createLucideIcon, e.createSharedContext, e.createTheme, e.cursorFractionFor, e.darkColors, e.defaultTheme, e.deriveDeviceKind, e.describeDeviceSelector, e.deviceMatchesFilter, e.deviceOptionLabel, e.deviceRoleMeta, e.deviceRoleMetaOf, e.deviceTypeLabel, e.deviceTypeMeta, e.deviceTypeMetaOf, e.devicesToOptions, e.ensureMfHostInit, e.eventKindLabel, e.filterDeviceOptions, e.findTimezone, e.formatControlDateTime, e.formatLastSeen, e.formatNumeric, e.fuzzyMatch, e.getClassColor, e.getPhaseVisual, e.groupAgentColumns, e.groupChildrenByLayout, e.hardwareLabel, e.humanDuration, e.humidifierTint, e.initialScrubState, e.isAbsentProvider, e.isAbsentProvider$1, e.isFieldVisible, e.lawnMowerActivityMeta, e.lightColors, e.loadRemoteBundle, e.makeScrubBridge, e.metadataEntries, e.metadataString, e.mirror, e.mountAddonPage, e.nextReconnectAction, e.nextSort, e.nextSortDirection, e.nextTableSort, e.normalizeForSearch, e.overrideEntityIdFromLink, e.parseRecordedServerMessage, e.providerIcons, e.resolveContainerPrimary, e.resolveControlAlign, e.resolveDeviceControl, e.resolveDisplayIcon, e.resolveEffectiveDefaultModel, e.resolveEffectiveStepModel, e.resolveEventKindIcon, e.resolvePrimaryChild, e.resolveSensorDisplay, e.resolveStepDefaultModel, e.resolveTableLayout, e.roiTooLarge, e.roiTooLarge$1, e.scrubReducer, e.selectedDeviceOptions, e.serializeRecordedCommand, e.shouldCommit, e.shouldEmit, e.shouldUseSingleNode, e.sortRows, e.sortRowsByColumn, e.statusIcons, e.statusLine, e.statusLine$1, e.stepHasModelForFormat, e.stepModelOptions, e.stripParentNamePrefix, e.tabForSelector, e.tankAlert, e.themeToCss, e.trpc, e.useAccessoriesGetStatus, e.useAccessoriesSetChildHidden, e.useAddonPagesListPages, e.useAddonSettingsGetDeviceSettings, e.useAddonSettingsGetGlobalSettings, e.useAddonSettingsGetIntegrationSettings, e.useAddonSettingsUpdateDeviceSettings, e.useAddonSettingsUpdateGlobalSettings, e.useAddonWidgetsListWidgets, e.useAddonsApplyAutoUpdateToAll, e.useAddonsCancelJob, e.useAddonsCustom, e.useAddonsForceRefresh, e.useAddonsGetAddonAutoUpdate, e.useAddonsGetAutoUpdateSettings, e.useAddonsGetJob, e.useAddonsGetLastRestart, e.useAddonsGetLogs, e.useAddonsGetVersions, e.useAddonsInstallFromWorkspace, e.useAddonsInstallPackage, e.useAddonsIsWorkspaceAvailable, e.useAddonsList, e.useAddonsListCapabilityProviders, e.useAddonsListFrameworkPackages, e.useAddonsListJobs, e.useAddonsListPackages, e.useAddonsListUpdates, e.useAddonsListWorkspacePackages, e.useAddonsOnAddonLogs, e.useAddonsReloadPackages, e.useAddonsRestartAddon, e.useAddonsRestartServer, e.useAddonsRetryLoad, e.useAddonsRollbackPackage, e.useAddonsSearchAvailable, e.useAddonsSetAddonAutoUpdate, e.useAddonsSetAutoUpdateSettings, e.useAddonsSetCapabilityProviderEnabled, e.useAddonsStartJob, e.useAddonsUninstallPackage, e.useAddonsUpdatePackage, e.useAirQualitySensorGetStatus, e.useAlarmPanelArm, e.useAlarmPanelDisarm, e.useAlarmPanelGetStatus, e.useAlarmPanelTrigger, e.useAlertsDismiss, e.useAlertsEmit, e.useAlertsGetUnreadCount, e.useAlertsList, e.useAlertsMarkAllRead, e.useAlertsMarkRead, e.useAlertsUpdate, e.useAllWidgets, e.useAmbientLightSensorGetStatus, e.useAudioAnalysisApplyDeviceSettingsPatch, e.useAudioAnalysisGetDeviceLiveContribution, e.useAudioAnalysisGetDeviceSettingsContribution, e.useAudioAnalysisResolveDeviceSettings, e.useAudioAnalyzerAnalyseChunk, e.useAudioAnalyzerClassify, e.useAudioAnalyzerDispose, e.useAudioAnalyzerIsReady, e.useAudioAnalyzerReprobeAudioEngine, e.useAudioCodecCanHandle, e.useAudioCodecCloseSession, e.useAudioCodecCreateDecodeSession, e.useAudioCodecCreateEncodeSession, e.useAudioCodecFlushEncode, e.useAudioCodecListActiveSessions, e.useAudioCodecListSupportedCodecs, e.useAudioCodecPullEncoded, e.useAudioCodecPullPcm, e.useAudioCodecPushEncodedFrame, e.useAudioCodecPushPcm, e.useAudioMetricsGetCurrentSnapshot, e.useAudioMetricsGetHistory, e.useAutomationControlDisable, e.useAutomationControlEnable, e.useAutomationControlGetStatus, e.useAutomationControlTrigger, e.useBackupDelete, e.useBackupDeleteSchedule, e.useBackupGetEntries, e.useBackupList, e.useBackupListArchives, e.useBackupListDestinations, e.useBackupListLocations, e.useBackupListSchedules, e.useBackupPreviewSchedule, e.useBackupRestore, e.useBackupTrigger, e.useBackupUpsertDestinationPolicy, e.useBackupUpsertSchedule, e.useBatteryGetStatus, e.useBatteryWakeForStream, e.useBinaryGetStatus, e.useBrightnessGetStatus, e.useBrightnessSetBrightness, e.useBrokerAdd, e.useBrokerGet, e.useBrokerGetBrokerConfig, e.useBrokerGetSettings, e.useBrokerGetSettingsSchema, e.useBrokerGetState, e.useBrokerGetStatus, e.useBrokerList, e.useBrokerListProviders, e.useBrokerPublish, e.useBrokerRemove, e.useBrokerSetSettings, e.useBrokerSubscribe, e.useBrokerTestConnection, e.useBrokerTestSettings, e.useBrokerUnsubscribe, e.useButtonPress, e.useCameraCredentialsGetCredentials, e.useCameraCredentialsGetStatus, e.useCameraPipelineConfigApplyDeviceSettingsPatch, e.useCameraPipelineConfigGetDeviceLiveContribution, e.useCameraPipelineConfigGetDeviceSettingsContribution, e.useCameraStreamsGetBrokerStreams, e.useCameraStreamsGetCameraStreams, e.useCameraStreamsGetProfileRtspEntries, e.useCameraStreamsGetRtspEntries, e.useCameraStreamsPickStream, e.useCarbonMonoxideGetStatus, e.useClimateControlGetStatus, e.useClimateControlSetFanMode, e.useClimateControlSetMode, e.useClimateControlSetPreset, e.useClimateControlSetSwingHorizontal, e.useClimateControlSetSwingVertical, e.useClimateControlSetTarget, e.useClimateControlSetTargetHumidity, e.useClimateControlSetTargetRange, e.useClusterNodes, e.useColorGetStatus, e.useColorSetColor, e.useConfirm, e.useConnectionTestDescribeTest, e.useConnectionTestTestSettings, e.useConnectivityGetStatus, e.useConsumablesGetStatus, e.useConsumablesReset, e.useContactGetStatus, e.useContainerChildren, e.useControlGetStatus, e.useControlSetValue, e.useCoreBlocksCompile, e.useCoreBlocksCreate, e.useCoreBlocksDelete, e.useCoreBlocksGet, e.useCoreBlocksGetTypeDefs, e.useCoreBlocksList, e.useCoreBlocksRestart, e.useCoreBlocksSetEnabled, e.useCoreBlocksUpdate, e.useCoverClose, e.useCoverGetStatus, e.useCoverOpen, e.useCoverSetPosition, e.useCoverSetTiltPosition, e.useCoverStop, e.useCustomFieldRenderer, e.useDayNightGetOptions, e.useDayNightGetStatus, e.useDayNightSetSettings, e.useDebouncedString, e.useDecoderCreateSession, e.useDecoderDestroySession, e.useDecoderGetFrame, e.useDecoderGetInfo, e.useDecoderGetShmStats, e.useDecoderGetStats, e.useDecoderListActiveSessions, e.useDecoderOpenStream, e.useDecoderPullFrames, e.useDecoderPullHandles, e.useDecoderPushPacket, e.useDecoderReprobeHwaccel, e.useDecoderSupportsCodec, e.useDecoderUpdateConfig, e.useDetectionPipelineApplyDeviceSettingsPatch, e.useDetectionPipelineGetDeviceLiveContribution, e.useDetectionPipelineGetDeviceSettingsContribution, e.useDevShell, e.useDevice, e.useDeviceAdoptionAdopt, e.useDeviceAdoptionGetCandidate, e.useDeviceAdoptionGetStatus, e.useDeviceAdoptionListCandidateFilters, e.useDeviceAdoptionListCandidates, e.useDeviceAdoptionRefresh, e.useDeviceAdoptionRelease, e.useDeviceAdoptionResync, e.useDeviceAutotrack, e.useDeviceBattery, e.useDeviceCapSlice, e.useDeviceCapability, e.useDeviceDetections, e.useDeviceDiscoveryAdoptDevice, e.useDeviceDiscoveryGetStatus, e.useDeviceDiscoveryListDiscovered, e.useDeviceDiscoveryRefreshDiscovery, e.useDeviceDiscoveryReleaseDevice, e.useDeviceExportApplyDeviceSettingsPatch, e.useDeviceExportExposeDevice, e.useDeviceExportGetDeviceLiveContribution, e.useDeviceExportGetDeviceSettingsContribution, e.useDeviceExportGetStatus, e.useDeviceExportListExposedDevices, e.useDeviceExportListSupportedDeviceKinds, e.useDeviceExportUnexposeDevice, e.useDeviceId, e.useDeviceListPageSize, e.useDeviceManagerAddLocation, e.useDeviceManagerAdoptDevice, e.useDeviceManagerAdoptionAdopt, e.useDeviceManagerAdoptionCancelJob, e.useDeviceManagerAdoptionListCandidateFilters, e.useDeviceManagerAdoptionListCandidates, e.useDeviceManagerAdoptionListJobs, e.useDeviceManagerAdoptionRefresh, e.useDeviceManagerAdoptionRelease, e.useDeviceManagerAdoptionResync, e.useDeviceManagerAdoptionStartJob, e.useDeviceManagerAllocateDeviceId, e.useDeviceManagerApplyDeviceSettingsPatch, e.useDeviceManagerApplyInitialMeta, e.useDeviceManagerCreateDevice, e.useDeviceManagerDisable, e.useDeviceManagerDiscoverAllProviders, e.useDeviceManagerDiscoverDevices, e.useDeviceManagerDiscoverProvider, e.useDeviceManagerDiscoveryProviders, e.useDeviceManagerEnable, e.useDeviceManagerGetAllBindings, e.useDeviceManagerGetBindings, e.useDeviceManagerGetBindingsBatch, e.useDeviceManagerGetChildren, e.useDeviceManagerGetChildrenBatch, e.useDeviceManagerGetConfigSchema, e.useDeviceManagerGetCreationSchema, e.useDeviceManagerGetDevice, e.useDeviceManagerGetDeviceAggregate, e.useDeviceManagerGetDeviceLiveContribution, e.useDeviceManagerGetDeviceLiveInfoAggregate, e.useDeviceManagerGetDeviceSettingsAggregate, e.useDeviceManagerGetDeviceSettingsContribution, e.useDeviceManagerGetDeviceStatusAggregate, e.useDeviceManagerGetDeviceStatusAggregateBatch, e.useDeviceManagerGetLinkedDevices, e.useDeviceManagerGetLinkedDevicesBatch, e.useDeviceManagerGetRoleDisplayDefaults, e.useDeviceManagerGetSettingsSchema, e.useDeviceManagerGetStreamProfileMap, e.useDeviceManagerGetStreamSources, e.useDeviceManagerGetWireableFields, e.useDeviceManagerListAll, e.useDeviceManagerListBindableCapsForDeviceType, e.useDeviceManagerListLocations, e.useDeviceManagerListPersistedByAddon, e.useDeviceManagerListWrappersForCap, e.useDeviceManagerLoadConfig, e.useDeviceManagerLoadMeta, e.useDeviceManagerLoadRuntimeState, e.useDeviceManagerPersistConfig, e.useDeviceManagerProbeStreams, e.useDeviceManagerProviderCreationType, e.useDeviceManagerProviderDiscoveryParamsSchema, e.useDeviceManagerRegisterDevice, e.useDeviceManagerRemove, e.useDeviceManagerRemoveByIntegration, e.useDeviceManagerRemoveDevice, e.useDeviceManagerRemoveLocation, e.useDeviceManagerRunDeviceAction, e.useDeviceManagerSetChildLayout, e.useDeviceManagerSetDisabled, e.useDeviceManagerSetDisplay, e.useDeviceManagerSetIntegrationId, e.useDeviceManagerSetLinkDeviceId, e.useDeviceManagerSetLocation, e.useDeviceManagerSetMetadata, e.useDeviceManagerSetName, e.useDeviceManagerSetPrimaryChildEntityId, e.useDeviceManagerSetRole, e.useDeviceManagerSetRoleDisplayDefaults, e.useDeviceManagerSetStreamProfileMap, e.useDeviceManagerSetType, e.useDeviceManagerSetWrapperActive, e.useDeviceManagerTestCreationField, e.useDeviceManagerTestField, e.useDeviceManagerUpdateConfig, e.useDeviceManagerUpdateDeviceField, e.useDeviceManagerUpdateDeviceFieldsBatch, e.useDeviceOpsGetConfigEntries, e.useDeviceOpsGetRawState, e.useDeviceOpsGetSettingsSchema, e.useDeviceOpsGetStreamSources, e.useDeviceOpsRemoveDevice, e.useDeviceOpsRunAction, e.useDeviceOpsSetConfig, e.useDeviceProviderAdoptDiscoveredDevice, e.useDeviceProviderCreateDevice, e.useDeviceProviderDiscoverDevices, e.useDeviceProviderGetChildCreationSchema, e.useDeviceProviderGetDevices, e.useDeviceProviderGetDiscoveryParamsSchema, e.useDeviceProviderGetManualCreationType, e.useDeviceProviderGetStatus, e.useDeviceProviderStart, e.useDeviceProviderStop, e.useDeviceProviderSupportsDiscovery, e.useDeviceProviderSupportsManualCreation, e.useDeviceProviderTestCreationField, e.useDeviceProxy, e.useDeviceProxy$1, e.useDeviceSnapshot, e.useDeviceSnapshotImage, e.useDeviceSnapshotImage$1, e.useDeviceState, e.useDeviceStateGetAllSnapshots, e.useDeviceStateGetCapSlice, e.useDeviceStateGetSnapshot, e.useDeviceStateSetCapSlice, e.useDeviceStateSlice, e.useDeviceStateSlice$1, e.useDeviceStatusGetStatus, e.useDeviceWebrtc, e.useDevices, e.useDoorbellApplyDeviceSettingsPatch, e.useDoorbellEvents, e.useDoorbellGetDeviceLiveContribution, e.useDoorbellGetDeviceSettingsContribution, e.useDoorbellGetStatus, e.useEnumSensorGetStatus, e.useEventEmitterGetStatus, e.useEventInvalidation, e.useEventStreamLatest, e.useEventStreamMap, e.useEventsGetEventClipUrl, e.useEventsGetEventThumbnail, e.useEventsGetEvents, e.useFaceGalleryAssignFace, e.useFaceGalleryAssignFaces, e.useFaceGalleryCreateIdentity, e.useFaceGalleryDeleteFace, e.useFaceGalleryDeleteIdentity, e.useFaceGalleryGetFaceByTrack, e.useFaceGalleryGetFaceMedia, e.useFaceGalleryListIdentities, e.useFaceGalleryListIdentitySamples, e.useFaceGalleryListRecentFaces, e.useFaceGalleryRemoveSample, e.useFaceGalleryRenameIdentity, e.useFaceGallerySuggestFaceClusters, e.useFaceGalleryUnassignFace, e.useFaceGalleryUnassignFaces, e.useFanControlGetStatus, e.useFanControlSetDirection, e.useFanControlSetOscillating, e.useFanControlSetPercentage, e.useFanControlSetPreset, e.useFeatureProbeGetStatus, e.useFloodGetStatus, e.useGasGetStatus, e.useHumidifierGetStatus, e.useHumidifierSetMode, e.useHumidifierSetOn, e.useHumidifierSetTargetHumidity, e.useHumiditySensorGetStatus, e.useImageGetStatus, e.useImageSettingsGetOptions, e.useImageSettingsGetStatus, e.useImageSettingsSetSettings, e.useIntegrationsCreate, e.useIntegrationsDelete, e.useIntegrationsGet, e.useIntegrationsGetAvailableTypes, e.useIntegrationsGetByAddonId, e.useIntegrationsGetSettings, e.useIntegrationsList, e.useIntegrationsSetSettings, e.useIntegrationsTestConnection, e.useIntegrationsUpdate, e.useIntercomEndTalkSession, e.useIntercomGetStatus, e.useIntercomHandleAnswer, e.useIntercomPushTalkAudio, e.useIntercomStartSession, e.useIntercomStartTalkSession, e.useIntercomStopSession, e.useIsMidWidth, e.useIsMobile, e.useLawnMowerControlDock, e.useLawnMowerControlGetStatus, e.useLawnMowerControlPause, e.useLawnMowerControlStartMowing, e.useLiveBuffer, e.useLiveEvent, e.useLlmCancel, e.useLlmDeleteModel, e.useLlmDeleteProfile, e.useLlmGenerate, e.useLlmGenerateVision, e.useLlmGetDefaults, e.useLlmGetRuntimeStatus, e.useLlmGetUsage, e.useLlmInstallModel, e.useLlmListModelCatalog, e.useLlmListModels, e.useLlmListNodeModels, e.useLlmListProfileKinds, e.useLlmListProfiles, e.useLlmListRuntimeNodes, e.useLlmResolveModelRef, e.useLlmSetDefault, e.useLlmStartRuntime, e.useLlmStopRuntime, e.useLlmTestProfile, e.useLlmUpsertProfile, e.useLocalNetworkDownloadCa, e.useLocalNetworkGetAllowedAddresses, e.useLocalNetworkGetConnectionEndpoints, e.useLocalNetworkGetNotificationEndpoint, e.useLocalNetworkGetPreferred, e.useLocalNetworkGetTlsStatus, e.useLocalNetworkGetViewerEndpoints, e.useLocalNetworkList, e.useLocalNetworkRegenerateCertificate, e.useLocalNetworkResetAllowlistToBestMatch, e.useLocalNetworkRevertToGeneratedCertificate, e.useLocalNetworkSetAllowedAddresses, e.useLocalNetworkSetNotificationEndpoint, e.useLocalNetworkSetViewerEndpoints, e.useLocalNetworkUploadCertificate, e.useLockControlGetStatus, e.useLockControlLock, e.useLockControlOpen, e.useLockControlUnlock, e.useMediaPlayerGetStatus, e.useMediaPlayerNext, e.useMediaPlayerPause, e.useMediaPlayerPlay, e.useMediaPlayerPlayMedia, e.useMediaPlayerPrevious, e.useMediaPlayerSeek, e.useMediaPlayerSelectSource, e.useMediaPlayerSetMute, e.useMediaPlayerSetRepeat, e.useMediaPlayerSetShuffle, e.useMediaPlayerSetVolume, e.useMediaPlayerStop, e.useMeshNetworkGetStatus, e.useMeshNetworkJoin, e.useMeshNetworkLeave, e.useMeshNetworkListPeers, e.useMeshNetworkLogout, e.useMeshNetworkStartLogin, e.useMeshNetworkTestConnection, e.useMetricsProviderCollectSnapshot, e.useMetricsProviderDumpHeapSnapshot, e.useMetricsProviderGetAddonStats, e.useMetricsProviderGetCached, e.useMetricsProviderGetCpuTemperature, e.useMetricsProviderGetCurrent, e.useMetricsProviderGetDiskSpace, e.useMetricsProviderGetGpuInfo, e.useMetricsProviderGetLoadSeries, e.useMetricsProviderGetProcessStats, e.useMetricsProviderListAddonInstances, e.useMetricsProviderListNodeProcesses, e.useMotionDetectionAnalyze, e.useMotionDetectionApplyDeviceSettingsPatch, e.useMotionDetectionGetDeviceLiveContribution, e.useMotionDetectionGetDeviceSettingsContribution, e.useMotionDetectionRemoveCamera, e.useMotionDetectionReset, e.useMotionGetStatus, e.useMotionIsDetected, e.useMotionTriggerGetStatus, e.useMotionTriggerSetMotionTrigger, e.useMotionZonesGetOptions, e.useMotionZonesGetStatus, e.useMotionZonesSetZone, e.useMqttBrokerAddBroker, e.useMqttBrokerGetBrokerConfig, e.useMqttBrokerGetStatus, e.useMqttBrokerListBrokers, e.useMqttBrokerRemoveBroker, e.useMqttBrokerStartEmbeddedBroker, e.useMqttBrokerStopEmbeddedBroker, e.useMqttBrokerTestConnection, e.useNativeObjectDetectionGetStatus, e.useNativeObjectDetectionSetEnabled, e.useNetworkAccessGetEndpoint, e.useNetworkAccessGetStatus, e.useNetworkAccessListEndpoints, e.useNetworkAccessStart, e.useNetworkAccessStop, e.useNetworkQualityGetAllStats, e.useNetworkQualityGetDeviceStats, e.useNetworkQualityReportClientStats, e.useNodesClusterAddonStatus, e.useNodesDeployAddon, e.useNodesExecuteQuery, e.useNodesGetCapUsageGraph, e.useNodesGetNodeAddons, e.useNodesRenameNode, e.useNodesRestartAddon, e.useNodesRestartNode, e.useNodesRestartProcess, e.useNodesSetProcessLogLevel, e.useNodesShutdownNode, e.useNodesTopology, e.useNodesUndeployAddon, e.useNotificationOutputDeleteTarget, e.useNotificationOutputDiscoverTargets, e.useNotificationOutputListTargetKinds, e.useNotificationOutputListTargets, e.useNotificationOutputSend, e.useNotificationOutputSetTargetEnabled, e.useNotificationOutputTestTarget, e.useNotificationOutputUpsertTarget, e.useNotificationRulesCancelSnooze, e.useNotificationRulesCreateRule, e.useNotificationRulesCreateSnooze, e.useNotificationRulesDeleteRule, e.useNotificationRulesGetAlarmConfig, e.useNotificationRulesGetConditionCatalog, e.useNotificationRulesGetHistory, e.useNotificationRulesGetRule, e.useNotificationRulesListDeviceMutes, e.useNotificationRulesListRules, e.useNotificationRulesListSnoozes, e.useNotificationRulesResolveArtifactUrl, e.useNotificationRulesSetAlarmConfig, e.useNotificationRulesSetDeviceMuted, e.useNotificationRulesSetRuleEnabled, e.useNotificationRulesTestRule, e.useNotificationRulesUpdateRule, e.useNotifierCancel, e.useNotifierGetStatus, e.useNotifierSend, e.useNumericSensorGetStatus, e.useOptimisticSlice, e.useOptionalSystem, e.useOptionalWidgetRegistry, e.useOsdGetStatus, e.useOsdManagerClearSlotBinding, e.useOsdManagerCopyDeviceConfiguration, e.useOsdManagerGetConditionSupport, e.useOsdManagerGetDeviceOsd, e.useOsdManagerGetSourceCatalog, e.useOsdManagerPreviewSlot, e.useOsdManagerRenderDevice, e.useOsdManagerSetSlotBinding, e.useOsdSetOverlay, e.usePTZ, e.usePetFeederCallPet, e.usePetFeederCancelFeed, e.usePetFeederFeed, e.usePetFeederGetStatus, e.usePetFeederMarkFoodReplenished, e.usePetFeederPlaySound, e.usePetFeederResetDesiccant, e.usePetFeederSetChildLock, e.usePetFeederSetFeedSound, e.usePetFeederSetIndicatorLight, e.usePetFeederSetVolume, e.usePipelineAnalyticsApplyDeviceSettingsPatch, e.usePipelineAnalyticsCancelRelocateMedia, e.usePipelineAnalyticsCancelStorageMigrationMove, e.usePipelineAnalyticsClearTracks, e.usePipelineAnalyticsCompleteRetrainTrack, e.usePipelineAnalyticsCountRelocatableMedia, e.usePipelineAnalyticsCountUnstampedEventMedia, e.usePipelineAnalyticsDeleteDeviceEvents, e.usePipelineAnalyticsDeleteTracks, e.usePipelineAnalyticsDeselectRetrainFrame, e.usePipelineAnalyticsGetActiveTracks, e.usePipelineAnalyticsGetAudioEvents, e.usePipelineAnalyticsGetDeviceLiveContribution, e.usePipelineAnalyticsGetDeviceSettingsContribution, e.usePipelineAnalyticsGetEventDensity, e.usePipelineAnalyticsGetEventMedia, e.usePipelineAnalyticsGetEventStoreFootprint, e.usePipelineAnalyticsGetGroup, e.usePipelineAnalyticsGetKeyEvents, e.usePipelineAnalyticsGetMotionEvents, e.usePipelineAnalyticsGetObjectEmbeddingRebuildStatus, e.usePipelineAnalyticsGetObjectEvents, e.usePipelineAnalyticsGetRetrainExportUrl, e.usePipelineAnalyticsGetRetrainFrameImage, e.usePipelineAnalyticsGetSensorEvents, e.usePipelineAnalyticsGetStorageMigrationMoveStatus, e.usePipelineAnalyticsGetTrack, e.usePipelineAnalyticsGetTrackMedia, e.usePipelineAnalyticsGetTrainingExportSummary, e.usePipelineAnalyticsGetTrainingExportUrl, e.usePipelineAnalyticsListEventKinds, e.usePipelineAnalyticsListEventKindsBatch, e.usePipelineAnalyticsListGroups, e.usePipelineAnalyticsListOpsLog, e.usePipelineAnalyticsListRecentTracks, e.usePipelineAnalyticsListRelocateMediaJobs, e.usePipelineAnalyticsListRetrainAnnotations, e.usePipelineAnalyticsListRetrainFrames, e.usePipelineAnalyticsListRetrainStaging, e.usePipelineAnalyticsListTrackMedia, e.usePipelineAnalyticsListTracks, e.usePipelineAnalyticsPauseForStorageMigration, e.usePipelineAnalyticsProposeRetrainAnnotations, e.usePipelineAnalyticsPruneEvents, e.usePipelineAnalyticsPruneEventsBefore, e.usePipelineAnalyticsPruneTracksBefore, e.usePipelineAnalyticsRebuildObjectEmbeddings, e.usePipelineAnalyticsReconcileFromDisk, e.usePipelineAnalyticsRefreshStorageLocationsForMigration, e.usePipelineAnalyticsRelocateMedia, e.usePipelineAnalyticsRestageRetrainTrack, e.usePipelineAnalyticsResumeForStorageMigration, e.usePipelineAnalyticsRunReplayFrameProcessor, e.usePipelineAnalyticsSaveRetrainAnnotations, e.usePipelineAnalyticsSearchObjectEvents, e.usePipelineAnalyticsSelectRetrainFrames, e.usePipelineAnalyticsSetTrackFlags, e.usePipelineAnalyticsStartStorageMigrationMove, e.usePipelineAnalyticsWipeAllAnalytics, e.usePipelineAnalyticsWipeObjectEmbeddings, e.usePipelineExecutorCacheFrameInPool, e.usePipelineExecutorClearDeviceOverrides, e.usePipelineExecutorDeleteModel, e.usePipelineExecutorDeleteTemplate, e.usePipelineExecutorDownloadModel, e.usePipelineExecutorGetAddonModels, e.usePipelineExecutorGetAudioCapabilities, e.usePipelineExecutorGetAvailableEngines, e.usePipelineExecutorGetCapabilities, e.usePipelineExecutorGetDefaultSteps, e.usePipelineExecutorGetDetectionConfigSchema, e.usePipelineExecutorGetEffectiveTuning, e.usePipelineExecutorGetEngineProvisioning, e.usePipelineExecutorGetGlobalPipelineConfig, e.usePipelineExecutorGetGlobalSteps, e.usePipelineExecutorGetInferenceDeviceHealth, e.usePipelineExecutorGetOrchestratorConfigSchema, e.usePipelineExecutorGetReferenceAudio, e.usePipelineExecutorGetReferenceAudioFiles, e.usePipelineExecutorGetReferenceImage, e.usePipelineExecutorGetSchema, e.usePipelineExecutorGetSelectedEngine, e.usePipelineExecutorGetVideoPipelineSteps, e.usePipelineExecutorInferCached, e.usePipelineExecutorKillEngine, e.usePipelineExecutorListLoadedEngines, e.usePipelineExecutorListReferenceImages, e.usePipelineExecutorListTemplates, e.usePipelineExecutorRearmInferenceDevice, e.usePipelineExecutorRunAudioTest, e.usePipelineExecutorRunPipeline, e.usePipelineExecutorRunPipelineBatch, e.usePipelineExecutorSaveTemplate, e.usePipelineExecutorSetVideoPipelineSteps, e.usePipelineExecutorSpinEngine, e.usePipelineExecutorUncacheFrame, e.usePipelineExecutorUpdateTemplate, e.usePipelineExecutorValidatePipeline, e.usePipelineOrchestratorApplyDeviceSettingsPatch, e.usePipelineOrchestratorAssignAudio, e.usePipelineOrchestratorAssignPipeline, e.usePipelineOrchestratorDeleteTemplate, e.usePipelineOrchestratorGetAgentLoad, e.usePipelineOrchestratorGetAgentSettings, e.usePipelineOrchestratorGetAudioAssignment, e.usePipelineOrchestratorGetAudioAssignments, e.usePipelineOrchestratorGetAudioNodeLoad, e.usePipelineOrchestratorGetCameraMetrics, e.usePipelineOrchestratorGetCameraSettings, e.usePipelineOrchestratorGetCameraStatus, e.usePipelineOrchestratorGetCameraStatuses, e.usePipelineOrchestratorGetCameraStepOverrides, e.usePipelineOrchestratorGetCameraSwitches, e.usePipelineOrchestratorGetCapabilityBindings, e.usePipelineOrchestratorGetDeviceLiveContribution, e.usePipelineOrchestratorGetDeviceSettingsContribution, e.usePipelineOrchestratorGetGlobalMetrics, e.usePipelineOrchestratorGetIngestOwner, e.usePipelineOrchestratorGetNodeInferenceDevices, e.usePipelineOrchestratorGetPipelineAssignment, e.usePipelineOrchestratorGetPipelineAssignments, e.usePipelineOrchestratorGetPipelineDevicePin, e.usePipelineOrchestratorGetReconcileFromDiskStatus, e.usePipelineOrchestratorListAgentSettings, e.usePipelineOrchestratorListTemplates, e.usePipelineOrchestratorPauseForStorageMigration, e.usePipelineOrchestratorRebalance, e.usePipelineOrchestratorReconcileFromDisk, e.usePipelineOrchestratorRemoveAgentSettings, e.usePipelineOrchestratorResetNodePipelineDefaults, e.usePipelineOrchestratorResolvePipeline, e.usePipelineOrchestratorResumeForStorageMigration, e.usePipelineOrchestratorSaveTemplate, e.usePipelineOrchestratorSetAgentCapabilities, e.usePipelineOrchestratorSetAgentDetectWeight, e.usePipelineOrchestratorSetAgentInferenceDevices, e.usePipelineOrchestratorSetAgentMaxCameras, e.usePipelineOrchestratorSetAgentReachableHost, e.usePipelineOrchestratorSetCameraPipelineForAgent, e.usePipelineOrchestratorSetCameraStepOverride, e.usePipelineOrchestratorSetCameraStepToggle, e.usePipelineOrchestratorSetCameraSwitch, e.usePipelineOrchestratorSetCapabilityBinding, e.usePipelineOrchestratorSetPipelineDevicePin, e.usePipelineOrchestratorUnassignAudio, e.usePipelineOrchestratorUnassignPipeline, e.usePipelineOrchestratorUpdateTemplate, e.usePipelineRunnerAttachCamera, e.usePipelineRunnerDetachCamera, e.usePipelineRunnerGetAllCameraMetrics, e.usePipelineRunnerGetCameraMetrics, e.usePipelineRunnerGetLocalCameras, e.usePipelineRunnerGetLocalLoad, e.usePipelineRunnerGetLocalMetrics, e.usePipelineRunnerGetNativeCrop, e.usePipelineRunnerReportMotion, e.usePipelineRunnerRunDetailSubtree, e.usePipelineRunnerRunStatelessStep, e.usePlateGalleryAssignPlate, e.usePlateGalleryAssignPlates, e.usePlateGalleryCorrectPlateText, e.usePlateGalleryCreateVehicle, e.usePlateGalleryDeletePlate, e.usePlateGalleryDeleteVehicle, e.usePlateGalleryGetPlateByTrack, e.usePlateGalleryGetPlateMedia, e.usePlateGalleryListPlates, e.usePlateGalleryListVehicleSamples, e.usePlateGalleryListVehicles, e.usePlateGalleryRemoveVehicleSample, e.usePlateGalleryRenameVehicle, e.usePlateGallerySearchPlates, e.usePlateGallerySuggestPlateClusters, e.usePlateGalleryUnassignPlate, e.usePlateGalleryUnassignPlates, e.usePlayerOverlayLayer, e.usePlayerOverlayLayers, e.usePlayerToolbarButton, e.usePlayerToolbarButtons, e.usePowerMeterGetStatus, e.usePresenceGetStatus, e.usePressureSensorGetStatus, e.usePrivacyMaskGetOptions, e.usePrivacyMaskGetStatus, e.usePrivacyMaskSetAudioEnabled, e.usePrivacyMaskSetMask, e.usePtzAutotrackGetSettings, e.usePtzAutotrackGetStatus, e.usePtzAutotrackSetEnabled, e.usePtzAutotrackSetSettings, e.usePtzContinuousMove, e.usePtzDeletePreset, e.usePtzGetOptions, e.usePtzGetPosition, e.usePtzGetPresets, e.usePtzGetStatus, e.usePtzGoHome, e.usePtzGoToPreset, e.usePtzMove, e.usePtzSavePreset, e.usePtzSetAutofocus, e.usePtzStop, e.useRebootReboot, e.useRecordedPlayback, e.useRecordingApplyDeviceSettingsPatch, e.useRecordingCancelRelocateJob, e.useRecordingCancelStorageMigrationMove, e.useRecordingDeleteFootprint, e.useRecordingExportCancelExport, e.useRecordingExportCreateExport, e.useRecordingExportDeleteExport, e.useRecordingExportGetDownloadUrl, e.useRecordingExportGetExport, e.useRecordingExportListExports, e.useRecordingExportReadExportBytes, e.useRecordingGetAvailability, e.useRecordingGetDaysWithRecordings, e.useRecordingGetDeviceConfig, e.useRecordingGetDeviceLiveContribution, e.useRecordingGetDeviceSettingsContribution, e.useRecordingGetPlaybackManifest, e.useRecordingGetRelocateResidue, e.useRecordingGetStatus, e.useRecordingGetStorageMigrationMoveStatus, e.useRecordingGetStorageUsage, e.useRecordingListOpsLog, e.useRecordingListRelocateJobs, e.useRecordingLocateSegment, e.useRecordingPauseForStorageMigration, e.useRecordingPlanStorageRebalance, e.useRecordingPruneFootage, e.useRecordingReadGopBytes, e.useRecordingReadSegmentBytes, e.useRecordingReadWindowBytes, e.useRecordingRefreshStorageLocationsForMigration, e.useRecordingRelocateFootage, e.useRecordingRenderClip, e.useRecordingRenderGif, e.useRecordingRescanStorage, e.useRecordingResumeForStorageMigration, e.useRecordingSetDeviceConfig, e.useRecordingStartStorageMigrationMove, e.useRecordingStartStorageRebalance, e.useRemoteComponent, e.useSceneMonitorCaptureReference, e.useSceneMonitorCreateScene, e.useSceneMonitorDeleteReference, e.useSceneMonitorDeleteScene, e.useSceneMonitorGetStatus, e.useSceneMonitorListScenes, e.useSceneMonitorRecheckNow, e.useSceneMonitorResetScene, e.useSceneMonitorUpdateScene, e.useScriptRunnerGetStatus, e.useScriptRunnerRun, e.useScriptRunnerStop, e.useScrubController, e.useServerManagementApplyServerUpdate, e.useServerManagementCheckServerUpdate, e.useServerManagementGetServerPackageStatus, e.useServerManagementRestartServer, e.useServerManagementRollbackServerUpdate, e.useSettingsStoreAggregate, e.useSettingsStoreCount, e.useSettingsStoreDeclareCollection, e.useSettingsStoreDelete, e.useSettingsStoreDeleteWhere, e.useSettingsStoreGet, e.useSettingsStoreHistogram, e.useSettingsStoreInsert, e.useSettingsStoreInsertMany, e.useSettingsStoreIsEmpty, e.useSettingsStoreQuery, e.useSettingsStoreSet, e.useSettingsStoreUpdate, e.useSettingsStoreUpdateWhere, e.useSmokeGetStatus, e.useSnapshotApplyDeviceSettingsPatch, e.useSnapshotGetDebugState, e.useSnapshotGetDeviceLiveContribution, e.useSnapshotGetDeviceSettingsContribution, e.useSnapshotGetSnapshot, e.useSnapshotGetSnapshotLinks, e.useSnapshotGetSnapshotOverview, e.useSnapshotGetStatus, e.useSnapshotInvalidateCache, e.useStorageAbortUpload, e.useStorageBeginDownload, e.useStorageBeginUpload, e.useStorageDelete, e.useStorageDeleteLocation, e.useStorageEndDownload, e.useStorageExists, e.useStorageFinalizeUpload, e.useStorageGetAvailableSpace, e.useStorageGetDefaultLocation, e.useStorageList, e.useStorageListLocationDeclarations, e.useStorageListLocations, e.useStorageListProviders, e.useStorageMigrationCancel, e.useStorageMigrationDrain, e.useStorageMigrationMovers, e.useStorageMigrationPlan, e.useStorageMigrationResidue, e.useStorageMigrationStart, e.useStorageMigrationStatus, e.useStorageRead, e.useStorageReadChunk, e.useStorageResolve, e.useStorageTestConfig, e.useStorageTestLocation, e.useStorageUpsertLocation, e.useStorageWrite, e.useStorageWriteChunk, e.useStreamBrokerAcquireEgressTranscode, e.useStreamBrokerApplyDeviceSettingsPatch, e.useStreamBrokerAssignProfile, e.useStreamBrokerFetchEventMedia, e.useStreamBrokerGetAllRtspEntries, e.useStreamBrokerGetBrokerStats, e.useStreamBrokerGetDeviceAudioMute, e.useStreamBrokerGetDeviceLiveContribution, e.useStreamBrokerGetDeviceSettingsContribution, e.useStreamBrokerGetPreBufferInfo, e.useStreamBrokerGetRtspEntry, e.useStreamBrokerGetRtspPort, e.useStreamBrokerGetStreamUrl, e.useStreamBrokerGetStreamWithCodec, e.useStreamBrokerIsRtspEnabled, e.useStreamBrokerKillClient, e.useStreamBrokerListAllCameraStreams, e.useStreamBrokerListAllProfileSlots, e.useStreamBrokerListClients, e.useStreamBrokerProbeStream, e.useStreamBrokerProduceEventMedia, e.useStreamBrokerPublishCameraStream, e.useStreamBrokerPullAudioChunks, e.useStreamBrokerPullFrameHandles, e.useStreamBrokerRegenerateRtspToken, e.useStreamBrokerReleaseEgressTranscode, e.useStreamBrokerReleaseStreamWithCodec, e.useStreamBrokerRenderPreBufferClip, e.useStreamBrokerRestartProfile, e.useStreamBrokerRetractCameraStream, e.useStreamBrokerSetDeviceAudioMute, e.useStreamBrokerSetPreBufferDuration, e.useStreamBrokerSetRtspEnabled, e.useStreamBrokerSubscribeAudioChunks, e.useStreamBrokerSubscribeFrames, e.useStreamBrokerUnassignProfile, e.useStreamBrokerUnsubscribeAudioChunks, e.useStreamBrokerUnsubscribeFrames, e.useStreamCatalogGetCatalog, e.useStreamParamsGetConfigSchema, e.useStreamParamsGetOptions, e.useStreamParamsGetStatus, e.useStreamParamsSetProfile, e.useSwitchGetStatus, e.useSwitchSetState, a = e.useSystem, e.useSystem$1, e.useSystemDetectSiteLocation, e.useSystemFeatureFlags, e.useSystemForceRetentionCleanup, e.useSystemGetFailureContributions, e.useSystemGetLoadContributions, e.useSystemGetLoggingSettings, e.useSystemGetRequestCensus, e.useSystemGetRetentionConfig, e.useSystemGetSiteLocation, e.useSystemHealth, e.useSystemInfo, e.useSystemMutation, e.useSystemNetworkAddresses, e.useSystemQuery, e.useSystemSetLoggingSettings, e.useSystemSetRetentionConfig, e.useSystemSetSiteLocation, e.useTamperGetStatus, e.useTemperatureSensorGetStatus, e.useTerminalSessionAdoptLegacyMonitor, e.useTerminalSessionClose, e.useTerminalSessionCreateInstance, e.useTerminalSessionDeleteInstance, e.useTerminalSessionListInstances, e.useTerminalSessionListLegacyCameras, e.useTerminalSessionListProfiles, e.useTerminalSessionListSessions, e.useTerminalSessionOpenSession, e.useTerminalSessionPullOutput, e.useTerminalSessionResize, e.useTerminalSessionSetInstanceEnabled, e.useTerminalSessionUpdateInstance, e.useTerminalSessionWriteInput, e.useThemeMode, e.useToastOnToast, e.useTurnProviderGetTurnServers, e.useUpdateGetStatus, e.useUpdateInstallUpdate, e.useUserManagementConfirmTotp, e.useUserManagementCreateApiKey, e.useUserManagementCreateScopedToken, e.useUserManagementCreateUser, e.useUserManagementDeleteUser, e.useUserManagementDisableTotp, e.useUserManagementGetTotpStatus, e.useUserManagementListApiKeys, e.useUserManagementListOauthSessions, e.useUserManagementListScopedTokens, e.useUserManagementListUsers, e.useUserManagementOauthExchangeCode, e.useUserManagementOauthIssueCode, e.useUserManagementOauthRefresh, e.useUserManagementOauthVerifyAccessToken, e.useUserManagementResetPassword, e.useUserManagementRevokeApiKey, e.useUserManagementRevokeOauthSession, e.useUserManagementRevokeScopedToken, e.useUserManagementSetUserScopes, e.useUserManagementSetupTotp, e.useUserManagementUpdateUser, e.useUserManagementValidateApiKey, e.useUserManagementValidateCredentials, e.useUserManagementValidateScopedToken, e.useUserManagementVerifyTotp, e.useVacuumControlGetStatus, e.useVacuumControlLocate, e.useVacuumControlPause, e.useVacuumControlReturnToBase, e.useVacuumControlSetFanSpeed, e.useVacuumControlStart, e.useVacuumControlStop, e.useValveClose, e.useValveGetStatus, e.useValveOpen, e.useValveSetPosition, e.useValveStop, e.useVibrationGetStatus, e.useVideoclipsGetClipPlayback, e.useVideoclipsListClips, e.useVodPlayback, e.useWaterHeaterGetStatus, e.useWaterHeaterSetAway, e.useWaterHeaterSetOperationMode, e.useWaterHeaterSetTargetTemp, e.useWeatherGetStatus, e.useWebrtcSessionAddIceCandidate, e.useWebrtcSessionCloseSession, e.useWebrtcSessionCreateSession, e.useWebrtcSessionGetIceCandidates, e.useWebrtcSessionGetSessionState, e.useWebrtcSessionHandleAnswer, e.useWebrtcSessionHandleOffer, e.useWebrtcSessionHasAdaptiveBitrate, e.useWebrtcSessionListStreams, e.useWidget, e.useWidgetMetadata, e.useWidgetRegistry, e.useZoneAnalyticsGetCameraHistory, e.useZoneAnalyticsGetCurrentSnapshot, e.useZoneAnalyticsGetUnzonedHistory, e.useZoneAnalyticsGetZoneHistory, e.useZoneEditing, e.useZoneRulesListRules, e.useZoneRulesSetRules, e.useZonesAddZone, e.useZonesListZones, e.useZonesRemoveZone, e.useZonesUpdateZone, e.vacuumStateMeta, e.validateScopes, e.valveStateMeta, e.variantLabel, e.variantLabel$1, e.waterHeaterPhase, e.waterHeaterTint, e.weatherConditionMeta, e.weatherTint, e.default;
|
|
20
20
|
}, s = i.share["default:@camstack/ui-library"];
|
|
21
21
|
s === void 0 ? n.then(() => {
|
|
22
22
|
if (s = i.share["default:@camstack/ui-library"], s === void 0) throw Error("[Module Federation] Shared module @camstack/ui-library was imported before federation bootstrap finished.");
|
|
@@ -3,7 +3,7 @@ Object.defineProperties(exports, {
|
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
5
|
const require_chunk = require("../chunk-Cek0wNdY.js");
|
|
6
|
-
const require_dist = require("../dist-
|
|
6
|
+
const require_dist = require("../dist-DJ0XK1ze.js");
|
|
7
7
|
let stream = require("stream");
|
|
8
8
|
stream = require_chunk.__toESM(stream, 1);
|
|
9
9
|
let http = require("http");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as loginMethodCapability, c as BaseAddon, d as number, f as object, l as array, n as addonWidgetsSourceCapability, o as userPasskeysCapability, p as string, u as boolean } from "../dist-
|
|
1
|
+
import { a as loginMethodCapability, c as BaseAddon, d as number, f as object, l as array, n as addonWidgetsSourceCapability, o as userPasskeysCapability, p as string, u as boolean } from "../dist-Cejgb_kg.mjs";
|
|
2
2
|
import { createRequire } from "node:module";
|
|
3
3
|
import Stream from "stream";
|
|
4
4
|
import http from "http";
|
|
@@ -36,7 +36,7 @@ async function r() {
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"@camstack/types": {
|
|
39
|
-
version: "1.2.
|
|
39
|
+
version: "1.2.126",
|
|
40
40
|
scope: "default",
|
|
41
41
|
shareConfig: {
|
|
42
42
|
singleton: !0,
|
|
@@ -45,7 +45,7 @@ async function r() {
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"@camstack/sdk": {
|
|
48
|
-
version: "1.2.
|
|
48
|
+
version: "1.2.48",
|
|
49
49
|
scope: "default",
|
|
50
50
|
shareConfig: {
|
|
51
51
|
singleton: !0,
|
|
@@ -81,7 +81,7 @@ async function r() {
|
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
"@camstack/ui-library": {
|
|
84
|
-
version: "1.2.
|
|
84
|
+
version: "1.2.89",
|
|
85
85
|
scope: "default",
|
|
86
86
|
shareConfig: {
|
|
87
87
|
singleton: !0,
|
|
@@ -30,7 +30,7 @@ async function d(e) {
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
async function f() {
|
|
33
|
-
return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_auth_webauthn_widgets-
|
|
33
|
+
return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_auth_webauthn_widgets-CdJ1lSwb.mjs")).catch((e) => {
|
|
34
34
|
throw l = void 0, e;
|
|
35
35
|
}), l;
|
|
36
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-auth",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.48",
|
|
4
4
|
"description": "Authentication bundle — magic-link, OIDC, and WebAuthn/passkey. Multi-entry npm package shipping 3 addons under a single bundle; each addon keeps its own id, capabilities, and runner.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|