@camstack/addon-provider-rtsp 1.2.76 → 1.2.77
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
|
@@ -8007,13 +8007,28 @@ var RecordingBandSchema = object({
|
|
|
8007
8007
|
end: string().regex(HHMM),
|
|
8008
8008
|
mode: RecordingBandModeSchema,
|
|
8009
8009
|
triggers: RecordingBandTriggersSchema.optional(),
|
|
8010
|
+
/**
|
|
8011
|
+
* RETIRED (D381). A band no longer carries a pre-buffer of its own.
|
|
8012
|
+
*
|
|
8013
|
+
* It was the retroactive KEEP bound — which already-written segments survive
|
|
8014
|
+
* a trigger — and it had to be at least as wide as the widest pre-roll the
|
|
8015
|
+
* broker could serve, or the gate would delete the seconds the ring had just
|
|
8016
|
+
* handed the writer. That "at least as wide as" is the tell: it was a second
|
|
8017
|
+
* expression of the broker's retention, in different units, in a different
|
|
8018
|
+
* addon, with an invariant the operator had to maintain by hand. The keep
|
|
8019
|
+
* bound is now derived from the one prebuffer ceiling and there is nothing
|
|
8020
|
+
* left to configure here.
|
|
8021
|
+
*
|
|
8022
|
+
* The key survives in the SHAPE so a config written before that record still
|
|
8023
|
+
* parses and can be migrated deliberately — `RecordingBandSchema` is not
|
|
8024
|
+
* strict, so simply deleting it would strip an operator's value in silence on
|
|
8025
|
+
* the next save (the failure D380 came one commit from shipping). Nothing
|
|
8026
|
+
* reads it: {@link stripRetiredBandPreBufferSec} removes it on load.
|
|
8027
|
+
*/
|
|
8010
8028
|
preBufferSec: number().min(0).optional(),
|
|
8011
8029
|
postBufferSec: number().min(0).optional()
|
|
8012
8030
|
});
|
|
8013
|
-
({
|
|
8014
|
-
preBufferSec: 15,
|
|
8015
|
-
postBufferSec: 30
|
|
8016
|
-
}).postBufferSec * 1e3;
|
|
8031
|
+
({ postBufferSec: 30 }).postBufferSec * 1e3;
|
|
8017
8032
|
/**
|
|
8018
8033
|
* Per-device retention overrides. Every field is optional; an unset or `0`
|
|
8019
8034
|
* value inherits the node-wide recorder default. Only footage-lifetime limits
|
package/dist/addon.mjs
CHANGED
|
@@ -7983,13 +7983,28 @@ var RecordingBandSchema = object({
|
|
|
7983
7983
|
end: string().regex(HHMM),
|
|
7984
7984
|
mode: RecordingBandModeSchema,
|
|
7985
7985
|
triggers: RecordingBandTriggersSchema.optional(),
|
|
7986
|
+
/**
|
|
7987
|
+
* RETIRED (D381). A band no longer carries a pre-buffer of its own.
|
|
7988
|
+
*
|
|
7989
|
+
* It was the retroactive KEEP bound — which already-written segments survive
|
|
7990
|
+
* a trigger — and it had to be at least as wide as the widest pre-roll the
|
|
7991
|
+
* broker could serve, or the gate would delete the seconds the ring had just
|
|
7992
|
+
* handed the writer. That "at least as wide as" is the tell: it was a second
|
|
7993
|
+
* expression of the broker's retention, in different units, in a different
|
|
7994
|
+
* addon, with an invariant the operator had to maintain by hand. The keep
|
|
7995
|
+
* bound is now derived from the one prebuffer ceiling and there is nothing
|
|
7996
|
+
* left to configure here.
|
|
7997
|
+
*
|
|
7998
|
+
* The key survives in the SHAPE so a config written before that record still
|
|
7999
|
+
* parses and can be migrated deliberately — `RecordingBandSchema` is not
|
|
8000
|
+
* strict, so simply deleting it would strip an operator's value in silence on
|
|
8001
|
+
* the next save (the failure D380 came one commit from shipping). Nothing
|
|
8002
|
+
* reads it: {@link stripRetiredBandPreBufferSec} removes it on load.
|
|
8003
|
+
*/
|
|
7986
8004
|
preBufferSec: number().min(0).optional(),
|
|
7987
8005
|
postBufferSec: number().min(0).optional()
|
|
7988
8006
|
});
|
|
7989
|
-
({
|
|
7990
|
-
preBufferSec: 15,
|
|
7991
|
-
postBufferSec: 30
|
|
7992
|
-
}).postBufferSec * 1e3;
|
|
8007
|
+
({ postBufferSec: 30 }).postBufferSec * 1e3;
|
|
7993
8008
|
/**
|
|
7994
8009
|
* Per-device retention overrides. Every field is optional; an unset or `0`
|
|
7995
8010
|
* value inherits the node-wide recorder default. Only footage-lifetime limits
|