@camstack/addon-provider-reolink 1.2.78 → 1.2.80
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
|
@@ -15108,17 +15108,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
15108
15108
|
*/
|
|
15109
15109
|
gpuShmemBytes: number().nullable()
|
|
15110
15110
|
}).extend({ atMs: number() });
|
|
15111
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
15112
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
15113
|
-
addonId: string() });
|
|
15114
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
15115
|
-
success: boolean(),
|
|
15116
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
15117
|
-
path: string().optional(),
|
|
15118
|
-
/** Process pid that was signalled. */
|
|
15119
|
-
pid: number().optional(),
|
|
15120
|
-
reason: string().optional()
|
|
15121
|
-
});
|
|
15122
15111
|
/**
|
|
15123
15112
|
* One point of one function's series.
|
|
15124
15113
|
*
|
|
@@ -15242,10 +15231,7 @@ var SystemMetricsSchema = object({
|
|
|
15242
15231
|
gpuPercent: number().optional(),
|
|
15243
15232
|
gpuMemoryPercent: number().optional()
|
|
15244
15233
|
});
|
|
15245
|
-
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)
|
|
15246
|
-
kind: "mutation",
|
|
15247
|
-
auth: "admin"
|
|
15248
|
-
});
|
|
15234
|
+
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);
|
|
15249
15235
|
method(object({
|
|
15250
15236
|
sourceUrl: string(),
|
|
15251
15237
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -19557,7 +19543,8 @@ var MediaFileKindEnum = _enum([
|
|
|
19557
19543
|
"plateCrop",
|
|
19558
19544
|
"keyFrame",
|
|
19559
19545
|
"keyFrameSmall",
|
|
19560
|
-
"thumbnailSmall"
|
|
19546
|
+
"thumbnailSmall",
|
|
19547
|
+
"sceneFrame"
|
|
19561
19548
|
]);
|
|
19562
19549
|
/**
|
|
19563
19550
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -20206,7 +20193,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20206
20193
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
20207
20194
|
* stationary registry). Default false: the timeline lists passages,
|
|
20208
20195
|
* not parking records (operator decision, 2026-08-15). */
|
|
20209
|
-
includeStationary: boolean().optional()
|
|
20196
|
+
includeStationary: boolean().optional(),
|
|
20197
|
+
/**
|
|
20198
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20199
|
+
*
|
|
20200
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
20201
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
20202
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
20203
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
20204
|
+
* selection was still a wide read followed by a wide discard.
|
|
20205
|
+
*
|
|
20206
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
20207
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
20208
|
+
* timeline would read as a camera that saw nothing.
|
|
20209
|
+
*/
|
|
20210
|
+
classes: array(string()).optional()
|
|
20210
20211
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20211
20212
|
kind: "mutation",
|
|
20212
20213
|
auth: "admin"
|
|
@@ -36345,12 +36346,6 @@ Object.freeze({
|
|
|
36345
36346
|
addonId: null,
|
|
36346
36347
|
access: "view"
|
|
36347
36348
|
},
|
|
36348
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
36349
|
-
capName: "metrics-provider",
|
|
36350
|
-
capScope: "system",
|
|
36351
|
-
addonId: null,
|
|
36352
|
-
access: "create"
|
|
36353
|
-
},
|
|
36354
36349
|
"metricsProvider.getAddonStats": {
|
|
36355
36350
|
capName: "metrics-provider",
|
|
36356
36351
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -15103,17 +15103,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
15103
15103
|
*/
|
|
15104
15104
|
gpuShmemBytes: number().nullable()
|
|
15105
15105
|
}).extend({ atMs: number() });
|
|
15106
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
15107
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
15108
|
-
addonId: string() });
|
|
15109
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
15110
|
-
success: boolean(),
|
|
15111
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
15112
|
-
path: string().optional(),
|
|
15113
|
-
/** Process pid that was signalled. */
|
|
15114
|
-
pid: number().optional(),
|
|
15115
|
-
reason: string().optional()
|
|
15116
|
-
});
|
|
15117
15106
|
/**
|
|
15118
15107
|
* One point of one function's series.
|
|
15119
15108
|
*
|
|
@@ -15237,10 +15226,7 @@ var SystemMetricsSchema = object({
|
|
|
15237
15226
|
gpuPercent: number().optional(),
|
|
15238
15227
|
gpuMemoryPercent: number().optional()
|
|
15239
15228
|
});
|
|
15240
|
-
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)
|
|
15241
|
-
kind: "mutation",
|
|
15242
|
-
auth: "admin"
|
|
15243
|
-
});
|
|
15229
|
+
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);
|
|
15244
15230
|
method(object({
|
|
15245
15231
|
sourceUrl: string(),
|
|
15246
15232
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -19552,7 +19538,8 @@ var MediaFileKindEnum = _enum([
|
|
|
19552
19538
|
"plateCrop",
|
|
19553
19539
|
"keyFrame",
|
|
19554
19540
|
"keyFrameSmall",
|
|
19555
|
-
"thumbnailSmall"
|
|
19541
|
+
"thumbnailSmall",
|
|
19542
|
+
"sceneFrame"
|
|
19556
19543
|
]);
|
|
19557
19544
|
/**
|
|
19558
19545
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -20201,7 +20188,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20201
20188
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
20202
20189
|
* stationary registry). Default false: the timeline lists passages,
|
|
20203
20190
|
* not parking records (operator decision, 2026-08-15). */
|
|
20204
|
-
includeStationary: boolean().optional()
|
|
20191
|
+
includeStationary: boolean().optional(),
|
|
20192
|
+
/**
|
|
20193
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20194
|
+
*
|
|
20195
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
20196
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
20197
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
20198
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
20199
|
+
* selection was still a wide read followed by a wide discard.
|
|
20200
|
+
*
|
|
20201
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
20202
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
20203
|
+
* timeline would read as a camera that saw nothing.
|
|
20204
|
+
*/
|
|
20205
|
+
classes: array(string()).optional()
|
|
20205
20206
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20206
20207
|
kind: "mutation",
|
|
20207
20208
|
auth: "admin"
|
|
@@ -36340,12 +36341,6 @@ Object.freeze({
|
|
|
36340
36341
|
addonId: null,
|
|
36341
36342
|
access: "view"
|
|
36342
36343
|
},
|
|
36343
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
36344
|
-
capName: "metrics-provider",
|
|
36345
|
-
capScope: "system",
|
|
36346
|
-
addonId: null,
|
|
36347
|
-
access: "create"
|
|
36348
|
-
},
|
|
36349
36344
|
"metricsProvider.getAddonStats": {
|
|
36350
36345
|
capName: "metrics-provider",
|
|
36351
36346
|
capScope: "system",
|