@camstack/addon-provider-rademacher 0.2.54 → 0.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
|
@@ -15470,17 +15470,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
15470
15470
|
*/
|
|
15471
15471
|
gpuShmemBytes: number().nullable()
|
|
15472
15472
|
}).extend({ atMs: number() });
|
|
15473
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
15474
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
15475
|
-
addonId: string() });
|
|
15476
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
15477
|
-
success: boolean(),
|
|
15478
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
15479
|
-
path: string().optional(),
|
|
15480
|
-
/** Process pid that was signalled. */
|
|
15481
|
-
pid: number().optional(),
|
|
15482
|
-
reason: string().optional()
|
|
15483
|
-
});
|
|
15484
15473
|
/**
|
|
15485
15474
|
* One point of one function's series.
|
|
15486
15475
|
*
|
|
@@ -15604,10 +15593,7 @@ var SystemMetricsSchema = object({
|
|
|
15604
15593
|
gpuPercent: number().optional(),
|
|
15605
15594
|
gpuMemoryPercent: number().optional()
|
|
15606
15595
|
});
|
|
15607
|
-
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)
|
|
15608
|
-
kind: "mutation",
|
|
15609
|
-
auth: "admin"
|
|
15610
|
-
});
|
|
15596
|
+
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);
|
|
15611
15597
|
method(object({
|
|
15612
15598
|
sourceUrl: string(),
|
|
15613
15599
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -19919,7 +19905,8 @@ var MediaFileKindEnum = _enum([
|
|
|
19919
19905
|
"plateCrop",
|
|
19920
19906
|
"keyFrame",
|
|
19921
19907
|
"keyFrameSmall",
|
|
19922
|
-
"thumbnailSmall"
|
|
19908
|
+
"thumbnailSmall",
|
|
19909
|
+
"sceneFrame"
|
|
19923
19910
|
]);
|
|
19924
19911
|
/**
|
|
19925
19912
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -20568,7 +20555,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20568
20555
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
20569
20556
|
* stationary registry). Default false: the timeline lists passages,
|
|
20570
20557
|
* not parking records (operator decision, 2026-08-15). */
|
|
20571
|
-
includeStationary: boolean().optional()
|
|
20558
|
+
includeStationary: boolean().optional(),
|
|
20559
|
+
/**
|
|
20560
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20561
|
+
*
|
|
20562
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
20563
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
20564
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
20565
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
20566
|
+
* selection was still a wide read followed by a wide discard.
|
|
20567
|
+
*
|
|
20568
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
20569
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
20570
|
+
* timeline would read as a camera that saw nothing.
|
|
20571
|
+
*/
|
|
20572
|
+
classes: array(string()).optional()
|
|
20572
20573
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20573
20574
|
kind: "mutation",
|
|
20574
20575
|
auth: "admin"
|
|
@@ -36151,12 +36152,6 @@ Object.freeze({
|
|
|
36151
36152
|
addonId: null,
|
|
36152
36153
|
access: "view"
|
|
36153
36154
|
},
|
|
36154
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
36155
|
-
capName: "metrics-provider",
|
|
36156
|
-
capScope: "system",
|
|
36157
|
-
addonId: null,
|
|
36158
|
-
access: "create"
|
|
36159
|
-
},
|
|
36160
36155
|
"metricsProvider.getAddonStats": {
|
|
36161
36156
|
capName: "metrics-provider",
|
|
36162
36157
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -15469,17 +15469,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
15469
15469
|
*/
|
|
15470
15470
|
gpuShmemBytes: number().nullable()
|
|
15471
15471
|
}).extend({ atMs: number() });
|
|
15472
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
15473
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
15474
|
-
addonId: string() });
|
|
15475
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
15476
|
-
success: boolean(),
|
|
15477
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
15478
|
-
path: string().optional(),
|
|
15479
|
-
/** Process pid that was signalled. */
|
|
15480
|
-
pid: number().optional(),
|
|
15481
|
-
reason: string().optional()
|
|
15482
|
-
});
|
|
15483
15472
|
/**
|
|
15484
15473
|
* One point of one function's series.
|
|
15485
15474
|
*
|
|
@@ -15603,10 +15592,7 @@ var SystemMetricsSchema = object({
|
|
|
15603
15592
|
gpuPercent: number().optional(),
|
|
15604
15593
|
gpuMemoryPercent: number().optional()
|
|
15605
15594
|
});
|
|
15606
|
-
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)
|
|
15607
|
-
kind: "mutation",
|
|
15608
|
-
auth: "admin"
|
|
15609
|
-
});
|
|
15595
|
+
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);
|
|
15610
15596
|
method(object({
|
|
15611
15597
|
sourceUrl: string(),
|
|
15612
15598
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -19918,7 +19904,8 @@ var MediaFileKindEnum = _enum([
|
|
|
19918
19904
|
"plateCrop",
|
|
19919
19905
|
"keyFrame",
|
|
19920
19906
|
"keyFrameSmall",
|
|
19921
|
-
"thumbnailSmall"
|
|
19907
|
+
"thumbnailSmall",
|
|
19908
|
+
"sceneFrame"
|
|
19922
19909
|
]);
|
|
19923
19910
|
/**
|
|
19924
19911
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -20567,7 +20554,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20567
20554
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
20568
20555
|
* stationary registry). Default false: the timeline lists passages,
|
|
20569
20556
|
* not parking records (operator decision, 2026-08-15). */
|
|
20570
|
-
includeStationary: boolean().optional()
|
|
20557
|
+
includeStationary: boolean().optional(),
|
|
20558
|
+
/**
|
|
20559
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20560
|
+
*
|
|
20561
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
20562
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
20563
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
20564
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
20565
|
+
* selection was still a wide read followed by a wide discard.
|
|
20566
|
+
*
|
|
20567
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
20568
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
20569
|
+
* timeline would read as a camera that saw nothing.
|
|
20570
|
+
*/
|
|
20571
|
+
classes: array(string()).optional()
|
|
20571
20572
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20572
20573
|
kind: "mutation",
|
|
20573
20574
|
auth: "admin"
|
|
@@ -36150,12 +36151,6 @@ Object.freeze({
|
|
|
36150
36151
|
addonId: null,
|
|
36151
36152
|
access: "view"
|
|
36152
36153
|
},
|
|
36153
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
36154
|
-
capName: "metrics-provider",
|
|
36155
|
-
capScope: "system",
|
|
36156
|
-
addonId: null,
|
|
36157
|
-
access: "create"
|
|
36158
|
-
},
|
|
36159
36154
|
"metricsProvider.getAddonStats": {
|
|
36160
36155
|
capName: "metrics-provider",
|
|
36161
36156
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-rademacher",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.56",
|
|
4
4
|
"description": "Rademacher HomePilot device-provider addon for CamStack — wraps the @apocaliss92/noderademacher local-hub client (roller shutters over the cover cap)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|