@camstack/addon-post-analysis 1.2.218 → 1.2.220

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.
@@ -16219,24 +16219,6 @@ method(object({}), array(TargetKindSchema)), method(object({}), array(TargetSche
16219
16219
  targetId: string(),
16220
16220
  enabled: boolean()
16221
16221
  }), _void(), { kind: "mutation" });
16222
- var MACRO_LABELS = [
16223
- {
16224
- id: "person",
16225
- name: "Person"
16226
- },
16227
- {
16228
- id: "vehicle",
16229
- name: "Vehicle"
16230
- },
16231
- {
16232
- id: "animal",
16233
- name: "Animal"
16234
- },
16235
- {
16236
- id: "package",
16237
- name: "Package"
16238
- }
16239
- ];
16240
16222
  /**
16241
16223
  * The class names a per-class COUNT can ever be keyed on — the macro ids, and
16242
16224
  * only those.
@@ -16254,7 +16236,24 @@ var MACRO_LABELS = [
16254
16236
  * does not go through the engine's macro-expanding `expandClassSelector`), two
16255
16237
  * live rules were authored on `car`, and both counters read 0 forever.
16256
16238
  */
16257
- var DETECTION_MACRO_CLASSES = new Set(MACRO_LABELS.map((l) => l.id));
16239
+ var DETECTION_MACRO_CLASSES = new Set([
16240
+ {
16241
+ id: "person",
16242
+ name: "Person"
16243
+ },
16244
+ {
16245
+ id: "vehicle",
16246
+ name: "Vehicle"
16247
+ },
16248
+ {
16249
+ id: "animal",
16250
+ name: "Animal"
16251
+ },
16252
+ {
16253
+ id: "package",
16254
+ name: "Package"
16255
+ }
16256
+ ].map((l) => l.id));
16258
16257
  /** True when `className` is a macro the detector can actually emit (and hence a
16259
16258
  * class a count can be keyed on) — see {@link DETECTION_MACRO_CLASSES}. */
16260
16259
  function isDetectionMacroClass(className) {
@@ -17081,6 +17080,7 @@ var NcSystemEventKindSchema = _enum([
17081
17080
  "addon-crash-loop",
17082
17081
  "addon-update-available",
17083
17082
  "server-update-available",
17083
+ "wrapper-update-available",
17084
17084
  "alarm-triggered",
17085
17085
  "alarm-armed",
17086
17086
  "alarm-disarmed",
@@ -18227,6 +18227,10 @@ var NC_CONDITION_CATALOG = [
18227
18227
  value: "server-update-available",
18228
18228
  label: "Server update available"
18229
18229
  },
18230
+ {
18231
+ value: "wrapper-update-available",
18232
+ label: "Container / app update available"
18233
+ },
18230
18234
  {
18231
18235
  value: "addon-updated",
18232
18236
  label: "Addons updated"
@@ -23858,6 +23862,53 @@ var ImageContractSchema = object({
23858
23862
  /** One operator-grade sentence: this node runs image X; the contract says Y. */
23859
23863
  message: string()
23860
23864
  });
23865
+ /**
23866
+ * The shell verdict (see {@link WrapperKindSchema}) with the proofs that
23867
+ * produced it.
23868
+ *
23869
+ * There is deliberately NO `canSelfUpdate` and no apply action: a wrapper
23870
+ * update is an ANNOUNCEMENT. The notification body carries the exact command
23871
+ * for a `docker` shell and says the app restarts into the new build for
23872
+ * `electron`, and that sentence is chosen from `kind` alone — a boolean
23873
+ * nothing reads is the defect this repo keeps paying for.
23874
+ */
23875
+ var WrapperIdentitySchema = object({
23876
+ kind: _enum([
23877
+ "docker",
23878
+ "electron",
23879
+ "native",
23880
+ "contradictory",
23881
+ "unknown"
23882
+ ]),
23883
+ /** Every probe that ran, in a stable order. Never empty. */
23884
+ evidence: array(object({
23885
+ /** Which probe this row reports. */
23886
+ fact: _enum([
23887
+ "dockerenv-file",
23888
+ "proc-1-cgroup",
23889
+ "platform",
23890
+ "electron-app-version-env"
23891
+ ]),
23892
+ /**
23893
+ * `observed` — this process read it itself. `declared` — the shell told the
23894
+ * process and nothing here can check it. Only the Electron app version is
23895
+ * ever `declared`, and only because a child cannot see its parent.
23896
+ */
23897
+ mode: _enum(["observed", "declared"]),
23898
+ /** Did the probe support the fact it names? A `false` row is still evidence. */
23899
+ holds: boolean(),
23900
+ /** What was actually read, verbatim enough for an operator to argue with. */
23901
+ detail: string()
23902
+ })),
23903
+ /**
23904
+ * The version of the SHELL, when the shell has one it can state: the
23905
+ * Electron app version it declared, or the baked seed closure that
23906
+ * fingerprints a container / app bundle. `null` for `contradictory` and
23907
+ * `unknown` — which version belongs to the shell is precisely what is not
23908
+ * known there.
23909
+ */
23910
+ currentVersion: string().nullable()
23911
+ });
23861
23912
  var ServerRollbackInfoSchema = object({
23862
23913
  /** The version that failed (or was manually rolled back). */
23863
23914
  fromVersion: string(),
@@ -23899,7 +23950,13 @@ var ServerPackageStatusSchema = object({
23899
23950
  * Seed-vs-contract verdict (see {@link ImageContractSchema}). Optional for
23900
23951
  * version skew: an older provider's payload simply omits it.
23901
23952
  */
23902
- imageContract: ImageContractSchema.optional()
23953
+ imageContract: ImageContractSchema.optional(),
23954
+ /**
23955
+ * What this node runs INSIDE (see {@link WrapperIdentitySchema}). Optional
23956
+ * for version skew: an older provider's payload simply omits it, and an
23957
+ * absent wrapper is unknown — never `native`.
23958
+ */
23959
+ wrapper: WrapperIdentitySchema.optional()
23903
23960
  });
23904
23961
  var ServerUpdateCheckResultSchema = object({
23905
23962
  packageName: string(),
@@ -27709,8 +27766,8 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
27709
27766
  *
27710
27767
  * An **empty array reads NOTHING** — `[]` is an empty page, never
27711
27768
  * "every camera". A request for no devices is a request, not an
27712
- * omission; same contract as `deviceManager.listFleet` and
27713
- * `pipelineAnalytics.listRecentTracks`.
27769
+ * omission; same contract as `deviceManager.listAll`'s `deviceIds`
27770
+ * and `pipelineAnalytics.listRecentTracks`.
27714
27771
  *
27715
27772
  * Absent (`undefined`) is the omission, and keeps the cluster-wide view.
27716
27773
  */
@@ -44396,7 +44453,7 @@ function systemEventFilterApplies(kind, filter) {
44396
44453
  switch (filter) {
44397
44454
  case "deviceIds": return kind.startsWith("device-") || kind.startsWith("stream-") || kind === "detection-blind" || kind === "alarm-triggered" || kind === "export-completed";
44398
44455
  case "deviceTypes": return kind.startsWith("device-") || kind === "detection-blind";
44399
- case "nodeIds": return kind.startsWith("node-") || kind === "addon-crash-loop" || kind === "addon-update-available" || kind === "addon-updated" || kind === "server-update-available" || kind === "server-updated";
44456
+ case "nodeIds": return kind.startsWith("node-") || kind === "addon-crash-loop" || kind === "addon-update-available" || kind === "addon-updated" || kind === "server-update-available" || kind === "wrapper-update-available" || kind === "server-updated";
44400
44457
  case "packageNames": return kind.endsWith("update-available") || kind === "addon-updated" || kind === "server-updated";
44401
44458
  }
44402
44459
  }
@@ -45512,6 +45569,12 @@ Object.defineProperty(exports, "EventCategory", {
45512
45569
  return EventCategory;
45513
45570
  }
45514
45571
  });
45572
+ Object.defineProperty(exports, "FIRST_LEVEL_MACRO_CLASSES", {
45573
+ enumerable: true,
45574
+ get: function() {
45575
+ return FIRST_LEVEL_MACRO_CLASSES;
45576
+ }
45577
+ });
45515
45578
  Object.defineProperty(exports, "FULL_IMAGE_BBOX", {
45516
45579
  enumerable: true,
45517
45580
  get: function() {
@@ -45530,12 +45593,6 @@ Object.defineProperty(exports, "LabelAttributionSchema", {
45530
45593
  return LabelAttributionSchema;
45531
45594
  }
45532
45595
  });
45533
- Object.defineProperty(exports, "MACRO_LABELS", {
45534
- enumerable: true,
45535
- get: function() {
45536
- return MACRO_LABELS;
45537
- }
45538
- });
45539
45596
  Object.defineProperty(exports, "MAX_ARCHIVED_DEBUG_NOTES", {
45540
45597
  enumerable: true,
45541
45598
  get: function() {
@@ -16188,24 +16188,6 @@ method(object({}), array(TargetKindSchema)), method(object({}), array(TargetSche
16188
16188
  targetId: string(),
16189
16189
  enabled: boolean()
16190
16190
  }), _void(), { kind: "mutation" });
16191
- var MACRO_LABELS = [
16192
- {
16193
- id: "person",
16194
- name: "Person"
16195
- },
16196
- {
16197
- id: "vehicle",
16198
- name: "Vehicle"
16199
- },
16200
- {
16201
- id: "animal",
16202
- name: "Animal"
16203
- },
16204
- {
16205
- id: "package",
16206
- name: "Package"
16207
- }
16208
- ];
16209
16191
  /**
16210
16192
  * The class names a per-class COUNT can ever be keyed on — the macro ids, and
16211
16193
  * only those.
@@ -16223,7 +16205,24 @@ var MACRO_LABELS = [
16223
16205
  * does not go through the engine's macro-expanding `expandClassSelector`), two
16224
16206
  * live rules were authored on `car`, and both counters read 0 forever.
16225
16207
  */
16226
- var DETECTION_MACRO_CLASSES = new Set(MACRO_LABELS.map((l) => l.id));
16208
+ var DETECTION_MACRO_CLASSES = new Set([
16209
+ {
16210
+ id: "person",
16211
+ name: "Person"
16212
+ },
16213
+ {
16214
+ id: "vehicle",
16215
+ name: "Vehicle"
16216
+ },
16217
+ {
16218
+ id: "animal",
16219
+ name: "Animal"
16220
+ },
16221
+ {
16222
+ id: "package",
16223
+ name: "Package"
16224
+ }
16225
+ ].map((l) => l.id));
16227
16226
  /** True when `className` is a macro the detector can actually emit (and hence a
16228
16227
  * class a count can be keyed on) — see {@link DETECTION_MACRO_CLASSES}. */
16229
16228
  function isDetectionMacroClass(className) {
@@ -17050,6 +17049,7 @@ var NcSystemEventKindSchema = _enum([
17050
17049
  "addon-crash-loop",
17051
17050
  "addon-update-available",
17052
17051
  "server-update-available",
17052
+ "wrapper-update-available",
17053
17053
  "alarm-triggered",
17054
17054
  "alarm-armed",
17055
17055
  "alarm-disarmed",
@@ -18196,6 +18196,10 @@ var NC_CONDITION_CATALOG = [
18196
18196
  value: "server-update-available",
18197
18197
  label: "Server update available"
18198
18198
  },
18199
+ {
18200
+ value: "wrapper-update-available",
18201
+ label: "Container / app update available"
18202
+ },
18199
18203
  {
18200
18204
  value: "addon-updated",
18201
18205
  label: "Addons updated"
@@ -23827,6 +23831,53 @@ var ImageContractSchema = object({
23827
23831
  /** One operator-grade sentence: this node runs image X; the contract says Y. */
23828
23832
  message: string()
23829
23833
  });
23834
+ /**
23835
+ * The shell verdict (see {@link WrapperKindSchema}) with the proofs that
23836
+ * produced it.
23837
+ *
23838
+ * There is deliberately NO `canSelfUpdate` and no apply action: a wrapper
23839
+ * update is an ANNOUNCEMENT. The notification body carries the exact command
23840
+ * for a `docker` shell and says the app restarts into the new build for
23841
+ * `electron`, and that sentence is chosen from `kind` alone — a boolean
23842
+ * nothing reads is the defect this repo keeps paying for.
23843
+ */
23844
+ var WrapperIdentitySchema = object({
23845
+ kind: _enum([
23846
+ "docker",
23847
+ "electron",
23848
+ "native",
23849
+ "contradictory",
23850
+ "unknown"
23851
+ ]),
23852
+ /** Every probe that ran, in a stable order. Never empty. */
23853
+ evidence: array(object({
23854
+ /** Which probe this row reports. */
23855
+ fact: _enum([
23856
+ "dockerenv-file",
23857
+ "proc-1-cgroup",
23858
+ "platform",
23859
+ "electron-app-version-env"
23860
+ ]),
23861
+ /**
23862
+ * `observed` — this process read it itself. `declared` — the shell told the
23863
+ * process and nothing here can check it. Only the Electron app version is
23864
+ * ever `declared`, and only because a child cannot see its parent.
23865
+ */
23866
+ mode: _enum(["observed", "declared"]),
23867
+ /** Did the probe support the fact it names? A `false` row is still evidence. */
23868
+ holds: boolean(),
23869
+ /** What was actually read, verbatim enough for an operator to argue with. */
23870
+ detail: string()
23871
+ })),
23872
+ /**
23873
+ * The version of the SHELL, when the shell has one it can state: the
23874
+ * Electron app version it declared, or the baked seed closure that
23875
+ * fingerprints a container / app bundle. `null` for `contradictory` and
23876
+ * `unknown` — which version belongs to the shell is precisely what is not
23877
+ * known there.
23878
+ */
23879
+ currentVersion: string().nullable()
23880
+ });
23830
23881
  var ServerRollbackInfoSchema = object({
23831
23882
  /** The version that failed (or was manually rolled back). */
23832
23883
  fromVersion: string(),
@@ -23868,7 +23919,13 @@ var ServerPackageStatusSchema = object({
23868
23919
  * Seed-vs-contract verdict (see {@link ImageContractSchema}). Optional for
23869
23920
  * version skew: an older provider's payload simply omits it.
23870
23921
  */
23871
- imageContract: ImageContractSchema.optional()
23922
+ imageContract: ImageContractSchema.optional(),
23923
+ /**
23924
+ * What this node runs INSIDE (see {@link WrapperIdentitySchema}). Optional
23925
+ * for version skew: an older provider's payload simply omits it, and an
23926
+ * absent wrapper is unknown — never `native`.
23927
+ */
23928
+ wrapper: WrapperIdentitySchema.optional()
23872
23929
  });
23873
23930
  var ServerUpdateCheckResultSchema = object({
23874
23931
  packageName: string(),
@@ -27678,8 +27735,8 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
27678
27735
  *
27679
27736
  * An **empty array reads NOTHING** — `[]` is an empty page, never
27680
27737
  * "every camera". A request for no devices is a request, not an
27681
- * omission; same contract as `deviceManager.listFleet` and
27682
- * `pipelineAnalytics.listRecentTracks`.
27738
+ * omission; same contract as `deviceManager.listAll`'s `deviceIds`
27739
+ * and `pipelineAnalytics.listRecentTracks`.
27683
27740
  *
27684
27741
  * Absent (`undefined`) is the omission, and keeps the cluster-wide view.
27685
27742
  */
@@ -44365,7 +44422,7 @@ function systemEventFilterApplies(kind, filter) {
44365
44422
  switch (filter) {
44366
44423
  case "deviceIds": return kind.startsWith("device-") || kind.startsWith("stream-") || kind === "detection-blind" || kind === "alarm-triggered" || kind === "export-completed";
44367
44424
  case "deviceTypes": return kind.startsWith("device-") || kind === "detection-blind";
44368
- case "nodeIds": return kind.startsWith("node-") || kind === "addon-crash-loop" || kind === "addon-update-available" || kind === "addon-updated" || kind === "server-update-available" || kind === "server-updated";
44425
+ case "nodeIds": return kind.startsWith("node-") || kind === "addon-crash-loop" || kind === "addon-update-available" || kind === "addon-updated" || kind === "server-update-available" || kind === "wrapper-update-available" || kind === "server-updated";
44369
44426
  case "packageNames": return kind.endsWith("update-available") || kind === "addon-updated" || kind === "server-updated";
44370
44427
  }
44371
44428
  }
@@ -45373,4 +45430,4 @@ function vectorDimFromBase64(encoded) {
45373
45430
  return Math.floor(Buffer.from(encoded, "base64").byteLength / 4);
45374
45431
  }
45375
45432
  //#endregion
45376
- export { VISIT_MERGE_GAP_MS as $, object as $t, NcRulePatchSchema as A, resolvePoolMemoryPolicy as At, PoolMemoryWatchdog as B, CamProfileSchema as Bt, NC_ALARM_SYSTEM_EVENT_KINDS as C, parseProcStatus as Ct, NC_TAXONOMY as D, readDeviceStateFrom as Dt, NC_SNOOZE_MAX_MINUTES as E, plateGalleryCapability as Et, NcSnoozeSchema as F, vectorDimFromBase64 as Ft, SCENE_DEFAULT_UNCOVERED_POLICY as G, nodePin as Gt, RetrainStatusSchema as H, createEvent as Ht, NcSnoozeSuppressedSchema as I, videoclipsCapability as It, TIMELAPSE_DENSE_FLOOR_SEC as J, array as Jt, SCENE_DIVERGED as K, sleep as Kt, NcSystemEventKindSchema as L, zoneAnalyticsCapability as Lt, NcRuleTargetSchema as M, storageOccupancyCapability as Mt, NcScheduleSchema as N, subKindsOf as Nt, NcConditionDescriptorSchema as O, readTimelapseGeneratedAt as Ot, NcSnoozeInputSchema as P, systemEventFilterApplies as Pt, TrackSourceSchema as Q, number as Qt, NcTaxonomySchema as R, errMsg as Rt, MediaFileKindEnum as S, notificationRulesCapability as St, NC_DEFAULT_SNOOZE_MINUTES as T, pipelineAnalyticsCapability as Tt, SCENE_CONFIRM_DEFAULT_TIMEOUT_MS as U, hydrateSchema as Ut, RECORDING_EXPORT_MAX_READ_BYTES as V, DeviceType as Vt, SCENE_DEFAULT_ANCHOR_THRESHOLD as W, isDeviceScopedCap as Wt, TimelapseRulePatchSchema as X, discriminatedUnion as Xt, TimelapseRuleInputSchema as Y, boolean as Yt, TimelapseRuleSchema as Z, literal as Zt, LabelAttributionSchema as _, isDetectionMacroClass as _t, CLUSTER_MODEL_SCOPED_STEPS as a, buildEventKindDescriptor as at, MAX_BIRTH_DECISION_RECORDS as b, kebabToCamel as bt, DEFAULT_FIRST_SIGHTING_FRESHNESS_MS as c, defineCustomActions as ct, DETECTION_PIPELINE_CAP_NAME as d, encodeVectorBase64 as dt, partialRecord as en, addonWidgetsSourceCapability as et, DeclaredDevices as f, evaluateSensorEdge as ft, FailureCounters as g, hfModelUrl as gt, FULL_IMAGE_BBOX as h, failureContributionCapability as ht, BirthDecisionRecordSchema as i, EventCategory as in, audioModeOf as it, NcRuleSchema as j, sceneMonitorCapability as jt, NcRuleInputSchema as k, resolveLocationMode as kt, DEFAULT_TIMELAPSE_PREVIEW_TEXT as l, deriveRecordingMode as lt, EVENT_PAD_MS as m, faceGalleryCapability as mt, ArchivedDebugNoteSchema as n, string as nn, assertTimelapseCadences as nt, COCO_TO_MACRO as o, cosineSimilarity as ot, EVENT_KIND_BY_CAP as p, evictionPolicyOfLocation as pt, SceneMonitorSchema as q, _enum as qt, BaseDevice as r, unknown as rn, audioMetricsCapability as rt, DEFAULT_EVENT_COLOR as s, customAction as st, AUDIO_MACRO_LABELS as t, record as tn, alarmPanelCapability as tt, DETECTION_MACRO_CLASSES as u, embeddingEncoderCapability as ut, MACRO_LABELS as v, isScheduleActive as vt, NC_CONDITION_CATALOG as w, pickClusterStepModels as wt, MAX_BIRTH_LATENCY_PROXY_MS as x, mayWriteToLocation as xt, MAX_ARCHIVED_DEBUG_NOTES as y, isSourceCap as yt, OpsLogEntrySchema as z, BaseAddon as zt };
45433
+ export { VISIT_MERGE_GAP_MS as $, object as $t, NcRulePatchSchema as A, resolvePoolMemoryPolicy as At, PoolMemoryWatchdog as B, CamProfileSchema as Bt, NC_ALARM_SYSTEM_EVENT_KINDS as C, parseProcStatus as Ct, NC_TAXONOMY as D, readDeviceStateFrom as Dt, NC_SNOOZE_MAX_MINUTES as E, plateGalleryCapability as Et, NcSnoozeSchema as F, vectorDimFromBase64 as Ft, SCENE_DEFAULT_UNCOVERED_POLICY as G, nodePin as Gt, RetrainStatusSchema as H, createEvent as Ht, NcSnoozeSuppressedSchema as I, videoclipsCapability as It, TIMELAPSE_DENSE_FLOOR_SEC as J, array as Jt, SCENE_DIVERGED as K, sleep as Kt, NcSystemEventKindSchema as L, zoneAnalyticsCapability as Lt, NcRuleTargetSchema as M, storageOccupancyCapability as Mt, NcScheduleSchema as N, subKindsOf as Nt, NcConditionDescriptorSchema as O, readTimelapseGeneratedAt as Ot, NcSnoozeInputSchema as P, systemEventFilterApplies as Pt, TrackSourceSchema as Q, number as Qt, NcTaxonomySchema as R, errMsg as Rt, MediaFileKindEnum as S, notificationRulesCapability as St, NC_DEFAULT_SNOOZE_MINUTES as T, pipelineAnalyticsCapability as Tt, SCENE_CONFIRM_DEFAULT_TIMEOUT_MS as U, hydrateSchema as Ut, RECORDING_EXPORT_MAX_READ_BYTES as V, DeviceType as Vt, SCENE_DEFAULT_ANCHOR_THRESHOLD as W, isDeviceScopedCap as Wt, TimelapseRulePatchSchema as X, discriminatedUnion as Xt, TimelapseRuleInputSchema as Y, boolean as Yt, TimelapseRuleSchema as Z, literal as Zt, FailureCounters as _, isDetectionMacroClass as _t, CLUSTER_MODEL_SCOPED_STEPS as a, buildEventKindDescriptor as at, MAX_BIRTH_DECISION_RECORDS as b, kebabToCamel as bt, DEFAULT_FIRST_SIGHTING_FRESHNESS_MS as c, defineCustomActions as ct, DETECTION_PIPELINE_CAP_NAME as d, encodeVectorBase64 as dt, partialRecord as en, addonWidgetsSourceCapability as et, DeclaredDevices as f, evaluateSensorEdge as ft, FULL_IMAGE_BBOX as g, hfModelUrl as gt, FIRST_LEVEL_MACRO_CLASSES as h, failureContributionCapability as ht, BirthDecisionRecordSchema as i, EventCategory as in, audioModeOf as it, NcRuleSchema as j, sceneMonitorCapability as jt, NcRuleInputSchema as k, resolveLocationMode as kt, DEFAULT_TIMELAPSE_PREVIEW_TEXT as l, deriveRecordingMode as lt, EVENT_PAD_MS as m, faceGalleryCapability as mt, ArchivedDebugNoteSchema as n, string as nn, assertTimelapseCadences as nt, COCO_TO_MACRO as o, cosineSimilarity as ot, EVENT_KIND_BY_CAP as p, evictionPolicyOfLocation as pt, SceneMonitorSchema as q, _enum as qt, BaseDevice as r, unknown as rn, audioMetricsCapability as rt, DEFAULT_EVENT_COLOR as s, customAction as st, AUDIO_MACRO_LABELS as t, record as tn, alarmPanelCapability as tt, DETECTION_MACRO_CLASSES as u, embeddingEncoderCapability as ut, LabelAttributionSchema as v, isScheduleActive as vt, NC_CONDITION_CATALOG as w, pickClusterStepModels as wt, MAX_BIRTH_LATENCY_PROXY_MS as x, mayWriteToLocation as xt, MAX_ARCHIVED_DEBUG_NOTES as y, isSourceCap as yt, OpsLogEntrySchema as z, BaseAddon as zt };
@@ -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-CbQHenLE.js");
5
+ const require_dist = require("../dist-Bw4aTXFP.js");
6
6
  let node_fs = require("node:fs");
7
7
  node_fs = require_dist.__toESM(node_fs);
8
8
  let node_path = require("node:path");
@@ -1,4 +1,4 @@
1
- import { At as resolvePoolMemoryPolicy, B as PoolMemoryWatchdog, Ct as parseProcStatus, gt as hfModelUrl, ut as embeddingEncoderCapability, zt as BaseAddon } from "../dist-BqkhuC85.mjs";
1
+ import { At as resolvePoolMemoryPolicy, B as PoolMemoryWatchdog, Ct as parseProcStatus, gt as hfModelUrl, ut as embeddingEncoderCapability, zt as BaseAddon } from "../dist-DWXR9KNe.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";
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.2.96",
6
+ version: "1.2.98",
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.2.176",
21
+ version: "1.2.178",
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.2.144",
36
+ version: "1.2.146",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_pipeline_analytics_widgets",
@@ -36,7 +36,7 @@ async function r() {
36
36
  }
37
37
  },
38
38
  "@camstack/types": {
39
- version: "1.2.176",
39
+ version: "1.2.178",
40
40
  scope: "default",
41
41
  shareConfig: {
42
42
  singleton: !0,
@@ -45,7 +45,7 @@ async function r() {
45
45
  }
46
46
  },
47
47
  "@camstack/sdk": {
48
- version: "1.2.96",
48
+ version: "1.2.98",
49
49
  scope: "default",
50
50
  shareConfig: {
51
51
  singleton: !0,
@@ -81,7 +81,7 @@ async function r() {
81
81
  }
82
82
  },
83
83
  "@camstack/ui-library": {
84
- version: "1.2.144",
84
+ version: "1.2.146",
85
85
  scope: "default",
86
86
  shareConfig: {
87
87
  singleton: !0,