@camstack/addon-terminal 0.1.81 → 0.1.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 +19 -4
- package/dist/addon.mjs +19 -4
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -8050,13 +8050,28 @@ var RecordingBandSchema = object({
|
|
|
8050
8050
|
end: string().regex(HHMM),
|
|
8051
8051
|
mode: RecordingBandModeSchema,
|
|
8052
8052
|
triggers: RecordingBandTriggersSchema.optional(),
|
|
8053
|
+
/**
|
|
8054
|
+
* RETIRED (D381). A band no longer carries a pre-buffer of its own.
|
|
8055
|
+
*
|
|
8056
|
+
* It was the retroactive KEEP bound — which already-written segments survive
|
|
8057
|
+
* a trigger — and it had to be at least as wide as the widest pre-roll the
|
|
8058
|
+
* broker could serve, or the gate would delete the seconds the ring had just
|
|
8059
|
+
* handed the writer. That "at least as wide as" is the tell: it was a second
|
|
8060
|
+
* expression of the broker's retention, in different units, in a different
|
|
8061
|
+
* addon, with an invariant the operator had to maintain by hand. The keep
|
|
8062
|
+
* bound is now derived from the one prebuffer ceiling and there is nothing
|
|
8063
|
+
* left to configure here.
|
|
8064
|
+
*
|
|
8065
|
+
* The key survives in the SHAPE so a config written before that record still
|
|
8066
|
+
* parses and can be migrated deliberately — `RecordingBandSchema` is not
|
|
8067
|
+
* strict, so simply deleting it would strip an operator's value in silence on
|
|
8068
|
+
* the next save (the failure D380 came one commit from shipping). Nothing
|
|
8069
|
+
* reads it: {@link stripRetiredBandPreBufferSec} removes it on load.
|
|
8070
|
+
*/
|
|
8053
8071
|
preBufferSec: number().min(0).optional(),
|
|
8054
8072
|
postBufferSec: number().min(0).optional()
|
|
8055
8073
|
});
|
|
8056
|
-
({
|
|
8057
|
-
preBufferSec: 15,
|
|
8058
|
-
postBufferSec: 30
|
|
8059
|
-
}).postBufferSec * 1e3;
|
|
8074
|
+
({ postBufferSec: 30 }).postBufferSec * 1e3;
|
|
8060
8075
|
/**
|
|
8061
8076
|
* Per-device retention overrides. Every field is optional; an unset or `0`
|
|
8062
8077
|
* value inherits the node-wide recorder default. Only footage-lifetime limits
|
package/dist/addon.mjs
CHANGED
|
@@ -8027,13 +8027,28 @@ var RecordingBandSchema = object({
|
|
|
8027
8027
|
end: string().regex(HHMM),
|
|
8028
8028
|
mode: RecordingBandModeSchema,
|
|
8029
8029
|
triggers: RecordingBandTriggersSchema.optional(),
|
|
8030
|
+
/**
|
|
8031
|
+
* RETIRED (D381). A band no longer carries a pre-buffer of its own.
|
|
8032
|
+
*
|
|
8033
|
+
* It was the retroactive KEEP bound — which already-written segments survive
|
|
8034
|
+
* a trigger — and it had to be at least as wide as the widest pre-roll the
|
|
8035
|
+
* broker could serve, or the gate would delete the seconds the ring had just
|
|
8036
|
+
* handed the writer. That "at least as wide as" is the tell: it was a second
|
|
8037
|
+
* expression of the broker's retention, in different units, in a different
|
|
8038
|
+
* addon, with an invariant the operator had to maintain by hand. The keep
|
|
8039
|
+
* bound is now derived from the one prebuffer ceiling and there is nothing
|
|
8040
|
+
* left to configure here.
|
|
8041
|
+
*
|
|
8042
|
+
* The key survives in the SHAPE so a config written before that record still
|
|
8043
|
+
* parses and can be migrated deliberately — `RecordingBandSchema` is not
|
|
8044
|
+
* strict, so simply deleting it would strip an operator's value in silence on
|
|
8045
|
+
* the next save (the failure D380 came one commit from shipping). Nothing
|
|
8046
|
+
* reads it: {@link stripRetiredBandPreBufferSec} removes it on load.
|
|
8047
|
+
*/
|
|
8030
8048
|
preBufferSec: number().min(0).optional(),
|
|
8031
8049
|
postBufferSec: number().min(0).optional()
|
|
8032
8050
|
});
|
|
8033
|
-
({
|
|
8034
|
-
preBufferSec: 15,
|
|
8035
|
-
postBufferSec: 30
|
|
8036
|
-
}).postBufferSec * 1e3;
|
|
8051
|
+
({ postBufferSec: 30 }).postBufferSec * 1e3;
|
|
8037
8052
|
/**
|
|
8038
8053
|
* Per-device retention overrides. Every field is optional; an unset or `0`
|
|
8039
8054
|
* value inherits the node-wide recorder default. Only footage-lifetime limits
|