@camstack/addon-terminal 0.1.60 → 0.1.62
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
|
@@ -14529,17 +14529,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14529
14529
|
*/
|
|
14530
14530
|
gpuShmemBytes: number().nullable()
|
|
14531
14531
|
}).extend({ atMs: number() });
|
|
14532
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14533
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14534
|
-
addonId: string() });
|
|
14535
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14536
|
-
success: boolean(),
|
|
14537
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14538
|
-
path: string().optional(),
|
|
14539
|
-
/** Process pid that was signalled. */
|
|
14540
|
-
pid: number().optional(),
|
|
14541
|
-
reason: string().optional()
|
|
14542
|
-
});
|
|
14543
14532
|
/**
|
|
14544
14533
|
* One point of one function's series.
|
|
14545
14534
|
*
|
|
@@ -14663,10 +14652,7 @@ var SystemMetricsSchema = object({
|
|
|
14663
14652
|
gpuPercent: number().optional(),
|
|
14664
14653
|
gpuMemoryPercent: number().optional()
|
|
14665
14654
|
});
|
|
14666
|
-
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)
|
|
14667
|
-
kind: "mutation",
|
|
14668
|
-
auth: "admin"
|
|
14669
|
-
});
|
|
14655
|
+
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);
|
|
14670
14656
|
method(object({
|
|
14671
14657
|
sourceUrl: string(),
|
|
14672
14658
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -18978,7 +18964,8 @@ var MediaFileKindEnum = _enum([
|
|
|
18978
18964
|
"plateCrop",
|
|
18979
18965
|
"keyFrame",
|
|
18980
18966
|
"keyFrameSmall",
|
|
18981
|
-
"thumbnailSmall"
|
|
18967
|
+
"thumbnailSmall",
|
|
18968
|
+
"sceneFrame"
|
|
18982
18969
|
]);
|
|
18983
18970
|
/**
|
|
18984
18971
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19627,7 +19614,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19627
19614
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19628
19615
|
* stationary registry). Default false: the timeline lists passages,
|
|
19629
19616
|
* not parking records (operator decision, 2026-08-15). */
|
|
19630
|
-
includeStationary: boolean().optional()
|
|
19617
|
+
includeStationary: boolean().optional(),
|
|
19618
|
+
/**
|
|
19619
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19620
|
+
*
|
|
19621
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19622
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19623
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19624
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19625
|
+
* selection was still a wide read followed by a wide discard.
|
|
19626
|
+
*
|
|
19627
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19628
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19629
|
+
* timeline would read as a camera that saw nothing.
|
|
19630
|
+
*/
|
|
19631
|
+
classes: array(string()).optional()
|
|
19631
19632
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19632
19633
|
kind: "mutation",
|
|
19633
19634
|
auth: "admin"
|
|
@@ -35356,12 +35357,6 @@ Object.freeze({
|
|
|
35356
35357
|
addonId: null,
|
|
35357
35358
|
access: "view"
|
|
35358
35359
|
},
|
|
35359
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
35360
|
-
capName: "metrics-provider",
|
|
35361
|
-
capScope: "system",
|
|
35362
|
-
addonId: null,
|
|
35363
|
-
access: "create"
|
|
35364
|
-
},
|
|
35365
35360
|
"metricsProvider.getAddonStats": {
|
|
35366
35361
|
capName: "metrics-provider",
|
|
35367
35362
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -14506,17 +14506,6 @@ var ContainerMemoryPointSchema = object({
|
|
|
14506
14506
|
*/
|
|
14507
14507
|
gpuShmemBytes: number().nullable()
|
|
14508
14508
|
}).extend({ atMs: number() });
|
|
14509
|
-
var DumpHeapSnapshotInputSchema = object({
|
|
14510
|
-
/** The addon whose runner should dump a heap snapshot. */
|
|
14511
|
-
addonId: string() });
|
|
14512
|
-
var DumpHeapSnapshotResultSchema = object({
|
|
14513
|
-
success: boolean(),
|
|
14514
|
-
/** Path of the written .heapsnapshot inside the runner's container/host. */
|
|
14515
|
-
path: string().optional(),
|
|
14516
|
-
/** Process pid that was signalled. */
|
|
14517
|
-
pid: number().optional(),
|
|
14518
|
-
reason: string().optional()
|
|
14519
|
-
});
|
|
14520
14509
|
/**
|
|
14521
14510
|
* One point of one function's series.
|
|
14522
14511
|
*
|
|
@@ -14640,10 +14629,7 @@ var SystemMetricsSchema = object({
|
|
|
14640
14629
|
gpuPercent: number().optional(),
|
|
14641
14630
|
gpuMemoryPercent: number().optional()
|
|
14642
14631
|
});
|
|
14643
|
-
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)
|
|
14644
|
-
kind: "mutation",
|
|
14645
|
-
auth: "admin"
|
|
14646
|
-
});
|
|
14632
|
+
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);
|
|
14647
14633
|
method(object({
|
|
14648
14634
|
sourceUrl: string(),
|
|
14649
14635
|
metadata: ModelConvertMetadataSchema,
|
|
@@ -18955,7 +18941,8 @@ var MediaFileKindEnum = _enum([
|
|
|
18955
18941
|
"plateCrop",
|
|
18956
18942
|
"keyFrame",
|
|
18957
18943
|
"keyFrameSmall",
|
|
18958
|
-
"thumbnailSmall"
|
|
18944
|
+
"thumbnailSmall",
|
|
18945
|
+
"sceneFrame"
|
|
18959
18946
|
]);
|
|
18960
18947
|
/**
|
|
18961
18948
|
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
@@ -19604,7 +19591,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19604
19591
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19605
19592
|
* stationary registry). Default false: the timeline lists passages,
|
|
19606
19593
|
* not parking records (operator decision, 2026-08-15). */
|
|
19607
|
-
includeStationary: boolean().optional()
|
|
19594
|
+
includeStationary: boolean().optional(),
|
|
19595
|
+
/**
|
|
19596
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19597
|
+
*
|
|
19598
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19599
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19600
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19601
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19602
|
+
* selection was still a wide read followed by a wide discard.
|
|
19603
|
+
*
|
|
19604
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19605
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19606
|
+
* timeline would read as a camera that saw nothing.
|
|
19607
|
+
*/
|
|
19608
|
+
classes: array(string()).optional()
|
|
19608
19609
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19609
19610
|
kind: "mutation",
|
|
19610
19611
|
auth: "admin"
|
|
@@ -35333,12 +35334,6 @@ Object.freeze({
|
|
|
35333
35334
|
addonId: null,
|
|
35334
35335
|
access: "view"
|
|
35335
35336
|
},
|
|
35336
|
-
"metricsProvider.dumpHeapSnapshot": {
|
|
35337
|
-
capName: "metrics-provider",
|
|
35338
|
-
capScope: "system",
|
|
35339
|
-
addonId: null,
|
|
35340
|
-
access: "create"
|
|
35341
|
-
},
|
|
35342
35337
|
"metricsProvider.getAddonStats": {
|
|
35343
35338
|
capName: "metrics-provider",
|
|
35344
35339
|
capScope: "system",
|