@camstack/addon-osd-manager 0.1.78 → 0.1.79

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.
package/dist/_stub.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "./virtualExposes-BgZ5Cn7S.mjs";
2
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-ChNl9npD.mjs";
2
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-kl_ISq9Q.mjs";
3
3
  import { _ as e, c as t, d as n, h as r, i, l as a, m as o, n as s, p as c, r as l, t as u, u as d, y as f } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
4
4
  import { i as p, o as m, r as h, s as g } from "./responsive-veJ_u_lF.mjs";
5
5
  import { d as _, l as v, u as y } from "./use-device-snapshot-CCUZGgXd.mjs";
@@ -1,9 +1,9 @@
1
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-ChNl9npD.mjs";
1
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-kl_ISq9Q.mjs";
2
2
  //#region \0virtual:mf-localSharedImportMap:__mfe_internal__addon_osd_manager_page
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.2.84",
6
+ version: "1.2.85",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_osd_manager_page",
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.2.164",
21
+ version: "1.2.165",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_osd_manager_page",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.2.132",
36
+ version: "1.2.133",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_osd_manager_page",
@@ -36,7 +36,7 @@ async function r() {
36
36
  }
37
37
  },
38
38
  "@camstack/types": {
39
- version: "1.2.164",
39
+ version: "1.2.165",
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.84",
48
+ version: "1.2.85",
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.132",
84
+ version: "1.2.133",
85
85
  scope: "default",
86
86
  shareConfig: {
87
87
  singleton: !0,
package/dist/index.js CHANGED
@@ -12847,6 +12847,9 @@ var QueryFilterSchema = object({
12847
12847
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
12848
12848
  /** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
12849
12849
  whereNot: record(string(), unknown()).optional(),
12850
+ /** NULL-safe exclusion of a SET — `whereNot` for more than one value. An
12851
+ * empty list excludes nothing. See `QueryFilter.whereNotIn`. */
12852
+ whereNotIn: record(string(), array(unknown())).optional(),
12850
12853
  orderBy: object({
12851
12854
  field: string(),
12852
12855
  direction: _enum(["asc", "desc"])
@@ -12867,7 +12870,8 @@ var MutationFilterSchema = object({
12867
12870
  where: record(string(), unknown()).optional(),
12868
12871
  whereIn: record(string(), array(unknown())).optional(),
12869
12872
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
12870
- whereNot: record(string(), unknown()).optional()
12873
+ whereNot: record(string(), unknown()).optional(),
12874
+ whereNotIn: record(string(), array(unknown())).optional()
12871
12875
  });
12872
12876
  /**
12873
12877
  * One scalar an {@link settingsStoreCapability.methods.aggregate} call asks for.
@@ -21530,10 +21534,12 @@ var TrackSourceSchema = _enum([
21530
21534
  * Terminal for the plain `markForTrain` toggle: returning it to `staging` is
21531
21535
  * a deliberate action of the retrain page, not a side effect of a checkbox.
21532
21536
  *
21533
- * There is no `null`. The state is stored `TEXT NOT NULL DEFAULT 'none'` because
21534
- * the store's filter language has only positive equality and `whereIn` no
21535
- * negation, no IS NULL so a NULL would be unselectable by ANY predicate and
21536
- * would make the entire pre-column history immortal in one deploy.
21537
+ * There is no `null`. The state is stored `TEXT NOT NULL DEFAULT 'none'` so that
21538
+ * every row is selectable by a positive predicate. (The filter language has
21539
+ * since grown the NULL-safe `whereNot` / `whereNotIn` and an `IS NULL` reading
21540
+ * of `where: { f: null }`, which is how {@link TrackSourceSchema} can be
21541
+ * filtered on a NULLABLE column — see `excludeSources`. It did not when this
21542
+ * column was designed, and a NOT NULL column is still the better shape.)
21537
21543
  */
21538
21544
  var RetrainStatusSchema = _enum([
21539
21545
  "none",
@@ -22269,7 +22275,9 @@ var RecentTracksQueryInput = object({
22269
22275
  * whose class list is unreadable are kept, and the client's rule stays the
22270
22276
  * exact one.
22271
22277
  */
22272
- classes: array(string()).optional()
22278
+ classes: array(string()).optional(),
22279
+ /** See {@link ExcludeSourcesDoc}. */
22280
+ excludeSources: array(TrackSourceSchema).optional()
22273
22281
  });
22274
22282
  /**
22275
22283
  * A Summary (D359): the per-camera session envelope that references tracks.
@@ -22711,7 +22719,9 @@ var pipelineAnalyticsCapability = {
22711
22719
  * selected is an operator who has not narrowed anything, and an empty
22712
22720
  * timeline would read as a camera that saw nothing.
22713
22721
  */
22714
- classes: array(string()).optional()
22722
+ classes: array(string()).optional(),
22723
+ /** See {@link ExcludeSourcesDoc}. */
22724
+ excludeSources: array(TrackSourceSchema).optional()
22715
22725
  }), array(TrackSchema).readonly()),
22716
22726
  /**
22717
22727
  * Batched cluster-wide track listing — ONE call for the events page /
package/dist/index.mjs CHANGED
@@ -12843,6 +12843,9 @@ var QueryFilterSchema = object({
12843
12843
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
12844
12844
  /** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
12845
12845
  whereNot: record(string(), unknown()).optional(),
12846
+ /** NULL-safe exclusion of a SET — `whereNot` for more than one value. An
12847
+ * empty list excludes nothing. See `QueryFilter.whereNotIn`. */
12848
+ whereNotIn: record(string(), array(unknown())).optional(),
12846
12849
  orderBy: object({
12847
12850
  field: string(),
12848
12851
  direction: _enum(["asc", "desc"])
@@ -12863,7 +12866,8 @@ var MutationFilterSchema = object({
12863
12866
  where: record(string(), unknown()).optional(),
12864
12867
  whereIn: record(string(), array(unknown())).optional(),
12865
12868
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
12866
- whereNot: record(string(), unknown()).optional()
12869
+ whereNot: record(string(), unknown()).optional(),
12870
+ whereNotIn: record(string(), array(unknown())).optional()
12867
12871
  });
12868
12872
  /**
12869
12873
  * One scalar an {@link settingsStoreCapability.methods.aggregate} call asks for.
@@ -21526,10 +21530,12 @@ var TrackSourceSchema = _enum([
21526
21530
  * Terminal for the plain `markForTrain` toggle: returning it to `staging` is
21527
21531
  * a deliberate action of the retrain page, not a side effect of a checkbox.
21528
21532
  *
21529
- * There is no `null`. The state is stored `TEXT NOT NULL DEFAULT 'none'` because
21530
- * the store's filter language has only positive equality and `whereIn` no
21531
- * negation, no IS NULL so a NULL would be unselectable by ANY predicate and
21532
- * would make the entire pre-column history immortal in one deploy.
21533
+ * There is no `null`. The state is stored `TEXT NOT NULL DEFAULT 'none'` so that
21534
+ * every row is selectable by a positive predicate. (The filter language has
21535
+ * since grown the NULL-safe `whereNot` / `whereNotIn` and an `IS NULL` reading
21536
+ * of `where: { f: null }`, which is how {@link TrackSourceSchema} can be
21537
+ * filtered on a NULLABLE column — see `excludeSources`. It did not when this
21538
+ * column was designed, and a NOT NULL column is still the better shape.)
21533
21539
  */
21534
21540
  var RetrainStatusSchema = _enum([
21535
21541
  "none",
@@ -22265,7 +22271,9 @@ var RecentTracksQueryInput = object({
22265
22271
  * whose class list is unreadable are kept, and the client's rule stays the
22266
22272
  * exact one.
22267
22273
  */
22268
- classes: array(string()).optional()
22274
+ classes: array(string()).optional(),
22275
+ /** See {@link ExcludeSourcesDoc}. */
22276
+ excludeSources: array(TrackSourceSchema).optional()
22269
22277
  });
22270
22278
  /**
22271
22279
  * A Summary (D359): the per-camera session envelope that references tracks.
@@ -22707,7 +22715,9 @@ var pipelineAnalyticsCapability = {
22707
22715
  * selected is an operator who has not narrowed anything, and an empty
22708
22716
  * timeline would read as a camera that saw nothing.
22709
22717
  */
22710
- classes: array(string()).optional()
22718
+ classes: array(string()).optional(),
22719
+ /** See {@link ExcludeSourcesDoc}. */
22720
+ excludeSources: array(TrackSourceSchema).optional()
22711
22721
  }), array(TrackSchema).readonly()),
22712
22722
  /**
22713
22723
  * Batched cluster-wide track listing — ONE call for the events page /
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-ChNl9npD.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-kl_ISq9Q.mjs";
2
2
  export { t as get, e as init };
@@ -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_osd_manager_page-Bi39a2P-.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-BMp1Y2M6.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-osd-manager",
3
- "version": "0.1.78",
3
+ "version": "0.1.79",
4
4
  "description": "Binds camera on-screen-display slots to live state and recognitions",
5
5
  "keywords": [
6
6
  "camstack",