@camstack/addon-terminal 0.1.43 → 0.1.44
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 +142 -1
- package/dist/addon.mjs +142 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -13511,6 +13511,114 @@ method(LogEntrySchema, _void(), { kind: "mutation" }), method(object({
|
|
|
13511
13511
|
limit: number().optional(),
|
|
13512
13512
|
tags: record(string(), string()).optional()
|
|
13513
13513
|
}), array(LogEntrySchema).readonly());
|
|
13514
|
+
/**
|
|
13515
|
+
* `failure-contribution` — the capability an addon reports its OWN losses
|
|
13516
|
+
* through, per camera, with the denominator attached. It stores nothing.
|
|
13517
|
+
*
|
|
13518
|
+
* ## The twin of `load-contribution`, and why it is a twin and not a field
|
|
13519
|
+
*
|
|
13520
|
+
* `load-contribution` answers *what did this camera COST*. This answers *what
|
|
13521
|
+
* did this camera LOSE*. The reporting discipline is identical and deliberately
|
|
13522
|
+
* copied: the contributor reports what it already knows, hub-main adds only
|
|
13523
|
+
* `addonId`, nothing needs global knowledge, and there is no central list for
|
|
13524
|
+
* somebody to forget to edit.
|
|
13525
|
+
*
|
|
13526
|
+
* They are not merged, because their invariants are opposites:
|
|
13527
|
+
*
|
|
13528
|
+
* - a `load-contribution` measurement is **absent, never zero** — a zero would
|
|
13529
|
+
* claim a camera cost nothing, which is a measurement nobody made;
|
|
13530
|
+
* - a `failure-contribution` zero is the **most valuable value on the
|
|
13531
|
+
* surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
|
|
13532
|
+
* and it is exactly what an absent entry cannot say.
|
|
13533
|
+
*
|
|
13534
|
+
* Putting a loss counter on a cost entry would also break the reconciliation
|
|
13535
|
+
* that gives `load-contribution` its point: contributions are subtracted from
|
|
13536
|
+
* `metrics.node-processes-snapshot` to find processes nobody claims. A failure
|
|
13537
|
+
* has no process.
|
|
13538
|
+
*
|
|
13539
|
+
* ## Why not a log line, since the counters already exist
|
|
13540
|
+
*
|
|
13541
|
+
* Several of these paths already counted themselves — `CaptureScheduler`'s
|
|
13542
|
+
* per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
|
|
13543
|
+
* ends in a log line, and a log line is the thing the operator asked to stop
|
|
13544
|
+
* needing: *"possiamo armare questi errori intanto? Così al prossimo giro
|
|
13545
|
+
* ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
|
|
13546
|
+
* hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
|
|
13547
|
+
* media blackout were both diagnosed. The counters stay; this is where they can
|
|
13548
|
+
* be READ.
|
|
13549
|
+
*
|
|
13550
|
+
* ## The rate is served with its denominator or not at all
|
|
13551
|
+
*
|
|
13552
|
+
* Every entry carries `attempts` and `succeeded`. A miss count alone is
|
|
13553
|
+
* unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
|
|
13554
|
+
* than yesterday" and was **flat across twelve hours** once divided by the
|
|
13555
|
+
* successes on the same path. A surface that publishes only the numerator
|
|
13556
|
+
* reproduces that mistake on every read.
|
|
13557
|
+
*
|
|
13558
|
+
* ## Shape
|
|
13559
|
+
*
|
|
13560
|
+
* Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
|
|
13561
|
+
* `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
|
|
13562
|
+
* generated hooks, while `addons.listCapabilityProviders` still enumerates it
|
|
13563
|
+
* and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
|
|
13564
|
+
* a forked runner's entries reach hub-main over transport that already exists.
|
|
13565
|
+
* No new UDS message, no second registry (D3). The operator reads the assembled
|
|
13566
|
+
* result through `system.getFailureContributions`.
|
|
13567
|
+
*/
|
|
13568
|
+
var FailureReasonCountSchema = object({
|
|
13569
|
+
/**
|
|
13570
|
+
* Why the attempt did not land, in the contributor's own vocabulary —
|
|
13571
|
+
* `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
|
|
13572
|
+
* strings that already appear in this repo's logs and, where one exists, the
|
|
13573
|
+
* same string the per-track `previewMissReason` records (D276): a second
|
|
13574
|
+
* vocabulary for the same loss would make the row and the counter
|
|
13575
|
+
* un-joinable.
|
|
13576
|
+
*/
|
|
13577
|
+
reason: string(),
|
|
13578
|
+
count: number().int().nonnegative()
|
|
13579
|
+
});
|
|
13580
|
+
var FailureContributionSchema = object({
|
|
13581
|
+
/**
|
|
13582
|
+
* The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
|
|
13583
|
+
* `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
|
|
13584
|
+
* `unit` free: the families are owned by different addons and a shared enum
|
|
13585
|
+
* is a central list that rots invisibly.
|
|
13586
|
+
*/
|
|
13587
|
+
family: string(),
|
|
13588
|
+
/**
|
|
13589
|
+
* The NUMERIC device id — the same value every log line carries as
|
|
13590
|
+
* `tags.deviceId`. Never nullable and never absent: a contributor that
|
|
13591
|
+
* cannot name the camera must not emit the entry, because a fleet total
|
|
13592
|
+
* cannot answer the only question anybody asks of this surface.
|
|
13593
|
+
*/
|
|
13594
|
+
deviceId: number().int().positive(),
|
|
13595
|
+
/**
|
|
13596
|
+
* A second dimension inside the family: the model / step id for an inference
|
|
13597
|
+
* timeout, so "which camera AND which model" is one read. Absent when the
|
|
13598
|
+
* family has a single variant.
|
|
13599
|
+
*/
|
|
13600
|
+
variant: string().optional(),
|
|
13601
|
+
/**
|
|
13602
|
+
* Epoch ms this counter started — the INCARNATION MARKER. A consumer
|
|
13603
|
+
* differencing two reads must drop the interval when it changes, because the
|
|
13604
|
+
* counter restarted from zero in a respawned runner. Same discipline as
|
|
13605
|
+
* `LoadContribution.startedAtMs`.
|
|
13606
|
+
*/
|
|
13607
|
+
sinceMs: number(),
|
|
13608
|
+
/** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
|
|
13609
|
+
atMs: number(),
|
|
13610
|
+
/**
|
|
13611
|
+
* THE DENOMINATOR — every attempt on this path for this camera in the
|
|
13612
|
+
* window. A failure count published without it is the mistake this schema
|
|
13613
|
+
* exists to make impossible.
|
|
13614
|
+
*/
|
|
13615
|
+
attempts: number().int().nonnegative(),
|
|
13616
|
+
/** Attempts that landed. `attempts - succeeded` is the loss. */
|
|
13617
|
+
succeeded: number().int().nonnegative(),
|
|
13618
|
+
/** The loss, partitioned. Sums to `attempts - succeeded`. */
|
|
13619
|
+
reasons: array(FailureReasonCountSchema).readonly()
|
|
13620
|
+
});
|
|
13621
|
+
method(_void(), array(FailureContributionSchema).readonly());
|
|
13514
13622
|
var LoadContributionSchema = object({
|
|
13515
13623
|
role: _enum([
|
|
13516
13624
|
"decode",
|
|
@@ -18101,6 +18209,20 @@ var TrackSchema = object({
|
|
|
18101
18209
|
* `=== true` and render nothing otherwise — never infer "no rider".
|
|
18102
18210
|
*/
|
|
18103
18211
|
hasRider: boolean().optional(),
|
|
18212
|
+
/**
|
|
18213
|
+
* WHY this track ended without a NATIVE best-shot tile
|
|
18214
|
+
* ([D276](../decisions/adr-0276-a-stand-in-tile-is-provisional-and-a-close-says-why.md)) —
|
|
18215
|
+
* a composed token line (`no-key-frame capture=keyframe:native-missx4`,
|
|
18216
|
+
* `derive-returned-null tile=standin`, …) written at close and CLEARED by
|
|
18217
|
+
* the late-keyFrame upgrade when a native tile lands after all. The
|
|
18218
|
+
* operator-facing answer to "perché manca l'immagine?" on a track whose
|
|
18219
|
+
* tile is a face/plate stand-in, a raster crop, or an icon.
|
|
18220
|
+
*
|
|
18221
|
+
* **Absent ≠ "missed silently"**: a row written before the column, a hub
|
|
18222
|
+
* that predates the field, and every track whose tile landed native all
|
|
18223
|
+
* omit it. Render nothing when absent.
|
|
18224
|
+
*/
|
|
18225
|
+
previewMissReason: string().optional(),
|
|
18104
18226
|
...TrackFlagFields,
|
|
18105
18227
|
...TrackRetrainFields
|
|
18106
18228
|
});
|
|
@@ -29424,6 +29546,13 @@ var LoggingSettingsPatchSchema = object({
|
|
|
29424
29546
|
* anyone but its owner.
|
|
29425
29547
|
*/
|
|
29426
29548
|
var ReportedLoadContributionSchema = LoadContributionSchema.extend({ addonId: string() });
|
|
29549
|
+
/**
|
|
29550
|
+
* One per-camera failure counter, plus WHO reported it.
|
|
29551
|
+
*
|
|
29552
|
+
* Same rule as {@link ReportedLoadContributionSchema}: `addonId` is stamped by
|
|
29553
|
+
* the hub as it enumerates providers, never by the contributor.
|
|
29554
|
+
*/
|
|
29555
|
+
var ReportedFailureContributionSchema = FailureContributionSchema.extend({ addonId: string() });
|
|
29427
29556
|
var GetLoggingSettingsInputSchema = object({
|
|
29428
29557
|
scopeNodeId: string().optional(),
|
|
29429
29558
|
/**
|
|
@@ -29482,7 +29611,7 @@ method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), met
|
|
|
29482
29611
|
}), method(_void(), SiteLocationStatusSchema, {
|
|
29483
29612
|
kind: "mutation",
|
|
29484
29613
|
auth: "admin"
|
|
29485
|
-
}), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(_void(), array(ReportedLoadContributionSchema).readonly(), { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
|
|
29614
|
+
}), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(_void(), array(ReportedLoadContributionSchema).readonly(), { auth: "admin" }), method(_void(), array(ReportedFailureContributionSchema).readonly(), { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
|
|
29486
29615
|
kind: "mutation",
|
|
29487
29616
|
auth: "admin"
|
|
29488
29617
|
});
|
|
@@ -33470,6 +33599,12 @@ Object.freeze({
|
|
|
33470
33599
|
addonId: null,
|
|
33471
33600
|
access: "create"
|
|
33472
33601
|
},
|
|
33602
|
+
"failureContribution.list": {
|
|
33603
|
+
capName: "failure-contribution",
|
|
33604
|
+
capScope: "system",
|
|
33605
|
+
addonId: null,
|
|
33606
|
+
access: "view"
|
|
33607
|
+
},
|
|
33473
33608
|
"fanControl.setDirection": {
|
|
33474
33609
|
capName: "fan-control",
|
|
33475
33610
|
capScope: "device",
|
|
@@ -36776,6 +36911,12 @@ Object.freeze({
|
|
|
36776
36911
|
addonId: null,
|
|
36777
36912
|
access: "create"
|
|
36778
36913
|
},
|
|
36914
|
+
"system.getFailureContributions": {
|
|
36915
|
+
capName: "system",
|
|
36916
|
+
capScope: "system",
|
|
36917
|
+
addonId: null,
|
|
36918
|
+
access: "view"
|
|
36919
|
+
},
|
|
36779
36920
|
"system.getLoadContributions": {
|
|
36780
36921
|
capName: "system",
|
|
36781
36922
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -13488,6 +13488,114 @@ method(LogEntrySchema, _void(), { kind: "mutation" }), method(object({
|
|
|
13488
13488
|
limit: number().optional(),
|
|
13489
13489
|
tags: record(string(), string()).optional()
|
|
13490
13490
|
}), array(LogEntrySchema).readonly());
|
|
13491
|
+
/**
|
|
13492
|
+
* `failure-contribution` — the capability an addon reports its OWN losses
|
|
13493
|
+
* through, per camera, with the denominator attached. It stores nothing.
|
|
13494
|
+
*
|
|
13495
|
+
* ## The twin of `load-contribution`, and why it is a twin and not a field
|
|
13496
|
+
*
|
|
13497
|
+
* `load-contribution` answers *what did this camera COST*. This answers *what
|
|
13498
|
+
* did this camera LOSE*. The reporting discipline is identical and deliberately
|
|
13499
|
+
* copied: the contributor reports what it already knows, hub-main adds only
|
|
13500
|
+
* `addonId`, nothing needs global knowledge, and there is no central list for
|
|
13501
|
+
* somebody to forget to edit.
|
|
13502
|
+
*
|
|
13503
|
+
* They are not merged, because their invariants are opposites:
|
|
13504
|
+
*
|
|
13505
|
+
* - a `load-contribution` measurement is **absent, never zero** — a zero would
|
|
13506
|
+
* claim a camera cost nothing, which is a measurement nobody made;
|
|
13507
|
+
* - a `failure-contribution` zero is the **most valuable value on the
|
|
13508
|
+
* surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
|
|
13509
|
+
* and it is exactly what an absent entry cannot say.
|
|
13510
|
+
*
|
|
13511
|
+
* Putting a loss counter on a cost entry would also break the reconciliation
|
|
13512
|
+
* that gives `load-contribution` its point: contributions are subtracted from
|
|
13513
|
+
* `metrics.node-processes-snapshot` to find processes nobody claims. A failure
|
|
13514
|
+
* has no process.
|
|
13515
|
+
*
|
|
13516
|
+
* ## Why not a log line, since the counters already exist
|
|
13517
|
+
*
|
|
13518
|
+
* Several of these paths already counted themselves — `CaptureScheduler`'s
|
|
13519
|
+
* per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
|
|
13520
|
+
* ends in a log line, and a log line is the thing the operator asked to stop
|
|
13521
|
+
* needing: *"possiamo armare questi errori intanto? Così al prossimo giro
|
|
13522
|
+
* ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
|
|
13523
|
+
* hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
|
|
13524
|
+
* media blackout were both diagnosed. The counters stay; this is where they can
|
|
13525
|
+
* be READ.
|
|
13526
|
+
*
|
|
13527
|
+
* ## The rate is served with its denominator or not at all
|
|
13528
|
+
*
|
|
13529
|
+
* Every entry carries `attempts` and `succeeded`. A miss count alone is
|
|
13530
|
+
* unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
|
|
13531
|
+
* than yesterday" and was **flat across twelve hours** once divided by the
|
|
13532
|
+
* successes on the same path. A surface that publishes only the numerator
|
|
13533
|
+
* reproduces that mistake on every read.
|
|
13534
|
+
*
|
|
13535
|
+
* ## Shape
|
|
13536
|
+
*
|
|
13537
|
+
* Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
|
|
13538
|
+
* `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
|
|
13539
|
+
* generated hooks, while `addons.listCapabilityProviders` still enumerates it
|
|
13540
|
+
* and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
|
|
13541
|
+
* a forked runner's entries reach hub-main over transport that already exists.
|
|
13542
|
+
* No new UDS message, no second registry (D3). The operator reads the assembled
|
|
13543
|
+
* result through `system.getFailureContributions`.
|
|
13544
|
+
*/
|
|
13545
|
+
var FailureReasonCountSchema = object({
|
|
13546
|
+
/**
|
|
13547
|
+
* Why the attempt did not land, in the contributor's own vocabulary —
|
|
13548
|
+
* `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
|
|
13549
|
+
* strings that already appear in this repo's logs and, where one exists, the
|
|
13550
|
+
* same string the per-track `previewMissReason` records (D276): a second
|
|
13551
|
+
* vocabulary for the same loss would make the row and the counter
|
|
13552
|
+
* un-joinable.
|
|
13553
|
+
*/
|
|
13554
|
+
reason: string(),
|
|
13555
|
+
count: number().int().nonnegative()
|
|
13556
|
+
});
|
|
13557
|
+
var FailureContributionSchema = object({
|
|
13558
|
+
/**
|
|
13559
|
+
* The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
|
|
13560
|
+
* `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
|
|
13561
|
+
* `unit` free: the families are owned by different addons and a shared enum
|
|
13562
|
+
* is a central list that rots invisibly.
|
|
13563
|
+
*/
|
|
13564
|
+
family: string(),
|
|
13565
|
+
/**
|
|
13566
|
+
* The NUMERIC device id — the same value every log line carries as
|
|
13567
|
+
* `tags.deviceId`. Never nullable and never absent: a contributor that
|
|
13568
|
+
* cannot name the camera must not emit the entry, because a fleet total
|
|
13569
|
+
* cannot answer the only question anybody asks of this surface.
|
|
13570
|
+
*/
|
|
13571
|
+
deviceId: number().int().positive(),
|
|
13572
|
+
/**
|
|
13573
|
+
* A second dimension inside the family: the model / step id for an inference
|
|
13574
|
+
* timeout, so "which camera AND which model" is one read. Absent when the
|
|
13575
|
+
* family has a single variant.
|
|
13576
|
+
*/
|
|
13577
|
+
variant: string().optional(),
|
|
13578
|
+
/**
|
|
13579
|
+
* Epoch ms this counter started — the INCARNATION MARKER. A consumer
|
|
13580
|
+
* differencing two reads must drop the interval when it changes, because the
|
|
13581
|
+
* counter restarted from zero in a respawned runner. Same discipline as
|
|
13582
|
+
* `LoadContribution.startedAtMs`.
|
|
13583
|
+
*/
|
|
13584
|
+
sinceMs: number(),
|
|
13585
|
+
/** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
|
|
13586
|
+
atMs: number(),
|
|
13587
|
+
/**
|
|
13588
|
+
* THE DENOMINATOR — every attempt on this path for this camera in the
|
|
13589
|
+
* window. A failure count published without it is the mistake this schema
|
|
13590
|
+
* exists to make impossible.
|
|
13591
|
+
*/
|
|
13592
|
+
attempts: number().int().nonnegative(),
|
|
13593
|
+
/** Attempts that landed. `attempts - succeeded` is the loss. */
|
|
13594
|
+
succeeded: number().int().nonnegative(),
|
|
13595
|
+
/** The loss, partitioned. Sums to `attempts - succeeded`. */
|
|
13596
|
+
reasons: array(FailureReasonCountSchema).readonly()
|
|
13597
|
+
});
|
|
13598
|
+
method(_void(), array(FailureContributionSchema).readonly());
|
|
13491
13599
|
var LoadContributionSchema = object({
|
|
13492
13600
|
role: _enum([
|
|
13493
13601
|
"decode",
|
|
@@ -18078,6 +18186,20 @@ var TrackSchema = object({
|
|
|
18078
18186
|
* `=== true` and render nothing otherwise — never infer "no rider".
|
|
18079
18187
|
*/
|
|
18080
18188
|
hasRider: boolean().optional(),
|
|
18189
|
+
/**
|
|
18190
|
+
* WHY this track ended without a NATIVE best-shot tile
|
|
18191
|
+
* ([D276](../decisions/adr-0276-a-stand-in-tile-is-provisional-and-a-close-says-why.md)) —
|
|
18192
|
+
* a composed token line (`no-key-frame capture=keyframe:native-missx4`,
|
|
18193
|
+
* `derive-returned-null tile=standin`, …) written at close and CLEARED by
|
|
18194
|
+
* the late-keyFrame upgrade when a native tile lands after all. The
|
|
18195
|
+
* operator-facing answer to "perché manca l'immagine?" on a track whose
|
|
18196
|
+
* tile is a face/plate stand-in, a raster crop, or an icon.
|
|
18197
|
+
*
|
|
18198
|
+
* **Absent ≠ "missed silently"**: a row written before the column, a hub
|
|
18199
|
+
* that predates the field, and every track whose tile landed native all
|
|
18200
|
+
* omit it. Render nothing when absent.
|
|
18201
|
+
*/
|
|
18202
|
+
previewMissReason: string().optional(),
|
|
18081
18203
|
...TrackFlagFields,
|
|
18082
18204
|
...TrackRetrainFields
|
|
18083
18205
|
});
|
|
@@ -29401,6 +29523,13 @@ var LoggingSettingsPatchSchema = object({
|
|
|
29401
29523
|
* anyone but its owner.
|
|
29402
29524
|
*/
|
|
29403
29525
|
var ReportedLoadContributionSchema = LoadContributionSchema.extend({ addonId: string() });
|
|
29526
|
+
/**
|
|
29527
|
+
* One per-camera failure counter, plus WHO reported it.
|
|
29528
|
+
*
|
|
29529
|
+
* Same rule as {@link ReportedLoadContributionSchema}: `addonId` is stamped by
|
|
29530
|
+
* the hub as it enumerates providers, never by the contributor.
|
|
29531
|
+
*/
|
|
29532
|
+
var ReportedFailureContributionSchema = FailureContributionSchema.extend({ addonId: string() });
|
|
29404
29533
|
var GetLoggingSettingsInputSchema = object({
|
|
29405
29534
|
scopeNodeId: string().optional(),
|
|
29406
29535
|
/**
|
|
@@ -29459,7 +29588,7 @@ method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), met
|
|
|
29459
29588
|
}), method(_void(), SiteLocationStatusSchema, {
|
|
29460
29589
|
kind: "mutation",
|
|
29461
29590
|
auth: "admin"
|
|
29462
|
-
}), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(_void(), array(ReportedLoadContributionSchema).readonly(), { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
|
|
29591
|
+
}), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(_void(), array(ReportedLoadContributionSchema).readonly(), { auth: "admin" }), method(_void(), array(ReportedFailureContributionSchema).readonly(), { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
|
|
29463
29592
|
kind: "mutation",
|
|
29464
29593
|
auth: "admin"
|
|
29465
29594
|
});
|
|
@@ -33447,6 +33576,12 @@ Object.freeze({
|
|
|
33447
33576
|
addonId: null,
|
|
33448
33577
|
access: "create"
|
|
33449
33578
|
},
|
|
33579
|
+
"failureContribution.list": {
|
|
33580
|
+
capName: "failure-contribution",
|
|
33581
|
+
capScope: "system",
|
|
33582
|
+
addonId: null,
|
|
33583
|
+
access: "view"
|
|
33584
|
+
},
|
|
33450
33585
|
"fanControl.setDirection": {
|
|
33451
33586
|
capName: "fan-control",
|
|
33452
33587
|
capScope: "device",
|
|
@@ -36753,6 +36888,12 @@ Object.freeze({
|
|
|
36753
36888
|
addonId: null,
|
|
36754
36889
|
access: "create"
|
|
36755
36890
|
},
|
|
36891
|
+
"system.getFailureContributions": {
|
|
36892
|
+
capName: "system",
|
|
36893
|
+
capScope: "system",
|
|
36894
|
+
addonId: null,
|
|
36895
|
+
access: "view"
|
|
36896
|
+
},
|
|
36756
36897
|
"system.getLoadContributions": {
|
|
36757
36898
|
capName: "system",
|
|
36758
36899
|
capScope: "system",
|