@camstack/addon-pipeline-orchestrator 1.2.61 → 1.2.63

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.
@@ -36,6 +36,6 @@
36
36
  </noscript>
37
37
  <!-- The root element for your Expo app. -->
38
38
  <div id="root"></div>
39
- <script src="/viewer/camstack/_expo/static/js/web/index-730abbb8a79157d1249d632482ab964c.js" defer></script>
39
+ <script src="/viewer/camstack/_expo/static/js/web/index-5080cd1b37a92fc9034b33e20134f1b0.js" defer></script>
40
40
  </body>
41
41
  </html>
@@ -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.19",
6
+ version: "1.2.20",
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.77",
21
+ version: "1.2.80",
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.54",
36
+ version: "1.2.55",
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.77",
39
+ version: "1.2.80",
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.19",
48
+ version: "1.2.20",
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.54",
102
+ version: "1.2.55",
103
103
  scope: "default",
104
104
  shareConfig: {
105
105
  singleton: !0,
package/dist/index.js CHANGED
@@ -11742,6 +11742,8 @@ var QueryFilterSchema = object({
11742
11742
  where: record(string(), unknown()).optional(),
11743
11743
  whereIn: record(string(), array(unknown())).optional(),
11744
11744
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
11745
+ /** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
11746
+ whereNot: record(string(), unknown()).optional(),
11745
11747
  orderBy: object({
11746
11748
  field: string(),
11747
11749
  direction: _enum(["asc", "desc"])
@@ -11761,7 +11763,8 @@ var QueryFilterSchema = object({
11761
11763
  var MutationFilterSchema = object({
11762
11764
  where: record(string(), unknown()).optional(),
11763
11765
  whereIn: record(string(), array(unknown())).optional(),
11764
- whereBetween: record(string(), tuple([unknown(), unknown()])).optional()
11766
+ whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
11767
+ whereNot: record(string(), unknown()).optional()
11765
11768
  });
11766
11769
  /** A single stored record: `{ id, data }`. */
11767
11770
  var SettingsRecordSchema = object({
@@ -17637,7 +17640,10 @@ var RecentTracksQueryInput = object({
17637
17640
  * Encodes the (lastSeen, trackId) sort position — treat as opaque. */
17638
17641
  cursor: string().optional(),
17639
17642
  /** See {@link TrackProjectionSchema}. Default `full`. */
17640
- projection: TrackProjectionSchema.optional()
17643
+ projection: TrackProjectionSchema.optional(),
17644
+ /** Include stationary-promoted rows (parked objects). Default false: the
17645
+ * feed lists passages; parking records live on the stationary registry. */
17646
+ includeStationary: boolean().optional()
17641
17647
  });
17642
17648
  var RecentTracksPageSchema = object({
17643
17649
  /** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
@@ -17855,7 +17861,11 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
17855
17861
  zone: TrackZoneFilterSchema.optional(),
17856
17862
  /** See {@link TrackProjectionSchema}. Default `full` (backward
17857
17863
  * compatible — omitting the field keeps today's exact behaviour). */
17858
- projection: TrackProjectionSchema.optional()
17864
+ projection: TrackProjectionSchema.optional(),
17865
+ /** Include stationary-promoted rows (parked objects handed to the
17866
+ * stationary registry). Default false: the timeline lists passages,
17867
+ * not parking records (operator decision, 2026-08-15). */
17868
+ includeStationary: boolean().optional()
17859
17869
  }), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
17860
17870
  kind: "mutation",
17861
17871
  auth: "admin"
@@ -18019,11 +18029,16 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
18019
18029
  auth: "admin"
18020
18030
  }), method(object({
18021
18031
  eventId: string(),
18022
- kind: MediaFileKindEnum.optional()
18032
+ kind: MediaFileKindEnum.optional(),
18033
+ deviceId: number()
18034
+ }), array(MediaFileSchema).readonly()), method(object({
18035
+ trackId: string(),
18036
+ kinds: array(MediaFileKindEnum).optional(),
18037
+ deviceId: number()
18023
18038
  }), array(MediaFileSchema).readonly()), method(object({
18024
18039
  trackId: string(),
18025
- kinds: array(MediaFileKindEnum).optional()
18026
- }), array(MediaFileSchema).readonly()), method(object({ trackId: string() }), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
18040
+ deviceId: number()
18041
+ }), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
18027
18042
  kind: "mutation",
18028
18043
  auth: "admin"
18029
18044
  }), method(RebuildObjectEmbeddingsInput, RebuildObjectEmbeddingsResultSchema, {
@@ -20666,7 +20681,16 @@ targets: array(object({
20666
20681
  /** A sleeping battery camera: the frame is deliberately stale and will
20667
20682
  * NOT refresh in the background. A surface should say so rather than
20668
20683
  * present it as current. */
20669
- sleeping: boolean()
20684
+ sleeping: boolean(),
20685
+ /** Current device state rendered over the cached frame. State images
20686
+ * remain authoritative even when their photographic background is
20687
+ * old; null means the link must carry a current camera frame. */
20688
+ stateReason: _enum([
20689
+ "disabled",
20690
+ "sleeping",
20691
+ "unreachable",
20692
+ "waking"
20693
+ ]).nullable()
20670
20694
  })));
20671
20695
  /**
20672
20696
  * `sso-bridge` — internal hub-only cap that lets SSO-style auth
@@ -34008,6 +34032,11 @@ Object.freeze({
34008
34032
  form: "single",
34009
34033
  optional: false
34010
34034
  }],
34035
+ "pipelineAnalytics.getEventMedia": [{
34036
+ name: "deviceId",
34037
+ form: "single",
34038
+ optional: false
34039
+ }],
34011
34040
  "pipelineAnalytics.getKeyEvents": [{
34012
34041
  name: "deviceId",
34013
34042
  form: "single",
@@ -34038,6 +34067,11 @@ Object.freeze({
34038
34067
  form: "single",
34039
34068
  optional: false
34040
34069
  }],
34070
+ "pipelineAnalytics.getTrackMedia": [{
34071
+ name: "deviceId",
34072
+ form: "single",
34073
+ optional: false
34074
+ }],
34041
34075
  "pipelineAnalytics.getTrainingExportSummary": [{
34042
34076
  name: "deviceIds",
34043
34077
  form: "array",
@@ -34073,6 +34107,11 @@ Object.freeze({
34073
34107
  form: "array",
34074
34108
  optional: true
34075
34109
  }],
34110
+ "pipelineAnalytics.listTrackMedia": [{
34111
+ name: "deviceId",
34112
+ form: "single",
34113
+ optional: false
34114
+ }],
34076
34115
  "pipelineAnalytics.listTracks": [{
34077
34116
  name: "deviceId",
34078
34117
  form: "single",
@@ -34513,6 +34552,12 @@ Object.freeze({
34513
34552
  form: "single",
34514
34553
  optional: false
34515
34554
  }],
34555
+ "snapshot.getSnapshotLinks": [{
34556
+ name: "targets",
34557
+ form: "object-array",
34558
+ optional: false,
34559
+ itemField: "deviceId"
34560
+ }],
34516
34561
  "snapshot.getSnapshotOverview": [{
34517
34562
  name: "deviceIds",
34518
34563
  form: "array",
package/dist/index.mjs CHANGED
@@ -11714,6 +11714,8 @@ var QueryFilterSchema = object({
11714
11714
  where: record(string(), unknown()).optional(),
11715
11715
  whereIn: record(string(), array(unknown())).optional(),
11716
11716
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
11717
+ /** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
11718
+ whereNot: record(string(), unknown()).optional(),
11717
11719
  orderBy: object({
11718
11720
  field: string(),
11719
11721
  direction: _enum(["asc", "desc"])
@@ -11733,7 +11735,8 @@ var QueryFilterSchema = object({
11733
11735
  var MutationFilterSchema = object({
11734
11736
  where: record(string(), unknown()).optional(),
11735
11737
  whereIn: record(string(), array(unknown())).optional(),
11736
- whereBetween: record(string(), tuple([unknown(), unknown()])).optional()
11738
+ whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
11739
+ whereNot: record(string(), unknown()).optional()
11737
11740
  });
11738
11741
  /** A single stored record: `{ id, data }`. */
11739
11742
  var SettingsRecordSchema = object({
@@ -17609,7 +17612,10 @@ var RecentTracksQueryInput = object({
17609
17612
  * Encodes the (lastSeen, trackId) sort position — treat as opaque. */
17610
17613
  cursor: string().optional(),
17611
17614
  /** See {@link TrackProjectionSchema}. Default `full`. */
17612
- projection: TrackProjectionSchema.optional()
17615
+ projection: TrackProjectionSchema.optional(),
17616
+ /** Include stationary-promoted rows (parked objects). Default false: the
17617
+ * feed lists passages; parking records live on the stationary registry. */
17618
+ includeStationary: boolean().optional()
17613
17619
  });
17614
17620
  var RecentTracksPageSchema = object({
17615
17621
  /** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
@@ -17827,7 +17833,11 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
17827
17833
  zone: TrackZoneFilterSchema.optional(),
17828
17834
  /** See {@link TrackProjectionSchema}. Default `full` (backward
17829
17835
  * compatible — omitting the field keeps today's exact behaviour). */
17830
- projection: TrackProjectionSchema.optional()
17836
+ projection: TrackProjectionSchema.optional(),
17837
+ /** Include stationary-promoted rows (parked objects handed to the
17838
+ * stationary registry). Default false: the timeline lists passages,
17839
+ * not parking records (operator decision, 2026-08-15). */
17840
+ includeStationary: boolean().optional()
17831
17841
  }), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
17832
17842
  kind: "mutation",
17833
17843
  auth: "admin"
@@ -17991,11 +18001,16 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
17991
18001
  auth: "admin"
17992
18002
  }), method(object({
17993
18003
  eventId: string(),
17994
- kind: MediaFileKindEnum.optional()
18004
+ kind: MediaFileKindEnum.optional(),
18005
+ deviceId: number()
18006
+ }), array(MediaFileSchema).readonly()), method(object({
18007
+ trackId: string(),
18008
+ kinds: array(MediaFileKindEnum).optional(),
18009
+ deviceId: number()
17995
18010
  }), array(MediaFileSchema).readonly()), method(object({
17996
18011
  trackId: string(),
17997
- kinds: array(MediaFileKindEnum).optional()
17998
- }), array(MediaFileSchema).readonly()), method(object({ trackId: string() }), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
18012
+ deviceId: number()
18013
+ }), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
17999
18014
  kind: "mutation",
18000
18015
  auth: "admin"
18001
18016
  }), method(RebuildObjectEmbeddingsInput, RebuildObjectEmbeddingsResultSchema, {
@@ -20638,7 +20653,16 @@ targets: array(object({
20638
20653
  /** A sleeping battery camera: the frame is deliberately stale and will
20639
20654
  * NOT refresh in the background. A surface should say so rather than
20640
20655
  * present it as current. */
20641
- sleeping: boolean()
20656
+ sleeping: boolean(),
20657
+ /** Current device state rendered over the cached frame. State images
20658
+ * remain authoritative even when their photographic background is
20659
+ * old; null means the link must carry a current camera frame. */
20660
+ stateReason: _enum([
20661
+ "disabled",
20662
+ "sleeping",
20663
+ "unreachable",
20664
+ "waking"
20665
+ ]).nullable()
20642
20666
  })));
20643
20667
  /**
20644
20668
  * `sso-bridge` — internal hub-only cap that lets SSO-style auth
@@ -33980,6 +34004,11 @@ Object.freeze({
33980
34004
  form: "single",
33981
34005
  optional: false
33982
34006
  }],
34007
+ "pipelineAnalytics.getEventMedia": [{
34008
+ name: "deviceId",
34009
+ form: "single",
34010
+ optional: false
34011
+ }],
33983
34012
  "pipelineAnalytics.getKeyEvents": [{
33984
34013
  name: "deviceId",
33985
34014
  form: "single",
@@ -34010,6 +34039,11 @@ Object.freeze({
34010
34039
  form: "single",
34011
34040
  optional: false
34012
34041
  }],
34042
+ "pipelineAnalytics.getTrackMedia": [{
34043
+ name: "deviceId",
34044
+ form: "single",
34045
+ optional: false
34046
+ }],
34013
34047
  "pipelineAnalytics.getTrainingExportSummary": [{
34014
34048
  name: "deviceIds",
34015
34049
  form: "array",
@@ -34045,6 +34079,11 @@ Object.freeze({
34045
34079
  form: "array",
34046
34080
  optional: true
34047
34081
  }],
34082
+ "pipelineAnalytics.listTrackMedia": [{
34083
+ name: "deviceId",
34084
+ form: "single",
34085
+ optional: false
34086
+ }],
34048
34087
  "pipelineAnalytics.listTracks": [{
34049
34088
  name: "deviceId",
34050
34089
  form: "single",
@@ -34485,6 +34524,12 @@ Object.freeze({
34485
34524
  form: "single",
34486
34525
  optional: false
34487
34526
  }],
34527
+ "snapshot.getSnapshotLinks": [{
34528
+ name: "targets",
34529
+ form: "object-array",
34530
+ optional: false,
34531
+ itemField: "deviceId"
34532
+ }],
34488
34533
  "snapshot.getSnapshotOverview": [{
34489
34534
  name: "deviceIds",
34490
34535
  form: "array",
@@ -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-B36q5PAB.mjs")).catch((e) => {
33
+ return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-D_S9bGZ-.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.61",
3
+ "version": "1.2.63",
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",