@camstack/addon-smtp-nodemailer 1.2.82 → 1.2.83
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 +36 -6
- package/dist/smtp.addon.mjs +36 -6
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -18399,11 +18399,30 @@ var SensorEventSchema = object({
|
|
|
18399
18399
|
value: record(string(), unknown()).nullable(),
|
|
18400
18400
|
timestamp: number()
|
|
18401
18401
|
});
|
|
18402
|
+
/**
|
|
18403
|
+
* One stored sighting on a track's trajectory.
|
|
18404
|
+
*
|
|
18405
|
+
* The array these live in is returned in TIME order (D399) — it is APPENDED in
|
|
18406
|
+
* arrival order, and the two detector passes interleave, so a consumer must not
|
|
18407
|
+
* assume the two are the same on a row written by an older build.
|
|
18408
|
+
*/
|
|
18402
18409
|
var TrackPositionSchema = object({
|
|
18403
18410
|
x: number(),
|
|
18404
18411
|
y: number(),
|
|
18405
18412
|
timestamp: number(),
|
|
18406
|
-
bbox: BoundingBoxSchema
|
|
18413
|
+
bbox: BoundingBoxSchema,
|
|
18414
|
+
/**
|
|
18415
|
+
* Which detector pass measured this box (D399): `frame` is the full-frame
|
|
18416
|
+
* pass on the analysis raster, `recovery` is the native-resolution
|
|
18417
|
+
* small-subject second pass (D377/D378). Both write into one array, and until
|
|
18418
|
+
* this field existed the only way to tell them apart was that full-frame boxes
|
|
18419
|
+
* are exact multiples of 1.2 while recovery boxes are full-precision floats.
|
|
18420
|
+
* Absent on rows written before D399.
|
|
18421
|
+
*/
|
|
18422
|
+
source: _enum(["frame", "recovery"]).optional(),
|
|
18423
|
+
/** Detection score of this box, so a position can be weighed and not only
|
|
18424
|
+
* plotted. Absent on rows written before D399. */
|
|
18425
|
+
score: number().optional()
|
|
18407
18426
|
});
|
|
18408
18427
|
var TrackSnapshotSchema = object({
|
|
18409
18428
|
timestamp: number(),
|
|
@@ -18803,14 +18822,25 @@ var TrackSchema = object({
|
|
|
18803
18822
|
*/
|
|
18804
18823
|
hasRider: boolean().optional(),
|
|
18805
18824
|
/**
|
|
18806
|
-
* WHY this track ended without a NATIVE best-shot
|
|
18807
|
-
* ([D276](../decisions/adr-0276-a-stand-in-tile-is-provisional-and-a-close-says-why.md)
|
|
18825
|
+
* WHY this track ended without a NATIVE best-shot FRAME
|
|
18826
|
+
* ([D276](../decisions/adr-0276-a-stand-in-tile-is-provisional-and-a-close-says-why.md),
|
|
18827
|
+
* widened by [D400](../decisions/adr-0400-the-picture-is-judged-on-what-is-delivered.md)) —
|
|
18808
18828
|
* a composed token line (`no-key-frame capture=keyframe:native-missx4`,
|
|
18809
|
-
* `derive-returned-null tile=standin`,
|
|
18810
|
-
*
|
|
18811
|
-
*
|
|
18829
|
+
* `derive-returned-null tile=standin`,
|
|
18830
|
+
* `native-tile tile=native no-key-frame-at-close`, …) written at close and
|
|
18831
|
+
* CLEARED by the late-keyFrame upgrade when a native tile lands after all.
|
|
18832
|
+
* The operator-facing answer to "perché manca l'immagine?" on a track whose
|
|
18812
18833
|
* tile is a face/plate stand-in, a raster crop, or an icon.
|
|
18813
18834
|
*
|
|
18835
|
+
* **`no-key-frame-at-close` (D400).** The line used to be written ONLY when
|
|
18836
|
+
* the TILE ranked below native, so a track whose thumbnail landed natively
|
|
18837
|
+
* while its key frame missed carried no reason at all — three of the four
|
|
18838
|
+
* `MISSING_KEYFRAME` tracks in the 2026-09-07 operator audit were exactly
|
|
18839
|
+
* that shape, and their "niente ultimo" had no cause anywhere on the row.
|
|
18840
|
+
* The key frame is the head of a cascade (`keyFrame ⇒ keyFrameSmall ⇒ the
|
|
18841
|
+
* lastFrame copy source`), so its absence is now on this line whatever the
|
|
18842
|
+
* tile ended up being.
|
|
18843
|
+
*
|
|
18814
18844
|
* **Absent ≠ "missed silently"**: a row written before the column, a hub
|
|
18815
18845
|
* that predates the field, and every track whose tile landed native all
|
|
18816
18846
|
* omit it. Render nothing when absent.
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -18397,11 +18397,30 @@ var SensorEventSchema = object({
|
|
|
18397
18397
|
value: record(string(), unknown()).nullable(),
|
|
18398
18398
|
timestamp: number()
|
|
18399
18399
|
});
|
|
18400
|
+
/**
|
|
18401
|
+
* One stored sighting on a track's trajectory.
|
|
18402
|
+
*
|
|
18403
|
+
* The array these live in is returned in TIME order (D399) — it is APPENDED in
|
|
18404
|
+
* arrival order, and the two detector passes interleave, so a consumer must not
|
|
18405
|
+
* assume the two are the same on a row written by an older build.
|
|
18406
|
+
*/
|
|
18400
18407
|
var TrackPositionSchema = object({
|
|
18401
18408
|
x: number(),
|
|
18402
18409
|
y: number(),
|
|
18403
18410
|
timestamp: number(),
|
|
18404
|
-
bbox: BoundingBoxSchema
|
|
18411
|
+
bbox: BoundingBoxSchema,
|
|
18412
|
+
/**
|
|
18413
|
+
* Which detector pass measured this box (D399): `frame` is the full-frame
|
|
18414
|
+
* pass on the analysis raster, `recovery` is the native-resolution
|
|
18415
|
+
* small-subject second pass (D377/D378). Both write into one array, and until
|
|
18416
|
+
* this field existed the only way to tell them apart was that full-frame boxes
|
|
18417
|
+
* are exact multiples of 1.2 while recovery boxes are full-precision floats.
|
|
18418
|
+
* Absent on rows written before D399.
|
|
18419
|
+
*/
|
|
18420
|
+
source: _enum(["frame", "recovery"]).optional(),
|
|
18421
|
+
/** Detection score of this box, so a position can be weighed and not only
|
|
18422
|
+
* plotted. Absent on rows written before D399. */
|
|
18423
|
+
score: number().optional()
|
|
18405
18424
|
});
|
|
18406
18425
|
var TrackSnapshotSchema = object({
|
|
18407
18426
|
timestamp: number(),
|
|
@@ -18801,14 +18820,25 @@ var TrackSchema = object({
|
|
|
18801
18820
|
*/
|
|
18802
18821
|
hasRider: boolean().optional(),
|
|
18803
18822
|
/**
|
|
18804
|
-
* WHY this track ended without a NATIVE best-shot
|
|
18805
|
-
* ([D276](../decisions/adr-0276-a-stand-in-tile-is-provisional-and-a-close-says-why.md)
|
|
18823
|
+
* WHY this track ended without a NATIVE best-shot FRAME
|
|
18824
|
+
* ([D276](../decisions/adr-0276-a-stand-in-tile-is-provisional-and-a-close-says-why.md),
|
|
18825
|
+
* widened by [D400](../decisions/adr-0400-the-picture-is-judged-on-what-is-delivered.md)) —
|
|
18806
18826
|
* a composed token line (`no-key-frame capture=keyframe:native-missx4`,
|
|
18807
|
-
* `derive-returned-null tile=standin`,
|
|
18808
|
-
*
|
|
18809
|
-
*
|
|
18827
|
+
* `derive-returned-null tile=standin`,
|
|
18828
|
+
* `native-tile tile=native no-key-frame-at-close`, …) written at close and
|
|
18829
|
+
* CLEARED by the late-keyFrame upgrade when a native tile lands after all.
|
|
18830
|
+
* The operator-facing answer to "perché manca l'immagine?" on a track whose
|
|
18810
18831
|
* tile is a face/plate stand-in, a raster crop, or an icon.
|
|
18811
18832
|
*
|
|
18833
|
+
* **`no-key-frame-at-close` (D400).** The line used to be written ONLY when
|
|
18834
|
+
* the TILE ranked below native, so a track whose thumbnail landed natively
|
|
18835
|
+
* while its key frame missed carried no reason at all — three of the four
|
|
18836
|
+
* `MISSING_KEYFRAME` tracks in the 2026-09-07 operator audit were exactly
|
|
18837
|
+
* that shape, and their "niente ultimo" had no cause anywhere on the row.
|
|
18838
|
+
* The key frame is the head of a cascade (`keyFrame ⇒ keyFrameSmall ⇒ the
|
|
18839
|
+
* lastFrame copy source`), so its absence is now on this line whatever the
|
|
18840
|
+
* tile ended up being.
|
|
18841
|
+
*
|
|
18812
18842
|
* **Absent ≠ "missed silently"**: a row written before the column, a hub
|
|
18813
18843
|
* that predates the field, and every track whose tile landed native all
|
|
18814
18844
|
* omit it. Render nothing when absent.
|
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.83",
|
|
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",
|