@camstack/addon-provider-amcrest 0.2.56 → 0.2.58
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
|
@@ -14478,17 +14478,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14478
14478
|
*/
|
|
14479
14479
|
gpuShmemBytes: number().nullable()
|
|
14480
14480
|
}).extend({ atMs: number() });
|
|
14481
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14482
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14483
|
-
addonId: string() });
|
|
14484
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14485
|
-
success: boolean(),
|
|
14486
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14487
|
-
path: string().optional(),
|
|
14488
|
-
/** Process pid that was signalled. */
|
|
14489
|
-
pid: number().optional(),
|
|
14490
|
-
reason: string().optional()
|
|
14491
|
-
});
|
|
14492
14481
|
/**
|
|
14493
14482
|
* One point of one function's series.
|
|
14494
14483
|
*
|
|
@@ -14612,10 +14601,7 @@ var SystemMetricsSchema = object({
|
|
|
14612
14601
|
gpuPercent: number().optional(),
|
|
14613
14602
|
gpuMemoryPercent: number().optional()
|
|
14614
14603
|
});
|
|
14615
|
-
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)
|
|
14616
|
-
kind: "mutation",
|
|
14617
|
-
auth: "admin"
|
|
14618
|
-
});
|
|
14604
|
+
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);
|
|
14619
14605
|
method(object({
|
|
14620
14606
|
sourceUrl: string(),
|
|
14621
14607
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -18927,7 +18913,8 @@ var MediaFileKindEnum = _enum([
|
|
|
18927
18913
|
"plateCrop",
|
|
18928
18914
|
"keyFrame",
|
|
18929
18915
|
"keyFrameSmall",
|
|
18930
|
-
"thumbnailSmall"
|
|
18916
|
+
"thumbnailSmall",
|
|
18917
|
+
"sceneFrame"
|
|
18931
18918
|
]);
|
|
18932
18919
|
/**
|
|
18933
18920
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19576,7 +19563,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19576
19563
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19577
19564
|
* stationary registry). Default false: the timeline lists passages,
|
|
19578
19565
|
* not parking records (operator decision, 2026-08-15). */
|
|
19579
|
-
includeStationary: boolean().optional()
|
|
19566
|
+
includeStationary: boolean().optional(),
|
|
19567
|
+
/**
|
|
19568
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19569
|
+
*
|
|
19570
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19571
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19572
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19573
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19574
|
+
* selection was still a wide read followed by a wide discard.
|
|
19575
|
+
*
|
|
19576
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19577
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19578
|
+
* timeline would read as a camera that saw nothing.
|
|
19579
|
+
*/
|
|
19580
|
+
classes: array(string()).optional()
|
|
19580
19581
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19581
19582
|
kind: "mutation",
|
|
19582
19583
|
auth: "admin"
|
|
@@ -35755,12 +35756,6 @@ Object.freeze({
|
|
|
35755
35756
|
addonId: null,
|
|
35756
35757
|
access: "view"
|
|
35757
35758
|
},
|
|
35758
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
35759
|
-
capName: "metrics-provider",
|
|
35760
|
-
capScope: "system",
|
|
35761
|
-
addonId: null,
|
|
35762
|
-
access: "create"
|
|
35763
|
-
},
|
|
35764
35759
|
"metricsProvider.getAddonStats": {
|
|
35765
35760
|
capName: "metrics-provider",
|
|
35766
35761
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -14479,17 +14479,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14479
14479
|
*/
|
|
14480
14480
|
gpuShmemBytes: number().nullable()
|
|
14481
14481
|
}).extend({ atMs: number() });
|
|
14482
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14483
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14484
|
-
addonId: string() });
|
|
14485
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14486
|
-
success: boolean(),
|
|
14487
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14488
|
-
path: string().optional(),
|
|
14489
|
-
/** Process pid that was signalled. */
|
|
14490
|
-
pid: number().optional(),
|
|
14491
|
-
reason: string().optional()
|
|
14492
|
-
});
|
|
14493
14482
|
/**
|
|
14494
14483
|
* One point of one function's series.
|
|
14495
14484
|
*
|
|
@@ -14613,10 +14602,7 @@ var SystemMetricsSchema = object({
|
|
|
14613
14602
|
gpuPercent: number().optional(),
|
|
14614
14603
|
gpuMemoryPercent: number().optional()
|
|
14615
14604
|
});
|
|
14616
|
-
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)
|
|
14617
|
-
kind: "mutation",
|
|
14618
|
-
auth: "admin"
|
|
14619
|
-
});
|
|
14605
|
+
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);
|
|
14620
14606
|
method(object({
|
|
14621
14607
|
sourceUrl: string(),
|
|
14622
14608
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -18928,7 +18914,8 @@ var MediaFileKindEnum = _enum([
|
|
|
18928
18914
|
"plateCrop",
|
|
18929
18915
|
"keyFrame",
|
|
18930
18916
|
"keyFrameSmall",
|
|
18931
|
-
"thumbnailSmall"
|
|
18917
|
+
"thumbnailSmall",
|
|
18918
|
+
"sceneFrame"
|
|
18932
18919
|
]);
|
|
18933
18920
|
/**
|
|
18934
18921
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19577,7 +19564,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19577
19564
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19578
19565
|
* stationary registry). Default false: the timeline lists passages,
|
|
19579
19566
|
* not parking records (operator decision, 2026-08-15). */
|
|
19580
|
-
includeStationary: boolean().optional()
|
|
19567
|
+
includeStationary: boolean().optional(),
|
|
19568
|
+
/**
|
|
19569
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19570
|
+
*
|
|
19571
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19572
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19573
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19574
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19575
|
+
* selection was still a wide read followed by a wide discard.
|
|
19576
|
+
*
|
|
19577
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19578
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19579
|
+
* timeline would read as a camera that saw nothing.
|
|
19580
|
+
*/
|
|
19581
|
+
classes: array(string()).optional()
|
|
19581
19582
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19582
19583
|
kind: "mutation",
|
|
19583
19584
|
auth: "admin"
|
|
@@ -35756,12 +35757,6 @@ Object.freeze({
|
|
|
35756
35757
|
addonId: null,
|
|
35757
35758
|
access: "view"
|
|
35758
35759
|
},
|
|
35759
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
35760
|
-
capName: "metrics-provider",
|
|
35761
|
-
capScope: "system",
|
|
35762
|
-
addonId: null,
|
|
35763
|
-
access: "create"
|
|
35764
|
-
},
|
|
35765
35760
|
"metricsProvider.getAddonStats": {
|
|
35766
35761
|
capName: "metrics-provider",
|
|
35767
35762
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-amcrest",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.58",
|
|
4
4
|
"description": "Amcrest/Dahua camera device provider addon for CamStack — Dahua CGI over HTTP(S) with digest auth (snapshot, RTSP catalog, PTZ, image/day-night config)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|