@camstack/addon-provider-hikvision 1.2.63 → 1.2.65
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 +18 -23
- package/dist/addon.mjs +18 -23
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -14792,17 +14792,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14792
14792
|
*/
|
|
14793
14793
|
gpuShmemBytes: number().nullable()
|
|
14794
14794
|
}).extend({ atMs: number() });
|
|
14795
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14796
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14797
|
-
addonId: string() });
|
|
14798
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14799
|
-
success: boolean(),
|
|
14800
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14801
|
-
path: string().optional(),
|
|
14802
|
-
/** Process pid that was signalled. */
|
|
14803
|
-
pid: number().optional(),
|
|
14804
|
-
reason: string().optional()
|
|
14805
|
-
});
|
|
14806
14795
|
/**
|
|
14807
14796
|
* One point of one function's series.
|
|
14808
14797
|
*
|
|
@@ -14926,10 +14915,7 @@ var SystemMetricsSchema = object({
|
|
|
14926
14915
|
gpuPercent: number().optional(),
|
|
14927
14916
|
gpuMemoryPercent: number().optional()
|
|
14928
14917
|
});
|
|
14929
|
-
method(_void(), SystemResourceSnapshotSchema), method(_void(), SystemResourceSnapshotSchema.nullable()), method(_void(), SystemMetricsSchema), method(object({ dirPath: string() }), DiskSpaceInfoSchema), method(_void(), MetricsGpuInfoSchema.nullable()), method(_void(), number().nullable()), method(object({ pids: array(number()) }), array(PidResourceStatsSchema)), method(_void(), array(AddonInstanceSchema).readonly()), method(object({ addonId: string() }), PidResourceStatsSchema.nullable()), method(_void(), array(NodeProcessSchema).readonly()), method(GetLoadSeriesInputSchema, NodeLoadSeriesSchema)
|
|
14930
|
-
kind: "mutation",
|
|
14931
|
-
auth: "admin"
|
|
14932
|
-
});
|
|
14918
|
+
method(_void(), SystemResourceSnapshotSchema), method(_void(), SystemResourceSnapshotSchema.nullable()), method(_void(), SystemMetricsSchema), method(object({ dirPath: string() }), DiskSpaceInfoSchema), method(_void(), MetricsGpuInfoSchema.nullable()), method(_void(), number().nullable()), method(object({ pids: array(number()) }), array(PidResourceStatsSchema)), method(_void(), array(AddonInstanceSchema).readonly()), method(object({ addonId: string() }), PidResourceStatsSchema.nullable()), method(_void(), array(NodeProcessSchema).readonly()), method(GetLoadSeriesInputSchema, NodeLoadSeriesSchema);
|
|
14933
14919
|
method(object({
|
|
14934
14920
|
sourceUrl: string(),
|
|
14935
14921
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -19241,7 +19227,8 @@ var MediaFileKindEnum = _enum([
|
|
|
19241
19227
|
"plateCrop",
|
|
19242
19228
|
"keyFrame",
|
|
19243
19229
|
"keyFrameSmall",
|
|
19244
|
-
"thumbnailSmall"
|
|
19230
|
+
"thumbnailSmall",
|
|
19231
|
+
"sceneFrame"
|
|
19245
19232
|
]);
|
|
19246
19233
|
/**
|
|
19247
19234
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19890,7 +19877,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19890
19877
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19891
19878
|
* stationary registry). Default false: the timeline lists passages,
|
|
19892
19879
|
* not parking records (operator decision, 2026-08-15). */
|
|
19893
|
-
includeStationary: boolean().optional()
|
|
19880
|
+
includeStationary: boolean().optional(),
|
|
19881
|
+
/**
|
|
19882
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19883
|
+
*
|
|
19884
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19885
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19886
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19887
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19888
|
+
* selection was still a wide read followed by a wide discard.
|
|
19889
|
+
*
|
|
19890
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19891
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19892
|
+
* timeline would read as a camera that saw nothing.
|
|
19893
|
+
*/
|
|
19894
|
+
classes: array(string()).optional()
|
|
19894
19895
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19895
19896
|
kind: "mutation",
|
|
19896
19897
|
auth: "admin"
|
|
@@ -36141,12 +36142,6 @@ Object.freeze({
|
|
|
36141
36142
|
addonId: null,
|
|
36142
36143
|
access: "view"
|
|
36143
36144
|
},
|
|
36144
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
36145
|
-
capName: "metrics-provider",
|
|
36146
|
-
capScope: "system",
|
|
36147
|
-
addonId: null,
|
|
36148
|
-
access: "create"
|
|
36149
|
-
},
|
|
36150
36145
|
"metricsProvider.getAddonStats": {
|
|
36151
36146
|
capName: "metrics-provider",
|
|
36152
36147
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -14793,17 +14793,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14793
14793
|
*/
|
|
14794
14794
|
gpuShmemBytes: number().nullable()
|
|
14795
14795
|
}).extend({ atMs: number() });
|
|
14796
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14797
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14798
|
-
addonId: string() });
|
|
14799
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14800
|
-
success: boolean(),
|
|
14801
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14802
|
-
path: string().optional(),
|
|
14803
|
-
/** Process pid that was signalled. */
|
|
14804
|
-
pid: number().optional(),
|
|
14805
|
-
reason: string().optional()
|
|
14806
|
-
});
|
|
14807
14796
|
/**
|
|
14808
14797
|
* One point of one function's series.
|
|
14809
14798
|
*
|
|
@@ -14927,10 +14916,7 @@ var SystemMetricsSchema = object({
|
|
|
14927
14916
|
gpuPercent: number().optional(),
|
|
14928
14917
|
gpuMemoryPercent: number().optional()
|
|
14929
14918
|
});
|
|
14930
|
-
method(_void(), SystemResourceSnapshotSchema), method(_void(), SystemResourceSnapshotSchema.nullable()), method(_void(), SystemMetricsSchema), method(object({ dirPath: string() }), DiskSpaceInfoSchema), method(_void(), MetricsGpuInfoSchema.nullable()), method(_void(), number().nullable()), method(object({ pids: array(number()) }), array(PidResourceStatsSchema)), method(_void(), array(AddonInstanceSchema).readonly()), method(object({ addonId: string() }), PidResourceStatsSchema.nullable()), method(_void(), array(NodeProcessSchema).readonly()), method(GetLoadSeriesInputSchema, NodeLoadSeriesSchema)
|
|
14931
|
-
kind: "mutation",
|
|
14932
|
-
auth: "admin"
|
|
14933
|
-
});
|
|
14919
|
+
method(_void(), SystemResourceSnapshotSchema), method(_void(), SystemResourceSnapshotSchema.nullable()), method(_void(), SystemMetricsSchema), method(object({ dirPath: string() }), DiskSpaceInfoSchema), method(_void(), MetricsGpuInfoSchema.nullable()), method(_void(), number().nullable()), method(object({ pids: array(number()) }), array(PidResourceStatsSchema)), method(_void(), array(AddonInstanceSchema).readonly()), method(object({ addonId: string() }), PidResourceStatsSchema.nullable()), method(_void(), array(NodeProcessSchema).readonly()), method(GetLoadSeriesInputSchema, NodeLoadSeriesSchema);
|
|
14934
14920
|
method(object({
|
|
14935
14921
|
sourceUrl: string(),
|
|
14936
14922
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -19242,7 +19228,8 @@ var MediaFileKindEnum = _enum([
|
|
|
19242
19228
|
"plateCrop",
|
|
19243
19229
|
"keyFrame",
|
|
19244
19230
|
"keyFrameSmall",
|
|
19245
|
-
"thumbnailSmall"
|
|
19231
|
+
"thumbnailSmall",
|
|
19232
|
+
"sceneFrame"
|
|
19246
19233
|
]);
|
|
19247
19234
|
/**
|
|
19248
19235
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19891,7 +19878,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19891
19878
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19892
19879
|
* stationary registry). Default false: the timeline lists passages,
|
|
19893
19880
|
* not parking records (operator decision, 2026-08-15). */
|
|
19894
|
-
includeStationary: boolean().optional()
|
|
19881
|
+
includeStationary: boolean().optional(),
|
|
19882
|
+
/**
|
|
19883
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19884
|
+
*
|
|
19885
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19886
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19887
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19888
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19889
|
+
* selection was still a wide read followed by a wide discard.
|
|
19890
|
+
*
|
|
19891
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19892
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19893
|
+
* timeline would read as a camera that saw nothing.
|
|
19894
|
+
*/
|
|
19895
|
+
classes: array(string()).optional()
|
|
19895
19896
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19896
19897
|
kind: "mutation",
|
|
19897
19898
|
auth: "admin"
|
|
@@ -36142,12 +36143,6 @@ Object.freeze({
|
|
|
36142
36143
|
addonId: null,
|
|
36143
36144
|
access: "view"
|
|
36144
36145
|
},
|
|
36145
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
36146
|
-
capName: "metrics-provider",
|
|
36147
|
-
capScope: "system",
|
|
36148
|
-
addonId: null,
|
|
36149
|
-
access: "create"
|
|
36150
|
-
},
|
|
36151
36146
|
"metricsProvider.getAddonStats": {
|
|
36152
36147
|
capName: "metrics-provider",
|
|
36153
36148
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-hikvision",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.65",
|
|
4
4
|
"description": "Hikvision camera device provider addon for CamStack — ISAPI over HTTP(S) with digest auth (snapshot, alarm stream, RTSP discovery)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|