@camstack/addon-decoder-nodeav 1.2.55 → 1.2.57
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/index.js +18 -23
- package/dist/index.mjs +18 -23
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14351,17 +14351,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14351
14351
|
*/
|
|
14352
14352
|
gpuShmemBytes: number().nullable()
|
|
14353
14353
|
}).extend({ atMs: number() });
|
|
14354
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14355
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14356
|
-
addonId: string() });
|
|
14357
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14358
|
-
success: boolean(),
|
|
14359
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14360
|
-
path: string().optional(),
|
|
14361
|
-
/** Process pid that was signalled. */
|
|
14362
|
-
pid: number().optional(),
|
|
14363
|
-
reason: string().optional()
|
|
14364
|
-
});
|
|
14365
14354
|
/**
|
|
14366
14355
|
* One point of one function's series.
|
|
14367
14356
|
*
|
|
@@ -14485,10 +14474,7 @@ var SystemMetricsSchema = object({
|
|
|
14485
14474
|
gpuPercent: number().optional(),
|
|
14486
14475
|
gpuMemoryPercent: number().optional()
|
|
14487
14476
|
});
|
|
14488
|
-
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)
|
|
14489
|
-
kind: "mutation",
|
|
14490
|
-
auth: "admin"
|
|
14491
|
-
});
|
|
14477
|
+
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);
|
|
14492
14478
|
method(object({
|
|
14493
14479
|
sourceUrl: string(),
|
|
14494
14480
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -18722,7 +18708,8 @@ var MediaFileKindEnum = _enum([
|
|
|
18722
18708
|
"plateCrop",
|
|
18723
18709
|
"keyFrame",
|
|
18724
18710
|
"keyFrameSmall",
|
|
18725
|
-
"thumbnailSmall"
|
|
18711
|
+
"thumbnailSmall",
|
|
18712
|
+
"sceneFrame"
|
|
18726
18713
|
]);
|
|
18727
18714
|
/**
|
|
18728
18715
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19371,7 +19358,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19371
19358
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19372
19359
|
* stationary registry). Default false: the timeline lists passages,
|
|
19373
19360
|
* not parking records (operator decision, 2026-08-15). */
|
|
19374
|
-
includeStationary: boolean().optional()
|
|
19361
|
+
includeStationary: boolean().optional(),
|
|
19362
|
+
/**
|
|
19363
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19364
|
+
*
|
|
19365
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19366
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19367
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19368
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19369
|
+
* selection was still a wide read followed by a wide discard.
|
|
19370
|
+
*
|
|
19371
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19372
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19373
|
+
* timeline would read as a camera that saw nothing.
|
|
19374
|
+
*/
|
|
19375
|
+
classes: array(string()).optional()
|
|
19375
19376
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19376
19377
|
kind: "mutation",
|
|
19377
19378
|
auth: "admin"
|
|
@@ -31540,12 +31541,6 @@ Object.freeze({
|
|
|
31540
31541
|
addonId: null,
|
|
31541
31542
|
access: "view"
|
|
31542
31543
|
},
|
|
31543
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
31544
|
-
capName: "metrics-provider",
|
|
31545
|
-
capScope: "system",
|
|
31546
|
-
addonId: null,
|
|
31547
|
-
access: "create"
|
|
31548
|
-
},
|
|
31549
31544
|
"metricsProvider.getAddonStats": {
|
|
31550
31545
|
capName: "metrics-provider",
|
|
31551
31546
|
capScope: "system",
|
package/dist/index.mjs
CHANGED
|
@@ -14347,17 +14347,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14347
14347
|
*/
|
|
14348
14348
|
gpuShmemBytes: number().nullable()
|
|
14349
14349
|
}).extend({ atMs: number() });
|
|
14350
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14351
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14352
|
-
addonId: string() });
|
|
14353
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14354
|
-
success: boolean(),
|
|
14355
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14356
|
-
path: string().optional(),
|
|
14357
|
-
/** Process pid that was signalled. */
|
|
14358
|
-
pid: number().optional(),
|
|
14359
|
-
reason: string().optional()
|
|
14360
|
-
});
|
|
14361
14350
|
/**
|
|
14362
14351
|
* One point of one function's series.
|
|
14363
14352
|
*
|
|
@@ -14481,10 +14470,7 @@ var SystemMetricsSchema = object({
|
|
|
14481
14470
|
gpuPercent: number().optional(),
|
|
14482
14471
|
gpuMemoryPercent: number().optional()
|
|
14483
14472
|
});
|
|
14484
|
-
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)
|
|
14485
|
-
kind: "mutation",
|
|
14486
|
-
auth: "admin"
|
|
14487
|
-
});
|
|
14473
|
+
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);
|
|
14488
14474
|
method(object({
|
|
14489
14475
|
sourceUrl: string(),
|
|
14490
14476
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -18718,7 +18704,8 @@ var MediaFileKindEnum = _enum([
|
|
|
18718
18704
|
"plateCrop",
|
|
18719
18705
|
"keyFrame",
|
|
18720
18706
|
"keyFrameSmall",
|
|
18721
|
-
"thumbnailSmall"
|
|
18707
|
+
"thumbnailSmall",
|
|
18708
|
+
"sceneFrame"
|
|
18722
18709
|
]);
|
|
18723
18710
|
/**
|
|
18724
18711
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19367,7 +19354,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19367
19354
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19368
19355
|
* stationary registry). Default false: the timeline lists passages,
|
|
19369
19356
|
* not parking records (operator decision, 2026-08-15). */
|
|
19370
|
-
includeStationary: boolean().optional()
|
|
19357
|
+
includeStationary: boolean().optional(),
|
|
19358
|
+
/**
|
|
19359
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19360
|
+
*
|
|
19361
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19362
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19363
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19364
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19365
|
+
* selection was still a wide read followed by a wide discard.
|
|
19366
|
+
*
|
|
19367
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19368
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19369
|
+
* timeline would read as a camera that saw nothing.
|
|
19370
|
+
*/
|
|
19371
|
+
classes: array(string()).optional()
|
|
19371
19372
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19372
19373
|
kind: "mutation",
|
|
19373
19374
|
auth: "admin"
|
|
@@ -31536,12 +31537,6 @@ Object.freeze({
|
|
|
31536
31537
|
addonId: null,
|
|
31537
31538
|
access: "view"
|
|
31538
31539
|
},
|
|
31539
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
31540
|
-
capName: "metrics-provider",
|
|
31541
|
-
capScope: "system",
|
|
31542
|
-
addonId: null,
|
|
31543
|
-
access: "create"
|
|
31544
|
-
},
|
|
31545
31540
|
"metricsProvider.getAddonStats": {
|
|
31546
31541
|
capName: "metrics-provider",
|
|
31547
31542
|
capScope: "system",
|