@camstack/addon-smtp-nodemailer 1.2.63 → 1.2.65
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 +18 -4
- package/dist/smtp.addon.mjs +18 -4
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -7574,7 +7574,8 @@ var CameraSwitchAuthoritySchema = discriminatedUnion("kind", [
|
|
|
7574
7574
|
var CameraSwitchUnavailableReasonSchema = _enum([
|
|
7575
7575
|
"no-provider",
|
|
7576
7576
|
"source-unreachable",
|
|
7577
|
-
"not-configured"
|
|
7577
|
+
"not-configured",
|
|
7578
|
+
"device-disabled"
|
|
7578
7579
|
]);
|
|
7579
7580
|
/**
|
|
7580
7581
|
* One switch, resolved for one camera.
|
|
@@ -12774,7 +12775,12 @@ var ConfigEntrySchema = object({
|
|
|
12774
12775
|
value: unknown(),
|
|
12775
12776
|
description: string().optional()
|
|
12776
12777
|
});
|
|
12777
|
-
|
|
12778
|
+
/**
|
|
12779
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
12780
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
12781
|
+
* drop it once no shipped client reads `mode`.
|
|
12782
|
+
*/
|
|
12783
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
12778
12784
|
/** One resolved linked device — the compact projection consumers need. */
|
|
12779
12785
|
var LinkedDeviceSchema = object({
|
|
12780
12786
|
deviceId: number(),
|
|
@@ -23105,12 +23111,20 @@ var BatteryStatusSchema = object({
|
|
|
23105
23111
|
* Charging source. `'dc'` covers wall/USB adapters; `'solar'` is
|
|
23106
23112
|
* Reolink-specific for the Solar Panel 2 accessory (will become
|
|
23107
23113
|
* common on other battery cams). `'none'` means running on battery
|
|
23108
|
-
* alone.
|
|
23114
|
+
* alone — a NEGATIVE the firmware actually reported.
|
|
23115
|
+
*
|
|
23116
|
+
* `'unknown'` is the absence of an answer: the provider has not read the
|
|
23117
|
+
* power fields yet, or the firmware reported neither. Before it existed,
|
|
23118
|
+
* two unreadable fields produced `'none'`, and a camera nobody had reached
|
|
23119
|
+
* was drawn "on battery alone" — the same D315 defect `percentage` closed
|
|
23120
|
+
* by going nullable. Consumers SKIP it (no charger state published, no
|
|
23121
|
+
* glyph, no HomeKit ChargingState) rather than coerce it either way.
|
|
23109
23122
|
*/
|
|
23110
23123
|
charging: _enum([
|
|
23111
23124
|
"dc",
|
|
23112
23125
|
"solar",
|
|
23113
|
-
"none"
|
|
23126
|
+
"none",
|
|
23127
|
+
"unknown"
|
|
23114
23128
|
]),
|
|
23115
23129
|
/**
|
|
23116
23130
|
* True when the camera firmware has gone into low-power mode. Battery
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -7572,7 +7572,8 @@ var CameraSwitchAuthoritySchema = discriminatedUnion("kind", [
|
|
|
7572
7572
|
var CameraSwitchUnavailableReasonSchema = _enum([
|
|
7573
7573
|
"no-provider",
|
|
7574
7574
|
"source-unreachable",
|
|
7575
|
-
"not-configured"
|
|
7575
|
+
"not-configured",
|
|
7576
|
+
"device-disabled"
|
|
7576
7577
|
]);
|
|
7577
7578
|
/**
|
|
7578
7579
|
* One switch, resolved for one camera.
|
|
@@ -12772,7 +12773,12 @@ var ConfigEntrySchema = object({
|
|
|
12772
12773
|
value: unknown(),
|
|
12773
12774
|
description: string().optional()
|
|
12774
12775
|
});
|
|
12775
|
-
|
|
12776
|
+
/**
|
|
12777
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
12778
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
12779
|
+
* drop it once no shipped client reads `mode`.
|
|
12780
|
+
*/
|
|
12781
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
12776
12782
|
/** One resolved linked device — the compact projection consumers need. */
|
|
12777
12783
|
var LinkedDeviceSchema = object({
|
|
12778
12784
|
deviceId: number(),
|
|
@@ -23103,12 +23109,20 @@ var BatteryStatusSchema = object({
|
|
|
23103
23109
|
* Charging source. `'dc'` covers wall/USB adapters; `'solar'` is
|
|
23104
23110
|
* Reolink-specific for the Solar Panel 2 accessory (will become
|
|
23105
23111
|
* common on other battery cams). `'none'` means running on battery
|
|
23106
|
-
* alone.
|
|
23112
|
+
* alone — a NEGATIVE the firmware actually reported.
|
|
23113
|
+
*
|
|
23114
|
+
* `'unknown'` is the absence of an answer: the provider has not read the
|
|
23115
|
+
* power fields yet, or the firmware reported neither. Before it existed,
|
|
23116
|
+
* two unreadable fields produced `'none'`, and a camera nobody had reached
|
|
23117
|
+
* was drawn "on battery alone" — the same D315 defect `percentage` closed
|
|
23118
|
+
* by going nullable. Consumers SKIP it (no charger state published, no
|
|
23119
|
+
* glyph, no HomeKit ChargingState) rather than coerce it either way.
|
|
23107
23120
|
*/
|
|
23108
23121
|
charging: _enum([
|
|
23109
23122
|
"dc",
|
|
23110
23123
|
"solar",
|
|
23111
|
-
"none"
|
|
23124
|
+
"none",
|
|
23125
|
+
"unknown"
|
|
23112
23126
|
]),
|
|
23113
23127
|
/**
|
|
23114
23128
|
* True when the camera firmware has gone into low-power mode. Battery
|
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.65",
|
|
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",
|