@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
@@ -8710,13 +8710,49 @@ var StorageMigrationParticipantSchema = _enum([
8710
8710
  "recorder",
8711
8711
  "analytics"
8712
8712
  ]);
8713
+ /**
8714
+ * The mover's own numbers, folded onto the coordinator's durable move record.
8715
+ *
8716
+ * The long half of a non-blocking migration is `draining`, and it is measured
8717
+ * in hours: 136 885 files at ~4 MB/s is about five of them. Before this shape
8718
+ * existed the only place those numbers appeared was a Loki line, so an operator
8719
+ * watching the Admin UI saw `phase: draining` and nothing else for a whole
8720
+ * afternoon.
8721
+ *
8722
+ * It is POLLED, never pushed. Events are telemetry and may be dropped
8723
+ * (D8/D11), and a dropped progress event is indistinguishable from a stalled
8724
+ * mover — which is the exact failure this is meant to end. The coordinator's
8725
+ * `waitForMoves` already fetches the whole {@link RelocateJob} on every tick to
8726
+ * read `state`; folding the counters costs no extra read and makes the durable
8727
+ * record say afterwards how far a move actually got.
8728
+ *
8729
+ * `filesTotal` is `null` for "no honest denominator" and is never zero-filled:
8730
+ * a windowed footage job (`sinceMs`) and a node with no ledger both genuinely
8731
+ * cannot say M, and a 0 there would render as "100 % done".
8732
+ */
8733
+ var StorageMigrationMoveProgressSchema = object({
8734
+ filesMoved: number().int().nonnegative(),
8735
+ /** The archive census — the **M** of "N of M" (D295). `null` = unknowable. */
8736
+ filesTotal: number().int().nonnegative().nullable(),
8737
+ bytesMoved: number().int().nonnegative(),
8738
+ /** The MOVER's start, not the migration's: a drain restarted after an addon
8739
+ * crash gets a new mover, and a rate computed from the migration's start
8740
+ * would silently average in the time nothing was running. */
8741
+ startedAt: number(),
8742
+ /** When the coordinator last read these numbers. Paired with `startedAt` it
8743
+ * is the only honest rate: both clocks are the hub's, so a UI never has to
8744
+ * subtract its own. */
8745
+ observedAt: number()
8746
+ });
8713
8747
  var StorageMigrationMoveSchema = object({
8714
8748
  storageClass: StorageMigrationClassSchema,
8715
8749
  fromLocationId: string(),
8716
8750
  toLocationId: string(),
8717
8751
  moverJobId: string().nullable(),
8718
8752
  state: RelocateJobStateSchema.nullable(),
8719
- error: string().nullable()
8753
+ error: string().nullable(),
8754
+ /** Last observed mover counters; `null` until the mover has been polled once. */
8755
+ progress: StorageMigrationMoveProgressSchema.nullable()
8720
8756
  });
8721
8757
  var StorageMigrationJobSchema = object({
8722
8758
  jobId: string(),
@@ -8762,6 +8798,98 @@ var StorageMigrationPlanSchema = object({
8762
8798
  findings: array(StorageMigrationFindingSchema)
8763
8799
  });
8764
8800
  /**
8801
+ * A mover as it exists RIGHT NOW, whether or not a migration job owns it.
8802
+ *
8803
+ * The coordinator's job record is the state of record for a migration, and its
8804
+ * moves carry {@link StorageMigrationMoveProgress}. But the movers are usable
8805
+ * standalone — `recording.relocateFootage` and `pipelineAnalytics.relocateMedia`
8806
+ * are both operator-callable, and on 2026-08-29 a five-hour drain was armed that
8807
+ * way because no supported UI path existed. A mover armed like that has no job
8808
+ * to fold progress into, so it has to be readable on its own or it is invisible.
8809
+ *
8810
+ * `migrationJobId` is what tells the two apart: `null` means nothing here
8811
+ * orchestrated it.
8812
+ */
8813
+ var StorageMigrationMoverSchema = object({
8814
+ lane: _enum(["footage", "media"]),
8815
+ job: RelocateJobSchema,
8816
+ /** The coordinator job that armed this mover, or `null` for a mover armed
8817
+ * directly against the owning addon. */
8818
+ migrationJobId: string().nullable(),
8819
+ /** When the hub read these counters. Stamped here so a rate is `bytesMoved`
8820
+ * over (`observedAt` − `job.startedAt`) with BOTH ends on the hub's clock —
8821
+ * a browser subtracting its own `Date.now()` from a server `startedAt` is a
8822
+ * rate made of two different clocks. */
8823
+ observedAt: number()
8824
+ });
8825
+ /**
8826
+ * What a SOURCE still holds for one storage class — the number that makes a
8827
+ * "drain remaining" action honest rather than hopeful.
8828
+ *
8829
+ * It comes from the archive (`SegmentHourLedger.census` for footage, the media
8830
+ * engine's own selection count for media), never from the resident index: a
8831
+ * drain sized off `RecordingIndex` is what reported `done` over 80.3 GB it had
8832
+ * never been told about (D295).
8833
+ *
8834
+ * `items`/`bytes` are `null` for "the archive could not be asked", which is
8835
+ * deliberately NOT zero: a drain is still offered for an unknown residue,
8836
+ * because refusing on an unanswerable read would hide exactly the case an
8837
+ * operator needs to act on.
8838
+ */
8839
+ var StorageMigrationResidueSchema = object({
8840
+ storageClass: StorageMigrationClassSchema,
8841
+ /** The location still holding the data. `'*'` for the media lane, whose rows
8842
+ * move from wherever they are rather than from one named source. */
8843
+ fromLocationId: string(),
8844
+ /** Where a drain would move it — the class's CURRENT default. */
8845
+ toLocationId: string(),
8846
+ /** Segments (footage lane) or rows (media lane) still on the source. */
8847
+ items: number().int().nonnegative().nullable(),
8848
+ /** Bytes on the source; `null` when the lane counts rows rather than bytes. */
8849
+ bytes: number().int().nonnegative().nullable()
8850
+ });
8851
+ /**
8852
+ * Run the DRAIN half and nothing else.
8853
+ *
8854
+ * A migration that reached `done` has already repointed, so `start` correctly
8855
+ * refuses its destination ("already the default") — there is nothing left to
8856
+ * repoint. But the drain can fail, be cancelled, be interrupted by a restart,
8857
+ * or finish against a work list that was a tenth of the archive (D295), and
8858
+ * before this there was no supported way to run only that half: the only way
8859
+ * through was calling `recording.relocateFootage` by hand over admin tRPC.
8860
+ *
8861
+ * `drain` NEVER calls `setDefaultLocations`. That is what keeps `start`'s
8862
+ * refusal meaningful: the two verbs are disjoint, so nothing here can silently
8863
+ * re-repoint a class that is already migrated.
8864
+ */
8865
+ var StorageMigrationDrainInputSchema = object({
8866
+ /** The classes to drain. Each must appear in `storageMigration.residue`, so
8867
+ * a class whose source is already empty is refused rather than started. */
8868
+ classes: array(StorageMigrationClassSchema).min(1),
8869
+ throttleMbps: number().min(1).max(1e3).optional()
8870
+ });
8871
+ /** What a footage source still holds, asked of the durable hour ledger. */
8872
+ var RelocateResidueInputSchema = object({
8873
+ fromLocationId: string().min(1),
8874
+ /** Narrow to one logical class; omit for every profile on the location. */
8875
+ footageClass: RelocateFootageClassSchema.optional()
8876
+ });
8877
+ /** `null` = the archive could not answer (no ledger on this node, or the
8878
+ * aggregate failed). Never conflated with an empty source. */
8879
+ var RelocateResidueSchema = object({
8880
+ segments: number().int().nonnegative(),
8881
+ bytes: number().int().nonnegative()
8882
+ }).nullable();
8883
+ /** How many rows a media pass would still act on against a given target — the
8884
+ * media lane's denominator AND its residue, from ONE derivation so the two can
8885
+ * never disagree. `null` = the count could not be taken. */
8886
+ var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
8887
+ var RelocatableMediaCountInputSchema = object({
8888
+ toLocationId: string().min(1),
8889
+ /** Omitted = `move`. */
8890
+ mode: MediaRelocateModeSchema.optional()
8891
+ });
8892
+ /**
8765
8893
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
8766
8894
  * storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
8767
8895
  * so the persisted record schema and the consumer-facing cap can both consume it
@@ -8865,6 +8993,32 @@ var StorageLocationRefSchema = union([StorageLocationTypeSchema, string().regex(
8865
8993
  * two addons declaring the same `id` must agree on `cardinality` (validated
8866
8994
  * at kernel aggregation time, not here).
8867
8995
  */
8996
+ /**
8997
+ * `StorageAccess` — how the service that DECLARED a storage-location kind
8998
+ * actually reaches the bytes. It is the constraint that decides which
8999
+ * `storage-provider`s may back a location of that kind.
9000
+ *
9001
+ * - `'local-path'` — the service asks `storage.resolve` for a path string and
9002
+ * then does its own `node:fs` I/O on it (the recorder's segment writer, the
9003
+ * post-analysis media roots). Only a provider that serves a genuine local
9004
+ * filesystem (`getProviderInfo().nodeLocal === true`) can satisfy that: a
9005
+ * remote provider's `resolve` returns a path on the REMOTE host, and
9006
+ * `fs.readdir` of it on this node either fails or — far worse — succeeds
9007
+ * against a same-named local directory that is something else entirely.
9008
+ *
9009
+ * - `'cap-mediated'` — every byte travels through the `storage` cap
9010
+ * (`read`/`write`, or `beginUpload`/`writeChunk`/`finalizeUpload`). The
9011
+ * service never sees a path, so any provider can back it. `backups` is the
9012
+ * one kind that qualifies today.
9013
+ *
9014
+ * Before this existed, `recordings` was unreachable by SFTP/S3/WebDAV only as
9015
+ * an EMERGENT property of how the recorder happened to be written. Nothing
9016
+ * refused the configuration; the first write simply went somewhere wrong, and
9017
+ * a recording write that goes wrong surfaces as a silent black window rather
9018
+ * than an error (the read path does not `stat`). This turns that accident into
9019
+ * a declared, enforced, testable refusal.
9020
+ */
9021
+ var StorageAccessSchema = _enum(["local-path", "cap-mediated"]);
8868
9022
  var StorageLocationDeclarationSchema = object({
8869
9023
  /**
8870
9024
  * Global location identifier, e.g. `recordings` or `recordingsLow`.
@@ -8884,6 +9038,19 @@ var StorageLocationDeclarationSchema = object({
8884
9038
  */
8885
9039
  cardinality: _enum(["single", "multi"]),
8886
9040
  /**
9041
+ * HOW the declaring service reaches the bytes — and therefore WHICH
9042
+ * providers may back a location of this kind. See {@link StorageAccessSchema}
9043
+ * and {@link STORAGE_ACCESS_FALLBACK}.
9044
+ *
9045
+ * Absent means `'local-path'`. That default is FAIL-CLOSED on purpose: it
9046
+ * can only over-restrict (refuse a remote provider for a kind that might
9047
+ * have coped) and never under-restrict. Declaring `'cap-mediated'` is the
9048
+ * permissive direction and is therefore never inferred — a repo guard
9049
+ * (`scripts/check-storage-access-declarations.ts`) refuses to let it be
9050
+ * reached by omission.
9051
+ */
9052
+ access: StorageAccessSchema.optional(),
9053
+ /**
8887
9054
  * When set, the default instance for this location inherits its resolved
8888
9055
  * root from the named location's default instance. Useful for derivative
8889
9056
  * slots (e.g. `recordingsLow` → `recordings`) so operators only need to
@@ -18471,8 +18638,10 @@ var TrackSchema = object({
18471
18638
  lastSeen: number(),
18472
18639
  /** Frame-rate position history (subject to maxPositionHistory cap). */
18473
18640
  positions: array(TrackPositionSchema).readonly(),
18474
- /** Periodic snapshots at snapshotIntervalMs cadence (subject to
18475
- * saveThumbnails policy). */
18641
+ /** Periodic snapshots at snapshotIntervalMs cadence DEBUG media, produced
18642
+ * only while `MediaSettings.debugMediaEnabled` is on for the camera (D299;
18643
+ * the retired `saveThumbnails` used to gate this and the rolling
18644
+ * `lastFrame` together). Empty is the healthy default, not a capture gap. */
18476
18645
  snapshots: array(TrackSnapshotSchema).readonly(),
18477
18646
  /** Deduplicated zones the track has entered at least once. Zone IDS. */
18478
18647
  zonesVisited: array(string()).readonly(),
@@ -19332,7 +19501,10 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
19332
19501
  }), method(RelocateMediaInputSchema, object({ jobId: string() }), {
19333
19502
  kind: "mutation",
19334
19503
  auth: "admin"
19335
- }), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(object({}), array(RelocateJobSchema).readonly(), {
19504
+ }), method(object({}), UnstampedEventMediaCountSchema, { auth: "admin" }), method(RelocatableMediaCountInputSchema, RelocatableMediaCountSchema, {
19505
+ kind: "query",
19506
+ auth: "admin"
19507
+ }), method(object({}), array(RelocateJobSchema).readonly(), {
19336
19508
  kind: "query",
19337
19509
  auth: "admin"
19338
19510
  }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
@@ -21291,6 +21463,9 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
21291
21463
  }), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
21292
21464
  kind: "mutation",
21293
21465
  auth: "admin"
21466
+ }), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
21467
+ kind: "mutation",
21468
+ auth: "admin"
21294
21469
  });
21295
21470
  var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
21296
21471
  providerId: string().min(1),
@@ -21689,12 +21864,38 @@ response: record(string(), unknown()) }), object({
21689
21864
  *
21690
21865
  * ## Why this is a capability and not a helper
21691
21866
  *
21692
- * Six stores in `addon-post-analysis` already hold vectors object CLIP, face,
21693
- * plate, vehicle, identity, and the event store's derivativesand every one of
21694
- * them keeps its vectors in a `JSON` settings-store column and ranks them by
21695
- * brute-force cosine in JS. Measured on the live hub that costs ~11.7 KB per row
21696
- * (512 floats as TEXT, `JSON.parse`d on every search) and made semantic search
21697
- * load 5,000 rows before ranking anything.
21867
+ * This capability was introduced with the claim that SIX stores in
21868
+ * `addon-post-analysis` held vectors in a `JSON` settings-store columnobject
21869
+ * CLIP, face, plate, vehicle, identity, and the event store's derivatives. That
21870
+ * claim was never true, and leaving it here made five stores look like pending
21871
+ * work when three of them have no vector at all. Counted column by column on
21872
+ * 2026-08-30, exactly THREE ever held one:
21873
+ *
21874
+ * - `object-clip` — 512-dim CLIP image embedding, migrated 2026-08-06.
21875
+ * - `faces.embedding` — 512-dim ArcFace face embedding, migrated 2026-08-30.
21876
+ * - `identity-samples.embedding` — the same ArcFace vector for an ENROLLED
21877
+ * face, migrated 2026-08-30 into its OWN index (see below).
21878
+ *
21879
+ * `plates` and `vehicle-samples` store a plate STRING and a score; `vehicles`
21880
+ * and `identities` store a name; the event store stores no derivative vector.
21881
+ * They are not migration candidates and never were.
21882
+ *
21883
+ * Measured on the live hub the JSON encoding cost ~11.7 KB per row (512 floats
21884
+ * as TEXT, `JSON.parse`d on every search) and made semantic search load 5,000
21885
+ * rows before ranking anything.
21886
+ *
21887
+ * ## One index per COMPARISON, never per encoder
21888
+ *
21889
+ * `faces` and `identity-samples` hold the same 512 ArcFace dims from the same
21890
+ * model, and they still get two indexes. An index is a set of things that are
21891
+ * ranked against each other and that live and die together, and these two are
21892
+ * neither: a `faces` row is TRACK-OWNED and cascades away with its track under
21893
+ * a per-camera capacity cap, an `identity-samples` row is retention-EXEMPT
21894
+ * forever and is the gallery every recognition ranks against. One index would
21895
+ * mean every gallery load and every reconcile carried a filter whose failure
21896
+ * mode is either ranking a candidate against itself or reclaiming an enrolled
21897
+ * person's only sample. The dimension they share is not a reason to share an
21898
+ * index; the question they answer is, and it differs.
21698
21899
  *
21699
21900
  * The fix is not a faster loop, it is a different backend — and the backend
21700
21901
  * should be replaceable without touching six callers. So: a singleton
@@ -21799,7 +22000,20 @@ var VectorQueryResultSchema = object({
21799
22000
  */
21800
22001
  scanned: number(),
21801
22002
  /** True when the backend could not consider every row that passed the filter. */
21802
- truncated: boolean()
22003
+ truncated: boolean(),
22004
+ /**
22005
+ * The `topK` the backend actually ran with.
22006
+ *
22007
+ * Every backend has a ceiling — sqlite-vec's is 4,096 — and a caller asking
22008
+ * past it used to learn nothing but a boolean, from a WARN in the provider's
22009
+ * own log rather than in its answer. That is how an audit asking for 20,000
22010
+ * consumed 4,096 and reported `examined: 4096` as if it had walked the index,
22011
+ * for weeks. `truncated` says THAT the answer was short; this says BY HOW
22012
+ * MUCH, in the return value, where the caller cannot fail to see it.
22013
+ *
22014
+ * Equals the requested `topK` whenever nothing was lowered.
22015
+ */
22016
+ effectiveTopK: number().int().positive()
21803
22017
  });
21804
22018
  var VectorDeleteInputSchema = object({
21805
22019
  index: string(),
@@ -21828,6 +22042,68 @@ var VectorGetResultSchema = object({ items: array(object({
21828
22042
  id: string(),
21829
22043
  metadata: VectorMetadataSchema
21830
22044
  })) });
22045
+ /**
22046
+ * Ids to read back WITH their vectors.
22047
+ *
22048
+ * The sibling of {@link VectorGetResultSchema}, and deliberately a separate
22049
+ * method rather than a flag on it: `getByIds` promises no vectors and its one
22050
+ * caller depends on that promise. This one promises the opposite.
22051
+ *
22052
+ * It exists because a store cannot put its vectors here otherwise. An ArcFace
22053
+ * gallery is ranked IN PROCESS, per detection, against every enrolled sample —
22054
+ * a per-face cross-process KNN would be a network round trip inside the
22055
+ * recognition loop. So the gallery is loaded once and held in RAM, and loading
22056
+ * it requires the index to hand the floats back. Without this method the only
22057
+ * way to keep a readable vector is a JSON column, which is the thing this
22058
+ * capability exists to delete.
22059
+ *
22060
+ * BOUNDED BY THE CALLER: ids are named, never "everything". Enumerating an
22061
+ * index is {@link VectorScanInputSchema}'s job, and it returns no vectors.
22062
+ */
22063
+ var VectorFetchInputSchema = object({
22064
+ index: string(),
22065
+ ids: array(string())
22066
+ });
22067
+ var VectorFetchResultSchema = object({ items: array(object({
22068
+ id: string(),
22069
+ /** base64 Float32LE — the same wire form `upsert` accepts. */
22070
+ vector: string(),
22071
+ metadata: VectorMetadataSchema
22072
+ })) });
22073
+ /**
22074
+ * ENUMERATE an index: one page of rows in a stable order, no ranking.
22075
+ *
22076
+ * A reconcile does not want the nearest rows, it wants ALL of them, and asking
22077
+ * a KNN for "all" is the wrong question twice over. It hits the backend's `k`
22078
+ * ceiling — 4,096 on sqlite-vec against a 22,128-row index — and it needs a
22079
+ * probe vector it does not have, so the audit passed a ZERO vector whose cosine
22080
+ * distance to every row is degenerate. `examined: 4096` then read as "we
22081
+ * looked" for as long as anyone cared to read it.
22082
+ *
22083
+ * This is the primitive that question actually needs: a bounded page, ordered
22084
+ * by the backend's own row order, costing no distance computation at all.
22085
+ * Vectors are NOT returned — an enumeration that shipped 2 KB per row would be
22086
+ * the full-table read this capability was built to stop.
22087
+ */
22088
+ var VectorScanInputSchema = object({
22089
+ index: string(),
22090
+ /** Opaque resume point. `0` starts at the top; pass back `nextCursor`. */
22091
+ cursor: number().int().nonnegative().default(0),
22092
+ limit: number().int().positive()
22093
+ });
22094
+ var VectorScanResultSchema = object({
22095
+ items: array(object({
22096
+ id: string(),
22097
+ metadata: VectorMetadataSchema
22098
+ })),
22099
+ /**
22100
+ * Where the next page starts, or `null` when the walk reached the end.
22101
+ *
22102
+ * `null` is the ONLY end-of-index signal. A caller must not infer the end
22103
+ * from a short page: a backend is free to return fewer rows than asked.
22104
+ */
22105
+ nextCursor: number().int().nonnegative().nullable()
22106
+ });
21831
22107
  var VectorStatsInputSchema = object({ index: string() });
21832
22108
  var VectorStatsResultSchema = object({
21833
22109
  /** Provider id, so an operator can tell brute force from an ANN index. */
@@ -21846,7 +22122,7 @@ method(VectorDeclareIndexInputSchema, _void(), {
21846
22122
  }), method(VectorUpsertInputSchema, VectorUpsertResultSchema, {
21847
22123
  kind: "mutation",
21848
22124
  auth: "admin"
21849
- }), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
22125
+ }), method(VectorQueryInputSchema, VectorQueryResultSchema, { auth: "admin" }), method(VectorGetInputSchema, VectorGetResultSchema, { auth: "admin" }), method(VectorFetchInputSchema, VectorFetchResultSchema, { auth: "admin" }), method(VectorScanInputSchema, VectorScanResultSchema, { auth: "admin" }), method(VectorDeleteInputSchema, VectorDeleteResultSchema, {
21850
22126
  kind: "mutation",
21851
22127
  auth: "admin"
21852
22128
  }), method(VectorDeleteByFilterInputSchema, VectorDeleteResultSchema, {
@@ -26750,6 +27026,9 @@ method(object({
26750
27026
  }), method(object({}), array(RelocateJobSchema).readonly(), {
26751
27027
  kind: "query",
26752
27028
  auth: "admin"
27029
+ }), method(RelocateResidueInputSchema, RelocateResidueSchema, {
27030
+ kind: "query",
27031
+ auth: "admin"
26753
27032
  }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
26754
27033
  kind: "mutation",
26755
27034
  auth: "admin"
@@ -31715,6 +31994,12 @@ Object.freeze({
31715
31994
  addonId: null,
31716
31995
  access: "create"
31717
31996
  },
31997
+ "pipelineAnalytics.countRelocatableMedia": {
31998
+ capName: "pipeline-analytics",
31999
+ capScope: "device",
32000
+ addonId: null,
32001
+ access: "view"
32002
+ },
31718
32003
  "pipelineAnalytics.countUnstampedEventMedia": {
31719
32004
  capName: "pipeline-analytics",
31720
32005
  capScope: "device",
@@ -32879,6 +33164,12 @@ Object.freeze({
32879
33164
  addonId: null,
32880
33165
  access: "view"
32881
33166
  },
33167
+ "recording.getRelocateResidue": {
33168
+ capName: "recording",
33169
+ capScope: "system",
33170
+ addonId: null,
33171
+ access: "view"
33172
+ },
32882
33173
  "recording.getStorageMigrationMoveStatus": {
32883
33174
  capName: "recording",
32884
33175
  capScope: "system",
@@ -33425,12 +33716,30 @@ Object.freeze({
33425
33716
  addonId: null,
33426
33717
  access: "create"
33427
33718
  },
33719
+ "storageMigration.drain": {
33720
+ capName: "storage-migration",
33721
+ capScope: "system",
33722
+ addonId: null,
33723
+ access: "create"
33724
+ },
33725
+ "storageMigration.movers": {
33726
+ capName: "storage-migration",
33727
+ capScope: "system",
33728
+ addonId: null,
33729
+ access: "view"
33730
+ },
33428
33731
  "storageMigration.plan": {
33429
33732
  capName: "storage-migration",
33430
33733
  capScope: "system",
33431
33734
  addonId: null,
33432
33735
  access: "view"
33433
33736
  },
33737
+ "storageMigration.residue": {
33738
+ capName: "storage-migration",
33739
+ capScope: "system",
33740
+ addonId: null,
33741
+ access: "view"
33742
+ },
33434
33743
  "storageMigration.start": {
33435
33744
  capName: "storage-migration",
33436
33745
  capScope: "system",
@@ -34265,6 +34574,12 @@ Object.freeze({
34265
34574
  addonId: null,
34266
34575
  access: "delete"
34267
34576
  },
34577
+ "vectorStore.fetchByIds": {
34578
+ capName: "vector-store",
34579
+ capScope: "system",
34580
+ addonId: null,
34581
+ access: "view"
34582
+ },
34268
34583
  "vectorStore.getByIds": {
34269
34584
  capName: "vector-store",
34270
34585
  capScope: "system",
@@ -34277,6 +34592,12 @@ Object.freeze({
34277
34592
  addonId: null,
34278
34593
  access: "view"
34279
34594
  },
34595
+ "vectorStore.scan": {
34596
+ capName: "vector-store",
34597
+ capScope: "system",
34598
+ addonId: null,
34599
+ access: "view"
34600
+ },
34280
34601
  "vectorStore.stats": {
34281
34602
  capName: "vector-store",
34282
34603
  capScope: "system",
@@ -1,5 +1,5 @@
1
1
  import { h as e, l as t, u as n, y as r } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
- import { o as i, s as a } from "./responsive-BYjuH3Vm.mjs";
2
+ import { o as i, s as a } from "./responsive-CUUfCGVt.mjs";
3
3
  import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
4
4
  var l = a("chevron-down", [["path", {
5
5
  d: "m6 9 6 6 6-6",
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-CI68GRdZ.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-DW2n6IfQ.mjs";
2
2
  export { t as get, e as init };
@@ -1,6 +1,6 @@
1
1
  import { c as e, g as t, h as n, l as r, n as i, p as a, r as o, t as s, u as c, y as l } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
2
  import "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
3
- import { n as u } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DLxM_aHR.mjs";
3
+ import { n as u } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Ch9nSO9i.mjs";
4
4
  //#region ../ui-library/node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js
5
5
  l();
6
6
  var d = (...e) => e.filter((e, t, n) => !!e && e.trim() !== "" && n.indexOf(e) === t).join(" ").trim(), f = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), p = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), m = (e) => {
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-BYjuH3Vm.mjs";
1
+ import { s as e } from "./responsive-CUUfCGVt.mjs";
2
2
  var t = e("eye-off", [
3
3
  ["path", {
4
4
  d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-BYjuH3Vm.mjs";
1
+ import { s as e } from "./responsive-CUUfCGVt.mjs";
2
2
  var t = e("trash-2", [
3
3
  ["path", {
4
4
  d: "M10 11v6",
@@ -1,5 +1,5 @@
1
1
  import { c as e, h as t, p as n, y as r } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
- import { s as i } from "./responsive-BYjuH3Vm.mjs";
2
+ import { s as i } from "./responsive-CUUfCGVt.mjs";
3
3
  var a = i("camera", [["path", {
4
4
  d: "M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",
5
5
  key: "18u6gg"
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-CegGwSfe.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-DWs1_4xY.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-model-studio",
3
- "version": "1.1.59",
3
+ "version": "1.1.62",
4
4
  "description": "Custom detection model registry, conversion & distribution for CamStack",
5
5
  "keywords": [
6
6
  "camstack",