@camstack/addon-pipeline-orchestrator 1.2.123 → 1.2.125

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/index.js CHANGED
@@ -9040,13 +9040,49 @@ var StorageMigrationParticipantSchema = _enum([
9040
9040
  "recorder",
9041
9041
  "analytics"
9042
9042
  ]);
9043
+ /**
9044
+ * The mover's own numbers, folded onto the coordinator's durable move record.
9045
+ *
9046
+ * The long half of a non-blocking migration is `draining`, and it is measured
9047
+ * in hours: 136 885 files at ~4 MB/s is about five of them. Before this shape
9048
+ * existed the only place those numbers appeared was a Loki line, so an operator
9049
+ * watching the Admin UI saw `phase: draining` and nothing else for a whole
9050
+ * afternoon.
9051
+ *
9052
+ * It is POLLED, never pushed. Events are telemetry and may be dropped
9053
+ * (D8/D11), and a dropped progress event is indistinguishable from a stalled
9054
+ * mover — which is the exact failure this is meant to end. The coordinator's
9055
+ * `waitForMoves` already fetches the whole {@link RelocateJob} on every tick to
9056
+ * read `state`; folding the counters costs no extra read and makes the durable
9057
+ * record say afterwards how far a move actually got.
9058
+ *
9059
+ * `filesTotal` is `null` for "no honest denominator" and is never zero-filled:
9060
+ * a windowed footage job (`sinceMs`) and a node with no ledger both genuinely
9061
+ * cannot say M, and a 0 there would render as "100 % done".
9062
+ */
9063
+ var StorageMigrationMoveProgressSchema = object({
9064
+ filesMoved: number().int().nonnegative(),
9065
+ /** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
9066
+ filesTotal: number().int().nonnegative().nullable(),
9067
+ bytesMoved: number().int().nonnegative(),
9068
+ /** The MOVER's start, not the migration's: a drain restarted after an addon
9069
+ * crash gets a new mover, and a rate computed from the migration's start
9070
+ * would silently average in the time nothing was running. */
9071
+ startedAt: number(),
9072
+ /** When the coordinator last read these numbers. Paired with `startedAt` it
9073
+ * is the only honest rate: both clocks are the hub's, so a UI never has to
9074
+ * subtract its own. */
9075
+ observedAt: number()
9076
+ });
9043
9077
  var StorageMigrationMoveSchema = object({
9044
9078
  storageClass: StorageMigrationClassSchema,
9045
9079
  fromLocationId: string(),
9046
9080
  toLocationId: string(),
9047
9081
  moverJobId: string().nullable(),
9048
9082
  state: RelocateJobStateSchema.nullable(),
9049
- error: string().nullable()
9083
+ error: string().nullable(),
9084
+ /** Last observed mover counters; `null` until the mover has been polled once. */
9085
+ progress: StorageMigrationMoveProgressSchema.nullable()
9050
9086
  });
9051
9087
  var StorageMigrationJobSchema = object({
9052
9088
  jobId: string(),
@@ -9092,6 +9128,98 @@ var StorageMigrationPlanSchema = object({
9092
9128
  findings: array(StorageMigrationFindingSchema)
9093
9129
  });
9094
9130
  /**
9131
+ * A mover as it exists RIGHT NOW, whether or not a migration job owns it.
9132
+ *
9133
+ * The coordinator's job record is the state of record for a migration, and its
9134
+ * moves carry {@link StorageMigrationMoveProgress}. But the movers are usable
9135
+ * standalone — `recording.relocateFootage` and `pipelineAnalytics.relocateMedia`
9136
+ * are both operator-callable, and on 2026-08-29 a five-hour drain was armed that
9137
+ * way because no supported UI path existed. A mover armed like that has no job
9138
+ * to fold progress into, so it has to be readable on its own or it is invisible.
9139
+ *
9140
+ * `migrationJobId` is what tells the two apart: `null` means nothing here
9141
+ * orchestrated it.
9142
+ */
9143
+ var StorageMigrationMoverSchema = object({
9144
+ lane: _enum(["footage", "media"]),
9145
+ job: RelocateJobSchema,
9146
+ /** The coordinator job that armed this mover, or `null` for a mover armed
9147
+ * directly against the owning addon. */
9148
+ migrationJobId: string().nullable(),
9149
+ /** When the hub read these counters. Stamped here so a rate is `bytesMoved`
9150
+ * over (`observedAt` − `job.startedAt`) with BOTH ends on the hub's clock —
9151
+ * a browser subtracting its own `Date.now()` from a server `startedAt` is a
9152
+ * rate made of two different clocks. */
9153
+ observedAt: number()
9154
+ });
9155
+ /**
9156
+ * What a SOURCE still holds for one storage class — the number that makes a
9157
+ * "drain remaining" action honest rather than hopeful.
9158
+ *
9159
+ * It comes from the archive (`SegmentHourLedger.census` for footage, the media
9160
+ * engine's own selection count for media), never from the resident index: a
9161
+ * drain sized off `RecordingIndex` is what reported `done` over 80.3 GB it had
9162
+ * never been told about (D295).
9163
+ *
9164
+ * `items`/`bytes` are `null` for "the archive could not be asked", which is
9165
+ * deliberately NOT zero: a drain is still offered for an unknown residue,
9166
+ * because refusing on an unanswerable read would hide exactly the case an
9167
+ * operator needs to act on.
9168
+ */
9169
+ var StorageMigrationResidueSchema = object({
9170
+ storageClass: StorageMigrationClassSchema,
9171
+ /** The location still holding the data. `'*'` for the media lane, whose rows
9172
+ * move from wherever they are rather than from one named source. */
9173
+ fromLocationId: string(),
9174
+ /** Where a drain would move it — the class's CURRENT default. */
9175
+ toLocationId: string(),
9176
+ /** Segments (footage lane) or rows (media lane) still on the source. */
9177
+ items: number().int().nonnegative().nullable(),
9178
+ /** Bytes on the source; `null` when the lane counts rows rather than bytes. */
9179
+ bytes: number().int().nonnegative().nullable()
9180
+ });
9181
+ /**
9182
+ * Run the DRAIN half and nothing else.
9183
+ *
9184
+ * A migration that reached `done` has already repointed, so `start` correctly
9185
+ * refuses its destination ("already the default") — there is nothing left to
9186
+ * repoint. But the drain can fail, be cancelled, be interrupted by a restart,
9187
+ * or finish against a work list that was a tenth of the archive (D295), and
9188
+ * before this there was no supported way to run only that half: the only way
9189
+ * through was calling `recording.relocateFootage` by hand over admin tRPC.
9190
+ *
9191
+ * `drain` NEVER calls `setDefaultLocations`. That is what keeps `start`'s
9192
+ * refusal meaningful: the two verbs are disjoint, so nothing here can silently
9193
+ * re-repoint a class that is already migrated.
9194
+ */
9195
+ var StorageMigrationDrainInputSchema = object({
9196
+ /** The classes to drain. Each must appear in `storageMigration.residue`, so
9197
+ * a class whose source is already empty is refused rather than started. */
9198
+ classes: array(StorageMigrationClassSchema).min(1),
9199
+ throttleMbps: number().min(1).max(1e3).optional()
9200
+ });
9201
+ /** What a footage source still holds, asked of the durable hour ledger. */
9202
+ var RelocateResidueInputSchema = object({
9203
+ fromLocationId: string().min(1),
9204
+ /** Narrow to one logical class; omit for every profile on the location. */
9205
+ footageClass: RelocateFootageClassSchema.optional()
9206
+ });
9207
+ /** `null` = the archive could not answer (no ledger on this node, or the
9208
+ * aggregate failed). Never conflated with an empty source. */
9209
+ var RelocateResidueSchema = object({
9210
+ segments: number().int().nonnegative(),
9211
+ bytes: number().int().nonnegative()
9212
+ }).nullable();
9213
+ /** How many rows a media pass would still act on against a given target — the
9214
+ * media lane's denominator AND its residue, from ONE derivation so the two can
9215
+ * never disagree. `null` = the count could not be taken. */
9216
+ var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
9217
+ var RelocatableMediaCountInputSchema = object({
9218
+ toLocationId: string().min(1),
9219
+ /** Omitted = `move`. */
9220
+ mode: MediaRelocateModeSchema.optional()
9221
+ });
9222
+ /**
9095
9223
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
9096
9224
  * storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
9097
9225
  * so the persisted record schema and the consumer-facing cap can both consume it
@@ -9195,6 +9323,32 @@ var StorageLocationRefSchema = union([StorageLocationTypeSchema, string().regex(
9195
9323
  * two addons declaring the same `id` must agree on `cardinality` (validated
9196
9324
  * at kernel aggregation time, not here).
9197
9325
  */
9326
+ /**
9327
+ * `StorageAccess` — how the service that DECLARED a storage-location kind
9328
+ * actually reaches the bytes. It is the constraint that decides which
9329
+ * `storage-provider`s may back a location of that kind.
9330
+ *
9331
+ * - `'local-path'` — the service asks `storage.resolve` for a path string and
9332
+ * then does its own `node:fs` I/O on it (the recorder's segment writer, the
9333
+ * post-analysis media roots). Only a provider that serves a genuine local
9334
+ * filesystem (`getProviderInfo().nodeLocal === true`) can satisfy that: a
9335
+ * remote provider's `resolve` returns a path on the REMOTE host, and
9336
+ * `fs.readdir` of it on this node either fails or — far worse — succeeds
9337
+ * against a same-named local directory that is something else entirely.
9338
+ *
9339
+ * - `'cap-mediated'` — every byte travels through the `storage` cap
9340
+ * (`read`/`write`, or `beginUpload`/`writeChunk`/`finalizeUpload`). The
9341
+ * service never sees a path, so any provider can back it. `backups` is the
9342
+ * one kind that qualifies today.
9343
+ *
9344
+ * Before this existed, `recordings` was unreachable by SFTP/S3/WebDAV only as
9345
+ * an EMERGENT property of how the recorder happened to be written. Nothing
9346
+ * refused the configuration; the first write simply went somewhere wrong, and
9347
+ * a recording write that goes wrong surfaces as a silent black window rather
9348
+ * than an error (the read path does not `stat`). This turns that accident into
9349
+ * a declared, enforced, testable refusal.
9350
+ */
9351
+ var StorageAccessSchema = _enum(["local-path", "cap-mediated"]);
9198
9352
  var StorageLocationDeclarationSchema = object({
9199
9353
  /**
9200
9354
  * Global location identifier, e.g. `recordings` or `recordingsLow`.
@@ -9214,6 +9368,19 @@ var StorageLocationDeclarationSchema = object({
9214
9368
  */
9215
9369
  cardinality: _enum(["single", "multi"]),
9216
9370
  /**
9371
+ * HOW the declaring service reaches the bytes — and therefore WHICH
9372
+ * providers may back a location of this kind. See {@link StorageAccessSchema}
9373
+ * and {@link STORAGE_ACCESS_FALLBACK}.
9374
+ *
9375
+ * Absent means `'local-path'`. That default is FAIL-CLOSED on purpose: it
9376
+ * can only over-restrict (refuse a remote provider for a kind that might
9377
+ * have coped) and never under-restrict. Declaring `'cap-mediated'` is the
9378
+ * permissive direction and is therefore never inferred — a repo guard
9379
+ * (`scripts/check-storage-access-declarations.ts`) refuses to let it be
9380
+ * reached by omission.
9381
+ */
9382
+ access: StorageAccessSchema.optional(),
9383
+ /**
9217
9384
  * When set, the default instance for this location inherits its resolved
9218
9385
  * root from the named location's default instance. Useful for derivative
9219
9386
  * slots (e.g. `recordingsLow` → `recordings`) so operators only need to
@@ -19042,8 +19209,10 @@ var TrackSchema = object({
19042
19209
  lastSeen: number(),
19043
19210
  /** Frame-rate position history (subject to maxPositionHistory cap). */
19044
19211
  positions: array(TrackPositionSchema).readonly(),
19045
- /** Periodic snapshots at snapshotIntervalMs cadence (subject to
19046
- * saveThumbnails policy). */
19212
+ /** Periodic snapshots at snapshotIntervalMs cadence DEBUG media, produced
19213
+ * only while `MediaSettings.debugMediaEnabled` is on for the camera (D299;
19214
+ * the retired `saveThumbnails` used to gate this and the rolling
19215
+ * `lastFrame` together). Empty is the healthy default, not a capture gap. */
19047
19216
  snapshots: array(TrackSnapshotSchema).readonly(),
19048
19217
  /** Deduplicated zones the track has entered at least once. Zone IDS. */
19049
19218
  zonesVisited: array(string()).readonly(),
@@ -19903,7 +20072,10 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
19903
20072
  }), method(RelocateMediaInputSchema, object({ jobId: string() }), {
19904
20073
  kind: "mutation",
19905
20074
  auth: "admin"
19906
- }), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(object({}), array(RelocateJobSchema).readonly(), {
20075
+ }), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, {
20076
+ kind: "query",
20077
+ auth: "admin"
20078
+ }), method(object({}), array(RelocateJobSchema).readonly(), {
19907
20079
  kind: "query",
19908
20080
  auth: "admin"
19909
20081
  }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
@@ -22343,6 +22515,9 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
22343
22515
  }), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
22344
22516
  kind: "mutation",
22345
22517
  auth: "admin"
22518
+ }), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
22519
+ kind: "mutation",
22520
+ auth: "admin"
22346
22521
  });
22347
22522
  var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
22348
22523
  providerId: string().min(1),
@@ -22741,12 +22916,38 @@ response: record(string(), unknown()) }), object({
22741
22916
  *
22742
22917
  * ## Why this is a capability and not a helper
22743
22918
  *
22744
- * Six stores in `addon-post-analysis` already hold vectors object CLIP, face,
22745
- * plate, vehicle, identity, and the event store's derivativesand every one of
22746
- * them keeps its vectors in a `JSON` settings-store column and ranks them by
22747
- * brute-force cosine in JS. Measured on the live hub that costs ~11.7 KB per row
22748
- * (512 floats as TEXT, `JSON.parse`d on every search) and made semantic search
22749
- * load 5,000 rows before ranking anything.
22919
+ * This capability was introduced with the claim that SIX stores in
22920
+ * `addon-post-analysis` held vectors in a `JSON` settings-store columnobject
22921
+ * CLIP, face, plate, vehicle, identity, and the event store's derivatives. That
22922
+ * claim was never true, and leaving it here made five stores look like pending
22923
+ * work when three of them have no vector at all. Counted column by column on
22924
+ * 2026-08-30, exactly THREE ever held one:
22925
+ *
22926
+ * - `object-clip` — 512-dim CLIP image embedding, migrated 2026-08-06.
22927
+ * - `faces.embedding` — 512-dim ArcFace face embedding, migrated 2026-08-30.
22928
+ * - `identity-samples.embedding` — the same ArcFace vector for an ENROLLED
22929
+ * face, migrated 2026-08-30 into its OWN index (see below).
22930
+ *
22931
+ * `plates` and `vehicle-samples` store a plate STRING and a score; `vehicles`
22932
+ * and `identities` store a name; the event store stores no derivative vector.
22933
+ * They are not migration candidates and never were.
22934
+ *
22935
+ * Measured on the live hub the JSON encoding cost ~11.7 KB per row (512 floats
22936
+ * as TEXT, `JSON.parse`d on every search) and made semantic search load 5,000
22937
+ * rows before ranking anything.
22938
+ *
22939
+ * ## One index per COMPARISON, never per encoder
22940
+ *
22941
+ * `faces` and `identity-samples` hold the same 512 ArcFace dims from the same
22942
+ * model, and they still get two indexes. An index is a set of things that are
22943
+ * ranked against each other and that live and die together, and these two are
22944
+ * neither: a `faces` row is TRACK-OWNED and cascades away with its track under
22945
+ * a per-camera capacity cap, an `identity-samples` row is retention-EXEMPT
22946
+ * forever and is the gallery every recognition ranks against. One index would
22947
+ * mean every gallery load and every reconcile carried a filter whose failure
22948
+ * mode is either ranking a candidate against itself or reclaiming an enrolled
22949
+ * person's only sample. The dimension they share is not a reason to share an
22950
+ * index; the question they answer is, and it differs.
22750
22951
  *
22751
22952
  * The fix is not a faster loop, it is a different backend — and the backend
22752
22953
  * should be replaceable without touching six callers. So: a singleton
@@ -22851,7 +23052,20 @@ var VectorQueryResultSchema = object({
22851
23052
  */
22852
23053
  scanned: number(),
22853
23054
  /** True when the backend could not consider every row that passed the filter. */
22854
- truncated: boolean()
23055
+ truncated: boolean(),
23056
+ /**
23057
+ * The `topK` the backend actually ran with.
23058
+ *
23059
+ * Every backend has a ceiling — sqlite-vec's is 4,096 — and a caller asking
23060
+ * past it used to learn nothing but a boolean, from a WARN in the provider's
23061
+ * own log rather than in its answer. That is how an audit asking for 20,000
23062
+ * consumed 4,096 and reported `examined: 4096` as if it had walked the index,
23063
+ * for weeks. `truncated` says THAT the answer was short; this says BY HOW
23064
+ * MUCH, in the return value, where the caller cannot fail to see it.
23065
+ *
23066
+ * Equals the requested `topK` whenever nothing was lowered.
23067
+ */
23068
+ effectiveTopK: number().int().positive()
22855
23069
  });
22856
23070
  var VectorDeleteInputSchema = object({
22857
23071
  index: string(),
@@ -22880,6 +23094,68 @@ var VectorGetResultSchema = object({ items: array(object({
22880
23094
  id: string(),
22881
23095
  metadata: VectorMetadataSchema
22882
23096
  })) });
23097
+ /**
23098
+ * Ids to read back WITH their vectors.
23099
+ *
23100
+ * The sibling of {@link VectorGetResultSchema}, and deliberately a separate
23101
+ * method rather than a flag on it: `getByIds` promises no vectors and its one
23102
+ * caller depends on that promise. This one promises the opposite.
23103
+ *
23104
+ * It exists because a store cannot put its vectors here otherwise. An ArcFace
23105
+ * gallery is ranked IN PROCESS, per detection, against every enrolled sample —
23106
+ * a per-face cross-process KNN would be a network round trip inside the
23107
+ * recognition loop. So the gallery is loaded once and held in RAM, and loading
23108
+ * it requires the index to hand the floats back. Without this method the only
23109
+ * way to keep a readable vector is a JSON column, which is the thing this
23110
+ * capability exists to delete.
23111
+ *
23112
+ * BOUNDED BY THE CALLER: ids are named, never "everything". Enumerating an
23113
+ * index is {@link VectorScanInputSchema}'s job, and it returns no vectors.
23114
+ */
23115
+ var VectorFetchInputSchema = object({
23116
+ index: string(),
23117
+ ids: array(string())
23118
+ });
23119
+ var VectorFetchResultSchema = object({ items: array(object({
23120
+ id: string(),
23121
+ /** base64 Float32LE — the same wire form `upsert` accepts. */
23122
+ vector: string(),
23123
+ metadata: VectorMetadataSchema
23124
+ })) });
23125
+ /**
23126
+ * ENUMERATE an index: one page of rows in a stable order, no ranking.
23127
+ *
23128
+ * A reconcile does not want the nearest rows, it wants ALL of them, and asking
23129
+ * a KNN for "all" is the wrong question twice over. It hits the backend's `k`
23130
+ * ceiling — 4,096 on sqlite-vec against a 22,128-row index — and it needs a
23131
+ * probe vector it does not have, so the audit passed a ZERO vector whose cosine
23132
+ * distance to every row is degenerate. `examined: 4096` then read as "we
23133
+ * looked" for as long as anyone cared to read it.
23134
+ *
23135
+ * This is the primitive that question actually needs: a bounded page, ordered
23136
+ * by the backend's own row order, costing no distance computation at all.
23137
+ * Vectors are NOT returned — an enumeration that shipped 2 KB per row would be
23138
+ * the full-table read this capability was built to stop.
23139
+ */
23140
+ var VectorScanInputSchema = object({
23141
+ index: string(),
23142
+ /** Opaque resume point. `0` starts at the top; pass back `nextCursor`. */
23143
+ cursor: number().int().nonnegative().default(0),
23144
+ limit: number().int().positive()
23145
+ });
23146
+ var VectorScanResultSchema = object({
23147
+ items: array(object({
23148
+ id: string(),
23149
+ metadata: VectorMetadataSchema
23150
+ })),
23151
+ /**
23152
+ * Where the next page starts, or `null` when the walk reached the end.
23153
+ *
23154
+ * `null` is the ONLY end-of-index signal. A caller must not infer the end
23155
+ * from a short page: a backend is free to return fewer rows than asked.
23156
+ */
23157
+ nextCursor: number().int().nonnegative().nullable()
23158
+ });
22883
23159
  var VectorStatsInputSchema = object({ index: string() });
22884
23160
  var VectorStatsResultSchema = object({
22885
23161
  /** Provider id, so an operator can tell brute force from an ANN index. */
@@ -22898,7 +23174,7 @@ method(VectorDeclareIndexInputSchema, _void(), {
22898
23174
  }), method(VectorUpsertInputSchema, VectorUpsertResultSchema, {
22899
23175
  kind: "mutation",
22900
23176
  auth: "admin"
22901
- }), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
23177
+ }), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorFetchInputSchema, VectorFetchResultSchema, { auth: "admin" }), method(VectorScanInputSchema, VectorScanResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
22902
23178
  kind: "mutation",
22903
23179
  auth: "admin"
22904
23180
  }), method(VectorDeleteByFilterInputSchema, VectorDeleteResultSchema, {
@@ -27802,6 +28078,9 @@ method(object({
27802
28078
  }), method(object({}), array(RelocateJobSchema).readonly(), {
27803
28079
  kind: "query",
27804
28080
  auth: "admin"
28081
+ }), method(RelocateResidueInputSchema, RelocateResidueSchema, {
28082
+ kind: "query",
28083
+ auth: "admin"
27805
28084
  }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
27806
28085
  kind: "mutation",
27807
28086
  auth: "admin"
@@ -32851,6 +33130,12 @@ Object.freeze({
32851
33130
  addonId: null,
32852
33131
  access: "create"
32853
33132
  },
33133
+ "pipelineAnalytics.countRelocatableMedia": {
33134
+ capName: "pipeline-analytics",
33135
+ capScope: "device",
33136
+ addonId: null,
33137
+ access: "view"
33138
+ },
32854
33139
  "pipelineAnalytics.countUnstampedEventMedia": {
32855
33140
  capName: "pipeline-analytics",
32856
33141
  capScope: "device",
@@ -34015,6 +34300,12 @@ Object.freeze({
34015
34300
  addonId: null,
34016
34301
  access: "view"
34017
34302
  },
34303
+ "recording.getRelocateResidue": {
34304
+ capName: "recording",
34305
+ capScope: "system",
34306
+ addonId: null,
34307
+ access: "view"
34308
+ },
34018
34309
  "recording.getStorageMigrationMoveStatus": {
34019
34310
  capName: "recording",
34020
34311
  capScope: "system",
@@ -34561,12 +34852,30 @@ Object.freeze({
34561
34852
  addonId: null,
34562
34853
  access: "create"
34563
34854
  },
34855
+ "storageMigration.drain": {
34856
+ capName: "storage-migration",
34857
+ capScope: "system",
34858
+ addonId: null,
34859
+ access: "create"
34860
+ },
34861
+ "storageMigration.movers": {
34862
+ capName: "storage-migration",
34863
+ capScope: "system",
34864
+ addonId: null,
34865
+ access: "view"
34866
+ },
34564
34867
  "storageMigration.plan": {
34565
34868
  capName: "storage-migration",
34566
34869
  capScope: "system",
34567
34870
  addonId: null,
34568
34871
  access: "view"
34569
34872
  },
34873
+ "storageMigration.residue": {
34874
+ capName: "storage-migration",
34875
+ capScope: "system",
34876
+ addonId: null,
34877
+ access: "view"
34878
+ },
34570
34879
  "storageMigration.start": {
34571
34880
  capName: "storage-migration",
34572
34881
  capScope: "system",
@@ -35401,6 +35710,12 @@ Object.freeze({
35401
35710
  addonId: null,
35402
35711
  access: "delete"
35403
35712
  },
35713
+ "vectorStore.fetchByIds": {
35714
+ capName: "vector-store",
35715
+ capScope: "system",
35716
+ addonId: null,
35717
+ access: "view"
35718
+ },
35404
35719
  "vectorStore.getByIds": {
35405
35720
  capName: "vector-store",
35406
35721
  capScope: "system",
@@ -35413,6 +35728,12 @@ Object.freeze({
35413
35728
  addonId: null,
35414
35729
  access: "view"
35415
35730
  },
35731
+ "vectorStore.scan": {
35732
+ capName: "vector-store",
35733
+ capScope: "system",
35734
+ addonId: null,
35735
+ access: "view"
35736
+ },
35416
35737
  "vectorStore.stats": {
35417
35738
  capName: "vector-store",
35418
35739
  capScope: "system",