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