@camstack/addon-smtp-nodemailer 1.2.67 → 1.2.68
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 +45 -1
- package/dist/smtp.addon.mjs +45 -1
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -19042,6 +19042,33 @@ var RecentTracksQueryInput = object({
|
|
|
19042
19042
|
*/
|
|
19043
19043
|
classes: array(string()).optional()
|
|
19044
19044
|
});
|
|
19045
|
+
/**
|
|
19046
|
+
* A Summary (D359): the per-camera session envelope that references tracks.
|
|
19047
|
+
* `groupShotKey` is the media key of its group shot (`ownerKind: 'summary'`,
|
|
19048
|
+
* served by the event-media plane by key), null until the first frame with a
|
|
19049
|
+
* member visible has been materialised.
|
|
19050
|
+
*/
|
|
19051
|
+
var SummarySchema = object({
|
|
19052
|
+
id: string(),
|
|
19053
|
+
deviceId: number(),
|
|
19054
|
+
openedAt: number(),
|
|
19055
|
+
lastActiveAt: number(),
|
|
19056
|
+
sealedAt: number().nullable(),
|
|
19057
|
+
memberCount: number().int().nonnegative(),
|
|
19058
|
+
groupShotKey: string().nullable()
|
|
19059
|
+
});
|
|
19060
|
+
var SummariesQueryInput = object({
|
|
19061
|
+
deviceIds: array(number()).min(1),
|
|
19062
|
+
since: number().optional(),
|
|
19063
|
+
until: number().optional(),
|
|
19064
|
+
limit: number().int().min(1).max(200).default(50)
|
|
19065
|
+
});
|
|
19066
|
+
var SummariesPageSchema = object({ summaries: array(SummarySchema).readonly() });
|
|
19067
|
+
var SummaryDetailSchema = object({
|
|
19068
|
+
summary: SummarySchema,
|
|
19069
|
+
/** Member track ids, in absorption order. */
|
|
19070
|
+
trackIds: array(string()).readonly()
|
|
19071
|
+
});
|
|
19045
19072
|
var RecentTracksPageSchema = object({
|
|
19046
19073
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
19047
19074
|
tracks: array(TrackSchema).readonly(),
|
|
@@ -19442,7 +19469,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19442
19469
|
* timeline would read as a camera that saw nothing.
|
|
19443
19470
|
*/
|
|
19444
19471
|
classes: array(string()).optional()
|
|
19445
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19472
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
19446
19473
|
kind: "mutation",
|
|
19447
19474
|
auth: "admin"
|
|
19448
19475
|
}), method(DeviceEventQueryInput, array(MotionEventSchema).readonly()), method(ObjectEventQueryInput, array(ObjectEventSchema).readonly()), method(DeviceEventQueryInput, array(AudioEventSchema).readonly()), method(object({ deviceId: number() }), array(EventKindDescriptorSchema).readonly()), method(object({ deviceIds: array(number()).min(1).max(200) }), array(EventKindsForDeviceSchema).readonly()), method(object({
|
|
@@ -32410,6 +32437,12 @@ Object.freeze({
|
|
|
32410
32437
|
addonId: null,
|
|
32411
32438
|
access: "view"
|
|
32412
32439
|
},
|
|
32440
|
+
"pipelineAnalytics.getSummary": {
|
|
32441
|
+
capName: "pipeline-analytics",
|
|
32442
|
+
capScope: "device",
|
|
32443
|
+
addonId: null,
|
|
32444
|
+
access: "view"
|
|
32445
|
+
},
|
|
32413
32446
|
"pipelineAnalytics.getTrack": {
|
|
32414
32447
|
capName: "pipeline-analytics",
|
|
32415
32448
|
capScope: "device",
|
|
@@ -32488,6 +32521,12 @@ Object.freeze({
|
|
|
32488
32521
|
addonId: null,
|
|
32489
32522
|
access: "view"
|
|
32490
32523
|
},
|
|
32524
|
+
"pipelineAnalytics.listSummaries": {
|
|
32525
|
+
capName: "pipeline-analytics",
|
|
32526
|
+
capScope: "device",
|
|
32527
|
+
addonId: null,
|
|
32528
|
+
access: "view"
|
|
32529
|
+
},
|
|
32491
32530
|
"pipelineAnalytics.listTrackMedia": {
|
|
32492
32531
|
capName: "pipeline-analytics",
|
|
32493
32532
|
capScope: "device",
|
|
@@ -36183,6 +36222,11 @@ Object.freeze({
|
|
|
36183
36222
|
form: "array",
|
|
36184
36223
|
optional: true
|
|
36185
36224
|
}],
|
|
36225
|
+
"pipelineAnalytics.listSummaries": [{
|
|
36226
|
+
name: "deviceIds",
|
|
36227
|
+
form: "array",
|
|
36228
|
+
optional: false
|
|
36229
|
+
}],
|
|
36186
36230
|
"pipelineAnalytics.listTrackMedia": [{
|
|
36187
36231
|
name: "deviceId",
|
|
36188
36232
|
form: "single",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -19040,6 +19040,33 @@ var RecentTracksQueryInput = object({
|
|
|
19040
19040
|
*/
|
|
19041
19041
|
classes: array(string()).optional()
|
|
19042
19042
|
});
|
|
19043
|
+
/**
|
|
19044
|
+
* A Summary (D359): the per-camera session envelope that references tracks.
|
|
19045
|
+
* `groupShotKey` is the media key of its group shot (`ownerKind: 'summary'`,
|
|
19046
|
+
* served by the event-media plane by key), null until the first frame with a
|
|
19047
|
+
* member visible has been materialised.
|
|
19048
|
+
*/
|
|
19049
|
+
var SummarySchema = object({
|
|
19050
|
+
id: string(),
|
|
19051
|
+
deviceId: number(),
|
|
19052
|
+
openedAt: number(),
|
|
19053
|
+
lastActiveAt: number(),
|
|
19054
|
+
sealedAt: number().nullable(),
|
|
19055
|
+
memberCount: number().int().nonnegative(),
|
|
19056
|
+
groupShotKey: string().nullable()
|
|
19057
|
+
});
|
|
19058
|
+
var SummariesQueryInput = object({
|
|
19059
|
+
deviceIds: array(number()).min(1),
|
|
19060
|
+
since: number().optional(),
|
|
19061
|
+
until: number().optional(),
|
|
19062
|
+
limit: number().int().min(1).max(200).default(50)
|
|
19063
|
+
});
|
|
19064
|
+
var SummariesPageSchema = object({ summaries: array(SummarySchema).readonly() });
|
|
19065
|
+
var SummaryDetailSchema = object({
|
|
19066
|
+
summary: SummarySchema,
|
|
19067
|
+
/** Member track ids, in absorption order. */
|
|
19068
|
+
trackIds: array(string()).readonly()
|
|
19069
|
+
});
|
|
19043
19070
|
var RecentTracksPageSchema = object({
|
|
19044
19071
|
/** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
|
|
19045
19072
|
tracks: array(TrackSchema).readonly(),
|
|
@@ -19440,7 +19467,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19440
19467
|
* timeline would read as a camera that saw nothing.
|
|
19441
19468
|
*/
|
|
19442
19469
|
classes: array(string()).optional()
|
|
19443
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19470
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(SummariesQueryInput, SummariesPageSchema), method(object({ id: string() }), SummaryDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
19444
19471
|
kind: "mutation",
|
|
19445
19472
|
auth: "admin"
|
|
19446
19473
|
}), method(DeviceEventQueryInput, array(MotionEventSchema).readonly()), method(ObjectEventQueryInput, array(ObjectEventSchema).readonly()), method(DeviceEventQueryInput, array(AudioEventSchema).readonly()), method(object({ deviceId: number() }), array(EventKindDescriptorSchema).readonly()), method(object({ deviceIds: array(number()).min(1).max(200) }), array(EventKindsForDeviceSchema).readonly()), method(object({
|
|
@@ -32408,6 +32435,12 @@ Object.freeze({
|
|
|
32408
32435
|
addonId: null,
|
|
32409
32436
|
access: "view"
|
|
32410
32437
|
},
|
|
32438
|
+
"pipelineAnalytics.getSummary": {
|
|
32439
|
+
capName: "pipeline-analytics",
|
|
32440
|
+
capScope: "device",
|
|
32441
|
+
addonId: null,
|
|
32442
|
+
access: "view"
|
|
32443
|
+
},
|
|
32411
32444
|
"pipelineAnalytics.getTrack": {
|
|
32412
32445
|
capName: "pipeline-analytics",
|
|
32413
32446
|
capScope: "device",
|
|
@@ -32486,6 +32519,12 @@ Object.freeze({
|
|
|
32486
32519
|
addonId: null,
|
|
32487
32520
|
access: "view"
|
|
32488
32521
|
},
|
|
32522
|
+
"pipelineAnalytics.listSummaries": {
|
|
32523
|
+
capName: "pipeline-analytics",
|
|
32524
|
+
capScope: "device",
|
|
32525
|
+
addonId: null,
|
|
32526
|
+
access: "view"
|
|
32527
|
+
},
|
|
32489
32528
|
"pipelineAnalytics.listTrackMedia": {
|
|
32490
32529
|
capName: "pipeline-analytics",
|
|
32491
32530
|
capScope: "device",
|
|
@@ -36181,6 +36220,11 @@ Object.freeze({
|
|
|
36181
36220
|
form: "array",
|
|
36182
36221
|
optional: true
|
|
36183
36222
|
}],
|
|
36223
|
+
"pipelineAnalytics.listSummaries": [{
|
|
36224
|
+
name: "deviceIds",
|
|
36225
|
+
form: "array",
|
|
36226
|
+
optional: false
|
|
36227
|
+
}],
|
|
36184
36228
|
"pipelineAnalytics.listTrackMedia": [{
|
|
36185
36229
|
name: "deviceId",
|
|
36186
36230
|
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.68",
|
|
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",
|