@camstack/addon-smtp-nodemailer 1.2.55 → 1.2.56
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 +15 -1
- package/dist/smtp.addon.mjs +15 -1
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -19249,7 +19249,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19249
19249
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19250
19250
|
* stationary registry). Default false: the timeline lists passages,
|
|
19251
19251
|
* not parking records (operator decision, 2026-08-15). */
|
|
19252
|
-
includeStationary: boolean().optional()
|
|
19252
|
+
includeStationary: boolean().optional(),
|
|
19253
|
+
/**
|
|
19254
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19255
|
+
*
|
|
19256
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19257
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19258
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19259
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19260
|
+
* selection was still a wide read followed by a wide discard.
|
|
19261
|
+
*
|
|
19262
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19263
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19264
|
+
* timeline would read as a camera that saw nothing.
|
|
19265
|
+
*/
|
|
19266
|
+
classes: array(string()).optional()
|
|
19253
19267
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19254
19268
|
kind: "mutation",
|
|
19255
19269
|
auth: "admin"
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -19247,7 +19247,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19247
19247
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19248
19248
|
* stationary registry). Default false: the timeline lists passages,
|
|
19249
19249
|
* not parking records (operator decision, 2026-08-15). */
|
|
19250
|
-
includeStationary: boolean().optional()
|
|
19250
|
+
includeStationary: boolean().optional(),
|
|
19251
|
+
/**
|
|
19252
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19253
|
+
*
|
|
19254
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19255
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19256
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19257
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19258
|
+
* selection was still a wide read followed by a wide discard.
|
|
19259
|
+
*
|
|
19260
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19261
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19262
|
+
* timeline would read as a camera that saw nothing.
|
|
19263
|
+
*/
|
|
19264
|
+
classes: array(string()).optional()
|
|
19251
19265
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19252
19266
|
kind: "mutation",
|
|
19253
19267
|
auth: "admin"
|
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.56",
|
|
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",
|