@camstack/addon-export-hap 1.2.54 → 1.2.56
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/hap-export.addon.js +333 -12
- package/dist/hap-export.addon.mjs +333 -12
- package/package.json +1 -1
package/dist/hap-export.addon.js
CHANGED
|
@@ -8830,13 +8830,49 @@ var StorageMigrationParticipantSchema = _enum([
|
|
|
8830
8830
|
"recorder",
|
|
8831
8831
|
"analytics"
|
|
8832
8832
|
]);
|
|
8833
|
+
/**
|
|
8834
|
+
* The mover's own numbers, folded onto the coordinator's durable move record.
|
|
8835
|
+
*
|
|
8836
|
+
* The long half of a non-blocking migration is `draining`, and it is measured
|
|
8837
|
+
* in hours: 136 885 files at ~4 MB/s is about five of them. Before this shape
|
|
8838
|
+
* existed the only place those numbers appeared was a Loki line, so an operator
|
|
8839
|
+
* watching the Admin UI saw `phase: draining` and nothing else for a whole
|
|
8840
|
+
* afternoon.
|
|
8841
|
+
*
|
|
8842
|
+
* It is POLLED, never pushed. Events are telemetry and may be dropped
|
|
8843
|
+
* (D8/D11), and a dropped progress event is indistinguishable from a stalled
|
|
8844
|
+
* mover — which is the exact failure this is meant to end. The coordinator's
|
|
8845
|
+
* `waitForMoves` already fetches the whole {@link RelocateJob} on every tick to
|
|
8846
|
+
* read `state`; folding the counters costs no extra read and makes the durable
|
|
8847
|
+
* record say afterwards how far a move actually got.
|
|
8848
|
+
*
|
|
8849
|
+
* `filesTotal` is `null` for "no honest denominator" and is never zero-filled:
|
|
8850
|
+
* a windowed footage job (`sinceMs`) and a node with no ledger both genuinely
|
|
8851
|
+
* cannot say M, and a 0 there would render as "100 % done".
|
|
8852
|
+
*/
|
|
8853
|
+
var StorageMigrationMoveProgressSchema = object({
|
|
8854
|
+
filesMoved: number().int().nonnegative(),
|
|
8855
|
+
/** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
|
|
8856
|
+
filesTotal: number().int().nonnegative().nullable(),
|
|
8857
|
+
bytesMoved: number().int().nonnegative(),
|
|
8858
|
+
/** The MOVER's start, not the migration's: a drain restarted after an addon
|
|
8859
|
+
* crash gets a new mover, and a rate computed from the migration's start
|
|
8860
|
+
* would silently average in the time nothing was running. */
|
|
8861
|
+
startedAt: number(),
|
|
8862
|
+
/** When the coordinator last read these numbers. Paired with `startedAt` it
|
|
8863
|
+
* is the only honest rate: both clocks are the hub's, so a UI never has to
|
|
8864
|
+
* subtract its own. */
|
|
8865
|
+
observedAt: number()
|
|
8866
|
+
});
|
|
8833
8867
|
var StorageMigrationMoveSchema = object({
|
|
8834
8868
|
storageClass: StorageMigrationClassSchema,
|
|
8835
8869
|
fromLocationId: string(),
|
|
8836
8870
|
toLocationId: string(),
|
|
8837
8871
|
moverJobId: string().nullable(),
|
|
8838
8872
|
state: RelocateJobStateSchema.nullable(),
|
|
8839
|
-
error: string().nullable()
|
|
8873
|
+
error: string().nullable(),
|
|
8874
|
+
/** Last observed mover counters; `null` until the mover has been polled once. */
|
|
8875
|
+
progress: StorageMigrationMoveProgressSchema.nullable()
|
|
8840
8876
|
});
|
|
8841
8877
|
var StorageMigrationJobSchema = object({
|
|
8842
8878
|
jobId: string(),
|
|
@@ -8882,6 +8918,98 @@ var StorageMigrationPlanSchema = object({
|
|
|
8882
8918
|
findings: array(StorageMigrationFindingSchema)
|
|
8883
8919
|
});
|
|
8884
8920
|
/**
|
|
8921
|
+
* A mover as it exists RIGHT NOW, whether or not a migration job owns it.
|
|
8922
|
+
*
|
|
8923
|
+
* The coordinator's job record is the state of record for a migration, and its
|
|
8924
|
+
* moves carry {@link StorageMigrationMoveProgress}. But the movers are usable
|
|
8925
|
+
* standalone — `recording.relocateFootage` and `pipelineAnalytics.relocateMedia`
|
|
8926
|
+
* are both operator-callable, and on 2026-08-29 a five-hour drain was armed that
|
|
8927
|
+
* way because no supported UI path existed. A mover armed like that has no job
|
|
8928
|
+
* to fold progress into, so it has to be readable on its own or it is invisible.
|
|
8929
|
+
*
|
|
8930
|
+
* `migrationJobId` is what tells the two apart: `null` means nothing here
|
|
8931
|
+
* orchestrated it.
|
|
8932
|
+
*/
|
|
8933
|
+
var StorageMigrationMoverSchema = object({
|
|
8934
|
+
lane: _enum(["footage", "media"]),
|
|
8935
|
+
job: RelocateJobSchema,
|
|
8936
|
+
/** The coordinator job that armed this mover, or `null` for a mover armed
|
|
8937
|
+
* directly against the owning addon. */
|
|
8938
|
+
migrationJobId: string().nullable(),
|
|
8939
|
+
/** When the hub read these counters. Stamped here so a rate is `bytesMoved`
|
|
8940
|
+
* over (`observedAt` − `job.startedAt`) with BOTH ends on the hub's clock —
|
|
8941
|
+
* a browser subtracting its own `Date.now()` from a server `startedAt` is a
|
|
8942
|
+
* rate made of two different clocks. */
|
|
8943
|
+
observedAt: number()
|
|
8944
|
+
});
|
|
8945
|
+
/**
|
|
8946
|
+
* What a SOURCE still holds for one storage class — the number that makes a
|
|
8947
|
+
* "drain remaining" action honest rather than hopeful.
|
|
8948
|
+
*
|
|
8949
|
+
* It comes from the archive (`SegmentHourLedger.census` for footage, the media
|
|
8950
|
+
* engine's own selection count for media), never from the resident index: a
|
|
8951
|
+
* drain sized off `RecordingIndex` is what reported `done` over 80.3 GB it had
|
|
8952
|
+
* never been told about (D295).
|
|
8953
|
+
*
|
|
8954
|
+
* `items`/`bytes` are `null` for "the archive could not be asked", which is
|
|
8955
|
+
* deliberately NOT zero: a drain is still offered for an unknown residue,
|
|
8956
|
+
* because refusing on an unanswerable read would hide exactly the case an
|
|
8957
|
+
* operator needs to act on.
|
|
8958
|
+
*/
|
|
8959
|
+
var StorageMigrationResidueSchema = object({
|
|
8960
|
+
storageClass: StorageMigrationClassSchema,
|
|
8961
|
+
/** The location still holding the data. `'*'` for the media lane, whose rows
|
|
8962
|
+
* move from wherever they are rather than from one named source. */
|
|
8963
|
+
fromLocationId: string(),
|
|
8964
|
+
/** Where a drain would move it — the class's CURRENT default. */
|
|
8965
|
+
toLocationId: string(),
|
|
8966
|
+
/** Segments (footage lane) or rows (media lane) still on the source. */
|
|
8967
|
+
items: number().int().nonnegative().nullable(),
|
|
8968
|
+
/** Bytes on the source; `null` when the lane counts rows rather than bytes. */
|
|
8969
|
+
bytes: number().int().nonnegative().nullable()
|
|
8970
|
+
});
|
|
8971
|
+
/**
|
|
8972
|
+
* Run the DRAIN half and nothing else.
|
|
8973
|
+
*
|
|
8974
|
+
* A migration that reached `done` has already repointed, so `start` correctly
|
|
8975
|
+
* refuses its destination ("already the default") — there is nothing left to
|
|
8976
|
+
* repoint. But the drain can fail, be cancelled, be interrupted by a restart,
|
|
8977
|
+
* or finish against a work list that was a tenth of the archive (D295), and
|
|
8978
|
+
* before this there was no supported way to run only that half: the only way
|
|
8979
|
+
* through was calling `recording.relocateFootage` by hand over admin tRPC.
|
|
8980
|
+
*
|
|
8981
|
+
* `drain` NEVER calls `setDefaultLocations`. That is what keeps `start`'s
|
|
8982
|
+
* refusal meaningful: the two verbs are disjoint, so nothing here can silently
|
|
8983
|
+
* re-repoint a class that is already migrated.
|
|
8984
|
+
*/
|
|
8985
|
+
var StorageMigrationDrainInputSchema = object({
|
|
8986
|
+
/** The classes to drain. Each must appear in `storageMigration.residue`, so
|
|
8987
|
+
* a class whose source is already empty is refused rather than started. */
|
|
8988
|
+
classes: array(StorageMigrationClassSchema).min(1),
|
|
8989
|
+
throttleMbps: number().min(1).max(1e3).optional()
|
|
8990
|
+
});
|
|
8991
|
+
/** What a footage source still holds, asked of the durable hour ledger. */
|
|
8992
|
+
var RelocateResidueInputSchema = object({
|
|
8993
|
+
fromLocationId: string().min(1),
|
|
8994
|
+
/** Narrow to one logical class; omit for every profile on the location. */
|
|
8995
|
+
footageClass: RelocateFootageClassSchema.optional()
|
|
8996
|
+
});
|
|
8997
|
+
/** `null` = the archive could not answer (no ledger on this node, or the
|
|
8998
|
+
* aggregate failed). Never conflated with an empty source. */
|
|
8999
|
+
var RelocateResidueSchema = object({
|
|
9000
|
+
segments: number().int().nonnegative(),
|
|
9001
|
+
bytes: number().int().nonnegative()
|
|
9002
|
+
}).nullable();
|
|
9003
|
+
/** How many rows a media pass would still act on against a given target — the
|
|
9004
|
+
* media lane's denominator AND its residue, from ONE derivation so the two can
|
|
9005
|
+
* never disagree. `null` = the count could not be taken. */
|
|
9006
|
+
var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
|
|
9007
|
+
var RelocatableMediaCountInputSchema = object({
|
|
9008
|
+
toLocationId: string().min(1),
|
|
9009
|
+
/** Omitted = `move`. */
|
|
9010
|
+
mode: MediaRelocateModeSchema.optional()
|
|
9011
|
+
});
|
|
9012
|
+
/**
|
|
8885
9013
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
8886
9014
|
* storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
|
|
8887
9015
|
* so the persisted record schema and the consumer-facing cap can both consume it
|
|
@@ -8985,6 +9113,32 @@ var StorageLocationRefSchema = union([StorageLocationTypeSchema, string().regex(
|
|
|
8985
9113
|
* two addons declaring the same `id` must agree on `cardinality` (validated
|
|
8986
9114
|
* at kernel aggregation time, not here).
|
|
8987
9115
|
*/
|
|
9116
|
+
/**
|
|
9117
|
+
* `StorageAccess` — how the service that DECLARED a storage-location kind
|
|
9118
|
+
* actually reaches the bytes. It is the constraint that decides which
|
|
9119
|
+
* `storage-provider`s may back a location of that kind.
|
|
9120
|
+
*
|
|
9121
|
+
* - `'local-path'` — the service asks `storage.resolve` for a path string and
|
|
9122
|
+
* then does its own `node:fs` I/O on it (the recorder's segment writer, the
|
|
9123
|
+
* post-analysis media roots). Only a provider that serves a genuine local
|
|
9124
|
+
* filesystem (`getProviderInfo().nodeLocal === true`) can satisfy that: a
|
|
9125
|
+
* remote provider's `resolve` returns a path on the REMOTE host, and
|
|
9126
|
+
* `fs.readdir` of it on this node either fails or — far worse — succeeds
|
|
9127
|
+
* against a same-named local directory that is something else entirely.
|
|
9128
|
+
*
|
|
9129
|
+
* - `'cap-mediated'` — every byte travels through the `storage` cap
|
|
9130
|
+
* (`read`/`write`, or `beginUpload`/`writeChunk`/`finalizeUpload`). The
|
|
9131
|
+
* service never sees a path, so any provider can back it. `backups` is the
|
|
9132
|
+
* one kind that qualifies today.
|
|
9133
|
+
*
|
|
9134
|
+
* Before this existed, `recordings` was unreachable by SFTP/S3/WebDAV only as
|
|
9135
|
+
* an EMERGENT property of how the recorder happened to be written. Nothing
|
|
9136
|
+
* refused the configuration; the first write simply went somewhere wrong, and
|
|
9137
|
+
* a recording write that goes wrong surfaces as a silent black window rather
|
|
9138
|
+
* than an error (the read path does not `stat`). This turns that accident into
|
|
9139
|
+
* a declared, enforced, testable refusal.
|
|
9140
|
+
*/
|
|
9141
|
+
var StorageAccessSchema = _enum(["local-path", "cap-mediated"]);
|
|
8988
9142
|
var StorageLocationDeclarationSchema = object({
|
|
8989
9143
|
/**
|
|
8990
9144
|
* Global location identifier, e.g. `recordings` or `recordingsLow`.
|
|
@@ -9004,6 +9158,19 @@ var StorageLocationDeclarationSchema = object({
|
|
|
9004
9158
|
*/
|
|
9005
9159
|
cardinality: _enum(["single", "multi"]),
|
|
9006
9160
|
/**
|
|
9161
|
+
* HOW the declaring service reaches the bytes — and therefore WHICH
|
|
9162
|
+
* providers may back a location of this kind. See {@link StorageAccessSchema}
|
|
9163
|
+
* and {@link STORAGE_ACCESS_FALLBACK}.
|
|
9164
|
+
*
|
|
9165
|
+
* Absent means `'local-path'`. That default is FAIL-CLOSED on purpose: it
|
|
9166
|
+
* can only over-restrict (refuse a remote provider for a kind that might
|
|
9167
|
+
* have coped) and never under-restrict. Declaring `'cap-mediated'` is the
|
|
9168
|
+
* permissive direction and is therefore never inferred — a repo guard
|
|
9169
|
+
* (`scripts/check-storage-access-declarations.ts`) refuses to let it be
|
|
9170
|
+
* reached by omission.
|
|
9171
|
+
*/
|
|
9172
|
+
access: StorageAccessSchema.optional(),
|
|
9173
|
+
/**
|
|
9007
9174
|
* When set, the default instance for this location inherits its resolved
|
|
9008
9175
|
* root from the named location's default instance. Useful for derivative
|
|
9009
9176
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
@@ -18664,8 +18831,10 @@ var TrackSchema = object({
|
|
|
18664
18831
|
lastSeen: number(),
|
|
18665
18832
|
/** Frame-rate position history (subject to maxPositionHistory cap). */
|
|
18666
18833
|
positions: array(TrackPositionSchema).readonly(),
|
|
18667
|
-
/** Periodic snapshots at snapshotIntervalMs cadence
|
|
18668
|
-
*
|
|
18834
|
+
/** Periodic snapshots at snapshotIntervalMs cadence — DEBUG media, produced
|
|
18835
|
+
* only while `MediaSettings.debugMediaEnabled` is on for the camera (D299;
|
|
18836
|
+
* the retired `saveThumbnails` used to gate this and the rolling
|
|
18837
|
+
* `lastFrame` together). Empty is the healthy default, not a capture gap. */
|
|
18669
18838
|
snapshots: array(TrackSnapshotSchema).readonly(),
|
|
18670
18839
|
/** Deduplicated zones the track has entered at least once. Zone IDS. */
|
|
18671
18840
|
zonesVisited: array(string()).readonly(),
|
|
@@ -19525,7 +19694,10 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19525
19694
|
}), method(RelocateMediaInputSchema, object({ jobId: string() }), {
|
|
19526
19695
|
kind: "mutation",
|
|
19527
19696
|
auth: "admin"
|
|
19528
|
-
}), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(
|
|
19697
|
+
}), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, {
|
|
19698
|
+
kind: "query",
|
|
19699
|
+
auth: "admin"
|
|
19700
|
+
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
19529
19701
|
kind: "query",
|
|
19530
19702
|
auth: "admin"
|
|
19531
19703
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
@@ -21484,6 +21656,9 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
|
|
|
21484
21656
|
}), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
21485
21657
|
kind: "mutation",
|
|
21486
21658
|
auth: "admin"
|
|
21659
|
+
}), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
|
|
21660
|
+
kind: "mutation",
|
|
21661
|
+
auth: "admin"
|
|
21487
21662
|
});
|
|
21488
21663
|
var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
|
|
21489
21664
|
providerId: string().min(1),
|
|
@@ -21882,12 +22057,38 @@ response: record(string(), unknown()) }), object({
|
|
|
21882
22057
|
*
|
|
21883
22058
|
* ## Why this is a capability and not a helper
|
|
21884
22059
|
*
|
|
21885
|
-
*
|
|
21886
|
-
*
|
|
21887
|
-
*
|
|
21888
|
-
*
|
|
21889
|
-
*
|
|
21890
|
-
*
|
|
22060
|
+
* This capability was introduced with the claim that SIX stores in
|
|
22061
|
+
* `addon-post-analysis` held vectors in a `JSON` settings-store column — object
|
|
22062
|
+
* CLIP, face, plate, vehicle, identity, and the event store's derivatives. That
|
|
22063
|
+
* claim was never true, and leaving it here made five stores look like pending
|
|
22064
|
+
* work when three of them have no vector at all. Counted column by column on
|
|
22065
|
+
* 2026-08-30, exactly THREE ever held one:
|
|
22066
|
+
*
|
|
22067
|
+
* - `object-clip` — 512-dim CLIP image embedding, migrated 2026-08-06.
|
|
22068
|
+
* - `faces.embedding` — 512-dim ArcFace face embedding, migrated 2026-08-30.
|
|
22069
|
+
* - `identity-samples.embedding` — the same ArcFace vector for an ENROLLED
|
|
22070
|
+
* face, migrated 2026-08-30 into its OWN index (see below).
|
|
22071
|
+
*
|
|
22072
|
+
* `plates` and `vehicle-samples` store a plate STRING and a score; `vehicles`
|
|
22073
|
+
* and `identities` store a name; the event store stores no derivative vector.
|
|
22074
|
+
* They are not migration candidates and never were.
|
|
22075
|
+
*
|
|
22076
|
+
* Measured on the live hub the JSON encoding cost ~11.7 KB per row (512 floats
|
|
22077
|
+
* as TEXT, `JSON.parse`d on every search) and made semantic search load 5,000
|
|
22078
|
+
* rows before ranking anything.
|
|
22079
|
+
*
|
|
22080
|
+
* ## One index per COMPARISON, never per encoder
|
|
22081
|
+
*
|
|
22082
|
+
* `faces` and `identity-samples` hold the same 512 ArcFace dims from the same
|
|
22083
|
+
* model, and they still get two indexes. An index is a set of things that are
|
|
22084
|
+
* ranked against each other and that live and die together, and these two are
|
|
22085
|
+
* neither: a `faces` row is TRACK-OWNED and cascades away with its track under
|
|
22086
|
+
* a per-camera capacity cap, an `identity-samples` row is retention-EXEMPT
|
|
22087
|
+
* forever and is the gallery every recognition ranks against. One index would
|
|
22088
|
+
* mean every gallery load and every reconcile carried a filter whose failure
|
|
22089
|
+
* mode is either ranking a candidate against itself or reclaiming an enrolled
|
|
22090
|
+
* person's only sample. The dimension they share is not a reason to share an
|
|
22091
|
+
* index; the question they answer is, and it differs.
|
|
21891
22092
|
*
|
|
21892
22093
|
* The fix is not a faster loop, it is a different backend — and the backend
|
|
21893
22094
|
* should be replaceable without touching six callers. So: a singleton
|
|
@@ -21992,7 +22193,20 @@ var VectorQueryResultSchema = object({
|
|
|
21992
22193
|
*/
|
|
21993
22194
|
scanned: number(),
|
|
21994
22195
|
/** True when the backend could not consider every row that passed the filter. */
|
|
21995
|
-
truncated: boolean()
|
|
22196
|
+
truncated: boolean(),
|
|
22197
|
+
/**
|
|
22198
|
+
* The `topK` the backend actually ran with.
|
|
22199
|
+
*
|
|
22200
|
+
* Every backend has a ceiling — sqlite-vec's is 4,096 — and a caller asking
|
|
22201
|
+
* past it used to learn nothing but a boolean, from a WARN in the provider's
|
|
22202
|
+
* own log rather than in its answer. That is how an audit asking for 20,000
|
|
22203
|
+
* consumed 4,096 and reported `examined: 4096` as if it had walked the index,
|
|
22204
|
+
* for weeks. `truncated` says THAT the answer was short; this says BY HOW
|
|
22205
|
+
* MUCH, in the return value, where the caller cannot fail to see it.
|
|
22206
|
+
*
|
|
22207
|
+
* Equals the requested `topK` whenever nothing was lowered.
|
|
22208
|
+
*/
|
|
22209
|
+
effectiveTopK: number().int().positive()
|
|
21996
22210
|
});
|
|
21997
22211
|
var VectorDeleteInputSchema = object({
|
|
21998
22212
|
index: string(),
|
|
@@ -22021,6 +22235,68 @@ var VectorGetResultSchema = object({ items: array(object({
|
|
|
22021
22235
|
id: string(),
|
|
22022
22236
|
metadata: VectorMetadataSchema
|
|
22023
22237
|
})) });
|
|
22238
|
+
/**
|
|
22239
|
+
* Ids to read back WITH their vectors.
|
|
22240
|
+
*
|
|
22241
|
+
* The sibling of {@link VectorGetResultSchema}, and deliberately a separate
|
|
22242
|
+
* method rather than a flag on it: `getByIds` promises no vectors and its one
|
|
22243
|
+
* caller depends on that promise. This one promises the opposite.
|
|
22244
|
+
*
|
|
22245
|
+
* It exists because a store cannot put its vectors here otherwise. An ArcFace
|
|
22246
|
+
* gallery is ranked IN PROCESS, per detection, against every enrolled sample —
|
|
22247
|
+
* a per-face cross-process KNN would be a network round trip inside the
|
|
22248
|
+
* recognition loop. So the gallery is loaded once and held in RAM, and loading
|
|
22249
|
+
* it requires the index to hand the floats back. Without this method the only
|
|
22250
|
+
* way to keep a readable vector is a JSON column, which is the thing this
|
|
22251
|
+
* capability exists to delete.
|
|
22252
|
+
*
|
|
22253
|
+
* BOUNDED BY THE CALLER: ids are named, never "everything". Enumerating an
|
|
22254
|
+
* index is {@link VectorScanInputSchema}'s job, and it returns no vectors.
|
|
22255
|
+
*/
|
|
22256
|
+
var VectorFetchInputSchema = object({
|
|
22257
|
+
index: string(),
|
|
22258
|
+
ids: array(string())
|
|
22259
|
+
});
|
|
22260
|
+
var VectorFetchResultSchema = object({ items: array(object({
|
|
22261
|
+
id: string(),
|
|
22262
|
+
/** base64 Float32LE — the same wire form `upsert` accepts. */
|
|
22263
|
+
vector: string(),
|
|
22264
|
+
metadata: VectorMetadataSchema
|
|
22265
|
+
})) });
|
|
22266
|
+
/**
|
|
22267
|
+
* ENUMERATE an index: one page of rows in a stable order, no ranking.
|
|
22268
|
+
*
|
|
22269
|
+
* A reconcile does not want the nearest rows, it wants ALL of them, and asking
|
|
22270
|
+
* a KNN for "all" is the wrong question twice over. It hits the backend's `k`
|
|
22271
|
+
* ceiling — 4,096 on sqlite-vec against a 22,128-row index — and it needs a
|
|
22272
|
+
* probe vector it does not have, so the audit passed a ZERO vector whose cosine
|
|
22273
|
+
* distance to every row is degenerate. `examined: 4096` then read as "we
|
|
22274
|
+
* looked" for as long as anyone cared to read it.
|
|
22275
|
+
*
|
|
22276
|
+
* This is the primitive that question actually needs: a bounded page, ordered
|
|
22277
|
+
* by the backend's own row order, costing no distance computation at all.
|
|
22278
|
+
* Vectors are NOT returned — an enumeration that shipped 2 KB per row would be
|
|
22279
|
+
* the full-table read this capability was built to stop.
|
|
22280
|
+
*/
|
|
22281
|
+
var VectorScanInputSchema = object({
|
|
22282
|
+
index: string(),
|
|
22283
|
+
/** Opaque resume point. `0` starts at the top; pass back `nextCursor`. */
|
|
22284
|
+
cursor: number().int().nonnegative().default(0),
|
|
22285
|
+
limit: number().int().positive()
|
|
22286
|
+
});
|
|
22287
|
+
var VectorScanResultSchema = object({
|
|
22288
|
+
items: array(object({
|
|
22289
|
+
id: string(),
|
|
22290
|
+
metadata: VectorMetadataSchema
|
|
22291
|
+
})),
|
|
22292
|
+
/**
|
|
22293
|
+
* Where the next page starts, or `null` when the walk reached the end.
|
|
22294
|
+
*
|
|
22295
|
+
* `null` is the ONLY end-of-index signal. A caller must not infer the end
|
|
22296
|
+
* from a short page: a backend is free to return fewer rows than asked.
|
|
22297
|
+
*/
|
|
22298
|
+
nextCursor: number().int().nonnegative().nullable()
|
|
22299
|
+
});
|
|
22024
22300
|
var VectorStatsInputSchema = object({ index: string() });
|
|
22025
22301
|
var VectorStatsResultSchema = object({
|
|
22026
22302
|
/** Provider id, so an operator can tell brute force from an ANN index. */
|
|
@@ -22039,7 +22315,7 @@ method(VectorDeclareIndexInputSchema, _void(), {
|
|
|
22039
22315
|
}), method(VectorUpsertInputSchema, VectorUpsertResultSchema, {
|
|
22040
22316
|
kind: "mutation",
|
|
22041
22317
|
auth: "admin"
|
|
22042
|
-
}), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
|
|
22318
|
+
}), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorFetchInputSchema, VectorFetchResultSchema, { auth: "admin" }), method(VectorScanInputSchema, VectorScanResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
|
|
22043
22319
|
kind: "mutation",
|
|
22044
22320
|
auth: "admin"
|
|
22045
22321
|
}), method(VectorDeleteByFilterInputSchema, VectorDeleteResultSchema, {
|
|
@@ -26991,6 +27267,9 @@ method(object({
|
|
|
26991
27267
|
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
26992
27268
|
kind: "query",
|
|
26993
27269
|
auth: "admin"
|
|
27270
|
+
}), method(RelocateResidueInputSchema, RelocateResidueSchema, {
|
|
27271
|
+
kind: "query",
|
|
27272
|
+
auth: "admin"
|
|
26994
27273
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
26995
27274
|
kind: "mutation",
|
|
26996
27275
|
auth: "admin"
|
|
@@ -31981,6 +32260,12 @@ Object.freeze({
|
|
|
31981
32260
|
addonId: null,
|
|
31982
32261
|
access: "create"
|
|
31983
32262
|
},
|
|
32263
|
+
"pipelineAnalytics.countRelocatableMedia": {
|
|
32264
|
+
capName: "pipeline-analytics",
|
|
32265
|
+
capScope: "device",
|
|
32266
|
+
addonId: null,
|
|
32267
|
+
access: "view"
|
|
32268
|
+
},
|
|
31984
32269
|
"pipelineAnalytics.countUnstampedEventMedia": {
|
|
31985
32270
|
capName: "pipeline-analytics",
|
|
31986
32271
|
capScope: "device",
|
|
@@ -33145,6 +33430,12 @@ Object.freeze({
|
|
|
33145
33430
|
addonId: null,
|
|
33146
33431
|
access: "view"
|
|
33147
33432
|
},
|
|
33433
|
+
"recording.getRelocateResidue": {
|
|
33434
|
+
capName: "recording",
|
|
33435
|
+
capScope: "system",
|
|
33436
|
+
addonId: null,
|
|
33437
|
+
access: "view"
|
|
33438
|
+
},
|
|
33148
33439
|
"recording.getStorageMigrationMoveStatus": {
|
|
33149
33440
|
capName: "recording",
|
|
33150
33441
|
capScope: "system",
|
|
@@ -33691,12 +33982,30 @@ Object.freeze({
|
|
|
33691
33982
|
addonId: null,
|
|
33692
33983
|
access: "create"
|
|
33693
33984
|
},
|
|
33985
|
+
"storageMigration.drain": {
|
|
33986
|
+
capName: "storage-migration",
|
|
33987
|
+
capScope: "system",
|
|
33988
|
+
addonId: null,
|
|
33989
|
+
access: "create"
|
|
33990
|
+
},
|
|
33991
|
+
"storageMigration.movers": {
|
|
33992
|
+
capName: "storage-migration",
|
|
33993
|
+
capScope: "system",
|
|
33994
|
+
addonId: null,
|
|
33995
|
+
access: "view"
|
|
33996
|
+
},
|
|
33694
33997
|
"storageMigration.plan": {
|
|
33695
33998
|
capName: "storage-migration",
|
|
33696
33999
|
capScope: "system",
|
|
33697
34000
|
addonId: null,
|
|
33698
34001
|
access: "view"
|
|
33699
34002
|
},
|
|
34003
|
+
"storageMigration.residue": {
|
|
34004
|
+
capName: "storage-migration",
|
|
34005
|
+
capScope: "system",
|
|
34006
|
+
addonId: null,
|
|
34007
|
+
access: "view"
|
|
34008
|
+
},
|
|
33700
34009
|
"storageMigration.start": {
|
|
33701
34010
|
capName: "storage-migration",
|
|
33702
34011
|
capScope: "system",
|
|
@@ -34531,6 +34840,12 @@ Object.freeze({
|
|
|
34531
34840
|
addonId: null,
|
|
34532
34841
|
access: "delete"
|
|
34533
34842
|
},
|
|
34843
|
+
"vectorStore.fetchByIds": {
|
|
34844
|
+
capName: "vector-store",
|
|
34845
|
+
capScope: "system",
|
|
34846
|
+
addonId: null,
|
|
34847
|
+
access: "view"
|
|
34848
|
+
},
|
|
34534
34849
|
"vectorStore.getByIds": {
|
|
34535
34850
|
capName: "vector-store",
|
|
34536
34851
|
capScope: "system",
|
|
@@ -34543,6 +34858,12 @@ Object.freeze({
|
|
|
34543
34858
|
addonId: null,
|
|
34544
34859
|
access: "view"
|
|
34545
34860
|
},
|
|
34861
|
+
"vectorStore.scan": {
|
|
34862
|
+
capName: "vector-store",
|
|
34863
|
+
capScope: "system",
|
|
34864
|
+
addonId: null,
|
|
34865
|
+
access: "view"
|
|
34866
|
+
},
|
|
34546
34867
|
"vectorStore.stats": {
|
|
34547
34868
|
capName: "vector-store",
|
|
34548
34869
|
capScope: "system",
|
|
@@ -8818,13 +8818,49 @@ var StorageMigrationParticipantSchema = _enum([
|
|
|
8818
8818
|
"recorder",
|
|
8819
8819
|
"analytics"
|
|
8820
8820
|
]);
|
|
8821
|
+
/**
|
|
8822
|
+
* The mover's own numbers, folded onto the coordinator's durable move record.
|
|
8823
|
+
*
|
|
8824
|
+
* The long half of a non-blocking migration is `draining`, and it is measured
|
|
8825
|
+
* in hours: 136 885 files at ~4 MB/s is about five of them. Before this shape
|
|
8826
|
+
* existed the only place those numbers appeared was a Loki line, so an operator
|
|
8827
|
+
* watching the Admin UI saw `phase: draining` and nothing else for a whole
|
|
8828
|
+
* afternoon.
|
|
8829
|
+
*
|
|
8830
|
+
* It is POLLED, never pushed. Events are telemetry and may be dropped
|
|
8831
|
+
* (D8/D11), and a dropped progress event is indistinguishable from a stalled
|
|
8832
|
+
* mover — which is the exact failure this is meant to end. The coordinator's
|
|
8833
|
+
* `waitForMoves` already fetches the whole {@link RelocateJob} on every tick to
|
|
8834
|
+
* read `state`; folding the counters costs no extra read and makes the durable
|
|
8835
|
+
* record say afterwards how far a move actually got.
|
|
8836
|
+
*
|
|
8837
|
+
* `filesTotal` is `null` for "no honest denominator" and is never zero-filled:
|
|
8838
|
+
* a windowed footage job (`sinceMs`) and a node with no ledger both genuinely
|
|
8839
|
+
* cannot say M, and a 0 there would render as "100 % done".
|
|
8840
|
+
*/
|
|
8841
|
+
var StorageMigrationMoveProgressSchema = object({
|
|
8842
|
+
filesMoved: number().int().nonnegative(),
|
|
8843
|
+
/** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
|
|
8844
|
+
filesTotal: number().int().nonnegative().nullable(),
|
|
8845
|
+
bytesMoved: number().int().nonnegative(),
|
|
8846
|
+
/** The MOVER's start, not the migration's: a drain restarted after an addon
|
|
8847
|
+
* crash gets a new mover, and a rate computed from the migration's start
|
|
8848
|
+
* would silently average in the time nothing was running. */
|
|
8849
|
+
startedAt: number(),
|
|
8850
|
+
/** When the coordinator last read these numbers. Paired with `startedAt` it
|
|
8851
|
+
* is the only honest rate: both clocks are the hub's, so a UI never has to
|
|
8852
|
+
* subtract its own. */
|
|
8853
|
+
observedAt: number()
|
|
8854
|
+
});
|
|
8821
8855
|
var StorageMigrationMoveSchema = object({
|
|
8822
8856
|
storageClass: StorageMigrationClassSchema,
|
|
8823
8857
|
fromLocationId: string(),
|
|
8824
8858
|
toLocationId: string(),
|
|
8825
8859
|
moverJobId: string().nullable(),
|
|
8826
8860
|
state: RelocateJobStateSchema.nullable(),
|
|
8827
|
-
error: string().nullable()
|
|
8861
|
+
error: string().nullable(),
|
|
8862
|
+
/** Last observed mover counters; `null` until the mover has been polled once. */
|
|
8863
|
+
progress: StorageMigrationMoveProgressSchema.nullable()
|
|
8828
8864
|
});
|
|
8829
8865
|
var StorageMigrationJobSchema = object({
|
|
8830
8866
|
jobId: string(),
|
|
@@ -8870,6 +8906,98 @@ var StorageMigrationPlanSchema = object({
|
|
|
8870
8906
|
findings: array(StorageMigrationFindingSchema)
|
|
8871
8907
|
});
|
|
8872
8908
|
/**
|
|
8909
|
+
* A mover as it exists RIGHT NOW, whether or not a migration job owns it.
|
|
8910
|
+
*
|
|
8911
|
+
* The coordinator's job record is the state of record for a migration, and its
|
|
8912
|
+
* moves carry {@link StorageMigrationMoveProgress}. But the movers are usable
|
|
8913
|
+
* standalone — `recording.relocateFootage` and `pipelineAnalytics.relocateMedia`
|
|
8914
|
+
* are both operator-callable, and on 2026-08-29 a five-hour drain was armed that
|
|
8915
|
+
* way because no supported UI path existed. A mover armed like that has no job
|
|
8916
|
+
* to fold progress into, so it has to be readable on its own or it is invisible.
|
|
8917
|
+
*
|
|
8918
|
+
* `migrationJobId` is what tells the two apart: `null` means nothing here
|
|
8919
|
+
* orchestrated it.
|
|
8920
|
+
*/
|
|
8921
|
+
var StorageMigrationMoverSchema = object({
|
|
8922
|
+
lane: _enum(["footage", "media"]),
|
|
8923
|
+
job: RelocateJobSchema,
|
|
8924
|
+
/** The coordinator job that armed this mover, or `null` for a mover armed
|
|
8925
|
+
* directly against the owning addon. */
|
|
8926
|
+
migrationJobId: string().nullable(),
|
|
8927
|
+
/** When the hub read these counters. Stamped here so a rate is `bytesMoved`
|
|
8928
|
+
* over (`observedAt` − `job.startedAt`) with BOTH ends on the hub's clock —
|
|
8929
|
+
* a browser subtracting its own `Date.now()` from a server `startedAt` is a
|
|
8930
|
+
* rate made of two different clocks. */
|
|
8931
|
+
observedAt: number()
|
|
8932
|
+
});
|
|
8933
|
+
/**
|
|
8934
|
+
* What a SOURCE still holds for one storage class — the number that makes a
|
|
8935
|
+
* "drain remaining" action honest rather than hopeful.
|
|
8936
|
+
*
|
|
8937
|
+
* It comes from the archive (`SegmentHourLedger.census` for footage, the media
|
|
8938
|
+
* engine's own selection count for media), never from the resident index: a
|
|
8939
|
+
* drain sized off `RecordingIndex` is what reported `done` over 80.3 GB it had
|
|
8940
|
+
* never been told about (D295).
|
|
8941
|
+
*
|
|
8942
|
+
* `items`/`bytes` are `null` for "the archive could not be asked", which is
|
|
8943
|
+
* deliberately NOT zero: a drain is still offered for an unknown residue,
|
|
8944
|
+
* because refusing on an unanswerable read would hide exactly the case an
|
|
8945
|
+
* operator needs to act on.
|
|
8946
|
+
*/
|
|
8947
|
+
var StorageMigrationResidueSchema = object({
|
|
8948
|
+
storageClass: StorageMigrationClassSchema,
|
|
8949
|
+
/** The location still holding the data. `'*'` for the media lane, whose rows
|
|
8950
|
+
* move from wherever they are rather than from one named source. */
|
|
8951
|
+
fromLocationId: string(),
|
|
8952
|
+
/** Where a drain would move it — the class's CURRENT default. */
|
|
8953
|
+
toLocationId: string(),
|
|
8954
|
+
/** Segments (footage lane) or rows (media lane) still on the source. */
|
|
8955
|
+
items: number().int().nonnegative().nullable(),
|
|
8956
|
+
/** Bytes on the source; `null` when the lane counts rows rather than bytes. */
|
|
8957
|
+
bytes: number().int().nonnegative().nullable()
|
|
8958
|
+
});
|
|
8959
|
+
/**
|
|
8960
|
+
* Run the DRAIN half and nothing else.
|
|
8961
|
+
*
|
|
8962
|
+
* A migration that reached `done` has already repointed, so `start` correctly
|
|
8963
|
+
* refuses its destination ("already the default") — there is nothing left to
|
|
8964
|
+
* repoint. But the drain can fail, be cancelled, be interrupted by a restart,
|
|
8965
|
+
* or finish against a work list that was a tenth of the archive (D295), and
|
|
8966
|
+
* before this there was no supported way to run only that half: the only way
|
|
8967
|
+
* through was calling `recording.relocateFootage` by hand over admin tRPC.
|
|
8968
|
+
*
|
|
8969
|
+
* `drain` NEVER calls `setDefaultLocations`. That is what keeps `start`'s
|
|
8970
|
+
* refusal meaningful: the two verbs are disjoint, so nothing here can silently
|
|
8971
|
+
* re-repoint a class that is already migrated.
|
|
8972
|
+
*/
|
|
8973
|
+
var StorageMigrationDrainInputSchema = object({
|
|
8974
|
+
/** The classes to drain. Each must appear in `storageMigration.residue`, so
|
|
8975
|
+
* a class whose source is already empty is refused rather than started. */
|
|
8976
|
+
classes: array(StorageMigrationClassSchema).min(1),
|
|
8977
|
+
throttleMbps: number().min(1).max(1e3).optional()
|
|
8978
|
+
});
|
|
8979
|
+
/** What a footage source still holds, asked of the durable hour ledger. */
|
|
8980
|
+
var RelocateResidueInputSchema = object({
|
|
8981
|
+
fromLocationId: string().min(1),
|
|
8982
|
+
/** Narrow to one logical class; omit for every profile on the location. */
|
|
8983
|
+
footageClass: RelocateFootageClassSchema.optional()
|
|
8984
|
+
});
|
|
8985
|
+
/** `null` = the archive could not answer (no ledger on this node, or the
|
|
8986
|
+
* aggregate failed). Never conflated with an empty source. */
|
|
8987
|
+
var RelocateResidueSchema = object({
|
|
8988
|
+
segments: number().int().nonnegative(),
|
|
8989
|
+
bytes: number().int().nonnegative()
|
|
8990
|
+
}).nullable();
|
|
8991
|
+
/** How many rows a media pass would still act on against a given target — the
|
|
8992
|
+
* media lane's denominator AND its residue, from ONE derivation so the two can
|
|
8993
|
+
* never disagree. `null` = the count could not be taken. */
|
|
8994
|
+
var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
|
|
8995
|
+
var RelocatableMediaCountInputSchema = object({
|
|
8996
|
+
toLocationId: string().min(1),
|
|
8997
|
+
/** Omitted = `move`. */
|
|
8998
|
+
mode: MediaRelocateModeSchema.optional()
|
|
8999
|
+
});
|
|
9000
|
+
/**
|
|
8873
9001
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
8874
9002
|
* storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
|
|
8875
9003
|
* so the persisted record schema and the consumer-facing cap can both consume it
|
|
@@ -8973,6 +9101,32 @@ var StorageLocationRefSchema = union([StorageLocationTypeSchema, string().regex(
|
|
|
8973
9101
|
* two addons declaring the same `id` must agree on `cardinality` (validated
|
|
8974
9102
|
* at kernel aggregation time, not here).
|
|
8975
9103
|
*/
|
|
9104
|
+
/**
|
|
9105
|
+
* `StorageAccess` — how the service that DECLARED a storage-location kind
|
|
9106
|
+
* actually reaches the bytes. It is the constraint that decides which
|
|
9107
|
+
* `storage-provider`s may back a location of that kind.
|
|
9108
|
+
*
|
|
9109
|
+
* - `'local-path'` — the service asks `storage.resolve` for a path string and
|
|
9110
|
+
* then does its own `node:fs` I/O on it (the recorder's segment writer, the
|
|
9111
|
+
* post-analysis media roots). Only a provider that serves a genuine local
|
|
9112
|
+
* filesystem (`getProviderInfo().nodeLocal === true`) can satisfy that: a
|
|
9113
|
+
* remote provider's `resolve` returns a path on the REMOTE host, and
|
|
9114
|
+
* `fs.readdir` of it on this node either fails or — far worse — succeeds
|
|
9115
|
+
* against a same-named local directory that is something else entirely.
|
|
9116
|
+
*
|
|
9117
|
+
* - `'cap-mediated'` — every byte travels through the `storage` cap
|
|
9118
|
+
* (`read`/`write`, or `beginUpload`/`writeChunk`/`finalizeUpload`). The
|
|
9119
|
+
* service never sees a path, so any provider can back it. `backups` is the
|
|
9120
|
+
* one kind that qualifies today.
|
|
9121
|
+
*
|
|
9122
|
+
* Before this existed, `recordings` was unreachable by SFTP/S3/WebDAV only as
|
|
9123
|
+
* an EMERGENT property of how the recorder happened to be written. Nothing
|
|
9124
|
+
* refused the configuration; the first write simply went somewhere wrong, and
|
|
9125
|
+
* a recording write that goes wrong surfaces as a silent black window rather
|
|
9126
|
+
* than an error (the read path does not `stat`). This turns that accident into
|
|
9127
|
+
* a declared, enforced, testable refusal.
|
|
9128
|
+
*/
|
|
9129
|
+
var StorageAccessSchema = _enum(["local-path", "cap-mediated"]);
|
|
8976
9130
|
var StorageLocationDeclarationSchema = object({
|
|
8977
9131
|
/**
|
|
8978
9132
|
* Global location identifier, e.g. `recordings` or `recordingsLow`.
|
|
@@ -8992,6 +9146,19 @@ var StorageLocationDeclarationSchema = object({
|
|
|
8992
9146
|
*/
|
|
8993
9147
|
cardinality: _enum(["single", "multi"]),
|
|
8994
9148
|
/**
|
|
9149
|
+
* HOW the declaring service reaches the bytes — and therefore WHICH
|
|
9150
|
+
* providers may back a location of this kind. See {@link StorageAccessSchema}
|
|
9151
|
+
* and {@link STORAGE_ACCESS_FALLBACK}.
|
|
9152
|
+
*
|
|
9153
|
+
* Absent means `'local-path'`. That default is FAIL-CLOSED on purpose: it
|
|
9154
|
+
* can only over-restrict (refuse a remote provider for a kind that might
|
|
9155
|
+
* have coped) and never under-restrict. Declaring `'cap-mediated'` is the
|
|
9156
|
+
* permissive direction and is therefore never inferred — a repo guard
|
|
9157
|
+
* (`scripts/check-storage-access-declarations.ts`) refuses to let it be
|
|
9158
|
+
* reached by omission.
|
|
9159
|
+
*/
|
|
9160
|
+
access: StorageAccessSchema.optional(),
|
|
9161
|
+
/**
|
|
8995
9162
|
* When set, the default instance for this location inherits its resolved
|
|
8996
9163
|
* root from the named location's default instance. Useful for derivative
|
|
8997
9164
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
@@ -18652,8 +18819,10 @@ var TrackSchema = object({
|
|
|
18652
18819
|
lastSeen: number(),
|
|
18653
18820
|
/** Frame-rate position history (subject to maxPositionHistory cap). */
|
|
18654
18821
|
positions: array(TrackPositionSchema).readonly(),
|
|
18655
|
-
/** Periodic snapshots at snapshotIntervalMs cadence
|
|
18656
|
-
*
|
|
18822
|
+
/** Periodic snapshots at snapshotIntervalMs cadence — DEBUG media, produced
|
|
18823
|
+
* only while `MediaSettings.debugMediaEnabled` is on for the camera (D299;
|
|
18824
|
+
* the retired `saveThumbnails` used to gate this and the rolling
|
|
18825
|
+
* `lastFrame` together). Empty is the healthy default, not a capture gap. */
|
|
18657
18826
|
snapshots: array(TrackSnapshotSchema).readonly(),
|
|
18658
18827
|
/** Deduplicated zones the track has entered at least once. Zone IDS. */
|
|
18659
18828
|
zonesVisited: array(string()).readonly(),
|
|
@@ -19513,7 +19682,10 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19513
19682
|
}), method(RelocateMediaInputSchema, object({ jobId: string() }), {
|
|
19514
19683
|
kind: "mutation",
|
|
19515
19684
|
auth: "admin"
|
|
19516
|
-
}), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(
|
|
19685
|
+
}), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, {
|
|
19686
|
+
kind: "query",
|
|
19687
|
+
auth: "admin"
|
|
19688
|
+
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
19517
19689
|
kind: "query",
|
|
19518
19690
|
auth: "admin"
|
|
19519
19691
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
@@ -21472,6 +21644,9 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
|
|
|
21472
21644
|
}), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
21473
21645
|
kind: "mutation",
|
|
21474
21646
|
auth: "admin"
|
|
21647
|
+
}), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
|
|
21648
|
+
kind: "mutation",
|
|
21649
|
+
auth: "admin"
|
|
21475
21650
|
});
|
|
21476
21651
|
var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
|
|
21477
21652
|
providerId: string().min(1),
|
|
@@ -21870,12 +22045,38 @@ response: record(string(), unknown()) }), object({
|
|
|
21870
22045
|
*
|
|
21871
22046
|
* ## Why this is a capability and not a helper
|
|
21872
22047
|
*
|
|
21873
|
-
*
|
|
21874
|
-
*
|
|
21875
|
-
*
|
|
21876
|
-
*
|
|
21877
|
-
*
|
|
21878
|
-
*
|
|
22048
|
+
* This capability was introduced with the claim that SIX stores in
|
|
22049
|
+
* `addon-post-analysis` held vectors in a `JSON` settings-store column — object
|
|
22050
|
+
* CLIP, face, plate, vehicle, identity, and the event store's derivatives. That
|
|
22051
|
+
* claim was never true, and leaving it here made five stores look like pending
|
|
22052
|
+
* work when three of them have no vector at all. Counted column by column on
|
|
22053
|
+
* 2026-08-30, exactly THREE ever held one:
|
|
22054
|
+
*
|
|
22055
|
+
* - `object-clip` — 512-dim CLIP image embedding, migrated 2026-08-06.
|
|
22056
|
+
* - `faces.embedding` — 512-dim ArcFace face embedding, migrated 2026-08-30.
|
|
22057
|
+
* - `identity-samples.embedding` — the same ArcFace vector for an ENROLLED
|
|
22058
|
+
* face, migrated 2026-08-30 into its OWN index (see below).
|
|
22059
|
+
*
|
|
22060
|
+
* `plates` and `vehicle-samples` store a plate STRING and a score; `vehicles`
|
|
22061
|
+
* and `identities` store a name; the event store stores no derivative vector.
|
|
22062
|
+
* They are not migration candidates and never were.
|
|
22063
|
+
*
|
|
22064
|
+
* Measured on the live hub the JSON encoding cost ~11.7 KB per row (512 floats
|
|
22065
|
+
* as TEXT, `JSON.parse`d on every search) and made semantic search load 5,000
|
|
22066
|
+
* rows before ranking anything.
|
|
22067
|
+
*
|
|
22068
|
+
* ## One index per COMPARISON, never per encoder
|
|
22069
|
+
*
|
|
22070
|
+
* `faces` and `identity-samples` hold the same 512 ArcFace dims from the same
|
|
22071
|
+
* model, and they still get two indexes. An index is a set of things that are
|
|
22072
|
+
* ranked against each other and that live and die together, and these two are
|
|
22073
|
+
* neither: a `faces` row is TRACK-OWNED and cascades away with its track under
|
|
22074
|
+
* a per-camera capacity cap, an `identity-samples` row is retention-EXEMPT
|
|
22075
|
+
* forever and is the gallery every recognition ranks against. One index would
|
|
22076
|
+
* mean every gallery load and every reconcile carried a filter whose failure
|
|
22077
|
+
* mode is either ranking a candidate against itself or reclaiming an enrolled
|
|
22078
|
+
* person's only sample. The dimension they share is not a reason to share an
|
|
22079
|
+
* index; the question they answer is, and it differs.
|
|
21879
22080
|
*
|
|
21880
22081
|
* The fix is not a faster loop, it is a different backend — and the backend
|
|
21881
22082
|
* should be replaceable without touching six callers. So: a singleton
|
|
@@ -21980,7 +22181,20 @@ var VectorQueryResultSchema = object({
|
|
|
21980
22181
|
*/
|
|
21981
22182
|
scanned: number(),
|
|
21982
22183
|
/** True when the backend could not consider every row that passed the filter. */
|
|
21983
|
-
truncated: boolean()
|
|
22184
|
+
truncated: boolean(),
|
|
22185
|
+
/**
|
|
22186
|
+
* The `topK` the backend actually ran with.
|
|
22187
|
+
*
|
|
22188
|
+
* Every backend has a ceiling — sqlite-vec's is 4,096 — and a caller asking
|
|
22189
|
+
* past it used to learn nothing but a boolean, from a WARN in the provider's
|
|
22190
|
+
* own log rather than in its answer. That is how an audit asking for 20,000
|
|
22191
|
+
* consumed 4,096 and reported `examined: 4096` as if it had walked the index,
|
|
22192
|
+
* for weeks. `truncated` says THAT the answer was short; this says BY HOW
|
|
22193
|
+
* MUCH, in the return value, where the caller cannot fail to see it.
|
|
22194
|
+
*
|
|
22195
|
+
* Equals the requested `topK` whenever nothing was lowered.
|
|
22196
|
+
*/
|
|
22197
|
+
effectiveTopK: number().int().positive()
|
|
21984
22198
|
});
|
|
21985
22199
|
var VectorDeleteInputSchema = object({
|
|
21986
22200
|
index: string(),
|
|
@@ -22009,6 +22223,68 @@ var VectorGetResultSchema = object({ items: array(object({
|
|
|
22009
22223
|
id: string(),
|
|
22010
22224
|
metadata: VectorMetadataSchema
|
|
22011
22225
|
})) });
|
|
22226
|
+
/**
|
|
22227
|
+
* Ids to read back WITH their vectors.
|
|
22228
|
+
*
|
|
22229
|
+
* The sibling of {@link VectorGetResultSchema}, and deliberately a separate
|
|
22230
|
+
* method rather than a flag on it: `getByIds` promises no vectors and its one
|
|
22231
|
+
* caller depends on that promise. This one promises the opposite.
|
|
22232
|
+
*
|
|
22233
|
+
* It exists because a store cannot put its vectors here otherwise. An ArcFace
|
|
22234
|
+
* gallery is ranked IN PROCESS, per detection, against every enrolled sample —
|
|
22235
|
+
* a per-face cross-process KNN would be a network round trip inside the
|
|
22236
|
+
* recognition loop. So the gallery is loaded once and held in RAM, and loading
|
|
22237
|
+
* it requires the index to hand the floats back. Without this method the only
|
|
22238
|
+
* way to keep a readable vector is a JSON column, which is the thing this
|
|
22239
|
+
* capability exists to delete.
|
|
22240
|
+
*
|
|
22241
|
+
* BOUNDED BY THE CALLER: ids are named, never "everything". Enumerating an
|
|
22242
|
+
* index is {@link VectorScanInputSchema}'s job, and it returns no vectors.
|
|
22243
|
+
*/
|
|
22244
|
+
var VectorFetchInputSchema = object({
|
|
22245
|
+
index: string(),
|
|
22246
|
+
ids: array(string())
|
|
22247
|
+
});
|
|
22248
|
+
var VectorFetchResultSchema = object({ items: array(object({
|
|
22249
|
+
id: string(),
|
|
22250
|
+
/** base64 Float32LE — the same wire form `upsert` accepts. */
|
|
22251
|
+
vector: string(),
|
|
22252
|
+
metadata: VectorMetadataSchema
|
|
22253
|
+
})) });
|
|
22254
|
+
/**
|
|
22255
|
+
* ENUMERATE an index: one page of rows in a stable order, no ranking.
|
|
22256
|
+
*
|
|
22257
|
+
* A reconcile does not want the nearest rows, it wants ALL of them, and asking
|
|
22258
|
+
* a KNN for "all" is the wrong question twice over. It hits the backend's `k`
|
|
22259
|
+
* ceiling — 4,096 on sqlite-vec against a 22,128-row index — and it needs a
|
|
22260
|
+
* probe vector it does not have, so the audit passed a ZERO vector whose cosine
|
|
22261
|
+
* distance to every row is degenerate. `examined: 4096` then read as "we
|
|
22262
|
+
* looked" for as long as anyone cared to read it.
|
|
22263
|
+
*
|
|
22264
|
+
* This is the primitive that question actually needs: a bounded page, ordered
|
|
22265
|
+
* by the backend's own row order, costing no distance computation at all.
|
|
22266
|
+
* Vectors are NOT returned — an enumeration that shipped 2 KB per row would be
|
|
22267
|
+
* the full-table read this capability was built to stop.
|
|
22268
|
+
*/
|
|
22269
|
+
var VectorScanInputSchema = object({
|
|
22270
|
+
index: string(),
|
|
22271
|
+
/** Opaque resume point. `0` starts at the top; pass back `nextCursor`. */
|
|
22272
|
+
cursor: number().int().nonnegative().default(0),
|
|
22273
|
+
limit: number().int().positive()
|
|
22274
|
+
});
|
|
22275
|
+
var VectorScanResultSchema = object({
|
|
22276
|
+
items: array(object({
|
|
22277
|
+
id: string(),
|
|
22278
|
+
metadata: VectorMetadataSchema
|
|
22279
|
+
})),
|
|
22280
|
+
/**
|
|
22281
|
+
* Where the next page starts, or `null` when the walk reached the end.
|
|
22282
|
+
*
|
|
22283
|
+
* `null` is the ONLY end-of-index signal. A caller must not infer the end
|
|
22284
|
+
* from a short page: a backend is free to return fewer rows than asked.
|
|
22285
|
+
*/
|
|
22286
|
+
nextCursor: number().int().nonnegative().nullable()
|
|
22287
|
+
});
|
|
22012
22288
|
var VectorStatsInputSchema = object({ index: string() });
|
|
22013
22289
|
var VectorStatsResultSchema = object({
|
|
22014
22290
|
/** Provider id, so an operator can tell brute force from an ANN index. */
|
|
@@ -22027,7 +22303,7 @@ method(VectorDeclareIndexInputSchema, _void(), {
|
|
|
22027
22303
|
}), method(VectorUpsertInputSchema, VectorUpsertResultSchema, {
|
|
22028
22304
|
kind: "mutation",
|
|
22029
22305
|
auth: "admin"
|
|
22030
|
-
}), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
|
|
22306
|
+
}), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorFetchInputSchema, VectorFetchResultSchema, { auth: "admin" }), method(VectorScanInputSchema, VectorScanResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
|
|
22031
22307
|
kind: "mutation",
|
|
22032
22308
|
auth: "admin"
|
|
22033
22309
|
}), method(VectorDeleteByFilterInputSchema, VectorDeleteResultSchema, {
|
|
@@ -26979,6 +27255,9 @@ method(object({
|
|
|
26979
27255
|
}), method(object({}), array(RelocateJobSchema).readonly(), {
|
|
26980
27256
|
kind: "query",
|
|
26981
27257
|
auth: "admin"
|
|
27258
|
+
}), method(RelocateResidueInputSchema, RelocateResidueSchema, {
|
|
27259
|
+
kind: "query",
|
|
27260
|
+
auth: "admin"
|
|
26982
27261
|
}), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
26983
27262
|
kind: "mutation",
|
|
26984
27263
|
auth: "admin"
|
|
@@ -31969,6 +32248,12 @@ Object.freeze({
|
|
|
31969
32248
|
addonId: null,
|
|
31970
32249
|
access: "create"
|
|
31971
32250
|
},
|
|
32251
|
+
"pipelineAnalytics.countRelocatableMedia": {
|
|
32252
|
+
capName: "pipeline-analytics",
|
|
32253
|
+
capScope: "device",
|
|
32254
|
+
addonId: null,
|
|
32255
|
+
access: "view"
|
|
32256
|
+
},
|
|
31972
32257
|
"pipelineAnalytics.countUnstampedEventMedia": {
|
|
31973
32258
|
capName: "pipeline-analytics",
|
|
31974
32259
|
capScope: "device",
|
|
@@ -33133,6 +33418,12 @@ Object.freeze({
|
|
|
33133
33418
|
addonId: null,
|
|
33134
33419
|
access: "view"
|
|
33135
33420
|
},
|
|
33421
|
+
"recording.getRelocateResidue": {
|
|
33422
|
+
capName: "recording",
|
|
33423
|
+
capScope: "system",
|
|
33424
|
+
addonId: null,
|
|
33425
|
+
access: "view"
|
|
33426
|
+
},
|
|
33136
33427
|
"recording.getStorageMigrationMoveStatus": {
|
|
33137
33428
|
capName: "recording",
|
|
33138
33429
|
capScope: "system",
|
|
@@ -33679,12 +33970,30 @@ Object.freeze({
|
|
|
33679
33970
|
addonId: null,
|
|
33680
33971
|
access: "create"
|
|
33681
33972
|
},
|
|
33973
|
+
"storageMigration.drain": {
|
|
33974
|
+
capName: "storage-migration",
|
|
33975
|
+
capScope: "system",
|
|
33976
|
+
addonId: null,
|
|
33977
|
+
access: "create"
|
|
33978
|
+
},
|
|
33979
|
+
"storageMigration.movers": {
|
|
33980
|
+
capName: "storage-migration",
|
|
33981
|
+
capScope: "system",
|
|
33982
|
+
addonId: null,
|
|
33983
|
+
access: "view"
|
|
33984
|
+
},
|
|
33682
33985
|
"storageMigration.plan": {
|
|
33683
33986
|
capName: "storage-migration",
|
|
33684
33987
|
capScope: "system",
|
|
33685
33988
|
addonId: null,
|
|
33686
33989
|
access: "view"
|
|
33687
33990
|
},
|
|
33991
|
+
"storageMigration.residue": {
|
|
33992
|
+
capName: "storage-migration",
|
|
33993
|
+
capScope: "system",
|
|
33994
|
+
addonId: null,
|
|
33995
|
+
access: "view"
|
|
33996
|
+
},
|
|
33688
33997
|
"storageMigration.start": {
|
|
33689
33998
|
capName: "storage-migration",
|
|
33690
33999
|
capScope: "system",
|
|
@@ -34519,6 +34828,12 @@ Object.freeze({
|
|
|
34519
34828
|
addonId: null,
|
|
34520
34829
|
access: "delete"
|
|
34521
34830
|
},
|
|
34831
|
+
"vectorStore.fetchByIds": {
|
|
34832
|
+
capName: "vector-store",
|
|
34833
|
+
capScope: "system",
|
|
34834
|
+
addonId: null,
|
|
34835
|
+
access: "view"
|
|
34836
|
+
},
|
|
34522
34837
|
"vectorStore.getByIds": {
|
|
34523
34838
|
capName: "vector-store",
|
|
34524
34839
|
capScope: "system",
|
|
@@ -34531,6 +34846,12 @@ Object.freeze({
|
|
|
34531
34846
|
addonId: null,
|
|
34532
34847
|
access: "view"
|
|
34533
34848
|
},
|
|
34849
|
+
"vectorStore.scan": {
|
|
34850
|
+
capName: "vector-store",
|
|
34851
|
+
capScope: "system",
|
|
34852
|
+
addonId: null,
|
|
34853
|
+
access: "view"
|
|
34854
|
+
},
|
|
34534
34855
|
"vectorStore.stats": {
|
|
34535
34856
|
capName: "vector-store",
|
|
34536
34857
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-export-hap",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.56",
|
|
4
4
|
"description": "HomeKit (HAP) exporter for CamStack devices. Publishes each exposed device as its own HomeKit accessory: cameras and doorbells with SRTP streaming, HomeKit Secure Video, motion, two-way audio, PTZ and battery; switches, lights, locks and sensors through a capability→service table.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|