@camstack/addon-smtp-nodemailer 1.2.0 → 1.2.1
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 +20 -3
- package/dist/smtp.addon.mjs +20 -3
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -11360,7 +11360,21 @@ var NativeCropResultSchema = object({
|
|
|
11360
11360
|
/** Packed rgb (24-bit) pixels of the crop. */
|
|
11361
11361
|
bytes: _instanceof(Uint8Array),
|
|
11362
11362
|
width: number().int().positive(),
|
|
11363
|
-
height: number().int().positive()
|
|
11363
|
+
height: number().int().positive(),
|
|
11364
|
+
/**
|
|
11365
|
+
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
11366
|
+
* `keyFrame`) can reject a degraded fallback:
|
|
11367
|
+
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
11368
|
+
* quality path).
|
|
11369
|
+
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
11370
|
+
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
11371
|
+
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
11372
|
+
*
|
|
11373
|
+
* OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
|
|
11374
|
+
* treated as `native` (accepted) by every consumer so mixed-version clusters
|
|
11375
|
+
* keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
|
|
11376
|
+
*/
|
|
11377
|
+
tier: _enum(["native", "ram-fullframe"]).optional()
|
|
11364
11378
|
});
|
|
11365
11379
|
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
11366
11380
|
* originating detection, in FRAME-space coordinates. Reuses
|
|
@@ -14691,7 +14705,8 @@ var LinkedDeviceSchema = object({
|
|
|
14691
14705
|
deviceId: number(),
|
|
14692
14706
|
name: string(),
|
|
14693
14707
|
location: string().nullable(),
|
|
14694
|
-
features: array(string())
|
|
14708
|
+
features: array(string()),
|
|
14709
|
+
producesTrackedEvents: boolean().optional()
|
|
14695
14710
|
});
|
|
14696
14711
|
var SavedDeviceRowSchema = object({
|
|
14697
14712
|
/** Numeric id reserved at allocateDeviceId time. */
|
|
@@ -16321,6 +16336,7 @@ var TrackSchema = object({
|
|
|
16321
16336
|
deviceId: number(),
|
|
16322
16337
|
className: string(),
|
|
16323
16338
|
label: string().optional(),
|
|
16339
|
+
producingDeviceName: string().optional(),
|
|
16324
16340
|
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
16325
16341
|
source: TrackSourceSchema.optional(),
|
|
16326
16342
|
firstSeen: number(),
|
|
@@ -16458,7 +16474,8 @@ var MediaFileKindEnum = _enum([
|
|
|
16458
16474
|
"fullFrameBoxed",
|
|
16459
16475
|
"faceCrop",
|
|
16460
16476
|
"plateCrop",
|
|
16461
|
-
"keyFrame"
|
|
16477
|
+
"keyFrame",
|
|
16478
|
+
"keyFrameSmall"
|
|
16462
16479
|
]);
|
|
16463
16480
|
var MediaFileSchema = object({
|
|
16464
16481
|
key: string(),
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -11358,7 +11358,21 @@ var NativeCropResultSchema = object({
|
|
|
11358
11358
|
/** Packed rgb (24-bit) pixels of the crop. */
|
|
11359
11359
|
bytes: _instanceof(Uint8Array),
|
|
11360
11360
|
width: number().int().positive(),
|
|
11361
|
-
height: number().int().positive()
|
|
11361
|
+
height: number().int().positive(),
|
|
11362
|
+
/**
|
|
11363
|
+
* Which source served this crop, so a quality-sensitive consumer (the native
|
|
11364
|
+
* `keyFrame`) can reject a degraded fallback:
|
|
11365
|
+
* - `native` — cut from the decode worker's retained NATIVE surface (the
|
|
11366
|
+
* quality path).
|
|
11367
|
+
* - `ram-fullframe` — the native surface MISSED but the request was full-frame,
|
|
11368
|
+
* so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
|
|
11369
|
+
* the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
|
|
11370
|
+
*
|
|
11371
|
+
* OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
|
|
11372
|
+
* treated as `native` (accepted) by every consumer so mixed-version clusters
|
|
11373
|
+
* keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
|
|
11374
|
+
*/
|
|
11375
|
+
tier: _enum(["native", "ram-fullframe"]).optional()
|
|
11362
11376
|
});
|
|
11363
11377
|
/** Parent detection context passed to `runDetailSubtree` — the crop's
|
|
11364
11378
|
* originating detection, in FRAME-space coordinates. Reuses
|
|
@@ -14689,7 +14703,8 @@ var LinkedDeviceSchema = object({
|
|
|
14689
14703
|
deviceId: number(),
|
|
14690
14704
|
name: string(),
|
|
14691
14705
|
location: string().nullable(),
|
|
14692
|
-
features: array(string())
|
|
14706
|
+
features: array(string()),
|
|
14707
|
+
producesTrackedEvents: boolean().optional()
|
|
14693
14708
|
});
|
|
14694
14709
|
var SavedDeviceRowSchema = object({
|
|
14695
14710
|
/** Numeric id reserved at allocateDeviceId time. */
|
|
@@ -16319,6 +16334,7 @@ var TrackSchema = object({
|
|
|
16319
16334
|
deviceId: number(),
|
|
16320
16335
|
className: string(),
|
|
16321
16336
|
label: string().optional(),
|
|
16337
|
+
producingDeviceName: string().optional(),
|
|
16322
16338
|
/** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
|
|
16323
16339
|
source: TrackSourceSchema.optional(),
|
|
16324
16340
|
firstSeen: number(),
|
|
@@ -16456,7 +16472,8 @@ var MediaFileKindEnum = _enum([
|
|
|
16456
16472
|
"fullFrameBoxed",
|
|
16457
16473
|
"faceCrop",
|
|
16458
16474
|
"plateCrop",
|
|
16459
|
-
"keyFrame"
|
|
16475
|
+
"keyFrame",
|
|
16476
|
+
"keyFrameSmall"
|
|
16460
16477
|
]);
|
|
16461
16478
|
var MediaFileSchema = object({
|
|
16462
16479
|
key: string(),
|
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.1",
|
|
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",
|