@camstack/addon-pipeline-orchestrator 1.2.62 → 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.
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-DfWOzml-.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-D_S9bGZ-.mjs} +3 -3
- package/dist/{hostInit-M_j6daJt.mjs → hostInit-nc6Xs4Ci.mjs} +3 -3
- package/dist/index.js +42 -6
- package/dist/index.mjs +42 -6
- package/dist/remoteEntry.js +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
18026
|
-
}), array(
|
|
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, {
|
|
@@ -34017,6 +34032,11 @@ Object.freeze({
|
|
|
34017
34032
|
form: "single",
|
|
34018
34033
|
optional: false
|
|
34019
34034
|
}],
|
|
34035
|
+
"pipelineAnalytics.getEventMedia": [{
|
|
34036
|
+
name: "deviceId",
|
|
34037
|
+
form: "single",
|
|
34038
|
+
optional: false
|
|
34039
|
+
}],
|
|
34020
34040
|
"pipelineAnalytics.getKeyEvents": [{
|
|
34021
34041
|
name: "deviceId",
|
|
34022
34042
|
form: "single",
|
|
@@ -34047,6 +34067,11 @@ Object.freeze({
|
|
|
34047
34067
|
form: "single",
|
|
34048
34068
|
optional: false
|
|
34049
34069
|
}],
|
|
34070
|
+
"pipelineAnalytics.getTrackMedia": [{
|
|
34071
|
+
name: "deviceId",
|
|
34072
|
+
form: "single",
|
|
34073
|
+
optional: false
|
|
34074
|
+
}],
|
|
34050
34075
|
"pipelineAnalytics.getTrainingExportSummary": [{
|
|
34051
34076
|
name: "deviceIds",
|
|
34052
34077
|
form: "array",
|
|
@@ -34082,6 +34107,11 @@ Object.freeze({
|
|
|
34082
34107
|
form: "array",
|
|
34083
34108
|
optional: true
|
|
34084
34109
|
}],
|
|
34110
|
+
"pipelineAnalytics.listTrackMedia": [{
|
|
34111
|
+
name: "deviceId",
|
|
34112
|
+
form: "single",
|
|
34113
|
+
optional: false
|
|
34114
|
+
}],
|
|
34085
34115
|
"pipelineAnalytics.listTracks": [{
|
|
34086
34116
|
name: "deviceId",
|
|
34087
34117
|
form: "single",
|
|
@@ -34522,6 +34552,12 @@ Object.freeze({
|
|
|
34522
34552
|
form: "single",
|
|
34523
34553
|
optional: false
|
|
34524
34554
|
}],
|
|
34555
|
+
"snapshot.getSnapshotLinks": [{
|
|
34556
|
+
name: "targets",
|
|
34557
|
+
form: "object-array",
|
|
34558
|
+
optional: false,
|
|
34559
|
+
itemField: "deviceId"
|
|
34560
|
+
}],
|
|
34525
34561
|
"snapshot.getSnapshotOverview": [{
|
|
34526
34562
|
name: "deviceIds",
|
|
34527
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
|
-
|
|
17998
|
-
}), array(
|
|
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, {
|
|
@@ -33989,6 +34004,11 @@ Object.freeze({
|
|
|
33989
34004
|
form: "single",
|
|
33990
34005
|
optional: false
|
|
33991
34006
|
}],
|
|
34007
|
+
"pipelineAnalytics.getEventMedia": [{
|
|
34008
|
+
name: "deviceId",
|
|
34009
|
+
form: "single",
|
|
34010
|
+
optional: false
|
|
34011
|
+
}],
|
|
33992
34012
|
"pipelineAnalytics.getKeyEvents": [{
|
|
33993
34013
|
name: "deviceId",
|
|
33994
34014
|
form: "single",
|
|
@@ -34019,6 +34039,11 @@ Object.freeze({
|
|
|
34019
34039
|
form: "single",
|
|
34020
34040
|
optional: false
|
|
34021
34041
|
}],
|
|
34042
|
+
"pipelineAnalytics.getTrackMedia": [{
|
|
34043
|
+
name: "deviceId",
|
|
34044
|
+
form: "single",
|
|
34045
|
+
optional: false
|
|
34046
|
+
}],
|
|
34022
34047
|
"pipelineAnalytics.getTrainingExportSummary": [{
|
|
34023
34048
|
name: "deviceIds",
|
|
34024
34049
|
form: "array",
|
|
@@ -34054,6 +34079,11 @@ Object.freeze({
|
|
|
34054
34079
|
form: "array",
|
|
34055
34080
|
optional: true
|
|
34056
34081
|
}],
|
|
34082
|
+
"pipelineAnalytics.listTrackMedia": [{
|
|
34083
|
+
name: "deviceId",
|
|
34084
|
+
form: "single",
|
|
34085
|
+
optional: false
|
|
34086
|
+
}],
|
|
34057
34087
|
"pipelineAnalytics.listTracks": [{
|
|
34058
34088
|
name: "deviceId",
|
|
34059
34089
|
form: "single",
|
|
@@ -34494,6 +34524,12 @@ Object.freeze({
|
|
|
34494
34524
|
form: "single",
|
|
34495
34525
|
optional: false
|
|
34496
34526
|
}],
|
|
34527
|
+
"snapshot.getSnapshotLinks": [{
|
|
34528
|
+
name: "targets",
|
|
34529
|
+
form: "object-array",
|
|
34530
|
+
optional: false,
|
|
34531
|
+
itemField: "deviceId"
|
|
34532
|
+
}],
|
|
34497
34533
|
"snapshot.getSnapshotOverview": [{
|
|
34498
34534
|
name: "deviceIds",
|
|
34499
34535
|
form: "array",
|
package/dist/remoteEntry.js
CHANGED
|
@@ -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-
|
|
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.
|
|
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",
|