@camstack/addon-provider-onvif 1.2.54 → 1.2.56
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
|
@@ -14275,17 +14275,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14275
14275
|
*/
|
|
14276
14276
|
gpuShmemBytes: number().nullable()
|
|
14277
14277
|
}).extend({ atMs: number() });
|
|
14278
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14279
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14280
|
-
addonId: string() });
|
|
14281
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14282
|
-
success: boolean(),
|
|
14283
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14284
|
-
path: string().optional(),
|
|
14285
|
-
/** Process pid that was signalled. */
|
|
14286
|
-
pid: number().optional(),
|
|
14287
|
-
reason: string().optional()
|
|
14288
|
-
});
|
|
14289
14278
|
/**
|
|
14290
14279
|
* One point of one function's series.
|
|
14291
14280
|
*
|
|
@@ -14409,10 +14398,7 @@ var SystemMetricsSchema = object({
|
|
|
14409
14398
|
gpuPercent: number().optional(),
|
|
14410
14399
|
gpuMemoryPercent: number().optional()
|
|
14411
14400
|
});
|
|
14412
|
-
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)
|
|
14413
|
-
kind: "mutation",
|
|
14414
|
-
auth: "admin"
|
|
14415
|
-
});
|
|
14401
|
+
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);
|
|
14416
14402
|
method(object({
|
|
14417
14403
|
sourceUrl: string(),
|
|
14418
14404
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -18646,7 +18632,8 @@ var MediaFileKindEnum = _enum([
|
|
|
18646
18632
|
"plateCrop",
|
|
18647
18633
|
"keyFrame",
|
|
18648
18634
|
"keyFrameSmall",
|
|
18649
|
-
"thumbnailSmall"
|
|
18635
|
+
"thumbnailSmall",
|
|
18636
|
+
"sceneFrame"
|
|
18650
18637
|
]);
|
|
18651
18638
|
/**
|
|
18652
18639
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19295,7 +19282,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19295
19282
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19296
19283
|
* stationary registry). Default false: the timeline lists passages,
|
|
19297
19284
|
* not parking records (operator decision, 2026-08-15). */
|
|
19298
|
-
includeStationary: boolean().optional()
|
|
19285
|
+
includeStationary: boolean().optional(),
|
|
19286
|
+
/**
|
|
19287
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19288
|
+
*
|
|
19289
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19290
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19291
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19292
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19293
|
+
* selection was still a wide read followed by a wide discard.
|
|
19294
|
+
*
|
|
19295
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19296
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19297
|
+
* timeline would read as a camera that saw nothing.
|
|
19298
|
+
*/
|
|
19299
|
+
classes: array(string()).optional()
|
|
19299
19300
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19300
19301
|
kind: "mutation",
|
|
19301
19302
|
auth: "admin"
|
|
@@ -32020,12 +32021,6 @@ Object.freeze({
|
|
|
32020
32021
|
addonId: null,
|
|
32021
32022
|
access: "view"
|
|
32022
32023
|
},
|
|
32023
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
32024
|
-
capName: "metrics-provider",
|
|
32025
|
-
capScope: "system",
|
|
32026
|
-
addonId: null,
|
|
32027
|
-
access: "create"
|
|
32028
|
-
},
|
|
32029
32024
|
"metricsProvider.getAddonStats": {
|
|
32030
32025
|
capName: "metrics-provider",
|
|
32031
32026
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -14276,17 +14276,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14276
14276
|
*/
|
|
14277
14277
|
gpuShmemBytes: number().nullable()
|
|
14278
14278
|
}).extend({ atMs: number() });
|
|
14279
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14280
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14281
|
-
addonId: string() });
|
|
14282
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14283
|
-
success: boolean(),
|
|
14284
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14285
|
-
path: string().optional(),
|
|
14286
|
-
/** Process pid that was signalled. */
|
|
14287
|
-
pid: number().optional(),
|
|
14288
|
-
reason: string().optional()
|
|
14289
|
-
});
|
|
14290
14279
|
/**
|
|
14291
14280
|
* One point of one function's series.
|
|
14292
14281
|
*
|
|
@@ -14410,10 +14399,7 @@ var SystemMetricsSchema = object({
|
|
|
14410
14399
|
gpuPercent: number().optional(),
|
|
14411
14400
|
gpuMemoryPercent: number().optional()
|
|
14412
14401
|
});
|
|
14413
|
-
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)
|
|
14414
|
-
kind: "mutation",
|
|
14415
|
-
auth: "admin"
|
|
14416
|
-
});
|
|
14402
|
+
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);
|
|
14417
14403
|
method(object({
|
|
14418
14404
|
sourceUrl: string(),
|
|
14419
14405
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -18647,7 +18633,8 @@ var MediaFileKindEnum = _enum([
|
|
|
18647
18633
|
"plateCrop",
|
|
18648
18634
|
"keyFrame",
|
|
18649
18635
|
"keyFrameSmall",
|
|
18650
|
-
"thumbnailSmall"
|
|
18636
|
+
"thumbnailSmall",
|
|
18637
|
+
"sceneFrame"
|
|
18651
18638
|
]);
|
|
18652
18639
|
/**
|
|
18653
18640
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19296,7 +19283,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19296
19283
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19297
19284
|
* stationary registry). Default false: the timeline lists passages,
|
|
19298
19285
|
* not parking records (operator decision, 2026-08-15). */
|
|
19299
|
-
includeStationary: boolean().optional()
|
|
19286
|
+
includeStationary: boolean().optional(),
|
|
19287
|
+
/**
|
|
19288
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19289
|
+
*
|
|
19290
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19291
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19292
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19293
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19294
|
+
* selection was still a wide read followed by a wide discard.
|
|
19295
|
+
*
|
|
19296
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19297
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19298
|
+
* timeline would read as a camera that saw nothing.
|
|
19299
|
+
*/
|
|
19300
|
+
classes: array(string()).optional()
|
|
19300
19301
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19301
19302
|
kind: "mutation",
|
|
19302
19303
|
auth: "admin"
|
|
@@ -32021,12 +32022,6 @@ Object.freeze({
|
|
|
32021
32022
|
addonId: null,
|
|
32022
32023
|
access: "view"
|
|
32023
32024
|
},
|
|
32024
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
32025
|
-
capName: "metrics-provider",
|
|
32026
|
-
capScope: "system",
|
|
32027
|
-
addonId: null,
|
|
32028
|
-
access: "create"
|
|
32029
|
-
},
|
|
32030
32025
|
"metricsProvider.getAddonStats": {
|
|
32031
32026
|
capName: "metrics-provider",
|
|
32032
32027
|
capScope: "system",
|