@camstack/addon-smtp-nodemailer 1.2.75 → 1.2.76
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/smtp.addon.js +19 -4
- package/dist/smtp.addon.mjs +19 -4
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -7972,13 +7972,28 @@ var RecordingBandSchema = object({
|
|
|
7972
7972
|
end: string().regex(HHMM),
|
|
7973
7973
|
mode: RecordingBandModeSchema,
|
|
7974
7974
|
triggers: RecordingBandTriggersSchema.optional(),
|
|
7975
|
+
/**
|
|
7976
|
+
* RETIRED (D381). A band no longer carries a pre-buffer of its own.
|
|
7977
|
+
*
|
|
7978
|
+
* It was the retroactive KEEP bound — which already-written segments survive
|
|
7979
|
+
* a trigger — and it had to be at least as wide as the widest pre-roll the
|
|
7980
|
+
* broker could serve, or the gate would delete the seconds the ring had just
|
|
7981
|
+
* handed the writer. That "at least as wide as" is the tell: it was a second
|
|
7982
|
+
* expression of the broker's retention, in different units, in a different
|
|
7983
|
+
* addon, with an invariant the operator had to maintain by hand. The keep
|
|
7984
|
+
* bound is now derived from the one prebuffer ceiling and there is nothing
|
|
7985
|
+
* left to configure here.
|
|
7986
|
+
*
|
|
7987
|
+
* The key survives in the SHAPE so a config written before that record still
|
|
7988
|
+
* parses and can be migrated deliberately — `RecordingBandSchema` is not
|
|
7989
|
+
* strict, so simply deleting it would strip an operator's value in silence on
|
|
7990
|
+
* the next save (the failure D380 came one commit from shipping). Nothing
|
|
7991
|
+
* reads it: {@link stripRetiredBandPreBufferSec} removes it on load.
|
|
7992
|
+
*/
|
|
7975
7993
|
preBufferSec: number().min(0).optional(),
|
|
7976
7994
|
postBufferSec: number().min(0).optional()
|
|
7977
7995
|
});
|
|
7978
|
-
({
|
|
7979
|
-
preBufferSec: 15,
|
|
7980
|
-
postBufferSec: 30
|
|
7981
|
-
}).postBufferSec * 1e3;
|
|
7996
|
+
({ postBufferSec: 30 }).postBufferSec * 1e3;
|
|
7982
7997
|
/**
|
|
7983
7998
|
* Per-device retention overrides. Every field is optional; an unset or `0`
|
|
7984
7999
|
* value inherits the node-wide recorder default. Only footage-lifetime limits
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -7970,13 +7970,28 @@ var RecordingBandSchema = object({
|
|
|
7970
7970
|
end: string().regex(HHMM),
|
|
7971
7971
|
mode: RecordingBandModeSchema,
|
|
7972
7972
|
triggers: RecordingBandTriggersSchema.optional(),
|
|
7973
|
+
/**
|
|
7974
|
+
* RETIRED (D381). A band no longer carries a pre-buffer of its own.
|
|
7975
|
+
*
|
|
7976
|
+
* It was the retroactive KEEP bound — which already-written segments survive
|
|
7977
|
+
* a trigger — and it had to be at least as wide as the widest pre-roll the
|
|
7978
|
+
* broker could serve, or the gate would delete the seconds the ring had just
|
|
7979
|
+
* handed the writer. That "at least as wide as" is the tell: it was a second
|
|
7980
|
+
* expression of the broker's retention, in different units, in a different
|
|
7981
|
+
* addon, with an invariant the operator had to maintain by hand. The keep
|
|
7982
|
+
* bound is now derived from the one prebuffer ceiling and there is nothing
|
|
7983
|
+
* left to configure here.
|
|
7984
|
+
*
|
|
7985
|
+
* The key survives in the SHAPE so a config written before that record still
|
|
7986
|
+
* parses and can be migrated deliberately — `RecordingBandSchema` is not
|
|
7987
|
+
* strict, so simply deleting it would strip an operator's value in silence on
|
|
7988
|
+
* the next save (the failure D380 came one commit from shipping). Nothing
|
|
7989
|
+
* reads it: {@link stripRetiredBandPreBufferSec} removes it on load.
|
|
7990
|
+
*/
|
|
7973
7991
|
preBufferSec: number().min(0).optional(),
|
|
7974
7992
|
postBufferSec: number().min(0).optional()
|
|
7975
7993
|
});
|
|
7976
|
-
({
|
|
7977
|
-
preBufferSec: 15,
|
|
7978
|
-
postBufferSec: 30
|
|
7979
|
-
}).postBufferSec * 1e3;
|
|
7994
|
+
({ postBufferSec: 30 }).postBufferSec * 1e3;
|
|
7980
7995
|
/**
|
|
7981
7996
|
* Per-device retention overrides. Every field is optional; an unset or `0`
|
|
7982
7997
|
* value inherits the node-wide recorder default. Only footage-lifetime limits
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-smtp-nodemailer",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.76",
|
|
4
4
|
"description": "SMTP email provider addon for CamStack — wraps `nodemailer` and registers a `smtp-provider` cap collection entry. Used by magic-link login + notifier addons.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|