@camstack/addon-post-analysis 1.1.32 → 1.1.34

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.
@@ -20,7 +20,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
20
20
  enumerable: true
21
21
  }) : target, mod));
22
22
  //#endregion
23
- //#region ../types/dist/event-category-H4AVePnn.mjs
23
+ //#region ../types/dist/event-category-D4HJq7Mw.mjs
24
24
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
25
25
  EventCategory["SystemBoot"] = "system.boot";
26
26
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -173,6 +173,11 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
173
173
  /** Runner-sampled scrub thumbnail (~1/5 s/camera). Telemetry (D8): a lost
174
174
  * thumb is a scrub gap the recorder's keyframe backfill covers. */
175
175
  EventCategory["RecordingThumbSampled"] = "recording.thumb-sampled";
176
+ /** Export render progress (0–100). Telemetry (D8): a lost tick is a stale
177
+ * progress bar the client reconciles via `recordingExport.getExport`. */
178
+ EventCategory["RecordingExportProgress"] = "recording.export.progress";
179
+ EventCategory["RecordingExportCompleted"] = "recording.export.completed";
180
+ EventCategory["RecordingExportFailed"] = "recording.export.failed";
176
181
  EventCategory["DetectionEvent"] = "detection.event";
177
182
  EventCategory["SessionTrackNew"] = "session.track.new";
178
183
  EventCategory["SessionTrackExpired"] = "session.track.expired";
@@ -462,6 +467,25 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
462
467
  */
463
468
  EventCategory["PipelineAnalyticsStationaryChanged"] = "pipeline-analytics.stationary-changed";
464
469
  /**
470
+ * Fired by `addon-post-analysis` when a package-drop is confirmed inside
471
+ * a package zone — a newly-appeared stationary object of a package class
472
+ * that cleared the class / zone / dwell / size gates. Payload:
473
+ * `PipelineAnalyticsPackageDeliveredPayload` carrying `{ deviceId,
474
+ * entryId, className, zoneIds, keyFrameMediaKey?, bbox, timestamp }`.
475
+ * Telemetry (D8): the durable record is the `package-events` store row;
476
+ * this bus topic drives notifier rules + live UI. See
477
+ * docs/superpowers/specs/2026-07-17-package-zones-design.md §5.1.
478
+ */
479
+ EventCategory["PipelineAnalyticsPackageDelivered"] = "pipeline-analytics.package-delivered";
480
+ /**
481
+ * Fired by `addon-post-analysis` when a previously-delivered package
482
+ * leaves its zone (the stationary entry departed — moved or swept).
483
+ * Payload: `PipelineAnalyticsPackagePickedUpPayload` carrying
484
+ * `{ deviceId, entryId, deliveredEventId, className, timestamp }`.
485
+ * Telemetry (D8). See package-zones-design §5.2.
486
+ */
487
+ EventCategory["PipelineAnalyticsPackagePickedUp"] = "pipeline-analytics.package-picked-up";
488
+ /**
465
489
  * Fired by `addon-post-analysis` whenever a gallery face row changes:
466
490
  * `kind:'buffered'` a new detected face was persisted, `'assigned'` /
467
491
  * `'unassigned'` its identity link changed, `'deleted'` the row was
@@ -5200,6 +5224,25 @@ function _instanceof(cls, params = {}) {
5200
5224
  };
5201
5225
  return inst;
5202
5226
  }
5227
+ //#endregion
5228
+ //#region ../../node_modules/zod/v4/classic/compat.js
5229
+ /** @deprecated Use the raw string literal codes instead, e.g. "invalid_type". */
5230
+ var ZodIssueCode = {
5231
+ invalid_type: "invalid_type",
5232
+ too_big: "too_big",
5233
+ too_small: "too_small",
5234
+ invalid_format: "invalid_format",
5235
+ not_multiple_of: "not_multiple_of",
5236
+ unrecognized_keys: "unrecognized_keys",
5237
+ invalid_union: "invalid_union",
5238
+ invalid_key: "invalid_key",
5239
+ invalid_element: "invalid_element",
5240
+ invalid_value: "invalid_value",
5241
+ custom: "custom"
5242
+ };
5243
+ /** @deprecated Do not use. Stub definition, only included for zod-to-json-schema compatibility. */
5244
+ var ZodFirstPartyTypeKind;
5245
+ ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
5203
5246
  Object.fromEntries([
5204
5247
  {
5205
5248
  id: "overview",
@@ -7337,6 +7380,62 @@ var RecordingConfigSchema = object({
7337
7380
  scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7338
7381
  });
7339
7382
  /**
7383
+ * Ops-log — the durable, append-only operations audit shared by the
7384
+ * recordings and events management surfaces.
7385
+ *
7386
+ * ONE row shape is reused for both domains so a single "Activity" view can
7387
+ * merge the recorder's DurableState ring (recordings ops-log) and the
7388
+ * pipeline-analytics SQLite collection (events ops-log). Each row records a
7389
+ * management operation, WHY it ran (reason), and its measurable effect
7390
+ * (itemsAffected + bytesReclaimed). Writes are best-effort — a failed log must
7391
+ * never fail the operation it records.
7392
+ */
7393
+ /** Which management domain the operation belongs to. */
7394
+ var OpsLogDomainSchema = _enum(["recording", "events"]);
7395
+ /** The kind of management operation performed. */
7396
+ var OpsLogOpSchema = _enum([
7397
+ "prune",
7398
+ "manual-delete",
7399
+ "rescan",
7400
+ "retention-run"
7401
+ ]);
7402
+ /** Why the operation ran. */
7403
+ var OpsLogReasonSchema = _enum([
7404
+ "retention",
7405
+ "quota",
7406
+ "manual",
7407
+ "operator"
7408
+ ]);
7409
+ /** One audit row, shared verbatim by both domains. */
7410
+ var OpsLogEntrySchema = object({
7411
+ /** Unique row id. */
7412
+ id: string(),
7413
+ /** Epoch ms the operation completed. */
7414
+ at: number(),
7415
+ domain: OpsLogDomainSchema,
7416
+ op: OpsLogOpSchema,
7417
+ reason: OpsLogReasonSchema,
7418
+ /** The camera the op targeted; null for a cluster/global op. */
7419
+ deviceId: number().nullable(),
7420
+ /** Node that performed the op (the log carries nodeId — no cross-node aggregation). */
7421
+ nodeId: string(),
7422
+ /** Buckets / rows deleted (op-specific unit). */
7423
+ itemsAffected: number(),
7424
+ /** Bytes reclaimed by the op (0 when not measurable). */
7425
+ bytesReclaimed: number(),
7426
+ /** Free-text detail (e.g. "floor moved to <ts>"); null when none. */
7427
+ detail: string().nullable(),
7428
+ /** Who/what triggered the op. */
7429
+ actor: string()
7430
+ });
7431
+ /** Shared query input for the per-domain `listOpsLog` cap methods. */
7432
+ var OpsLogQueryInputSchema = object({
7433
+ /** Restrict to a single camera; omit for every row. */
7434
+ deviceId: number().optional(),
7435
+ /** Max rows returned, newest-first. */
7436
+ limit: number().int().min(1).max(1e3).optional()
7437
+ });
7438
+ /**
7340
7439
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
7341
7440
  * storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
7342
7441
  * so the persisted record schema and the consumer-facing cap can both consume it
@@ -12711,7 +12810,11 @@ array(ZoneRuleSchema).readonly();
12711
12810
  * Extend the enum here when a new gating consumer comes online (audio
12712
12811
  * gating, alert filtering, …) — no other surface needs to change.
12713
12812
  */
12714
- var ZoneRuleStageEnum = _enum(["motion", "detection"]);
12813
+ var ZoneRuleStageEnum = _enum([
12814
+ "motion",
12815
+ "detection",
12816
+ "package"
12817
+ ]);
12715
12818
  DeviceType.Camera, method(object({
12716
12819
  deviceId: number(),
12717
12820
  stage: ZoneRuleStageEnum
@@ -12724,7 +12827,8 @@ DeviceType.Camera, method(object({
12724
12827
  auth: "admin"
12725
12828
  }), object({
12726
12829
  motion: array(ZoneRuleSchema).readonly(),
12727
- detection: array(ZoneRuleSchema).readonly()
12830
+ detection: array(ZoneRuleSchema).readonly(),
12831
+ package: array(ZoneRuleSchema).readonly()
12728
12832
  });
12729
12833
  var ProviderStatusSchema = object({
12730
12834
  connected: boolean(),
@@ -15923,6 +16027,7 @@ var EventKindIconSchema = _enum([
15923
16027
  "smoke",
15924
16028
  "water",
15925
16029
  "button",
16030
+ "package",
15926
16031
  "generic"
15927
16032
  ]);
15928
16033
  var EventKindCategorySchema = _enum([
@@ -15930,7 +16035,8 @@ var EventKindCategorySchema = _enum([
15930
16035
  "audio",
15931
16036
  "detection",
15932
16037
  "sensor",
15933
- "custom"
16038
+ "custom",
16039
+ "package"
15934
16040
  ]);
15935
16041
  var EventKindDescriptorSchema = object({
15936
16042
  /** Stable kind id (e.g. 'motion', 'person', 'contact'). */
@@ -16271,6 +16377,26 @@ var TrackCascadeCountsSchema = object({
16271
16377
  /** Per-track CLIP search vectors removed (best-effort). */
16272
16378
  embeddings: number().int()
16273
16379
  });
16380
+ /** Event-store footprint for one camera. */
16381
+ var EventStoreDeviceFootprintSchema = object({
16382
+ deviceId: number(),
16383
+ /** Persisted event rows (motion + object + audio) for the camera. */
16384
+ rows: number().int(),
16385
+ /** Event-owned media bytes on disk for the camera. */
16386
+ bytes: number().int()
16387
+ });
16388
+ /** Aggregate event-store footprint: global totals + per-camera breakdown. */
16389
+ var EventStoreFootprintSchema = object({
16390
+ totalRows: number().int(),
16391
+ totalBytes: number().int(),
16392
+ devices: array(EventStoreDeviceFootprintSchema).readonly()
16393
+ });
16394
+ /** Per-kind counts returned by the event-prune / device-delete mutations. */
16395
+ var EventPruneCountsSchema = object({
16396
+ motion: number().int(),
16397
+ object: number().int(),
16398
+ audio: number().int()
16399
+ });
16274
16400
  var pipelineAnalyticsCapability = {
16275
16401
  name: "pipeline-analytics",
16276
16402
  scope: "device",
@@ -16432,6 +16558,45 @@ var pipelineAnalyticsCapability = {
16432
16558
  kind: "mutation",
16433
16559
  auth: "admin"
16434
16560
  }),
16561
+ /**
16562
+ * Durable event-store footprint for the management UI: event rows
16563
+ * (motion + object + audio) counted per camera + total, plus the
16564
+ * event-owned media bytes on disk per camera + total. Stat/count-based,
16565
+ * computed on demand.
16566
+ */
16567
+ getEventStoreFootprint: method(object({}), EventStoreFootprintSchema, {
16568
+ kind: "query",
16569
+ auth: "admin"
16570
+ }),
16571
+ /**
16572
+ * Cluster-wide prune of events older than `olderThanMs` (exclusive) across
16573
+ * every camera, deleting each event's media in lockstep. Logged to the
16574
+ * events ops-log with `reason` (default `'retention'`). Returns the summed
16575
+ * per-kind deleted counts.
16576
+ */
16577
+ pruneEvents: method(object({
16578
+ olderThanMs: number(),
16579
+ reason: OpsLogReasonSchema.optional()
16580
+ }), EventPruneCountsSchema, {
16581
+ kind: "mutation",
16582
+ auth: "admin"
16583
+ }),
16584
+ /**
16585
+ * Manually delete EVERY event (motion + object + audio) for one camera and
16586
+ * its event-owned media in lockstep. Logged to the events ops-log as
16587
+ * `op:'manual-delete', reason:'manual'`. Destructive — the admin UI guards
16588
+ * it behind a confirm.
16589
+ */
16590
+ deleteDeviceEvents: method(object({ deviceId: number() }), EventPruneCountsSchema, {
16591
+ kind: "mutation",
16592
+ auth: "admin"
16593
+ }),
16594
+ /** The events ops-log rows (newest-first), optionally scoped to one camera.
16595
+ * Backed by a declared pipeline-analytics SQLite collection. */
16596
+ listOpsLog: method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
16597
+ kind: "query",
16598
+ auth: "admin"
16599
+ }),
16435
16600
  getEventMedia: method(object({
16436
16601
  eventId: string(),
16437
16602
  kind: MediaFileKindEnum.optional()
@@ -19812,13 +19977,131 @@ method(object({
19812
19977
  }), method(object({ deviceId: number() }), RecordingStatusSchema, {
19813
19978
  kind: "mutation",
19814
19979
  auth: "admin"
19815
- }), method(object({ deviceId: number() }), object({
19980
+ }), method(object({
19981
+ deviceId: number(),
19982
+ reason: OpsLogReasonSchema.optional()
19983
+ }), object({
19816
19984
  floorMs: number().nullable(),
19817
19985
  deletedBuckets: number().int(),
19818
19986
  reclaimedBytes: number().int()
19819
19987
  }), {
19820
19988
  kind: "mutation",
19821
19989
  auth: "admin"
19990
+ }), method(object({
19991
+ deviceId: number(),
19992
+ fromMs: number().optional(),
19993
+ toMs: number().optional()
19994
+ }), object({
19995
+ deletedBuckets: number().int(),
19996
+ reclaimedBytes: number().int()
19997
+ }), {
19998
+ kind: "mutation",
19999
+ auth: "admin"
20000
+ }), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
20001
+ kind: "query",
20002
+ auth: "admin"
20003
+ });
20004
+ /**
20005
+ * `recordingExport` cap — render a footage time range into a single downloadable
20006
+ * MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
20007
+ * bounded lifetime with a durable history, auto-expiry, and optional
20008
+ * delete-after-download.
20009
+ *
20010
+ * Like `recording` this is a `scope:'system', mode:'singleton'` cap: the
20011
+ * recorder self-gates so exactly ONE node (the designated `recordingNodeId`,
20012
+ * default `hub`) registers it. Device-scoped methods carry `deviceId` in their
20013
+ * input and dispatch to that single provider; the render runs on the node that
20014
+ * owns the footage (no cross-node segment transfer). Download rides the
20015
+ * framework addon data-plane. State persists in a DurableState blob (NOT
20016
+ * SQLite); history rows survive file deletion for audit.
20017
+ */
20018
+ /** Playback-speed multiplier for the render (1 = realtime). */
20019
+ var ExportSpeedSchema = number().min(.25).max(32);
20020
+ /** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
20021
+ var ExportTimelapseSchema = object({
20022
+ everyMs: number().int().positive(),
20023
+ outputFps: number().int().min(1).max(60).optional()
20024
+ });
20025
+ /**
20026
+ * Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
20027
+ * is honoured only for a realtime-ish speed (0.5–2×); timelapse is always
20028
+ * silent. `maxLifeMs` bounds how long the finished file is kept;
20029
+ * `deleteAfterDownload` removes it shortly after the first complete download.
20030
+ */
20031
+ var ExportOptionsSchema = object({
20032
+ speed: ExportSpeedSchema.optional(),
20033
+ timelapse: ExportTimelapseSchema.optional(),
20034
+ includeAudio: boolean(),
20035
+ maxLifeMs: number().int().positive(),
20036
+ deleteAfterDownload: boolean(),
20037
+ title: string().max(200).optional()
20038
+ }).superRefine((v, ctx) => {
20039
+ if (v.speed !== void 0 && v.timelapse !== void 0) ctx.addIssue({
20040
+ code: ZodIssueCode.custom,
20041
+ message: "speed and timelapse are mutually exclusive",
20042
+ path: ["timelapse"]
20043
+ });
20044
+ });
20045
+ var ExportStateSchema = _enum([
20046
+ "queued",
20047
+ "rendering",
20048
+ "ready",
20049
+ "failed",
20050
+ "expired",
20051
+ "deleted"
20052
+ ]);
20053
+ /** One export job / history row. */
20054
+ var ExportRecordSchema = object({
20055
+ id: string(),
20056
+ deviceId: number(),
20057
+ profile: string(),
20058
+ fromMs: number(),
20059
+ toMs: number(),
20060
+ options: ExportOptionsSchema,
20061
+ state: ExportStateSchema,
20062
+ /** 0–100 while rendering; null otherwise. */
20063
+ progressPct: number().nullable(),
20064
+ /** File size once ready; null before. */
20065
+ fileBytes: number().nullable(),
20066
+ expiresAt: number(),
20067
+ deleteAfterDownload: boolean(),
20068
+ /** Epoch of the first complete download; null until then. */
20069
+ downloadedAt: number().nullable(),
20070
+ createdAt: number(),
20071
+ /** User id/name that requested the export. */
20072
+ createdBy: string(),
20073
+ /** Failure reason when state is 'failed'; null otherwise. */
20074
+ error: string().nullable()
20075
+ });
20076
+ /** Candidate download URLs (LAN first, then operator extra hosts). */
20077
+ var ExportDownloadSchema = object({
20078
+ url: string(),
20079
+ endpoints: array(string())
20080
+ });
20081
+ method(object({
20082
+ deviceId: number(),
20083
+ profile: string(),
20084
+ fromMs: number(),
20085
+ toMs: number(),
20086
+ options: ExportOptionsSchema
20087
+ }), ExportRecordSchema, {
20088
+ kind: "mutation",
20089
+ auth: "protected"
20090
+ }), method(object({ deviceId: number().optional() }), array(ExportRecordSchema), {
20091
+ kind: "query",
20092
+ auth: "protected"
20093
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
20094
+ kind: "query",
20095
+ auth: "protected"
20096
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
20097
+ kind: "mutation",
20098
+ auth: "protected"
20099
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
20100
+ kind: "mutation",
20101
+ auth: "protected"
20102
+ }), method(object({ exportId: string() }), ExportDownloadSchema, {
20103
+ kind: "query",
20104
+ auth: "protected"
19822
20105
  });
19823
20106
  /**
19824
20107
  * One publishable camera stream as its OWNING PROVIDER describes it — the same
@@ -22838,6 +23121,12 @@ Object.freeze({
22838
23121
  addonId: null,
22839
23122
  access: "delete"
22840
23123
  },
23124
+ "pipelineAnalytics.deleteDeviceEvents": {
23125
+ capName: "pipeline-analytics",
23126
+ capScope: "device",
23127
+ addonId: null,
23128
+ access: "delete"
23129
+ },
22841
23130
  "pipelineAnalytics.deleteTracks": {
22842
23131
  capName: "pipeline-analytics",
22843
23132
  capScope: "device",
@@ -22868,6 +23157,12 @@ Object.freeze({
22868
23157
  addonId: null,
22869
23158
  access: "view"
22870
23159
  },
23160
+ "pipelineAnalytics.getEventStoreFootprint": {
23161
+ capName: "pipeline-analytics",
23162
+ capScope: "device",
23163
+ addonId: null,
23164
+ access: "view"
23165
+ },
22871
23166
  "pipelineAnalytics.getKeyEvents": {
22872
23167
  capName: "pipeline-analytics",
22873
23168
  capScope: "device",
@@ -22910,6 +23205,12 @@ Object.freeze({
22910
23205
  addonId: null,
22911
23206
  access: "view"
22912
23207
  },
23208
+ "pipelineAnalytics.listOpsLog": {
23209
+ capName: "pipeline-analytics",
23210
+ capScope: "device",
23211
+ addonId: null,
23212
+ access: "view"
23213
+ },
22913
23214
  "pipelineAnalytics.listRecentTracks": {
22914
23215
  capName: "pipeline-analytics",
22915
23216
  capScope: "device",
@@ -22922,6 +23223,12 @@ Object.freeze({
22922
23223
  addonId: null,
22923
23224
  access: "view"
22924
23225
  },
23226
+ "pipelineAnalytics.pruneEvents": {
23227
+ capName: "pipeline-analytics",
23228
+ capScope: "device",
23229
+ addonId: null,
23230
+ access: "create"
23231
+ },
22925
23232
  "pipelineAnalytics.pruneEventsBefore": {
22926
23233
  capName: "pipeline-analytics",
22927
23234
  capScope: "device",
@@ -23684,6 +23991,12 @@ Object.freeze({
23684
23991
  addonId: null,
23685
23992
  access: "create"
23686
23993
  },
23994
+ "recording.deleteFootprint": {
23995
+ capName: "recording",
23996
+ capScope: "system",
23997
+ addonId: null,
23998
+ access: "delete"
23999
+ },
23687
24000
  "recording.getAvailability": {
23688
24001
  capName: "recording",
23689
24002
  capScope: "system",
@@ -23714,6 +24027,12 @@ Object.freeze({
23714
24027
  addonId: null,
23715
24028
  access: "view"
23716
24029
  },
24030
+ "recording.listOpsLog": {
24031
+ capName: "recording",
24032
+ capScope: "system",
24033
+ addonId: null,
24034
+ access: "view"
24035
+ },
23717
24036
  "recording.locateSegment": {
23718
24037
  capName: "recording",
23719
24038
  capScope: "system",
@@ -23744,6 +24063,42 @@ Object.freeze({
23744
24063
  addonId: null,
23745
24064
  access: "create"
23746
24065
  },
24066
+ "recordingExport.cancelExport": {
24067
+ capName: "recordingExport",
24068
+ capScope: "system",
24069
+ addonId: null,
24070
+ access: "create"
24071
+ },
24072
+ "recordingExport.createExport": {
24073
+ capName: "recordingExport",
24074
+ capScope: "system",
24075
+ addonId: null,
24076
+ access: "create"
24077
+ },
24078
+ "recordingExport.deleteExport": {
24079
+ capName: "recordingExport",
24080
+ capScope: "system",
24081
+ addonId: null,
24082
+ access: "delete"
24083
+ },
24084
+ "recordingExport.getDownloadUrl": {
24085
+ capName: "recordingExport",
24086
+ capScope: "system",
24087
+ addonId: null,
24088
+ access: "view"
24089
+ },
24090
+ "recordingExport.getExport": {
24091
+ capName: "recordingExport",
24092
+ capScope: "system",
24093
+ addonId: null,
24094
+ access: "view"
24095
+ },
24096
+ "recordingExport.listExports": {
24097
+ capName: "recordingExport",
24098
+ capScope: "system",
24099
+ addonId: null,
24100
+ access: "view"
24101
+ },
23747
24102
  "sceneMonitor.captureReference": {
23748
24103
  capName: "scene-monitor",
23749
24104
  capScope: "device",
@@ -24933,6 +25288,12 @@ Object.defineProperty(exports, "EventCategory", {
24933
25288
  return EventCategory;
24934
25289
  }
24935
25290
  });
25291
+ Object.defineProperty(exports, "OpsLogEntrySchema", {
25292
+ enumerable: true,
25293
+ get: function() {
25294
+ return OpsLogEntrySchema;
25295
+ }
25296
+ });
24936
25297
  Object.defineProperty(exports, "__toESM", {
24937
25298
  enumerable: true,
24938
25299
  get: function() {
@@ -24945,6 +25306,12 @@ Object.defineProperty(exports, "addonWidgetsSourceCapability", {
24945
25306
  return addonWidgetsSourceCapability;
24946
25307
  }
24947
25308
  });
25309
+ Object.defineProperty(exports, "array", {
25310
+ enumerable: true,
25311
+ get: function() {
25312
+ return array;
25313
+ }
25314
+ });
24948
25315
  Object.defineProperty(exports, "audioMetricsCapability", {
24949
25316
  enumerable: true,
24950
25317
  get: function() {
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_dist = require("../dist-DU_JRm-j.js");
5
+ const require_dist = require("../dist-BeDNiKi6.js");
6
6
  let node_fs = require("node:fs");
7
7
  let node_fs$1 = require_dist.__toESM(node_fs, 1);
8
8
  node_fs = require_dist.__toESM(node_fs);
@@ -1,4 +1,4 @@
1
- import { c as hfModelUrl, h as BaseAddon, o as embeddingEncoderCapability } from "../dist-CyyCe4TK.mjs";
1
+ import { g as BaseAddon, l as hfModelUrl, s as embeddingEncoderCapability } from "../dist-B1EgWJrr.mjs";
2
2
  import { createRequire } from "node:module";
3
3
  import * as fs from "node:fs";
4
4
  import * as path$1 from "node:path";
@@ -1,4 +1,4 @@
1
- const require_dist = require("./dist-DU_JRm-j.js");
1
+ const require_dist = require("./dist-BeDNiKi6.js");
2
2
  let node_fs = require("node:fs");
3
3
  node_fs = require_dist.__toESM(node_fs, 1);
4
4
  let node_path = require("node:path");
@@ -1,6 +1,6 @@
1
1
  import { a as e, i as t, n, o as r, r as i, t as a } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare__react__loadShare__.js-C0AuF9av.mjs";
2
2
  import { t as o } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare___mf_0_tanstack_mf_1_react_mf_2_query__loadShare__.js-B3Wx5J80.mjs";
3
- import { a as s, i as c, n as l, o as u, r as d, s as f, t as p } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-D6C5R_2c.mjs";
3
+ import { a as s, i as c, n as l, o as u, r as d, s as f, t as p } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-C8Wc_rxx.mjs";
4
4
  import { n as m, r as h, t as g } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-Bm-iyjmq.mjs";
5
5
  //#region ../../node_modules/lucide-react/dist/esm/shared/src/utils.js
6
6
  var _ = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), v = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), y = (e) => {
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.1.27",
6
+ version: "1.1.29",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_pipeline_analytics_widgets",
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.1.48",
21
+ version: "1.1.50",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_pipeline_analytics_widgets",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.1.39",
36
+ version: "1.1.41",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_pipeline_analytics_widgets",