@camstack/addon-agent-ui 1.2.81 → 1.2.82
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 +20 -5
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -7954,13 +7954,28 @@ var RecordingBandSchema = object({
|
|
|
7954
7954
|
end: string().regex(HHMM),
|
|
7955
7955
|
mode: RecordingBandModeSchema,
|
|
7956
7956
|
triggers: RecordingBandTriggersSchema.optional(),
|
|
7957
|
+
/**
|
|
7958
|
+
* RETIRED (D381). A band no longer carries a pre-buffer of its own.
|
|
7959
|
+
*
|
|
7960
|
+
* It was the retroactive KEEP bound — which already-written segments survive
|
|
7961
|
+
* a trigger — and it had to be at least as wide as the widest pre-roll the
|
|
7962
|
+
* broker could serve, or the gate would delete the seconds the ring had just
|
|
7963
|
+
* handed the writer. That "at least as wide as" is the tell: it was a second
|
|
7964
|
+
* expression of the broker's retention, in different units, in a different
|
|
7965
|
+
* addon, with an invariant the operator had to maintain by hand. The keep
|
|
7966
|
+
* bound is now derived from the one prebuffer ceiling and there is nothing
|
|
7967
|
+
* left to configure here.
|
|
7968
|
+
*
|
|
7969
|
+
* The key survives in the SHAPE so a config written before that record still
|
|
7970
|
+
* parses and can be migrated deliberately — `RecordingBandSchema` is not
|
|
7971
|
+
* strict, so simply deleting it would strip an operator's value in silence on
|
|
7972
|
+
* the next save (the failure D380 came one commit from shipping). Nothing
|
|
7973
|
+
* reads it: {@link stripRetiredBandPreBufferSec} removes it on load.
|
|
7974
|
+
*/
|
|
7957
7975
|
preBufferSec: number().min(0).optional(),
|
|
7958
7976
|
postBufferSec: number().min(0).optional()
|
|
7959
7977
|
});
|
|
7960
|
-
({
|
|
7961
|
-
preBufferSec: 15,
|
|
7962
|
-
postBufferSec: 30
|
|
7963
|
-
}).postBufferSec * 1e3;
|
|
7978
|
+
({ postBufferSec: 30 }).postBufferSec * 1e3;
|
|
7964
7979
|
/**
|
|
7965
7980
|
* Per-device retention overrides. Every field is optional; an unset or `0`
|
|
7966
7981
|
* value inherits the node-wide recorder default. Only footage-lifetime limits
|
|
@@ -37932,7 +37947,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
37932
37947
|
capability: adminUiCapability,
|
|
37933
37948
|
provider: {
|
|
37934
37949
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
37935
|
-
getVersion: async () => ({ version: "1.2.
|
|
37950
|
+
getVersion: async () => ({ version: "1.2.82" })
|
|
37936
37951
|
}
|
|
37937
37952
|
}];
|
|
37938
37953
|
}
|