@camstack/addon-model-studio 1.1.59 → 1.1.62

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.
Files changed (17) hide show
  1. package/dist/{MotionZonesSettings-Bd4XXu93.mjs → MotionZonesSettings-Bs3JGKkN.mjs} +2 -2
  2. package/dist/{PrivacyMaskSettings-u5iEsuzJ.mjs → PrivacyMaskSettings-CKY_Zd76.mjs} +4 -4
  3. package/dist/{SceneMonitorEditor-HzwpY3Jf.mjs → SceneMonitorEditor-O2nnwm0s.mjs} +3 -3
  4. package/dist/_stub.js +10 -10
  5. package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-CegGwSfe.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-DWs1_4xY.mjs} +4 -4
  6. package/dist/{_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DLxM_aHR.mjs → _virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Ch9nSO9i.mjs} +1 -1
  7. package/dist/{hostInit-DyZ75O1o.mjs → hostInit-JUNzADlm.mjs} +3 -3
  8. package/dist/model-studio.addon.js +333 -12
  9. package/dist/model-studio.addon.mjs +333 -12
  10. package/dist/{player-overlays-DBw7cP5Q.mjs → player-overlays-CEwcewTI.mjs} +1 -1
  11. package/dist/remoteEntry.js +1 -1
  12. package/dist/{responsive-BYjuH3Vm.mjs → responsive-CUUfCGVt.mjs} +1 -1
  13. package/dist/{square-DdqOJGrs.mjs → square-tBwuj1tn.mjs} +1 -1
  14. package/dist/{trash-2-4d9LA9Gd.mjs → trash-2-Bu1QShSc.mjs} +1 -1
  15. package/dist/{use-device-snapshot-CmiKvu6l.mjs → use-device-snapshot-D86u2wfz.mjs} +1 -1
  16. package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-CI68GRdZ.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-DW2n6IfQ.mjs} +1 -1
  17. package/package.json +1 -1
@@ -8731,13 +8731,49 @@ var StorageMigrationParticipantSchema = _enum([
8731
8731
  "recorder",
8732
8732
  "analytics"
8733
8733
  ]);
8734
+ /**
8735
+ * The mover's own numbers, folded onto the coordinator's durable move record.
8736
+ *
8737
+ * The long half of a non-blocking migration is `draining`, and it is measured
8738
+ * in hours: 136 885 files at ~4 MB/s is about five of them. Before this shape
8739
+ * existed the only place those numbers appeared was a Loki line, so an operator
8740
+ * watching the Admin UI saw `phase: draining` and nothing else for a whole
8741
+ * afternoon.
8742
+ *
8743
+ * It is POLLED, never pushed. Events are telemetry and may be dropped
8744
+ * (D8/D11), and a dropped progress event is indistinguishable from a stalled
8745
+ * mover — which is the exact failure this is meant to end. The coordinator's
8746
+ * `waitForMoves` already fetches the whole {@link RelocateJob} on every tick to
8747
+ * read `state`; folding the counters costs no extra read and makes the durable
8748
+ * record say afterwards how far a move actually got.
8749
+ *
8750
+ * `filesTotal` is `null` for "no honest denominator" and is never zero-filled:
8751
+ * a windowed footage job (`sinceMs`) and a node with no ledger both genuinely
8752
+ * cannot say M, and a 0 there would render as "100 % done".
8753
+ */
8754
+ var StorageMigrationMoveProgressSchema = object({
8755
+ filesMoved: number().int().nonnegative(),
8756
+ /** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
8757
+ filesTotal: number().int().nonnegative().nullable(),
8758
+ bytesMoved: number().int().nonnegative(),
8759
+ /** The MOVER's start, not the migration's: a drain restarted after an addon
8760
+ * crash gets a new mover, and a rate computed from the migration's start
8761
+ * would silently average in the time nothing was running. */
8762
+ startedAt: number(),
8763
+ /** When the coordinator last read these numbers. Paired with `startedAt` it
8764
+ * is the only honest rate: both clocks are the hub's, so a UI never has to
8765
+ * subtract its own. */
8766
+ observedAt: number()
8767
+ });
8734
8768
  var StorageMigrationMoveSchema = object({
8735
8769
  storageClass: StorageMigrationClassSchema,
8736
8770
  fromLocationId: string(),
8737
8771
  toLocationId: string(),
8738
8772
  moverJobId: string().nullable(),
8739
8773
  state: RelocateJobStateSchema.nullable(),
8740
- error: string().nullable()
8774
+ error: string().nullable(),
8775
+ /** Last observed mover counters; `null` until the mover has been polled once. */
8776
+ progress: StorageMigrationMoveProgressSchema.nullable()
8741
8777
  });
8742
8778
  var StorageMigrationJobSchema = object({
8743
8779
  jobId: string(),
@@ -8783,6 +8819,98 @@ var StorageMigrationPlanSchema = object({
8783
8819
  findings: array(StorageMigrationFindingSchema)
8784
8820
  });
8785
8821
  /**
8822
+ * A mover as it exists RIGHT NOW, whether or not a migration job owns it.
8823
+ *
8824
+ * The coordinator's job record is the state of record for a migration, and its
8825
+ * moves carry {@link StorageMigrationMoveProgress}. But the movers are usable
8826
+ * standalone — `recording.relocateFootage` and `pipelineAnalytics.relocateMedia`
8827
+ * are both operator-callable, and on 2026-08-29 a five-hour drain was armed that
8828
+ * way because no supported UI path existed. A mover armed like that has no job
8829
+ * to fold progress into, so it has to be readable on its own or it is invisible.
8830
+ *
8831
+ * `migrationJobId` is what tells the two apart: `null` means nothing here
8832
+ * orchestrated it.
8833
+ */
8834
+ var StorageMigrationMoverSchema = object({
8835
+ lane: _enum(["footage", "media"]),
8836
+ job: RelocateJobSchema,
8837
+ /** The coordinator job that armed this mover, or `null` for a mover armed
8838
+ * directly against the owning addon. */
8839
+ migrationJobId: string().nullable(),
8840
+ /** When the hub read these counters. Stamped here so a rate is `bytesMoved`
8841
+ * over (`observedAt` − `job.startedAt`) with BOTH ends on the hub's clock —
8842
+ * a browser subtracting its own `Date.now()` from a server `startedAt` is a
8843
+ * rate made of two different clocks. */
8844
+ observedAt: number()
8845
+ });
8846
+ /**
8847
+ * What a SOURCE still holds for one storage class — the number that makes a
8848
+ * "drain remaining" action honest rather than hopeful.
8849
+ *
8850
+ * It comes from the archive (`SegmentHourLedger.census` for footage, the media
8851
+ * engine's own selection count for media), never from the resident index: a
8852
+ * drain sized off `RecordingIndex` is what reported `done` over 80.3 GB it had
8853
+ * never been told about (D295).
8854
+ *
8855
+ * `items`/`bytes` are `null` for "the archive could not be asked", which is
8856
+ * deliberately NOT zero: a drain is still offered for an unknown residue,
8857
+ * because refusing on an unanswerable read would hide exactly the case an
8858
+ * operator needs to act on.
8859
+ */
8860
+ var StorageMigrationResidueSchema = object({
8861
+ storageClass: StorageMigrationClassSchema,
8862
+ /** The location still holding the data. `'*'` for the media lane, whose rows
8863
+ * move from wherever they are rather than from one named source. */
8864
+ fromLocationId: string(),
8865
+ /** Where a drain would move it — the class's CURRENT default. */
8866
+ toLocationId: string(),
8867
+ /** Segments (footage lane) or rows (media lane) still on the source. */
8868
+ items: number().int().nonnegative().nullable(),
8869
+ /** Bytes on the source; `null` when the lane counts rows rather than bytes. */
8870
+ bytes: number().int().nonnegative().nullable()
8871
+ });
8872
+ /**
8873
+ * Run the DRAIN half and nothing else.
8874
+ *
8875
+ * A migration that reached `done` has already repointed, so `start` correctly
8876
+ * refuses its destination ("already the default") — there is nothing left to
8877
+ * repoint. But the drain can fail, be cancelled, be interrupted by a restart,
8878
+ * or finish against a work list that was a tenth of the archive (D295), and
8879
+ * before this there was no supported way to run only that half: the only way
8880
+ * through was calling `recording.relocateFootage` by hand over admin tRPC.
8881
+ *
8882
+ * `drain` NEVER calls `setDefaultLocations`. That is what keeps `start`'s
8883
+ * refusal meaningful: the two verbs are disjoint, so nothing here can silently
8884
+ * re-repoint a class that is already migrated.
8885
+ */
8886
+ var StorageMigrationDrainInputSchema = object({
8887
+ /** The classes to drain. Each must appear in `storageMigration.residue`, so
8888
+ * a class whose source is already empty is refused rather than started. */
8889
+ classes: array(StorageMigrationClassSchema).min(1),
8890
+ throttleMbps: number().min(1).max(1e3).optional()
8891
+ });
8892
+ /** What a footage source still holds, asked of the durable hour ledger. */
8893
+ var RelocateResidueInputSchema = object({
8894
+ fromLocationId: string().min(1),
8895
+ /** Narrow to one logical class; omit for every profile on the location. */
8896
+ footageClass: RelocateFootageClassSchema.optional()
8897
+ });
8898
+ /** `null` = the archive could not answer (no ledger on this node, or the
8899
+ * aggregate failed). Never conflated with an empty source. */
8900
+ var RelocateResidueSchema = object({
8901
+ segments: number().int().nonnegative(),
8902
+ bytes: number().int().nonnegative()
8903
+ }).nullable();
8904
+ /** How many rows a media pass would still act on against a given target — the
8905
+ * media lane's denominator AND its residue, from ONE derivation so the two can
8906
+ * never disagree. `null` = the count could not be taken. */
8907
+ var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
8908
+ var RelocatableMediaCountInputSchema = object({
8909
+ toLocationId: string().min(1),
8910
+ /** Omitted = `move`. */
8911
+ mode: MediaRelocateModeSchema.optional()
8912
+ });
8913
+ /**
8786
8914
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
8787
8915
  * storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
8788
8916
  * so the persisted record schema and the consumer-facing cap can both consume it
@@ -8886,6 +9014,32 @@ var StorageLocationRefSchema = union([StorageLocationTypeSchema, string().regex(
8886
9014
  * two addons declaring the same `id` must agree on `cardinality` (validated
8887
9015
  * at kernel aggregation time, not here).
8888
9016
  */
9017
+ /**
9018
+ * `StorageAccess` — how the service that DECLARED a storage-location kind
9019
+ * actually reaches the bytes. It is the constraint that decides which
9020
+ * `storage-provider`s may back a location of that kind.
9021
+ *
9022
+ * - `'local-path'` — the service asks `storage.resolve` for a path string and
9023
+ * then does its own `node:fs` I/O on it (the recorder's segment writer, the
9024
+ * post-analysis media roots). Only a provider that serves a genuine local
9025
+ * filesystem (`getProviderInfo().nodeLocal === true`) can satisfy that: a
9026
+ * remote provider's `resolve` returns a path on the REMOTE host, and
9027
+ * `fs.readdir` of it on this node either fails or — far worse — succeeds
9028
+ * against a same-named local directory that is something else entirely.
9029
+ *
9030
+ * - `'cap-mediated'` — every byte travels through the `storage` cap
9031
+ * (`read`/`write`, or `beginUpload`/`writeChunk`/`finalizeUpload`). The
9032
+ * service never sees a path, so any provider can back it. `backups` is the
9033
+ * one kind that qualifies today.
9034
+ *
9035
+ * Before this existed, `recordings` was unreachable by SFTP/S3/WebDAV only as
9036
+ * an EMERGENT property of how the recorder happened to be written. Nothing
9037
+ * refused the configuration; the first write simply went somewhere wrong, and
9038
+ * a recording write that goes wrong surfaces as a silent black window rather
9039
+ * than an error (the read path does not `stat`). This turns that accident into
9040
+ * a declared, enforced, testable refusal.
9041
+ */
9042
+ var StorageAccessSchema = _enum(["local-path", "cap-mediated"]);
8889
9043
  var StorageLocationDeclarationSchema = object({
8890
9044
  /**
8891
9045
  * Global location identifier, e.g. `recordings` or `recordingsLow`.
@@ -8905,6 +9059,19 @@ var StorageLocationDeclarationSchema = object({
8905
9059
  */
8906
9060
  cardinality: _enum(["single", "multi"]),
8907
9061
  /**
9062
+ * HOW the declaring service reaches the bytes — and therefore WHICH
9063
+ * providers may back a location of this kind. See {@link StorageAccessSchema}
9064
+ * and {@link STORAGE_ACCESS_FALLBACK}.
9065
+ *
9066
+ * Absent means `'local-path'`. That default is FAIL-CLOSED on purpose: it
9067
+ * can only over-restrict (refuse a remote provider for a kind that might
9068
+ * have coped) and never under-restrict. Declaring `'cap-mediated'` is the
9069
+ * permissive direction and is therefore never inferred — a repo guard
9070
+ * (`scripts/check-storage-access-declarations.ts`) refuses to let it be
9071
+ * reached by omission.
9072
+ */
9073
+ access: StorageAccessSchema.optional(),
9074
+ /**
8908
9075
  * When set, the default instance for this location inherits its resolved
8909
9076
  * root from the named location's default instance. Useful for derivative
8910
9077
  * slots (e.g. `recordingsLow` → `recordings`) so operators only need to
@@ -18492,8 +18659,10 @@ var TrackSchema = object({
18492
18659
  lastSeen: number(),
18493
18660
  /** Frame-rate position history (subject to maxPositionHistory cap). */
18494
18661
  positions: array(TrackPositionSchema).readonly(),
18495
- /** Periodic snapshots at snapshotIntervalMs cadence (subject to
18496
- * saveThumbnails policy). */
18662
+ /** Periodic snapshots at snapshotIntervalMs cadence DEBUG media, produced
18663
+ * only while `MediaSettings.debugMediaEnabled` is on for the camera (D299;
18664
+ * the retired `saveThumbnails` used to gate this and the rolling
18665
+ * `lastFrame` together). Empty is the healthy default, not a capture gap. */
18497
18666
  snapshots: array(TrackSnapshotSchema).readonly(),
18498
18667
  /** Deduplicated zones the track has entered at least once. Zone IDS. */
18499
18668
  zonesVisited: array(string()).readonly(),
@@ -19353,7 +19522,10 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
19353
19522
  }), method(RelocateMediaInputSchema, object({ jobId: string() }), {
19354
19523
  kind: "mutation",
19355
19524
  auth: "admin"
19356
- }), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(object({}), array(RelocateJobSchema).readonly(), {
19525
+ }), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, {
19526
+ kind: "query",
19527
+ auth: "admin"
19528
+ }), method(object({}), array(RelocateJobSchema).readonly(), {
19357
19529
  kind: "query",
19358
19530
  auth: "admin"
19359
19531
  }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
@@ -21312,6 +21484,9 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
21312
21484
  }), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
21313
21485
  kind: "mutation",
21314
21486
  auth: "admin"
21487
+ }), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
21488
+ kind: "mutation",
21489
+ auth: "admin"
21315
21490
  });
21316
21491
  var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
21317
21492
  providerId: string().min(1),
@@ -21710,12 +21885,38 @@ response: record(string(), unknown()) }), object({
21710
21885
  *
21711
21886
  * ## Why this is a capability and not a helper
21712
21887
  *
21713
- * Six stores in `addon-post-analysis` already hold vectors object CLIP, face,
21714
- * plate, vehicle, identity, and the event store's derivativesand every one of
21715
- * them keeps its vectors in a `JSON` settings-store column and ranks them by
21716
- * brute-force cosine in JS. Measured on the live hub that costs ~11.7 KB per row
21717
- * (512 floats as TEXT, `JSON.parse`d on every search) and made semantic search
21718
- * load 5,000 rows before ranking anything.
21888
+ * This capability was introduced with the claim that SIX stores in
21889
+ * `addon-post-analysis` held vectors in a `JSON` settings-store columnobject
21890
+ * CLIP, face, plate, vehicle, identity, and the event store's derivatives. That
21891
+ * claim was never true, and leaving it here made five stores look like pending
21892
+ * work when three of them have no vector at all. Counted column by column on
21893
+ * 2026-08-30, exactly THREE ever held one:
21894
+ *
21895
+ * - `object-clip` — 512-dim CLIP image embedding, migrated 2026-08-06.
21896
+ * - `faces.embedding` — 512-dim ArcFace face embedding, migrated 2026-08-30.
21897
+ * - `identity-samples.embedding` — the same ArcFace vector for an ENROLLED
21898
+ * face, migrated 2026-08-30 into its OWN index (see below).
21899
+ *
21900
+ * `plates` and `vehicle-samples` store a plate STRING and a score; `vehicles`
21901
+ * and `identities` store a name; the event store stores no derivative vector.
21902
+ * They are not migration candidates and never were.
21903
+ *
21904
+ * Measured on the live hub the JSON encoding cost ~11.7 KB per row (512 floats
21905
+ * as TEXT, `JSON.parse`d on every search) and made semantic search load 5,000
21906
+ * rows before ranking anything.
21907
+ *
21908
+ * ## One index per COMPARISON, never per encoder
21909
+ *
21910
+ * `faces` and `identity-samples` hold the same 512 ArcFace dims from the same
21911
+ * model, and they still get two indexes. An index is a set of things that are
21912
+ * ranked against each other and that live and die together, and these two are
21913
+ * neither: a `faces` row is TRACK-OWNED and cascades away with its track under
21914
+ * a per-camera capacity cap, an `identity-samples` row is retention-EXEMPT
21915
+ * forever and is the gallery every recognition ranks against. One index would
21916
+ * mean every gallery load and every reconcile carried a filter whose failure
21917
+ * mode is either ranking a candidate against itself or reclaiming an enrolled
21918
+ * person's only sample. The dimension they share is not a reason to share an
21919
+ * index; the question they answer is, and it differs.
21719
21920
  *
21720
21921
  * The fix is not a faster loop, it is a different backend — and the backend
21721
21922
  * should be replaceable without touching six callers. So: a singleton
@@ -21820,7 +22021,20 @@ var VectorQueryResultSchema = object({
21820
22021
  */
21821
22022
  scanned: number(),
21822
22023
  /** True when the backend could not consider every row that passed the filter. */
21823
- truncated: boolean()
22024
+ truncated: boolean(),
22025
+ /**
22026
+ * The `topK` the backend actually ran with.
22027
+ *
22028
+ * Every backend has a ceiling — sqlite-vec's is 4,096 — and a caller asking
22029
+ * past it used to learn nothing but a boolean, from a WARN in the provider's
22030
+ * own log rather than in its answer. That is how an audit asking for 20,000
22031
+ * consumed 4,096 and reported `examined: 4096` as if it had walked the index,
22032
+ * for weeks. `truncated` says THAT the answer was short; this says BY HOW
22033
+ * MUCH, in the return value, where the caller cannot fail to see it.
22034
+ *
22035
+ * Equals the requested `topK` whenever nothing was lowered.
22036
+ */
22037
+ effectiveTopK: number().int().positive()
21824
22038
  });
21825
22039
  var VectorDeleteInputSchema = object({
21826
22040
  index: string(),
@@ -21849,6 +22063,68 @@ var VectorGetResultSchema = object({ items: array(object({
21849
22063
  id: string(),
21850
22064
  metadata: VectorMetadataSchema
21851
22065
  })) });
22066
+ /**
22067
+ * Ids to read back WITH their vectors.
22068
+ *
22069
+ * The sibling of {@link VectorGetResultSchema}, and deliberately a separate
22070
+ * method rather than a flag on it: `getByIds` promises no vectors and its one
22071
+ * caller depends on that promise. This one promises the opposite.
22072
+ *
22073
+ * It exists because a store cannot put its vectors here otherwise. An ArcFace
22074
+ * gallery is ranked IN PROCESS, per detection, against every enrolled sample —
22075
+ * a per-face cross-process KNN would be a network round trip inside the
22076
+ * recognition loop. So the gallery is loaded once and held in RAM, and loading
22077
+ * it requires the index to hand the floats back. Without this method the only
22078
+ * way to keep a readable vector is a JSON column, which is the thing this
22079
+ * capability exists to delete.
22080
+ *
22081
+ * BOUNDED BY THE CALLER: ids are named, never "everything". Enumerating an
22082
+ * index is {@link VectorScanInputSchema}'s job, and it returns no vectors.
22083
+ */
22084
+ var VectorFetchInputSchema = object({
22085
+ index: string(),
22086
+ ids: array(string())
22087
+ });
22088
+ var VectorFetchResultSchema = object({ items: array(object({
22089
+ id: string(),
22090
+ /** base64 Float32LE — the same wire form `upsert` accepts. */
22091
+ vector: string(),
22092
+ metadata: VectorMetadataSchema
22093
+ })) });
22094
+ /**
22095
+ * ENUMERATE an index: one page of rows in a stable order, no ranking.
22096
+ *
22097
+ * A reconcile does not want the nearest rows, it wants ALL of them, and asking
22098
+ * a KNN for "all" is the wrong question twice over. It hits the backend's `k`
22099
+ * ceiling — 4,096 on sqlite-vec against a 22,128-row index — and it needs a
22100
+ * probe vector it does not have, so the audit passed a ZERO vector whose cosine
22101
+ * distance to every row is degenerate. `examined: 4096` then read as "we
22102
+ * looked" for as long as anyone cared to read it.
22103
+ *
22104
+ * This is the primitive that question actually needs: a bounded page, ordered
22105
+ * by the backend's own row order, costing no distance computation at all.
22106
+ * Vectors are NOT returned — an enumeration that shipped 2 KB per row would be
22107
+ * the full-table read this capability was built to stop.
22108
+ */
22109
+ var VectorScanInputSchema = object({
22110
+ index: string(),
22111
+ /** Opaque resume point. `0` starts at the top; pass back `nextCursor`. */
22112
+ cursor: number().int().nonnegative().default(0),
22113
+ limit: number().int().positive()
22114
+ });
22115
+ var VectorScanResultSchema = object({
22116
+ items: array(object({
22117
+ id: string(),
22118
+ metadata: VectorMetadataSchema
22119
+ })),
22120
+ /**
22121
+ * Where the next page starts, or `null` when the walk reached the end.
22122
+ *
22123
+ * `null` is the ONLY end-of-index signal. A caller must not infer the end
22124
+ * from a short page: a backend is free to return fewer rows than asked.
22125
+ */
22126
+ nextCursor: number().int().nonnegative().nullable()
22127
+ });
21852
22128
  var VectorStatsInputSchema = object({ index: string() });
21853
22129
  var VectorStatsResultSchema = object({
21854
22130
  /** Provider id, so an operator can tell brute force from an ANN index. */
@@ -21867,7 +22143,7 @@ method(VectorDeclareIndexInputSchema, _void(), {
21867
22143
  }), method(VectorUpsertInputSchema, VectorUpsertResultSchema, {
21868
22144
  kind: "mutation",
21869
22145
  auth: "admin"
21870
- }), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
22146
+ }), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorFetchInputSchema, VectorFetchResultSchema, { auth: "admin" }), method(VectorScanInputSchema, VectorScanResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
21871
22147
  kind: "mutation",
21872
22148
  auth: "admin"
21873
22149
  }), method(VectorDeleteByFilterInputSchema, VectorDeleteResultSchema, {
@@ -26771,6 +27047,9 @@ method(object({
26771
27047
  }), method(object({}), array(RelocateJobSchema).readonly(), {
26772
27048
  kind: "query",
26773
27049
  auth: "admin"
27050
+ }), method(RelocateResidueInputSchema, RelocateResidueSchema, {
27051
+ kind: "query",
27052
+ auth: "admin"
26774
27053
  }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
26775
27054
  kind: "mutation",
26776
27055
  auth: "admin"
@@ -31736,6 +32015,12 @@ Object.freeze({
31736
32015
  addonId: null,
31737
32016
  access: "create"
31738
32017
  },
32018
+ "pipelineAnalytics.countRelocatableMedia": {
32019
+ capName: "pipeline-analytics",
32020
+ capScope: "device",
32021
+ addonId: null,
32022
+ access: "view"
32023
+ },
31739
32024
  "pipelineAnalytics.countUnstampedEventMedia": {
31740
32025
  capName: "pipeline-analytics",
31741
32026
  capScope: "device",
@@ -32900,6 +33185,12 @@ Object.freeze({
32900
33185
  addonId: null,
32901
33186
  access: "view"
32902
33187
  },
33188
+ "recording.getRelocateResidue": {
33189
+ capName: "recording",
33190
+ capScope: "system",
33191
+ addonId: null,
33192
+ access: "view"
33193
+ },
32903
33194
  "recording.getStorageMigrationMoveStatus": {
32904
33195
  capName: "recording",
32905
33196
  capScope: "system",
@@ -33446,12 +33737,30 @@ Object.freeze({
33446
33737
  addonId: null,
33447
33738
  access: "create"
33448
33739
  },
33740
+ "storageMigration.drain": {
33741
+ capName: "storage-migration",
33742
+ capScope: "system",
33743
+ addonId: null,
33744
+ access: "create"
33745
+ },
33746
+ "storageMigration.movers": {
33747
+ capName: "storage-migration",
33748
+ capScope: "system",
33749
+ addonId: null,
33750
+ access: "view"
33751
+ },
33449
33752
  "storageMigration.plan": {
33450
33753
  capName: "storage-migration",
33451
33754
  capScope: "system",
33452
33755
  addonId: null,
33453
33756
  access: "view"
33454
33757
  },
33758
+ "storageMigration.residue": {
33759
+ capName: "storage-migration",
33760
+ capScope: "system",
33761
+ addonId: null,
33762
+ access: "view"
33763
+ },
33455
33764
  "storageMigration.start": {
33456
33765
  capName: "storage-migration",
33457
33766
  capScope: "system",
@@ -34286,6 +34595,12 @@ Object.freeze({
34286
34595
  addonId: null,
34287
34596
  access: "delete"
34288
34597
  },
34598
+ "vectorStore.fetchByIds": {
34599
+ capName: "vector-store",
34600
+ capScope: "system",
34601
+ addonId: null,
34602
+ access: "view"
34603
+ },
34289
34604
  "vectorStore.getByIds": {
34290
34605
  capName: "vector-store",
34291
34606
  capScope: "system",
@@ -34298,6 +34613,12 @@ Object.freeze({
34298
34613
  addonId: null,
34299
34614
  access: "view"
34300
34615
  },
34616
+ "vectorStore.scan": {
34617
+ capName: "vector-store",
34618
+ capScope: "system",
34619
+ addonId: null,
34620
+ access: "view"
34621
+ },
34301
34622
  "vectorStore.stats": {
34302
34623
  capName: "vector-store",
34303
34624
  capScope: "system",