@camstack/addon-smtp-nodemailer 1.2.79 → 1.2.80
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 -2
- package/dist/smtp.addon.mjs +19 -2
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -20152,8 +20152,25 @@ var occupancyRecheckFramesField = {
|
|
|
20152
20152
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20153
20153
|
* camera typically only reports a binary signal plus an optional
|
|
20154
20154
|
* channel/AI class which lives in dedicated event channels).
|
|
20155
|
-
|
|
20156
|
-
|
|
20155
|
+
*
|
|
20156
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20157
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20158
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20159
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20160
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20161
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20162
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20163
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20164
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20165
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20166
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20167
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20168
|
+
*/
|
|
20169
|
+
var MotionSourceEnum = _enum([
|
|
20170
|
+
"onboard",
|
|
20171
|
+
"analyzer",
|
|
20172
|
+
"device-activity"
|
|
20173
|
+
]);
|
|
20157
20174
|
/**
|
|
20158
20175
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20159
20176
|
* "no source" — happens for battery cams without firmware motion when
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -20150,8 +20150,25 @@ var occupancyRecheckFramesField = {
|
|
|
20150
20150
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20151
20151
|
* camera typically only reports a binary signal plus an optional
|
|
20152
20152
|
* channel/AI class which lives in dedicated event channels).
|
|
20153
|
-
|
|
20154
|
-
|
|
20153
|
+
*
|
|
20154
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20155
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20156
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20157
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20158
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20159
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20160
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20161
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20162
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20163
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20164
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20165
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20166
|
+
*/
|
|
20167
|
+
var MotionSourceEnum = _enum([
|
|
20168
|
+
"onboard",
|
|
20169
|
+
"analyzer",
|
|
20170
|
+
"device-activity"
|
|
20171
|
+
]);
|
|
20155
20172
|
/**
|
|
20156
20173
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20157
20174
|
* "no source" — happens for battery cams without firmware motion when
|
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.80",
|
|
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",
|