@camstack/addon-smtp-nodemailer 1.2.83 → 1.2.84

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.
@@ -24187,6 +24187,59 @@ var IdentitySampleInfoSchema = object({
24187
24187
  deviceId: number().int().optional(),
24188
24188
  base64: string().optional()
24189
24189
  });
24190
+ /**
24191
+ * One enrolled sample, judged against the gallery it lives in.
24192
+ *
24193
+ * The gallery is the one input to recognition nobody re-reads: a sample
24194
+ * enrolled from the wrong face keeps voting forever, and because the matches it
24195
+ * pulls then look confident, nobody goes back. The 2026-09-08 audit found
24196
+ * exactly one such pair on this cluster — a sample scoring 0.61 against three
24197
+ * samples of ANOTHER person, enrolled from the same camera in the same minute,
24198
+ * where every other cross-identity pair sits under 0.50.
24199
+ */
24200
+ var IdentitySampleAuditRowSchema = object({
24201
+ sampleId: string(),
24202
+ enrolledAt: number().int(),
24203
+ deviceId: number().int().optional(),
24204
+ source: _enum(["detected", "photo"]),
24205
+ /** The enrolled crop's media key, so the panel can show the evidence. */
24206
+ mediaKey: string().optional(),
24207
+ /**
24208
+ * False = the sample is stamped with a DIFFERENT face model, and a cosine
24209
+ * across feature spaces is a well-formed float with no meaning. Every number
24210
+ * below then says nothing — it must read as "cannot say", never as an
24211
+ * accusation and never as a clean bill: this list ends in a Remove button.
24212
+ */
24213
+ comparable: boolean(),
24214
+ /** Mean cosine against this person's other samples. Null when there are none
24215
+ * to compare with — never 0, which would read as "opposite". */
24216
+ selfMean: number().nullable(),
24217
+ /** The other person this sample looks most like, when it looks like one.
24218
+ * This is the half that convicts: not looking like yourself can be a hard
24219
+ * angle; looking like someone the gallery can NAME is a mis-enrolment. */
24220
+ bestForeign: object({
24221
+ identityId: string(),
24222
+ name: string(),
24223
+ score: number()
24224
+ }).optional(),
24225
+ /** 0 = nothing to say. Higher = look at this one sooner. */
24226
+ suspicion: number()
24227
+ });
24228
+ var IdentitySampleAuditSchema = object({
24229
+ identityId: string(),
24230
+ name: string(),
24231
+ /** The cluster face model every comparison was made in. */
24232
+ modelId: string(),
24233
+ totalSamples: number().int(),
24234
+ comparableSamples: number().int(),
24235
+ flagged: number().int(),
24236
+ /** The bar `flagged` counts against, so the panel states the RULE and not
24237
+ * only its current result. */
24238
+ flagThreshold: number(),
24239
+ /** Worst first. A row with nothing to say still appears, at the bottom: the
24240
+ * operator asked to see the gallery, not only its accusations. */
24241
+ rows: array(IdentitySampleAuditRowSchema).readonly()
24242
+ });
24190
24243
  var FaceInfoSchema = object({
24191
24244
  faceId: string(),
24192
24245
  deviceId: number().int(),
@@ -24338,7 +24391,7 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
24338
24391
  }), method(object({ id: string() }), _void(), {
24339
24392
  kind: "mutation",
24340
24393
  auth: "admin"
24341
- }), method(object({ identityId: string() }), array(IdentitySampleInfoSchema).readonly()), method(object({
24394
+ }), method(object({ identityId: string() }), array(IdentitySampleInfoSchema).readonly()), method(object({ identityId: string().min(1) }), IdentitySampleAuditSchema, { auth: "admin" }), method(object({
24342
24395
  identityId: string(),
24343
24396
  sampleId: string()
24344
24397
  }), _void(), {
@@ -31565,6 +31618,12 @@ Object.freeze({
31565
31618
  addonId: null,
31566
31619
  access: "create"
31567
31620
  },
31621
+ "faceGallery.auditIdentitySamples": {
31622
+ capName: "face-gallery",
31623
+ capScope: "system",
31624
+ addonId: null,
31625
+ access: "view"
31626
+ },
31568
31627
  "faceGallery.createIdentity": {
31569
31628
  capName: "face-gallery",
31570
31629
  capScope: "system",
@@ -24185,6 +24185,59 @@ var IdentitySampleInfoSchema = object({
24185
24185
  deviceId: number().int().optional(),
24186
24186
  base64: string().optional()
24187
24187
  });
24188
+ /**
24189
+ * One enrolled sample, judged against the gallery it lives in.
24190
+ *
24191
+ * The gallery is the one input to recognition nobody re-reads: a sample
24192
+ * enrolled from the wrong face keeps voting forever, and because the matches it
24193
+ * pulls then look confident, nobody goes back. The 2026-09-08 audit found
24194
+ * exactly one such pair on this cluster — a sample scoring 0.61 against three
24195
+ * samples of ANOTHER person, enrolled from the same camera in the same minute,
24196
+ * where every other cross-identity pair sits under 0.50.
24197
+ */
24198
+ var IdentitySampleAuditRowSchema = object({
24199
+ sampleId: string(),
24200
+ enrolledAt: number().int(),
24201
+ deviceId: number().int().optional(),
24202
+ source: _enum(["detected", "photo"]),
24203
+ /** The enrolled crop's media key, so the panel can show the evidence. */
24204
+ mediaKey: string().optional(),
24205
+ /**
24206
+ * False = the sample is stamped with a DIFFERENT face model, and a cosine
24207
+ * across feature spaces is a well-formed float with no meaning. Every number
24208
+ * below then says nothing — it must read as "cannot say", never as an
24209
+ * accusation and never as a clean bill: this list ends in a Remove button.
24210
+ */
24211
+ comparable: boolean(),
24212
+ /** Mean cosine against this person's other samples. Null when there are none
24213
+ * to compare with — never 0, which would read as "opposite". */
24214
+ selfMean: number().nullable(),
24215
+ /** The other person this sample looks most like, when it looks like one.
24216
+ * This is the half that convicts: not looking like yourself can be a hard
24217
+ * angle; looking like someone the gallery can NAME is a mis-enrolment. */
24218
+ bestForeign: object({
24219
+ identityId: string(),
24220
+ name: string(),
24221
+ score: number()
24222
+ }).optional(),
24223
+ /** 0 = nothing to say. Higher = look at this one sooner. */
24224
+ suspicion: number()
24225
+ });
24226
+ var IdentitySampleAuditSchema = object({
24227
+ identityId: string(),
24228
+ name: string(),
24229
+ /** The cluster face model every comparison was made in. */
24230
+ modelId: string(),
24231
+ totalSamples: number().int(),
24232
+ comparableSamples: number().int(),
24233
+ flagged: number().int(),
24234
+ /** The bar `flagged` counts against, so the panel states the RULE and not
24235
+ * only its current result. */
24236
+ flagThreshold: number(),
24237
+ /** Worst first. A row with nothing to say still appears, at the bottom: the
24238
+ * operator asked to see the gallery, not only its accusations. */
24239
+ rows: array(IdentitySampleAuditRowSchema).readonly()
24240
+ });
24188
24241
  var FaceInfoSchema = object({
24189
24242
  faceId: string(),
24190
24243
  deviceId: number().int(),
@@ -24336,7 +24389,7 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
24336
24389
  }), method(object({ id: string() }), _void(), {
24337
24390
  kind: "mutation",
24338
24391
  auth: "admin"
24339
- }), method(object({ identityId: string() }), array(IdentitySampleInfoSchema).readonly()), method(object({
24392
+ }), method(object({ identityId: string() }), array(IdentitySampleInfoSchema).readonly()), method(object({ identityId: string().min(1) }), IdentitySampleAuditSchema, { auth: "admin" }), method(object({
24340
24393
  identityId: string(),
24341
24394
  sampleId: string()
24342
24395
  }), _void(), {
@@ -31563,6 +31616,12 @@ Object.freeze({
31563
31616
  addonId: null,
31564
31617
  access: "create"
31565
31618
  },
31619
+ "faceGallery.auditIdentitySamples": {
31620
+ capName: "face-gallery",
31621
+ capScope: "system",
31622
+ addonId: null,
31623
+ access: "view"
31624
+ },
31566
31625
  "faceGallery.createIdentity": {
31567
31626
  capName: "face-gallery",
31568
31627
  capScope: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-smtp-nodemailer",
3
- "version": "1.2.83",
3
+ "version": "1.2.84",
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",