@camstack/addon-agent-ui 1.2.51 → 1.2.52
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/addon.js +15 -70
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -12858,6 +12858,12 @@ method(object({
|
|
|
12858
12858
|
}), _void(), {
|
|
12859
12859
|
kind: "mutation",
|
|
12860
12860
|
auth: "admin"
|
|
12861
|
+
}), method(object({
|
|
12862
|
+
from: string(),
|
|
12863
|
+
to: string()
|
|
12864
|
+
}), object({ moved: number() }), {
|
|
12865
|
+
kind: "mutation",
|
|
12866
|
+
auth: "admin"
|
|
12861
12867
|
}), method(object({
|
|
12862
12868
|
deviceId: number(),
|
|
12863
12869
|
disabled: boolean()
|
|
@@ -18788,46 +18794,6 @@ var RecentTracksPageSchema = object({
|
|
|
18788
18794
|
/** Cursor for the next page, or null when this page is the last. */
|
|
18789
18795
|
nextCursor: string().nullable()
|
|
18790
18796
|
});
|
|
18791
|
-
var LIST_GROUPS_DEFAULT_LIMIT = 40;
|
|
18792
|
-
var LIST_GROUPS_MAX_LIMIT = 100;
|
|
18793
|
-
var AnalyticsGroupRecordSchema = object({
|
|
18794
|
-
id: string(),
|
|
18795
|
-
deviceId: number().int(),
|
|
18796
|
-
openedAt: number().int(),
|
|
18797
|
-
closedAt: number().int(),
|
|
18798
|
-
timestamp: number().int(),
|
|
18799
|
-
memberCount: number().int(),
|
|
18800
|
-
memberTrackIds: array(string()).readonly(),
|
|
18801
|
-
className: string(),
|
|
18802
|
-
classes: array(string()).readonly(),
|
|
18803
|
-
/** Relative event-media path, or null when the group has no picture yet. */
|
|
18804
|
-
mediaUrl: string().nullable(),
|
|
18805
|
-
singleton: boolean()
|
|
18806
|
-
});
|
|
18807
|
-
var AnalyticsGroupMemberSchema = object({
|
|
18808
|
-
trackId: string(),
|
|
18809
|
-
deviceId: number().int(),
|
|
18810
|
-
className: string(),
|
|
18811
|
-
firstSeen: number().int(),
|
|
18812
|
-
lastSeen: number().int(),
|
|
18813
|
-
mediaUrl: string().nullable()
|
|
18814
|
-
});
|
|
18815
|
-
var AnalyticsGroupDetailSchema = AnalyticsGroupRecordSchema.extend({ members: array(AnalyticsGroupMemberSchema).readonly() });
|
|
18816
|
-
var ListGroupsQueryInput = object({
|
|
18817
|
-
/** Devices to merge. An empty array yields `{ groups: [], nextCursor: null }`. */
|
|
18818
|
-
deviceIds: array(number()),
|
|
18819
|
-
/** Window lower bound on `closedAt` (inclusive). */
|
|
18820
|
-
since: number().optional(),
|
|
18821
|
-
/** Window upper bound on `openedAt` (inclusive). */
|
|
18822
|
-
until: number().optional(),
|
|
18823
|
-
limit: number().int().min(1).max(LIST_GROUPS_MAX_LIMIT).default(LIST_GROUPS_DEFAULT_LIMIT),
|
|
18824
|
-
/** Opaque continuation cursor from a previous page's `nextCursor`. */
|
|
18825
|
-
cursor: string().optional()
|
|
18826
|
-
});
|
|
18827
|
-
var ListGroupsPageSchema = object({
|
|
18828
|
-
groups: array(AnalyticsGroupRecordSchema).readonly(),
|
|
18829
|
-
nextCursor: string().nullable()
|
|
18830
|
-
});
|
|
18831
18797
|
var KEY_EVENTS_DEFAULT_LIMIT = 50;
|
|
18832
18798
|
var KEY_EVENTS_MAX_LIMIT = 200;
|
|
18833
18799
|
var KeyEventQueryInput = object({
|
|
@@ -18931,9 +18897,7 @@ var TrackCascadeCountsSchema = object({
|
|
|
18931
18897
|
/** Unassigned plate reads removed (best-effort; plate leg deferred to plate-intelligence). */
|
|
18932
18898
|
plates: number().int(),
|
|
18933
18899
|
/** Per-track CLIP search vectors removed (best-effort). */
|
|
18934
|
-
embeddings: number().int()
|
|
18935
|
-
/** Group membership + group rows removed with their last member (best-effort). */
|
|
18936
|
-
groups: number().int()
|
|
18900
|
+
embeddings: number().int()
|
|
18937
18901
|
});
|
|
18938
18902
|
/** Disk-wins reconcile: media rows whose blobs are gone, then empty tracks. */
|
|
18939
18903
|
var DiskReconcileCountsSchema = object({
|
|
@@ -19182,10 +19146,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19182
19146
|
* stationary registry). Default false: the timeline lists passages,
|
|
19183
19147
|
* not parking records (operator decision, 2026-08-15). */
|
|
19184
19148
|
includeStationary: boolean().optional()
|
|
19185
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(
|
|
19186
|
-
deviceId: number(),
|
|
19187
|
-
groupId: string().min(1)
|
|
19188
|
-
}), AnalyticsGroupDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
19149
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19189
19150
|
kind: "mutation",
|
|
19190
19151
|
auth: "admin"
|
|
19191
19152
|
}), method(DeviceEventQueryInput, array(MotionEventSchema).readonly()), method(ObjectEventQueryInput, array(ObjectEventSchema).readonly()), method(DeviceEventQueryInput, array(AudioEventSchema).readonly()), method(object({ deviceId: number() }), array(EventKindDescriptorSchema).readonly()), method(object({ deviceIds: array(number()).min(1).max(200) }), array(EventKindsForDeviceSchema).readonly()), method(object({
|
|
@@ -30273,6 +30234,12 @@ Object.freeze({
|
|
|
30273
30234
|
addonId: null,
|
|
30274
30235
|
access: "delete"
|
|
30275
30236
|
},
|
|
30237
|
+
"deviceManager.renameLocation": {
|
|
30238
|
+
capName: "device-manager",
|
|
30239
|
+
capScope: "system",
|
|
30240
|
+
addonId: null,
|
|
30241
|
+
access: "create"
|
|
30242
|
+
},
|
|
30276
30243
|
"deviceManager.runDeviceAction": {
|
|
30277
30244
|
capName: "device-manager",
|
|
30278
30245
|
capScope: "system",
|
|
@@ -31965,12 +31932,6 @@ Object.freeze({
|
|
|
31965
31932
|
addonId: null,
|
|
31966
31933
|
access: "view"
|
|
31967
31934
|
},
|
|
31968
|
-
"pipelineAnalytics.getGroup": {
|
|
31969
|
-
capName: "pipeline-analytics",
|
|
31970
|
-
capScope: "device",
|
|
31971
|
-
addonId: null,
|
|
31972
|
-
access: "view"
|
|
31973
|
-
},
|
|
31974
31935
|
"pipelineAnalytics.getKeyEvents": {
|
|
31975
31936
|
capName: "pipeline-analytics",
|
|
31976
31937
|
capScope: "device",
|
|
@@ -32073,12 +32034,6 @@ Object.freeze({
|
|
|
32073
32034
|
addonId: null,
|
|
32074
32035
|
access: "view"
|
|
32075
32036
|
},
|
|
32076
|
-
"pipelineAnalytics.listGroups": {
|
|
32077
|
-
capName: "pipeline-analytics",
|
|
32078
|
-
capScope: "device",
|
|
32079
|
-
addonId: null,
|
|
32080
|
-
access: "view"
|
|
32081
|
-
},
|
|
32082
32037
|
"pipelineAnalytics.listOpsLog": {
|
|
32083
32038
|
capName: "pipeline-analytics",
|
|
32084
32039
|
capScope: "device",
|
|
@@ -35701,11 +35656,6 @@ Object.freeze({
|
|
|
35701
35656
|
form: "single",
|
|
35702
35657
|
optional: true
|
|
35703
35658
|
}],
|
|
35704
|
-
"pipelineAnalytics.getGroup": [{
|
|
35705
|
-
name: "deviceId",
|
|
35706
|
-
form: "single",
|
|
35707
|
-
optional: false
|
|
35708
|
-
}],
|
|
35709
35659
|
"pipelineAnalytics.getKeyEvents": [{
|
|
35710
35660
|
name: "deviceId",
|
|
35711
35661
|
form: "single",
|
|
@@ -35771,11 +35721,6 @@ Object.freeze({
|
|
|
35771
35721
|
form: "single",
|
|
35772
35722
|
optional: false
|
|
35773
35723
|
}],
|
|
35774
|
-
"pipelineAnalytics.listGroups": [{
|
|
35775
|
-
name: "deviceIds",
|
|
35776
|
-
form: "array",
|
|
35777
|
-
optional: false
|
|
35778
|
-
}],
|
|
35779
35724
|
"pipelineAnalytics.listOpsLog": [{
|
|
35780
35725
|
name: "deviceId",
|
|
35781
35726
|
form: "single",
|
|
@@ -37060,7 +37005,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
37060
37005
|
capability: adminUiCapability,
|
|
37061
37006
|
provider: {
|
|
37062
37007
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
37063
|
-
getVersion: async () => ({ version: "1.2.
|
|
37008
|
+
getVersion: async () => ({ version: "1.2.52" })
|
|
37064
37009
|
}
|
|
37065
37010
|
}];
|
|
37066
37011
|
}
|