@camstack/addon-smtp-nodemailer 1.2.17 → 1.2.18
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 +36 -1
- package/dist/smtp.addon.mjs +36 -1
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -19094,7 +19094,31 @@ DeviceType.Camera, method(object({
|
|
|
19094
19094
|
lastCapturedAt: number().nullable(),
|
|
19095
19095
|
cacheAgeMs: number().nullable(),
|
|
19096
19096
|
etag: string().nullable()
|
|
19097
|
-
}))), systemMethod(object({
|
|
19097
|
+
}))), systemMethod(object({ deviceId: number() }), object({
|
|
19098
|
+
/** The battery slice as read, or null when the device has none. */
|
|
19099
|
+
battery: object({
|
|
19100
|
+
sleeping: boolean(),
|
|
19101
|
+
lastUpdated: number(),
|
|
19102
|
+
lastContactAt: number().optional()
|
|
19103
|
+
}).nullable(),
|
|
19104
|
+
/** The resolved snapshot state (what the overlay decision used). */
|
|
19105
|
+
state: object({
|
|
19106
|
+
isBattery: boolean(),
|
|
19107
|
+
reason: _enum([
|
|
19108
|
+
"disabled",
|
|
19109
|
+
"sleeping",
|
|
19110
|
+
"unreachable",
|
|
19111
|
+
"waking"
|
|
19112
|
+
]).nullable()
|
|
19113
|
+
}),
|
|
19114
|
+
/** The cached frame behind the next paint. */
|
|
19115
|
+
frame: object({
|
|
19116
|
+
capturedAt: number().nullable(),
|
|
19117
|
+
ageMs: number().nullable()
|
|
19118
|
+
}),
|
|
19119
|
+
/** A wake window is currently open (the Waking overlay's source). */
|
|
19120
|
+
waking: boolean()
|
|
19121
|
+
})), systemMethod(object({
|
|
19098
19122
|
/** The tiles a surface is actually rendering. One entry per (device,
|
|
19099
19123
|
* width) the caller will paint — the width is snapped to the server's
|
|
19100
19124
|
* ladder and becomes part of the link's SIGNED identity. */
|
|
@@ -30309,6 +30333,12 @@ Object.freeze({
|
|
|
30309
30333
|
addonId: null,
|
|
30310
30334
|
access: "view"
|
|
30311
30335
|
},
|
|
30336
|
+
"snapshot.getDebugState": {
|
|
30337
|
+
capName: "snapshot",
|
|
30338
|
+
capScope: "device",
|
|
30339
|
+
addonId: null,
|
|
30340
|
+
access: "view"
|
|
30341
|
+
},
|
|
30312
30342
|
"snapshot.getSnapshot": {
|
|
30313
30343
|
capName: "snapshot",
|
|
30314
30344
|
capScope: "device",
|
|
@@ -32906,6 +32936,11 @@ Object.freeze({
|
|
|
32906
32936
|
form: "single",
|
|
32907
32937
|
optional: false
|
|
32908
32938
|
}],
|
|
32939
|
+
"snapshot.getDebugState": [{
|
|
32940
|
+
name: "deviceId",
|
|
32941
|
+
form: "single",
|
|
32942
|
+
optional: false
|
|
32943
|
+
}],
|
|
32909
32944
|
"snapshot.getSnapshot": [{
|
|
32910
32945
|
name: "deviceId",
|
|
32911
32946
|
form: "single",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -19092,7 +19092,31 @@ DeviceType.Camera, method(object({
|
|
|
19092
19092
|
lastCapturedAt: number().nullable(),
|
|
19093
19093
|
cacheAgeMs: number().nullable(),
|
|
19094
19094
|
etag: string().nullable()
|
|
19095
|
-
}))), systemMethod(object({
|
|
19095
|
+
}))), systemMethod(object({ deviceId: number() }), object({
|
|
19096
|
+
/** The battery slice as read, or null when the device has none. */
|
|
19097
|
+
battery: object({
|
|
19098
|
+
sleeping: boolean(),
|
|
19099
|
+
lastUpdated: number(),
|
|
19100
|
+
lastContactAt: number().optional()
|
|
19101
|
+
}).nullable(),
|
|
19102
|
+
/** The resolved snapshot state (what the overlay decision used). */
|
|
19103
|
+
state: object({
|
|
19104
|
+
isBattery: boolean(),
|
|
19105
|
+
reason: _enum([
|
|
19106
|
+
"disabled",
|
|
19107
|
+
"sleeping",
|
|
19108
|
+
"unreachable",
|
|
19109
|
+
"waking"
|
|
19110
|
+
]).nullable()
|
|
19111
|
+
}),
|
|
19112
|
+
/** The cached frame behind the next paint. */
|
|
19113
|
+
frame: object({
|
|
19114
|
+
capturedAt: number().nullable(),
|
|
19115
|
+
ageMs: number().nullable()
|
|
19116
|
+
}),
|
|
19117
|
+
/** A wake window is currently open (the Waking overlay's source). */
|
|
19118
|
+
waking: boolean()
|
|
19119
|
+
})), systemMethod(object({
|
|
19096
19120
|
/** The tiles a surface is actually rendering. One entry per (device,
|
|
19097
19121
|
* width) the caller will paint — the width is snapped to the server's
|
|
19098
19122
|
* ladder and becomes part of the link's SIGNED identity. */
|
|
@@ -30307,6 +30331,12 @@ Object.freeze({
|
|
|
30307
30331
|
addonId: null,
|
|
30308
30332
|
access: "view"
|
|
30309
30333
|
},
|
|
30334
|
+
"snapshot.getDebugState": {
|
|
30335
|
+
capName: "snapshot",
|
|
30336
|
+
capScope: "device",
|
|
30337
|
+
addonId: null,
|
|
30338
|
+
access: "view"
|
|
30339
|
+
},
|
|
30310
30340
|
"snapshot.getSnapshot": {
|
|
30311
30341
|
capName: "snapshot",
|
|
30312
30342
|
capScope: "device",
|
|
@@ -32904,6 +32934,11 @@ Object.freeze({
|
|
|
32904
32934
|
form: "single",
|
|
32905
32935
|
optional: false
|
|
32906
32936
|
}],
|
|
32937
|
+
"snapshot.getDebugState": [{
|
|
32938
|
+
name: "deviceId",
|
|
32939
|
+
form: "single",
|
|
32940
|
+
optional: false
|
|
32941
|
+
}],
|
|
32907
32942
|
"snapshot.getSnapshot": [{
|
|
32908
32943
|
name: "deviceId",
|
|
32909
32944
|
form: "single",
|
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.18",
|
|
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",
|