@camstack/addon-pipeline-orchestrator 1.2.168 → 1.2.169

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.
@@ -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.84",
6
+ version: "1.2.85",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_pipeline_orchestrator_widgets",
@@ -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_pipeline_orchestrator_widgets",
@@ -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_pipeline_orchestrator_widgets",
@@ -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,
@@ -99,7 +99,7 @@ async function r() {
99
99
  }
100
100
  },
101
101
  "@camstack/ui-library": {
102
- version: "1.2.132",
102
+ version: "1.2.133",
103
103
  scope: "default",
104
104
  shareConfig: {
105
105
  singleton: !0,
package/dist/index.js CHANGED
@@ -12904,6 +12904,9 @@ var QueryFilterSchema = object({
12904
12904
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
12905
12905
  /** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
12906
12906
  whereNot: record(string(), unknown()).optional(),
12907
+ /** NULL-safe exclusion of a SET — `whereNot` for more than one value. An
12908
+ * empty list excludes nothing. See `QueryFilter.whereNotIn`. */
12909
+ whereNotIn: record(string(), array(unknown())).optional(),
12907
12910
  orderBy: object({
12908
12911
  field: string(),
12909
12912
  direction: _enum(["asc", "desc"])
@@ -12924,7 +12927,8 @@ var MutationFilterSchema = object({
12924
12927
  where: record(string(), unknown()).optional(),
12925
12928
  whereIn: record(string(), array(unknown())).optional(),
12926
12929
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
12927
- whereNot: record(string(), unknown()).optional()
12930
+ whereNot: record(string(), unknown()).optional(),
12931
+ whereNotIn: record(string(), array(unknown())).optional()
12928
12932
  });
12929
12933
  /**
12930
12934
  * One scalar an {@link settingsStoreCapability.methods.aggregate} call asks for.
@@ -19638,10 +19642,12 @@ var TrackSourceSchema = _enum([
19638
19642
  * Terminal for the plain `markForTrain` toggle: returning it to `staging` is
19639
19643
  * a deliberate action of the retrain page, not a side effect of a checkbox.
19640
19644
  *
19641
- * There is no `null`. The state is stored `TEXT NOT NULL DEFAULT 'none'` because
19642
- * the store's filter language has only positive equality and `whereIn` no
19643
- * negation, no IS NULL so a NULL would be unselectable by ANY predicate and
19644
- * would make the entire pre-column history immortal in one deploy.
19645
+ * There is no `null`. The state is stored `TEXT NOT NULL DEFAULT 'none'` so that
19646
+ * every row is selectable by a positive predicate. (The filter language has
19647
+ * since grown the NULL-safe `whereNot` / `whereNotIn` and an `IS NULL` reading
19648
+ * of `where: { f: null }`, which is how {@link TrackSourceSchema} can be
19649
+ * filtered on a NULLABLE column — see `excludeSources`. It did not when this
19650
+ * column was designed, and a NOT NULL column is still the better shape.)
19645
19651
  */
19646
19652
  var RetrainStatusSchema = _enum([
19647
19653
  "none",
@@ -20377,7 +20383,9 @@ var RecentTracksQueryInput = object({
20377
20383
  * whose class list is unreadable are kept, and the client's rule stays the
20378
20384
  * exact one.
20379
20385
  */
20380
- classes: array(string()).optional()
20386
+ classes: array(string()).optional(),
20387
+ /** See {@link ExcludeSourcesDoc}. */
20388
+ excludeSources: array(TrackSourceSchema).optional()
20381
20389
  });
20382
20390
  /**
20383
20391
  * A Summary (D359): the per-camera session envelope that references tracks.
@@ -20805,7 +20813,9 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20805
20813
  * selected is an operator who has not narrowed anything, and an empty
20806
20814
  * timeline would read as a camera that saw nothing.
20807
20815
  */
20808
- classes: array(string()).optional()
20816
+ classes: array(string()).optional(),
20817
+ /** See {@link ExcludeSourcesDoc}. */
20818
+ excludeSources: array(TrackSourceSchema).optional()
20809
20819
  }), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
20810
20820
  kind: "mutation",
20811
20821
  auth: "admin"
package/dist/index.mjs CHANGED
@@ -12876,6 +12876,9 @@ var QueryFilterSchema = object({
12876
12876
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
12877
12877
  /** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
12878
12878
  whereNot: record(string(), unknown()).optional(),
12879
+ /** NULL-safe exclusion of a SET — `whereNot` for more than one value. An
12880
+ * empty list excludes nothing. See `QueryFilter.whereNotIn`. */
12881
+ whereNotIn: record(string(), array(unknown())).optional(),
12879
12882
  orderBy: object({
12880
12883
  field: string(),
12881
12884
  direction: _enum(["asc", "desc"])
@@ -12896,7 +12899,8 @@ var MutationFilterSchema = object({
12896
12899
  where: record(string(), unknown()).optional(),
12897
12900
  whereIn: record(string(), array(unknown())).optional(),
12898
12901
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
12899
- whereNot: record(string(), unknown()).optional()
12902
+ whereNot: record(string(), unknown()).optional(),
12903
+ whereNotIn: record(string(), array(unknown())).optional()
12900
12904
  });
12901
12905
  /**
12902
12906
  * One scalar an {@link settingsStoreCapability.methods.aggregate} call asks for.
@@ -19610,10 +19614,12 @@ var TrackSourceSchema = _enum([
19610
19614
  * Terminal for the plain `markForTrain` toggle: returning it to `staging` is
19611
19615
  * a deliberate action of the retrain page, not a side effect of a checkbox.
19612
19616
  *
19613
- * There is no `null`. The state is stored `TEXT NOT NULL DEFAULT 'none'` because
19614
- * the store's filter language has only positive equality and `whereIn` no
19615
- * negation, no IS NULL so a NULL would be unselectable by ANY predicate and
19616
- * would make the entire pre-column history immortal in one deploy.
19617
+ * There is no `null`. The state is stored `TEXT NOT NULL DEFAULT 'none'` so that
19618
+ * every row is selectable by a positive predicate. (The filter language has
19619
+ * since grown the NULL-safe `whereNot` / `whereNotIn` and an `IS NULL` reading
19620
+ * of `where: { f: null }`, which is how {@link TrackSourceSchema} can be
19621
+ * filtered on a NULLABLE column — see `excludeSources`. It did not when this
19622
+ * column was designed, and a NOT NULL column is still the better shape.)
19617
19623
  */
19618
19624
  var RetrainStatusSchema = _enum([
19619
19625
  "none",
@@ -20349,7 +20355,9 @@ var RecentTracksQueryInput = object({
20349
20355
  * whose class list is unreadable are kept, and the client's rule stays the
20350
20356
  * exact one.
20351
20357
  */
20352
- classes: array(string()).optional()
20358
+ classes: array(string()).optional(),
20359
+ /** See {@link ExcludeSourcesDoc}. */
20360
+ excludeSources: array(TrackSourceSchema).optional()
20353
20361
  });
20354
20362
  /**
20355
20363
  * A Summary (D359): the per-camera session envelope that references tracks.
@@ -20777,7 +20785,9 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20777
20785
  * selected is an operator who has not narrowed anything, and an empty
20778
20786
  * timeline would read as a camera that saw nothing.
20779
20787
  */
20780
- classes: array(string()).optional()
20788
+ classes: array(string()).optional(),
20789
+ /** See {@link ExcludeSourcesDoc}. */
20790
+ excludeSources: array(TrackSourceSchema).optional()
20781
20791
  }), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
20782
20792
  kind: "mutation",
20783
20793
  auth: "admin"
@@ -30,7 +30,7 @@ async function d(e) {
30
30
  }
31
31
  }
32
32
  async function f() {
33
- return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-C5V3S9Pp.mjs")).catch((e) => {
33
+ return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets--j-j4BCV.mjs")).catch((e) => {
34
34
  throw l = void 0, e;
35
35
  }), l;
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-pipeline-orchestrator",
3
- "version": "1.2.168",
3
+ "version": "1.2.169",
4
4
  "description": "Hub-side camera-to-agent load balancer — tracks runner capacity and dispatches attachCamera calls to the optimal pipeline-runner instance",
5
5
  "keywords": [
6
6
  "camstack",