@camstack/addon-smtp-nodemailer 1.1.23 → 1.1.24
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 +26 -1
- package/dist/smtp.addon.mjs +26 -1
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -7258,6 +7258,24 @@ var RecordingRetentionSchema = object({
|
|
|
7258
7258
|
maxSizeGb: number().min(0).optional()
|
|
7259
7259
|
});
|
|
7260
7260
|
/**
|
|
7261
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7262
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7263
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7264
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7265
|
+
*
|
|
7266
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7267
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7268
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7269
|
+
* written with.
|
|
7270
|
+
*/
|
|
7271
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7272
|
+
"minimal",
|
|
7273
|
+
"low",
|
|
7274
|
+
"standard",
|
|
7275
|
+
"high",
|
|
7276
|
+
"max"
|
|
7277
|
+
]);
|
|
7278
|
+
/**
|
|
7261
7279
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7262
7280
|
*
|
|
7263
7281
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7294,7 +7312,14 @@ var RecordingConfigSchema = object({
|
|
|
7294
7312
|
* derived into bands once via `migrateConfigToBands`.
|
|
7295
7313
|
*/
|
|
7296
7314
|
bands: array(RecordingBandSchema).optional(),
|
|
7297
|
-
retention: RecordingRetentionSchema.optional()
|
|
7315
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7316
|
+
/**
|
|
7317
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7318
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7319
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7320
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7321
|
+
*/
|
|
7322
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7298
7323
|
});
|
|
7299
7324
|
/**
|
|
7300
7325
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -7256,6 +7256,24 @@ var RecordingRetentionSchema = object({
|
|
|
7256
7256
|
maxSizeGb: number().min(0).optional()
|
|
7257
7257
|
});
|
|
7258
7258
|
/**
|
|
7259
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7260
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7261
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7262
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7263
|
+
*
|
|
7264
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7265
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7266
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7267
|
+
* written with.
|
|
7268
|
+
*/
|
|
7269
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7270
|
+
"minimal",
|
|
7271
|
+
"low",
|
|
7272
|
+
"standard",
|
|
7273
|
+
"high",
|
|
7274
|
+
"max"
|
|
7275
|
+
]);
|
|
7276
|
+
/**
|
|
7259
7277
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7260
7278
|
*
|
|
7261
7279
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7292,7 +7310,14 @@ var RecordingConfigSchema = object({
|
|
|
7292
7310
|
* derived into bands once via `migrateConfigToBands`.
|
|
7293
7311
|
*/
|
|
7294
7312
|
bands: array(RecordingBandSchema).optional(),
|
|
7295
|
-
retention: RecordingRetentionSchema.optional()
|
|
7313
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7314
|
+
/**
|
|
7315
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7316
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7317
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7318
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7319
|
+
*/
|
|
7320
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7296
7321
|
});
|
|
7297
7322
|
/**
|
|
7298
7323
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-smtp-nodemailer",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.24",
|
|
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",
|