@camstack/addon-smtp-nodemailer 1.2.110 → 1.2.112
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 +64 -1
- package/dist/smtp.addon.mjs +64 -1
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -5397,7 +5397,7 @@ var ZodIssueCode = {
|
|
|
5397
5397
|
var ZodFirstPartyTypeKind;
|
|
5398
5398
|
ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
|
|
5399
5399
|
//#endregion
|
|
5400
|
-
//#region ../types/dist/sleep-
|
|
5400
|
+
//#region ../types/dist/sleep-Dk-BdnBf.mjs
|
|
5401
5401
|
/**
|
|
5402
5402
|
* The audio chunk plane's byte format, and the ONE expansion from a coded
|
|
5403
5403
|
* window to float samples (D455).
|
|
@@ -28896,6 +28896,26 @@ var PtzHomePresetSchema = object({
|
|
|
28896
28896
|
"none"
|
|
28897
28897
|
])
|
|
28898
28898
|
});
|
|
28899
|
+
/**
|
|
28900
|
+
* The camera's own idle-return behaviour: whether it goes home by itself, and
|
|
28901
|
+
* after how long.
|
|
28902
|
+
*
|
|
28903
|
+
* ONE shape, not two scalars, because on the camera they are ONE fact —
|
|
28904
|
+
* Reolink's guard point carries `benable` and `timeout` in the same element,
|
|
28905
|
+
* written by the same command. Reading them apart means two round-trips that
|
|
28906
|
+
* can disagree.
|
|
28907
|
+
*
|
|
28908
|
+
* `enabled` and `seconds` are INDEPENDENT: a camera can hold a 68 s delay with
|
|
28909
|
+
* the behaviour switched off, which is exactly what the vendor app leaves when
|
|
28910
|
+
* you turn the guard point off without clearing it. The first version of this
|
|
28911
|
+
* cap reported only the delay, so that state was invisible — a camera could be
|
|
28912
|
+
* configured to return after 68 seconds with no way to say whether it should
|
|
28913
|
+
* return at all.
|
|
28914
|
+
*/
|
|
28915
|
+
var PtzHomeReturnSchema = object({
|
|
28916
|
+
enabled: boolean(),
|
|
28917
|
+
seconds: number().int()
|
|
28918
|
+
});
|
|
28899
28919
|
DeviceType.Camera, method(PtzMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }), method(PtzMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }), method(object({ deviceId: number() }), _void(), { kind: "mutation" }), method(object({ deviceId: number() }), array(PtzPresetSchema)), method(object({
|
|
28900
28920
|
deviceId: number(),
|
|
28901
28921
|
presetId: string()
|
|
@@ -28918,6 +28938,16 @@ DeviceType.Camera, method(PtzMoveCommandSchema.extend({ deviceId: number() }), _
|
|
|
28918
28938
|
}), _void(), {
|
|
28919
28939
|
kind: "mutation",
|
|
28920
28940
|
auth: "admin"
|
|
28941
|
+
}), method(object({ deviceId: number() }), _void(), {
|
|
28942
|
+
kind: "mutation",
|
|
28943
|
+
auth: "admin"
|
|
28944
|
+
}), method(object({ deviceId: number() }), PtzHomeReturnSchema.nullable()), method(object({
|
|
28945
|
+
deviceId: number(),
|
|
28946
|
+
enabled: boolean(),
|
|
28947
|
+
seconds: number().int().min(0).max(3600)
|
|
28948
|
+
}), _void(), {
|
|
28949
|
+
kind: "mutation",
|
|
28950
|
+
auth: "admin"
|
|
28921
28951
|
}), method(object({ deviceId: number() }), PtzPositionSchema), method(object({
|
|
28922
28952
|
deviceId: number(),
|
|
28923
28953
|
enabled: boolean()
|
|
@@ -35921,6 +35951,12 @@ Object.freeze({
|
|
|
35921
35951
|
addonId: null,
|
|
35922
35952
|
access: "create"
|
|
35923
35953
|
},
|
|
35954
|
+
"ptz.captureHomeHere": {
|
|
35955
|
+
capName: "ptz",
|
|
35956
|
+
capScope: "device",
|
|
35957
|
+
addonId: null,
|
|
35958
|
+
access: "create"
|
|
35959
|
+
},
|
|
35924
35960
|
"ptz.continuousMove": {
|
|
35925
35961
|
capName: "ptz",
|
|
35926
35962
|
capScope: "device",
|
|
@@ -35939,6 +35975,12 @@ Object.freeze({
|
|
|
35939
35975
|
addonId: null,
|
|
35940
35976
|
access: "view"
|
|
35941
35977
|
},
|
|
35978
|
+
"ptz.getHomeReturn": {
|
|
35979
|
+
capName: "ptz",
|
|
35980
|
+
capScope: "device",
|
|
35981
|
+
addonId: null,
|
|
35982
|
+
access: "view"
|
|
35983
|
+
},
|
|
35942
35984
|
"ptz.getOptions": {
|
|
35943
35985
|
capName: "ptz",
|
|
35944
35986
|
capScope: "device",
|
|
@@ -35993,6 +36035,12 @@ Object.freeze({
|
|
|
35993
36035
|
addonId: null,
|
|
35994
36036
|
access: "create"
|
|
35995
36037
|
},
|
|
36038
|
+
"ptz.setHomeReturn": {
|
|
36039
|
+
capName: "ptz",
|
|
36040
|
+
capScope: "device",
|
|
36041
|
+
addonId: null,
|
|
36042
|
+
access: "create"
|
|
36043
|
+
},
|
|
35996
36044
|
"ptz.stop": {
|
|
35997
36045
|
capName: "ptz",
|
|
35998
36046
|
capScope: "device",
|
|
@@ -39156,6 +39204,11 @@ Object.freeze({
|
|
|
39156
39204
|
form: "single",
|
|
39157
39205
|
optional: false
|
|
39158
39206
|
}],
|
|
39207
|
+
"ptz.captureHomeHere": [{
|
|
39208
|
+
name: "deviceId",
|
|
39209
|
+
form: "single",
|
|
39210
|
+
optional: false
|
|
39211
|
+
}],
|
|
39159
39212
|
"ptz.continuousMove": [{
|
|
39160
39213
|
name: "deviceId",
|
|
39161
39214
|
form: "single",
|
|
@@ -39171,6 +39224,11 @@ Object.freeze({
|
|
|
39171
39224
|
form: "single",
|
|
39172
39225
|
optional: false
|
|
39173
39226
|
}],
|
|
39227
|
+
"ptz.getHomeReturn": [{
|
|
39228
|
+
name: "deviceId",
|
|
39229
|
+
form: "single",
|
|
39230
|
+
optional: false
|
|
39231
|
+
}],
|
|
39174
39232
|
"ptz.getOptions": [{
|
|
39175
39233
|
name: "deviceId",
|
|
39176
39234
|
form: "single",
|
|
@@ -39216,6 +39274,11 @@ Object.freeze({
|
|
|
39216
39274
|
form: "single",
|
|
39217
39275
|
optional: false
|
|
39218
39276
|
}],
|
|
39277
|
+
"ptz.setHomeReturn": [{
|
|
39278
|
+
name: "deviceId",
|
|
39279
|
+
form: "single",
|
|
39280
|
+
optional: false
|
|
39281
|
+
}],
|
|
39219
39282
|
"ptz.stop": [{
|
|
39220
39283
|
name: "deviceId",
|
|
39221
39284
|
form: "single",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -5395,7 +5395,7 @@ var ZodIssueCode = {
|
|
|
5395
5395
|
var ZodFirstPartyTypeKind;
|
|
5396
5396
|
ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
|
|
5397
5397
|
//#endregion
|
|
5398
|
-
//#region ../types/dist/sleep-
|
|
5398
|
+
//#region ../types/dist/sleep-Dk-BdnBf.mjs
|
|
5399
5399
|
/**
|
|
5400
5400
|
* The audio chunk plane's byte format, and the ONE expansion from a coded
|
|
5401
5401
|
* window to float samples (D455).
|
|
@@ -28894,6 +28894,26 @@ var PtzHomePresetSchema = object({
|
|
|
28894
28894
|
"none"
|
|
28895
28895
|
])
|
|
28896
28896
|
});
|
|
28897
|
+
/**
|
|
28898
|
+
* The camera's own idle-return behaviour: whether it goes home by itself, and
|
|
28899
|
+
* after how long.
|
|
28900
|
+
*
|
|
28901
|
+
* ONE shape, not two scalars, because on the camera they are ONE fact —
|
|
28902
|
+
* Reolink's guard point carries `benable` and `timeout` in the same element,
|
|
28903
|
+
* written by the same command. Reading them apart means two round-trips that
|
|
28904
|
+
* can disagree.
|
|
28905
|
+
*
|
|
28906
|
+
* `enabled` and `seconds` are INDEPENDENT: a camera can hold a 68 s delay with
|
|
28907
|
+
* the behaviour switched off, which is exactly what the vendor app leaves when
|
|
28908
|
+
* you turn the guard point off without clearing it. The first version of this
|
|
28909
|
+
* cap reported only the delay, so that state was invisible — a camera could be
|
|
28910
|
+
* configured to return after 68 seconds with no way to say whether it should
|
|
28911
|
+
* return at all.
|
|
28912
|
+
*/
|
|
28913
|
+
var PtzHomeReturnSchema = object({
|
|
28914
|
+
enabled: boolean(),
|
|
28915
|
+
seconds: number().int()
|
|
28916
|
+
});
|
|
28897
28917
|
DeviceType.Camera, method(PtzMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }), method(PtzMoveCommandSchema.extend({ deviceId: number() }), _void(), { kind: "mutation" }), method(object({ deviceId: number() }), _void(), { kind: "mutation" }), method(object({ deviceId: number() }), array(PtzPresetSchema)), method(object({
|
|
28898
28918
|
deviceId: number(),
|
|
28899
28919
|
presetId: string()
|
|
@@ -28916,6 +28936,16 @@ DeviceType.Camera, method(PtzMoveCommandSchema.extend({ deviceId: number() }), _
|
|
|
28916
28936
|
}), _void(), {
|
|
28917
28937
|
kind: "mutation",
|
|
28918
28938
|
auth: "admin"
|
|
28939
|
+
}), method(object({ deviceId: number() }), _void(), {
|
|
28940
|
+
kind: "mutation",
|
|
28941
|
+
auth: "admin"
|
|
28942
|
+
}), method(object({ deviceId: number() }), PtzHomeReturnSchema.nullable()), method(object({
|
|
28943
|
+
deviceId: number(),
|
|
28944
|
+
enabled: boolean(),
|
|
28945
|
+
seconds: number().int().min(0).max(3600)
|
|
28946
|
+
}), _void(), {
|
|
28947
|
+
kind: "mutation",
|
|
28948
|
+
auth: "admin"
|
|
28919
28949
|
}), method(object({ deviceId: number() }), PtzPositionSchema), method(object({
|
|
28920
28950
|
deviceId: number(),
|
|
28921
28951
|
enabled: boolean()
|
|
@@ -35919,6 +35949,12 @@ Object.freeze({
|
|
|
35919
35949
|
addonId: null,
|
|
35920
35950
|
access: "create"
|
|
35921
35951
|
},
|
|
35952
|
+
"ptz.captureHomeHere": {
|
|
35953
|
+
capName: "ptz",
|
|
35954
|
+
capScope: "device",
|
|
35955
|
+
addonId: null,
|
|
35956
|
+
access: "create"
|
|
35957
|
+
},
|
|
35922
35958
|
"ptz.continuousMove": {
|
|
35923
35959
|
capName: "ptz",
|
|
35924
35960
|
capScope: "device",
|
|
@@ -35937,6 +35973,12 @@ Object.freeze({
|
|
|
35937
35973
|
addonId: null,
|
|
35938
35974
|
access: "view"
|
|
35939
35975
|
},
|
|
35976
|
+
"ptz.getHomeReturn": {
|
|
35977
|
+
capName: "ptz",
|
|
35978
|
+
capScope: "device",
|
|
35979
|
+
addonId: null,
|
|
35980
|
+
access: "view"
|
|
35981
|
+
},
|
|
35940
35982
|
"ptz.getOptions": {
|
|
35941
35983
|
capName: "ptz",
|
|
35942
35984
|
capScope: "device",
|
|
@@ -35991,6 +36033,12 @@ Object.freeze({
|
|
|
35991
36033
|
addonId: null,
|
|
35992
36034
|
access: "create"
|
|
35993
36035
|
},
|
|
36036
|
+
"ptz.setHomeReturn": {
|
|
36037
|
+
capName: "ptz",
|
|
36038
|
+
capScope: "device",
|
|
36039
|
+
addonId: null,
|
|
36040
|
+
access: "create"
|
|
36041
|
+
},
|
|
35994
36042
|
"ptz.stop": {
|
|
35995
36043
|
capName: "ptz",
|
|
35996
36044
|
capScope: "device",
|
|
@@ -39154,6 +39202,11 @@ Object.freeze({
|
|
|
39154
39202
|
form: "single",
|
|
39155
39203
|
optional: false
|
|
39156
39204
|
}],
|
|
39205
|
+
"ptz.captureHomeHere": [{
|
|
39206
|
+
name: "deviceId",
|
|
39207
|
+
form: "single",
|
|
39208
|
+
optional: false
|
|
39209
|
+
}],
|
|
39157
39210
|
"ptz.continuousMove": [{
|
|
39158
39211
|
name: "deviceId",
|
|
39159
39212
|
form: "single",
|
|
@@ -39169,6 +39222,11 @@ Object.freeze({
|
|
|
39169
39222
|
form: "single",
|
|
39170
39223
|
optional: false
|
|
39171
39224
|
}],
|
|
39225
|
+
"ptz.getHomeReturn": [{
|
|
39226
|
+
name: "deviceId",
|
|
39227
|
+
form: "single",
|
|
39228
|
+
optional: false
|
|
39229
|
+
}],
|
|
39172
39230
|
"ptz.getOptions": [{
|
|
39173
39231
|
name: "deviceId",
|
|
39174
39232
|
form: "single",
|
|
@@ -39214,6 +39272,11 @@ Object.freeze({
|
|
|
39214
39272
|
form: "single",
|
|
39215
39273
|
optional: false
|
|
39216
39274
|
}],
|
|
39275
|
+
"ptz.setHomeReturn": [{
|
|
39276
|
+
name: "deviceId",
|
|
39277
|
+
form: "single",
|
|
39278
|
+
optional: false
|
|
39279
|
+
}],
|
|
39217
39280
|
"ptz.stop": [{
|
|
39218
39281
|
name: "deviceId",
|
|
39219
39282
|
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.112",
|
|
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",
|