@camstack/addon-pipeline 1.2.155 → 1.2.159

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 (36) hide show
  1. package/dist/audio-analyzer/index.js +2 -2
  2. package/dist/audio-analyzer/index.mjs +2 -2
  3. package/dist/detection-pipeline/index.js +5 -5
  4. package/dist/detection-pipeline/index.mjs +4 -4
  5. package/dist/{dist-CmrtJ8RB.js → dist-bBqjZ7fo.js} +233 -7
  6. package/dist/{dist-CBRky_dz.mjs → dist-p8ruahJy.mjs} +233 -7
  7. package/dist/{lazy-sharp-BODx7w1t.js → lazy-sharp-Ct1Ow2zO.js} +1 -1
  8. package/dist/{local-frame-registry-BRG0GTmK.js → local-frame-registry-Bua7Qg7A.js} +1 -1
  9. package/dist/{local-frame-registry-ByKcWWPU.mjs → local-frame-registry-Ce3h-QcZ.mjs} +1 -1
  10. package/dist/motion-wasm/index.js +2 -2
  11. package/dist/motion-wasm/index.mjs +1 -1
  12. package/dist/{node-BSeMUwxJ.js → node-DRc0Vqkz.js} +1 -1
  13. package/dist/{node-CQzPpwIR.mjs → node-kVYpLOax.mjs} +1 -1
  14. package/dist/pipeline-runner/index.js +5 -5
  15. package/dist/pipeline-runner/index.mjs +4 -4
  16. package/dist/{process-memory-DVmHBraW.js → process-memory-B4Id9YAE.js} +1 -1
  17. package/dist/{process-memory-DQX-DbHx.mjs → process-memory-D9s145SO.mjs} +1 -1
  18. package/dist/recorder/index.js +536 -27
  19. package/dist/recorder/index.mjs +533 -29
  20. package/dist/{segment-demux-js-DmqnujVx.js → segment-demux-js-DAgunuXf.js} +1 -1
  21. package/dist/{segment-demux-js-DGX1iGLL.mjs → segment-demux-js-VrM03R0O.mjs} +1 -1
  22. package/dist/session-decode/decode-worker-child.js +2 -2
  23. package/dist/session-decode/decode-worker-child.mjs +1 -1
  24. package/dist/stream-broker/_stub.js +2 -2
  25. package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-DvfM0ofY.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-B-FG8Phz.mjs} +2 -2
  26. package/dist/stream-broker/{_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-lMPlG5w5.mjs → _virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-OnimCf2v.mjs} +1 -1
  27. package/dist/stream-broker/{_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-CSNuIp4J.mjs → _virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-_e_Px_mR.mjs} +1 -1
  28. package/dist/stream-broker/demux-worker-child.js +1 -1
  29. package/dist/stream-broker/demux-worker-child.mjs +1 -1
  30. package/dist/stream-broker/{hostInit-DQGeMfoN.mjs → hostInit-DePWOWOH.mjs} +2 -2
  31. package/dist/stream-broker/index.js +3 -3
  32. package/dist/stream-broker/index.mjs +3 -3
  33. package/dist/stream-broker/remoteEntry.js +1 -1
  34. package/dist/{worker-protocol-C7jOjCsc.mjs → worker-protocol-BN0Q-eeu.mjs} +1 -1
  35. package/dist/{worker-protocol-S2nAdf6B.js → worker-protocol-CjWhvUMn.js} +1 -1
  36. package/package.json +1 -1
@@ -9408,6 +9408,13 @@ var MediaRelocateModeSchema = _enum([
9408
9408
  ]);
9409
9409
  var RelocateMediaInputSchema = object({
9410
9410
  toLocationId: string(),
9411
+ /**
9412
+ * Restrict the pass to rows currently on this location. Omitted / `'*'` =
9413
+ * every row that is not already on `toLocationId` (the historical
9414
+ * behaviour). A named source is what a from→to migration needs: without it
9415
+ * "move events off disk 2" also emptied disk 1.
9416
+ */
9417
+ fromLocationId: string().optional(),
9411
9418
  throttleMbps: number().min(1).max(1e3).optional(),
9412
9419
  /** Omitted = `move`, the pre-existing behaviour. */
9413
9420
  mode: MediaRelocateModeSchema.optional()
@@ -9475,6 +9482,19 @@ var StorageMigrationDestinationsSchema = object({
9475
9482
  galleryMedia: string().min(1).optional()
9476
9483
  }).refine((value) => Object.keys(value).length > 0, { message: "select at least one storage class" });
9477
9484
  /**
9485
+ * Optional named source per class. Omitted = the class's current default
9486
+ * (the historical behaviour). A named source that is NOT the default is a
9487
+ * drain of that disk: bytes move, the default stays, and the source is
9488
+ * disabled when the move finishes.
9489
+ */
9490
+ var StorageMigrationSourcesSchema = object({
9491
+ recordings: string().min(1).optional(),
9492
+ recordingsLow: string().min(1).optional(),
9493
+ eventMedia: string().min(1).optional(),
9494
+ backups: string().min(1).optional(),
9495
+ galleryMedia: string().min(1).optional()
9496
+ }).optional();
9497
+ /**
9478
9498
  * How a migration sequences the cutover against the byte move.
9479
9499
  *
9480
9500
  * - `blocking` — the historical order: pause, move every byte, repoint,
@@ -9496,6 +9516,8 @@ var StorageMigrationModeSchema = _enum(["blocking", "nonBlocking"]);
9496
9516
  /** Shared input for planning and starting an orchestrated storage migration. */
9497
9517
  var StorageMigrationInputSchema = object({
9498
9518
  destinations: StorageMigrationDestinationsSchema,
9519
+ /** Omitted = each class's current default. */
9520
+ sources: StorageMigrationSourcesSchema,
9499
9521
  throttleMbps: number().min(1).max(1e3).optional(),
9500
9522
  /** Omitted = `blocking`, which stays the default. */
9501
9523
  mode: StorageMigrationModeSchema.optional()
@@ -9575,6 +9597,13 @@ var StorageMigrationMoveSchema = object({
9575
9597
  storageClass: StorageMigrationClassSchema,
9576
9598
  fromLocationId: string(),
9577
9599
  toLocationId: string(),
9600
+ /**
9601
+ * True when `from` was NOT the class default at plan time. The move still
9602
+ * copies bytes, but the default is left alone and the source is disabled
9603
+ * once the copy verifies. Absent on jobs planned before this field existed
9604
+ * — those jobs always repointed, which is `false`.
9605
+ */
9606
+ freezeSource: boolean().optional(),
9578
9607
  moverJobId: string().nullable(),
9579
9608
  state: RelocateJobStateSchema.nullable(),
9580
9609
  error: string().nullable(),
@@ -9588,6 +9617,7 @@ var StorageMigrationJobSchema = object({
9588
9617
  * can tell a seconds-long cutover from a thirty-hour one. */
9589
9618
  mode: StorageMigrationModeSchema,
9590
9619
  destinations: StorageMigrationDestinationsSchema,
9620
+ sources: StorageMigrationSourcesSchema,
9591
9621
  throttleMbps: number(),
9592
9622
  moves: array(StorageMigrationMoveSchema),
9593
9623
  pauseLeaseId: string().nullable(),
@@ -9613,6 +9643,7 @@ var StorageMigrationFindingSchema = object({
9613
9643
  });
9614
9644
  var StorageMigrationPlanSchema = object({
9615
9645
  destinations: StorageMigrationDestinationsSchema,
9646
+ sources: StorageMigrationSourcesSchema,
9616
9647
  /** The mode this plan was built for. A plan is only valid for its mode: the
9617
9648
  * `eventMedia` seal gate and the single-cardinality refusal both depend on
9618
9649
  * it. */
@@ -9620,7 +9651,8 @@ var StorageMigrationPlanSchema = object({
9620
9651
  moves: array(object({
9621
9652
  storageClass: StorageMigrationClassSchema,
9622
9653
  fromLocationId: string(),
9623
- toLocationId: string()
9654
+ toLocationId: string(),
9655
+ freezeSource: boolean().optional()
9624
9656
  })),
9625
9657
  findings: array(StorageMigrationFindingSchema)
9626
9658
  });
@@ -9798,10 +9830,51 @@ var LedgerWalkReportSchema = object({
9798
9830
  var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
9799
9831
  var RelocatableMediaCountInputSchema = object({
9800
9832
  toLocationId: string().min(1),
9833
+ /** Restrict the count to one source; omitted / `'*'` = every non-target row. */
9834
+ fromLocationId: string().optional(),
9801
9835
  /** Omitted = `move`. */
9802
9836
  mode: MediaRelocateModeSchema.optional()
9803
9837
  });
9804
9838
  /**
9839
+ * Operator cleanup of leftover analytics rows, optional debug media, and
9840
+ * ghost ledger entries on frozen footage locations.
9841
+ *
9842
+ * A pass is tens of minutes on a standing backlog. The hub method RETURNS
9843
+ * `{ jobId }` immediately; progress is `cleanupStatus`. Awaiting the work
9844
+ * is how `addons.custom` hit the 60 s UDS deadline while reclaim continued
9845
+ * with no operator-visible status.
9846
+ */
9847
+ var StorageCleanupPhaseSchema = _enum([
9848
+ "orphans",
9849
+ "debug-media",
9850
+ "ghost-ledger",
9851
+ "done",
9852
+ "failed",
9853
+ "cancelled"
9854
+ ]);
9855
+ var StorageCleanupInputSchema = object({
9856
+ /** Also walk motion stills / track filmstrips. Off by default. */
9857
+ includeDebugMedia: boolean().optional() });
9858
+ var StorageCleanupJobSchema = object({
9859
+ jobId: string(),
9860
+ phase: StorageCleanupPhaseSchema,
9861
+ includeDebugMedia: boolean(),
9862
+ orphansReclaimed: number().int().nonnegative(),
9863
+ orphanBytesReclaimed: number().int().nonnegative(),
9864
+ debugMediaReclaimed: number().int().nonnegative(),
9865
+ debugMediaBytesReclaimed: number().int().nonnegative(),
9866
+ ghostsForgotten: number().int().nonnegative(),
9867
+ ghostBytesForgotten: number().int().nonnegative(),
9868
+ /** Short operator-facing line: current collection, pass, or location. */
9869
+ detail: string().nullable(),
9870
+ cancelRequested: boolean(),
9871
+ startedAt: number(),
9872
+ updatedAt: number(),
9873
+ finishedAt: number().nullable(),
9874
+ error: string().nullable()
9875
+ });
9876
+ var StorageCleanupStatusInputSchema = object({ jobId: string().optional() });
9877
+ /**
9805
9878
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
9806
9879
  * storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
9807
9880
  * so the persisted record schema and the consumer-facing cap can both consume it
@@ -9829,11 +9902,10 @@ var StorageLocationTypeSchema = string().regex(/^[a-z][a-zA-Z0-9-]*$/);
9829
9902
  * The default location for a type uses `id === <type>:default` by
9830
9903
  * convention (the bare type ref like `'backups'` resolves to it).
9831
9904
  *
9832
- * `isSystem: true` marks a location as orchestrator-seeded and
9833
- * undeletable. The bootstrap-installed defaults (one per type) carry
9834
- * this flag; operator-added locations don't. Editing the config of
9835
- * a system location is allowed (path migration, provider swap) but
9836
- * deleting it is rejected at the cap level.
9905
+ * `isSystem` is a legacy persisted flag. Seed still creates the initial
9906
+ * `<type>:default` locations; the flag is no longer a lock, a badge, or a
9907
+ * prune selector. New writes leave it false. Deletion is gated on uniqueness
9908
+ * / last-enabled, not on this bit.
9837
9909
  */
9838
9910
  var StorageLocationSchema = object({
9839
9911
  id: string().regex(/^[a-z][a-zA-Z0-9-]*:[a-zA-Z0-9-]+$/),
@@ -21502,6 +21574,47 @@ var RebuildStatusSchema = object({
21502
21574
  /** Present when the pass ended by throwing. */
21503
21575
  error: string().nullable()
21504
21576
  });
21577
+ /**
21578
+ * Acknowledgement that a debug-media reclaim STARTED.
21579
+ *
21580
+ * The pass is paced at ~2 MB/s over a standing 100 GB — tens of minutes — so
21581
+ * it runs detached and this returns immediately. Awaiting it is how the
21582
+ * `addons.custom` door hit the 60 s UDS deadline while the walk carried on
21583
+ * with no status. Poll {@link pipelineAnalyticsCapability.methods.getMediaReclaimStatus}.
21584
+ */
21585
+ var MediaReclaimStartResultSchema = object({
21586
+ started: boolean(),
21587
+ /** True when a pass was already running; the new request is ignored. */
21588
+ alreadyRunning: boolean()
21589
+ });
21590
+ var MediaReclaimInputSchema = object({
21591
+ mode: _enum(["report", "reclaim"]).default("report"),
21592
+ scopes: array(_enum(["motion-still", "track-filmstrip"])).min(1).optional(),
21593
+ deviceIds: array(number().int()).min(1).optional(),
21594
+ restart: boolean().optional(),
21595
+ pageSize: number().int().min(50).max(5e3).optional(),
21596
+ maxRowsPerDevice: number().int().min(1).max(5e5).optional(),
21597
+ maxReclaimPerDevice: number().int().min(1).max(5e5).optional(),
21598
+ maxBytesPerRun: number().int().min(1).optional(),
21599
+ budgetMinutes: number().int().min(1).max(720).optional(),
21600
+ throttleBytesPerSec: number().int().min(64 * 1024).optional(),
21601
+ graceMinutes: number().int().min(1).max(10080).optional()
21602
+ });
21603
+ var MediaReclaimStatusSchema = object({
21604
+ running: boolean(),
21605
+ mode: _enum(["report", "reclaim"]).nullable(),
21606
+ totalExamined: number(),
21607
+ totalEligible: number(),
21608
+ totalReclaimed: number(),
21609
+ totalBytesReclaimed: number(),
21610
+ totalRefused: number(),
21611
+ /** Device+scope windows finished in this pass. */
21612
+ devicesDone: number(),
21613
+ complete: boolean().nullable(),
21614
+ startedAtMs: number().nullable(),
21615
+ finishedAtMs: number().nullable(),
21616
+ error: string().nullable()
21617
+ });
21505
21618
  var ReplayFrameInputSchema = object({
21506
21619
  timestamp: number(),
21507
21620
  frame: PipelineRunResultBridge
@@ -21643,6 +21756,12 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
21643
21756
  }), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
21644
21757
  kind: "query",
21645
21758
  auth: "admin"
21759
+ }), method(MediaReclaimInputSchema, MediaReclaimStartResultSchema, {
21760
+ kind: "mutation",
21761
+ auth: "admin"
21762
+ }), method(object({}), MediaReclaimStatusSchema, {
21763
+ kind: "query",
21764
+ auth: "admin"
21646
21765
  }), method(object({ deviceIds: array(number()).optional() }), TrainingExportSummarySchema, {
21647
21766
  kind: "query",
21648
21767
  auth: "admin"
@@ -23777,7 +23896,13 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
23777
23896
  }), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
23778
23897
  kind: "mutation",
23779
23898
  auth: "admin"
23780
- });
23899
+ }), method(StorageCleanupInputSchema, object({ jobId: string() }), {
23900
+ kind: "mutation",
23901
+ auth: "admin"
23902
+ }), method(StorageCleanupStatusInputSchema, StorageCleanupJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
23903
+ kind: "mutation",
23904
+ auth: "admin"
23905
+ }), method(object({}), array(StorageMigrationJobSchema).readonly(), { auth: "admin" });
23781
23906
  var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
23782
23907
  providerId: string().min(1),
23783
23908
  displayName: string().min(1),
@@ -29302,6 +29427,33 @@ var RecordingRebalanceInputSchema = object({
29302
29427
  minMoveGb: number().min(0).optional()
29303
29428
  });
29304
29429
  /**
29430
+ * Operator-facing placement of one camera onto a recordings location.
29431
+ *
29432
+ * `pinLocationId` is the operator instruction: a location id, or `null` for
29433
+ * Auto (the planner may move this camera). `locationId` is where high/mid
29434
+ * currently write — the plan, which may disagree with the pin when Auto.
29435
+ */
29436
+ var RecordingDevicePlacementSchema = object({
29437
+ deviceId: number().int(),
29438
+ profile: string(),
29439
+ locationId: string()
29440
+ });
29441
+ var RecordingDevicePinSchema = object({
29442
+ deviceId: number().int(),
29443
+ /** Recordings-class location this camera is pinned to. */
29444
+ locationId: string()
29445
+ });
29446
+ var RecordingPlacementViewSchema = object({
29447
+ assignments: array(RecordingDevicePlacementSchema),
29448
+ pins: array(RecordingDevicePinSchema),
29449
+ defaultLocations: record(string(), string())
29450
+ });
29451
+ var RecordingSetDevicePlacementInputSchema = object({
29452
+ deviceId: number().int(),
29453
+ /** `null` = Auto. Otherwise a `recordings:*` location id. */
29454
+ locationId: string().nullable()
29455
+ });
29456
+ /**
29305
29457
  * Result of locating footage at a wall-clock instant for one device/profile.
29306
29458
  * `segment` carries the covering segment's window; `gap` reports the forward
29307
29459
  * nearest covered edge (`null` past the end of footage / when none exists)
@@ -29654,6 +29806,22 @@ var recordingCapability = {
29654
29806
  startStorageRebalance: method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
29655
29807
  kind: "mutation",
29656
29808
  auth: "admin"
29809
+ }),
29810
+ /**
29811
+ * The placement plan in force plus operator pins. Drives the Locations
29812
+ * admin page: Auto vs a named recordings location, per camera.
29813
+ */
29814
+ getPlacement: method(object({}), RecordingPlacementViewSchema, {
29815
+ kind: "query",
29816
+ auth: "admin"
29817
+ }),
29818
+ /**
29819
+ * Pin a camera to a recordings location, or clear the pin (Auto). High and
29820
+ * mid follow the pin; low stays with the recordingsLow planner.
29821
+ */
29822
+ setDevicePlacement: method(RecordingSetDevicePlacementInputSchema, object({ ok: literal(true) }), {
29823
+ kind: "mutation",
29824
+ auth: "admin"
29657
29825
  })
29658
29826
  }
29659
29827
  };
@@ -34950,6 +35118,12 @@ Object.freeze({
34950
35118
  addonId: null,
34951
35119
  access: "view"
34952
35120
  },
35121
+ "pipelineAnalytics.getMediaReclaimStatus": {
35122
+ capName: "pipeline-analytics",
35123
+ capScope: "device",
35124
+ addonId: null,
35125
+ access: "view"
35126
+ },
34953
35127
  "pipelineAnalytics.getMotionEvents": {
34954
35128
  capName: "pipeline-analytics",
34955
35129
  capScope: "device",
@@ -35124,6 +35298,12 @@ Object.freeze({
35124
35298
  addonId: null,
35125
35299
  access: "create"
35126
35300
  },
35301
+ "pipelineAnalytics.reclaimDebugMedia": {
35302
+ capName: "pipeline-analytics",
35303
+ capScope: "device",
35304
+ addonId: null,
35305
+ access: "create"
35306
+ },
35127
35307
  "pipelineAnalytics.reconcileFromDisk": {
35128
35308
  capName: "pipeline-analytics",
35129
35309
  capScope: "device",
@@ -36048,6 +36228,12 @@ Object.freeze({
36048
36228
  addonId: null,
36049
36229
  access: "view"
36050
36230
  },
36231
+ "recording.getPlacement": {
36232
+ capName: "recording",
36233
+ capScope: "system",
36234
+ addonId: null,
36235
+ access: "view"
36236
+ },
36051
36237
  "recording.getPlaybackManifest": {
36052
36238
  capName: "recording",
36053
36239
  capScope: "system",
@@ -36174,6 +36360,12 @@ Object.freeze({
36174
36360
  addonId: null,
36175
36361
  access: "create"
36176
36362
  },
36363
+ "recording.setDevicePlacement": {
36364
+ capName: "recording",
36365
+ capScope: "system",
36366
+ addonId: null,
36367
+ access: "create"
36368
+ },
36177
36369
  "recording.startStorageMigrationMove": {
36178
36370
  capName: "recording",
36179
36371
  capScope: "system",
@@ -36618,12 +36810,36 @@ Object.freeze({
36618
36810
  addonId: null,
36619
36811
  access: "create"
36620
36812
  },
36813
+ "storageMigration.cleanupCancel": {
36814
+ capName: "storage-migration",
36815
+ capScope: "system",
36816
+ addonId: null,
36817
+ access: "create"
36818
+ },
36819
+ "storageMigration.cleanupStart": {
36820
+ capName: "storage-migration",
36821
+ capScope: "system",
36822
+ addonId: null,
36823
+ access: "create"
36824
+ },
36825
+ "storageMigration.cleanupStatus": {
36826
+ capName: "storage-migration",
36827
+ capScope: "system",
36828
+ addonId: null,
36829
+ access: "view"
36830
+ },
36621
36831
  "storageMigration.drain": {
36622
36832
  capName: "storage-migration",
36623
36833
  capScope: "system",
36624
36834
  addonId: null,
36625
36835
  access: "create"
36626
36836
  },
36837
+ "storageMigration.history": {
36838
+ capName: "storage-migration",
36839
+ capScope: "system",
36840
+ addonId: null,
36841
+ access: "view"
36842
+ },
36627
36843
  "storageMigration.movers": {
36628
36844
  capName: "storage-migration",
36629
36845
  capScope: "system",
@@ -38740,6 +38956,11 @@ Object.freeze({
38740
38956
  form: "single",
38741
38957
  optional: true
38742
38958
  }],
38959
+ "pipelineAnalytics.reclaimDebugMedia": [{
38960
+ name: "deviceIds",
38961
+ form: "array",
38962
+ optional: true
38963
+ }],
38743
38964
  "pipelineAnalytics.reconcileFromDisk": [{
38744
38965
  name: "deviceId",
38745
38966
  form: "single",
@@ -39105,6 +39326,11 @@ Object.freeze({
39105
39326
  form: "single",
39106
39327
  optional: false
39107
39328
  }],
39329
+ "recording.setDevicePlacement": [{
39330
+ name: "deviceId",
39331
+ form: "single",
39332
+ optional: false
39333
+ }],
39108
39334
  "recording.startStorageMigrationMove": [{
39109
39335
  name: "deviceId",
39110
39336
  form: "single",
@@ -1,4 +1,4 @@
1
- const require_dist = require("./dist-CmrtJ8RB.js");
1
+ const require_dist = require("./dist-bBqjZ7fo.js");
2
2
  let node_path = require("node:path");
3
3
  node_path = require_dist.__toESM(node_path);
4
4
  let node_url = require("node:url");
@@ -1,4 +1,4 @@
1
- const require_dist = require("./dist-CmrtJ8RB.js");
1
+ const require_dist = require("./dist-bBqjZ7fo.js");
2
2
  let node_crypto = require("node:crypto");
3
3
  //#region src/detection-pipeline/registry/model-catalogs.ts
4
4
  var HF_REPO = "camstack/camstack-models";
@@ -1,4 +1,4 @@
1
- import { M as audioKindId, Z as hfModelUrl, a as COCO_80_LABELS, o as COCO_TO_MACRO, r as AUDIO_MACRO_LABELS } from "./dist-CBRky_dz.mjs";
1
+ import { M as audioKindId, Z as hfModelUrl, a as COCO_80_LABELS, o as COCO_TO_MACRO, r as AUDIO_MACRO_LABELS } from "./dist-p8ruahJy.mjs";
2
2
  import { randomUUID } from "node:crypto";
3
3
  //#region src/detection-pipeline/registry/model-catalogs.ts
4
4
  var HF_REPO = "camstack/camstack-models";
@@ -2,8 +2,8 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_dist = require("../dist-CmrtJ8RB.js");
6
- const require_lazy_sharp = require("../lazy-sharp-BODx7w1t.js");
5
+ const require_dist = require("../dist-bBqjZ7fo.js");
6
+ const require_lazy_sharp = require("../lazy-sharp-Ct1Ow2zO.js");
7
7
  let node_fs = require("node:fs");
8
8
  let node_path = require("node:path");
9
9
  //#region src/motion-wasm/wasm-motion-detector.ts
@@ -1,4 +1,4 @@
1
- import { It as hydrateSchema, Pt as DeviceType, Y as evaluateZoneRules, it as motionDetectionCapability, jt as BaseAddon } from "../dist-CBRky_dz.mjs";
1
+ import { It as hydrateSchema, Pt as DeviceType, Y as evaluateZoneRules, it as motionDetectionCapability, jt as BaseAddon } from "../dist-p8ruahJy.mjs";
2
2
  import { t as getSharp } from "../lazy-sharp-DXsqwpph.mjs";
3
3
  import { readFileSync } from "node:fs";
4
4
  import { join } from "node:path";
@@ -1,4 +1,4 @@
1
- const require_dist = require("./dist-CmrtJ8RB.js");
1
+ const require_dist = require("./dist-bBqjZ7fo.js");
2
2
  let node_crypto = require("node:crypto");
3
3
  let node_fs = require("node:fs");
4
4
  node_fs = require_dist.__toESM(node_fs, 1);
@@ -1,4 +1,4 @@
1
- import { Dt as buildFfmpegArgs, Et as Fmp4BoxSplitter, kt as isSoftwareDecode, wt as errMsg } from "./dist-CBRky_dz.mjs";
1
+ import { Dt as buildFfmpegArgs, Et as Fmp4BoxSplitter, kt as isSoftwareDecode, wt as errMsg } from "./dist-p8ruahJy.mjs";
2
2
  import { randomUUID } from "node:crypto";
3
3
  import "node:fs";
4
4
  import "node:path";
@@ -2,12 +2,12 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_dist = require("../dist-CmrtJ8RB.js");
6
- const require_node = require("../node-BSeMUwxJ.js");
7
- const require_local_frame_registry = require("../local-frame-registry-BRG0GTmK.js");
8
- const require_worker_protocol = require("../worker-protocol-S2nAdf6B.js");
5
+ const require_dist = require("../dist-bBqjZ7fo.js");
6
+ const require_node = require("../node-DRc0Vqkz.js");
7
+ const require_local_frame_registry = require("../local-frame-registry-Bua7Qg7A.js");
8
+ const require_worker_protocol = require("../worker-protocol-CjWhvUMn.js");
9
9
  const require_hub_hostname = require("../hub-hostname-DAJXlOgV.js");
10
- const require_lazy_sharp = require("../lazy-sharp-BODx7w1t.js");
10
+ const require_lazy_sharp = require("../lazy-sharp-Ct1Ow2zO.js");
11
11
  const require_restream_intent = require("../restream-intent-Cv9x3jmu.js");
12
12
  const require_event_loop_stall_monitor = require("../event-loop-stall-monitor-DaUBcb13.js");
13
13
  const require_remote_restream = require("../remote-restream-CO36Sr30.js");
@@ -1,7 +1,7 @@
1
- import { B as defineCustomActions, Bt as nodePin, Ft as createEvent, Gt as _enum, H as deriveDetailCropRect, Kt as array, L as customAction, Qt as object, X as failureContributionCapability, Xt as literal, Yt as lazy, Zt as number, _ as FailureCounters, en as string, et as loadContributionCapability, ft as pipelineRunnerCapability, jt as BaseAddon, lt as pickDetailCropConvention, m as DEVICE_BACKEND_TO_FORMAT, nn as EventCategory, p as DEFAULT_NATIVE_LEASE_SETTINGS, qt as boolean, u as DEFAULT_DETAIL_CROP_CONVENTION, ut as pickNativeLeaseOverride, wt as errMsg } from "../dist-CBRky_dz.mjs";
2
- import { i as NO_COST_CLAIM, t as ChildCostRegistry } from "../node-CQzPpwIR.mjs";
3
- import { c as getStepDefinition, n as resolveFrameViewGeometry, t as localFrameRegistry } from "../local-frame-registry-ByKcWWPU.mjs";
4
- import { a as nativeLeaseSettingEnv, t as isWorkerReply } from "../worker-protocol-C7jOjCsc.mjs";
1
+ import { B as defineCustomActions, Bt as nodePin, Ft as createEvent, Gt as _enum, H as deriveDetailCropRect, Kt as array, L as customAction, Qt as object, X as failureContributionCapability, Xt as literal, Yt as lazy, Zt as number, _ as FailureCounters, en as string, et as loadContributionCapability, ft as pipelineRunnerCapability, jt as BaseAddon, lt as pickDetailCropConvention, m as DEVICE_BACKEND_TO_FORMAT, nn as EventCategory, p as DEFAULT_NATIVE_LEASE_SETTINGS, qt as boolean, u as DEFAULT_DETAIL_CROP_CONVENTION, ut as pickNativeLeaseOverride, wt as errMsg } from "../dist-p8ruahJy.mjs";
2
+ import { i as NO_COST_CLAIM, t as ChildCostRegistry } from "../node-kVYpLOax.mjs";
3
+ import { c as getStepDefinition, n as resolveFrameViewGeometry, t as localFrameRegistry } from "../local-frame-registry-Ce3h-QcZ.mjs";
4
+ import { a as nativeLeaseSettingEnv, t as isWorkerReply } from "../worker-protocol-BN0Q-eeu.mjs";
5
5
  import { t as resolveHubHostname } from "../hub-hostname-cCknRYKj.mjs";
6
6
  import { t as getSharp } from "../lazy-sharp-DXsqwpph.mjs";
7
7
  import { n as withDetectionIntent } from "../restream-intent-B4BXZra7.mjs";
@@ -1,4 +1,4 @@
1
- const require_dist = require("./dist-CmrtJ8RB.js");
1
+ const require_dist = require("./dist-bBqjZ7fo.js");
2
2
  let node_fs = require("node:fs");
3
3
  node_fs = require_dist.__toESM(node_fs);
4
4
  let node_child_process = require("node:child_process");
@@ -1,4 +1,4 @@
1
- import { ot as parseProcStatus } from "./dist-CBRky_dz.mjs";
1
+ import { ot as parseProcStatus } from "./dist-p8ruahJy.mjs";
2
2
  import * as fs from "node:fs";
3
3
  import { execFile } from "node:child_process";
4
4
  //#region src/shared/node-topology-platform.ts