@camstack/addon-post-analysis 1.2.207 → 1.2.209

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.
@@ -16569,14 +16569,14 @@ var alarmPanelCapability = {
16569
16569
  code: string().min(1).optional()
16570
16570
  }), _void(), {
16571
16571
  kind: "mutation",
16572
- auth: "admin"
16572
+ auth: "protected"
16573
16573
  }),
16574
16574
  disarm: method(object({
16575
16575
  deviceId: number().int().nonnegative(),
16576
16576
  code: string().min(1).optional()
16577
16577
  }), _void(), {
16578
16578
  kind: "mutation",
16579
- auth: "admin"
16579
+ auth: "protected"
16580
16580
  }),
16581
16581
  /**
16582
16582
  * Force the panel into the `triggered` state — used by HA
@@ -16587,7 +16587,7 @@ var alarmPanelCapability = {
16587
16587
  */
16588
16588
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
16589
16589
  kind: "mutation",
16590
- auth: "admin"
16590
+ auth: "protected"
16591
16591
  })
16592
16592
  },
16593
16593
  status: {
@@ -25764,7 +25764,7 @@ var brightnessCapability = {
25764
25764
  percentage: number().min(0).max(100)
25765
25765
  }), _void(), {
25766
25766
  kind: "mutation",
25767
- auth: "admin"
25767
+ auth: "protected"
25768
25768
  }) },
25769
25769
  events: {
25770
25770
  /**
@@ -25797,7 +25797,7 @@ onBrightnessChanged: { data: object({
25797
25797
  };
25798
25798
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25799
25799
  kind: "mutation",
25800
- auth: "admin"
25800
+ auth: "protected"
25801
25801
  });
25802
25802
  /**
25803
25803
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -25989,28 +25989,28 @@ var climateControlCapability = {
25989
25989
  mode: HvacModeSchema
25990
25990
  }), _void(), {
25991
25991
  kind: "mutation",
25992
- auth: "admin"
25992
+ auth: "protected"
25993
25993
  }),
25994
25994
  setFanMode: method(object({
25995
25995
  deviceId: number().int().nonnegative(),
25996
25996
  fanMode: string().min(1)
25997
25997
  }), _void(), {
25998
25998
  kind: "mutation",
25999
- auth: "admin"
25999
+ auth: "protected"
26000
26000
  }),
26001
26001
  setPreset: method(object({
26002
26002
  deviceId: number().int().nonnegative(),
26003
26003
  preset: string().min(1)
26004
26004
  }), _void(), {
26005
26005
  kind: "mutation",
26006
- auth: "admin"
26006
+ auth: "protected"
26007
26007
  }),
26008
26008
  setTarget: method(object({
26009
26009
  deviceId: number().int().nonnegative(),
26010
26010
  target: number()
26011
26011
  }), _void(), {
26012
26012
  kind: "mutation",
26013
- auth: "admin"
26013
+ auth: "protected"
26014
26014
  }),
26015
26015
  setTargetRange: method(object({
26016
26016
  deviceId: number().int().nonnegative(),
@@ -26018,28 +26018,28 @@ var climateControlCapability = {
26018
26018
  targetHigh: number()
26019
26019
  }), _void(), {
26020
26020
  kind: "mutation",
26021
- auth: "admin"
26021
+ auth: "protected"
26022
26022
  }),
26023
26023
  setTargetHumidity: method(object({
26024
26024
  deviceId: number().int().nonnegative(),
26025
26025
  targetHumidity: number().min(0).max(100)
26026
26026
  }), _void(), {
26027
26027
  kind: "mutation",
26028
- auth: "admin"
26028
+ auth: "protected"
26029
26029
  }),
26030
26030
  setSwingVertical: method(object({
26031
26031
  deviceId: number().int().nonnegative(),
26032
26032
  on: boolean()
26033
26033
  }), _void(), {
26034
26034
  kind: "mutation",
26035
- auth: "admin"
26035
+ auth: "protected"
26036
26036
  }),
26037
26037
  setSwingHorizontal: method(object({
26038
26038
  deviceId: number().int().nonnegative(),
26039
26039
  on: boolean()
26040
26040
  }), _void(), {
26041
26041
  kind: "mutation",
26042
- auth: "admin"
26042
+ auth: "protected"
26043
26043
  })
26044
26044
  },
26045
26045
  status: {
@@ -26139,7 +26139,7 @@ var colorCapability = {
26139
26139
  color: ColorInputSchema
26140
26140
  }), _void(), {
26141
26141
  kind: "mutation",
26142
- auth: "admin"
26142
+ auth: "protected"
26143
26143
  }) },
26144
26144
  events: {
26145
26145
  /**
@@ -26468,7 +26468,7 @@ var controlCapability = {
26468
26468
  control: ControlSetValueInputSchema
26469
26469
  }), _void(), {
26470
26470
  kind: "mutation",
26471
- auth: "admin"
26471
+ auth: "protected"
26472
26472
  }) },
26473
26473
  status: {
26474
26474
  schema: ControlStatusSchema,
@@ -26514,29 +26514,29 @@ var coverCapability = {
26514
26514
  methods: {
26515
26515
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26516
26516
  kind: "mutation",
26517
- auth: "admin"
26517
+ auth: "protected"
26518
26518
  }),
26519
26519
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26520
26520
  kind: "mutation",
26521
- auth: "admin"
26521
+ auth: "protected"
26522
26522
  }),
26523
26523
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26524
26524
  kind: "mutation",
26525
- auth: "admin"
26525
+ auth: "protected"
26526
26526
  }),
26527
26527
  setPosition: method(object({
26528
26528
  deviceId: number().int().nonnegative(),
26529
26529
  position: number().min(0).max(100)
26530
26530
  }), _void(), {
26531
26531
  kind: "mutation",
26532
- auth: "admin"
26532
+ auth: "protected"
26533
26533
  }),
26534
26534
  setTiltPosition: method(object({
26535
26535
  deviceId: number().int().nonnegative(),
26536
26536
  tiltPosition: number().min(0).max(100)
26537
26537
  }), _void(), {
26538
26538
  kind: "mutation",
26539
- auth: "admin"
26539
+ auth: "protected"
26540
26540
  })
26541
26541
  },
26542
26542
  status: {
@@ -26922,6 +26922,59 @@ var IdentitySampleInfoSchema = object({
26922
26922
  deviceId: number().int().optional(),
26923
26923
  base64: string().optional()
26924
26924
  });
26925
+ /**
26926
+ * One enrolled sample, judged against the gallery it lives in.
26927
+ *
26928
+ * The gallery is the one input to recognition nobody re-reads: a sample
26929
+ * enrolled from the wrong face keeps voting forever, and because the matches it
26930
+ * pulls then look confident, nobody goes back. The 2026-09-08 audit found
26931
+ * exactly one such pair on this cluster — a sample scoring 0.61 against three
26932
+ * samples of ANOTHER person, enrolled from the same camera in the same minute,
26933
+ * where every other cross-identity pair sits under 0.50.
26934
+ */
26935
+ var IdentitySampleAuditRowSchema = object({
26936
+ sampleId: string(),
26937
+ enrolledAt: number().int(),
26938
+ deviceId: number().int().optional(),
26939
+ source: _enum(["detected", "photo"]),
26940
+ /** The enrolled crop's media key, so the panel can show the evidence. */
26941
+ mediaKey: string().optional(),
26942
+ /**
26943
+ * False = the sample is stamped with a DIFFERENT face model, and a cosine
26944
+ * across feature spaces is a well-formed float with no meaning. Every number
26945
+ * below then says nothing — it must read as "cannot say", never as an
26946
+ * accusation and never as a clean bill: this list ends in a Remove button.
26947
+ */
26948
+ comparable: boolean(),
26949
+ /** Mean cosine against this person's other samples. Null when there are none
26950
+ * to compare with — never 0, which would read as "opposite". */
26951
+ selfMean: number().nullable(),
26952
+ /** The other person this sample looks most like, when it looks like one.
26953
+ * This is the half that convicts: not looking like yourself can be a hard
26954
+ * angle; looking like someone the gallery can NAME is a mis-enrolment. */
26955
+ bestForeign: object({
26956
+ identityId: string(),
26957
+ name: string(),
26958
+ score: number()
26959
+ }).optional(),
26960
+ /** 0 = nothing to say. Higher = look at this one sooner. */
26961
+ suspicion: number()
26962
+ });
26963
+ var IdentitySampleAuditSchema = object({
26964
+ identityId: string(),
26965
+ name: string(),
26966
+ /** The cluster face model every comparison was made in. */
26967
+ modelId: string(),
26968
+ totalSamples: number().int(),
26969
+ comparableSamples: number().int(),
26970
+ flagged: number().int(),
26971
+ /** The bar `flagged` counts against, so the panel states the RULE and not
26972
+ * only its current result. */
26973
+ flagThreshold: number(),
26974
+ /** Worst first. A row with nothing to say still appears, at the bottom: the
26975
+ * operator asked to see the gallery, not only its accusations. */
26976
+ rows: array(IdentitySampleAuditRowSchema).readonly()
26977
+ });
26925
26978
  var FaceInfoSchema = object({
26926
26979
  faceId: string(),
26927
26980
  deviceId: number().int(),
@@ -27083,6 +27136,19 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
27083
27136
  auth: "admin"
27084
27137
  }),
27085
27138
  listIdentitySamples: method(object({ identityId: string() }), array(IdentitySampleInfoSchema).readonly()),
27139
+ /**
27140
+ * Re-analyse ONE person's enrolled samples against the whole gallery.
27141
+ *
27142
+ * A pure read — no write, no inference, just dot products over vectors the
27143
+ * hub already holds (327 of them on this cluster). `admin` for the same
27144
+ * reason `listIdentitySamples` is: the answer names every enrolled person
27145
+ * and how well one person's samples match them, which is the gallery's
27146
+ * shape and not a viewer-level fact.
27147
+ *
27148
+ * Removal deliberately stays `removeSample`: an analysis that could also
27149
+ * delete would be one confirmation away from emptying a gallery.
27150
+ */
27151
+ auditIdentitySamples: method(object({ identityId: string().min(1) }), IdentitySampleAuditSchema, { auth: "admin" }),
27086
27152
  removeSample: method(object({
27087
27153
  identityId: string(),
27088
27154
  sampleId: string()
@@ -27292,28 +27358,28 @@ var fanControlCapability = {
27292
27358
  percentage: number().min(0).max(100)
27293
27359
  }), _void(), {
27294
27360
  kind: "mutation",
27295
- auth: "admin"
27361
+ auth: "protected"
27296
27362
  }),
27297
27363
  setPreset: method(object({
27298
27364
  deviceId: number().int().nonnegative(),
27299
27365
  preset: string().min(1)
27300
27366
  }), _void(), {
27301
27367
  kind: "mutation",
27302
- auth: "admin"
27368
+ auth: "protected"
27303
27369
  }),
27304
27370
  setDirection: method(object({
27305
27371
  deviceId: number().int().nonnegative(),
27306
27372
  direction: FanDirectionSchema
27307
27373
  }), _void(), {
27308
27374
  kind: "mutation",
27309
- auth: "admin"
27375
+ auth: "protected"
27310
27376
  }),
27311
27377
  setOscillating: method(object({
27312
27378
  deviceId: number().int().nonnegative(),
27313
27379
  oscillating: boolean()
27314
27380
  }), _void(), {
27315
27381
  kind: "mutation",
27316
- auth: "admin"
27382
+ auth: "protected"
27317
27383
  })
27318
27384
  },
27319
27385
  status: {
@@ -27535,21 +27601,21 @@ var humidifierCapability = {
27535
27601
  on: boolean()
27536
27602
  }), _void(), {
27537
27603
  kind: "mutation",
27538
- auth: "admin"
27604
+ auth: "protected"
27539
27605
  }),
27540
27606
  setTargetHumidity: method(object({
27541
27607
  deviceId: number().int().nonnegative(),
27542
27608
  humidity: number().min(0).max(100)
27543
27609
  }), _void(), {
27544
27610
  kind: "mutation",
27545
- auth: "admin"
27611
+ auth: "protected"
27546
27612
  }),
27547
27613
  setMode: method(object({
27548
27614
  deviceId: number().int().nonnegative(),
27549
27615
  mode: string().min(1)
27550
27616
  }), _void(), {
27551
27617
  kind: "mutation",
27552
- auth: "admin"
27618
+ auth: "protected"
27553
27619
  })
27554
27620
  },
27555
27621
  status: {
@@ -28250,15 +28316,15 @@ var lawnMowerControlCapability = {
28250
28316
  methods: {
28251
28317
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28252
28318
  kind: "mutation",
28253
- auth: "admin"
28319
+ auth: "protected"
28254
28320
  }),
28255
28321
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28256
28322
  kind: "mutation",
28257
- auth: "admin"
28323
+ auth: "protected"
28258
28324
  }),
28259
28325
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28260
28326
  kind: "mutation",
28261
- auth: "admin"
28327
+ auth: "protected"
28262
28328
  })
28263
28329
  },
28264
28330
  status: {
@@ -28543,18 +28609,18 @@ var lockControlCapability = {
28543
28609
  code: string().min(1).optional()
28544
28610
  }), _void(), {
28545
28611
  kind: "mutation",
28546
- auth: "admin"
28612
+ auth: "protected"
28547
28613
  }),
28548
28614
  unlock: method(object({
28549
28615
  deviceId: number().int().nonnegative(),
28550
28616
  code: string().min(1).optional()
28551
28617
  }), _void(), {
28552
28618
  kind: "mutation",
28553
- auth: "admin"
28619
+ auth: "protected"
28554
28620
  }),
28555
28621
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28556
28622
  kind: "mutation",
28557
- auth: "admin"
28623
+ auth: "protected"
28558
28624
  })
28559
28625
  },
28560
28626
  status: {
@@ -28657,65 +28723,65 @@ var mediaPlayerCapability = {
28657
28723
  methods: {
28658
28724
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28659
28725
  kind: "mutation",
28660
- auth: "admin"
28726
+ auth: "protected"
28661
28727
  }),
28662
28728
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28663
28729
  kind: "mutation",
28664
- auth: "admin"
28730
+ auth: "protected"
28665
28731
  }),
28666
28732
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28667
28733
  kind: "mutation",
28668
- auth: "admin"
28734
+ auth: "protected"
28669
28735
  }),
28670
28736
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28671
28737
  kind: "mutation",
28672
- auth: "admin"
28738
+ auth: "protected"
28673
28739
  }),
28674
28740
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28675
28741
  kind: "mutation",
28676
- auth: "admin"
28742
+ auth: "protected"
28677
28743
  }),
28678
28744
  seek: method(object({
28679
28745
  deviceId: number().int().nonnegative(),
28680
28746
  positionMs: number().int().nonnegative()
28681
28747
  }), _void(), {
28682
28748
  kind: "mutation",
28683
- auth: "admin"
28749
+ auth: "protected"
28684
28750
  }),
28685
28751
  setVolume: method(object({
28686
28752
  deviceId: number().int().nonnegative(),
28687
28753
  volumeLevel: number().min(0).max(100)
28688
28754
  }), _void(), {
28689
28755
  kind: "mutation",
28690
- auth: "admin"
28756
+ auth: "protected"
28691
28757
  }),
28692
28758
  setMute: method(object({
28693
28759
  deviceId: number().int().nonnegative(),
28694
28760
  muted: boolean()
28695
28761
  }), _void(), {
28696
28762
  kind: "mutation",
28697
- auth: "admin"
28763
+ auth: "protected"
28698
28764
  }),
28699
28765
  setShuffle: method(object({
28700
28766
  deviceId: number().int().nonnegative(),
28701
28767
  shuffle: boolean()
28702
28768
  }), _void(), {
28703
28769
  kind: "mutation",
28704
- auth: "admin"
28770
+ auth: "protected"
28705
28771
  }),
28706
28772
  setRepeat: method(object({
28707
28773
  deviceId: number().int().nonnegative(),
28708
28774
  repeat: MediaPlayerRepeatSchema
28709
28775
  }), _void(), {
28710
28776
  kind: "mutation",
28711
- auth: "admin"
28777
+ auth: "protected"
28712
28778
  }),
28713
28779
  selectSource: method(object({
28714
28780
  deviceId: number().int().nonnegative(),
28715
28781
  source: string().min(1)
28716
28782
  }), _void(), {
28717
28783
  kind: "mutation",
28718
- auth: "admin"
28784
+ auth: "protected"
28719
28785
  }),
28720
28786
  playMedia: method(object({
28721
28787
  deviceId: number().int().nonnegative(),
@@ -28726,7 +28792,7 @@ var mediaPlayerCapability = {
28726
28792
  mediaType: string().min(1)
28727
28793
  }), _void(), {
28728
28794
  kind: "mutation",
28729
- auth: "admin"
28795
+ auth: "protected"
28730
28796
  })
28731
28797
  },
28732
28798
  status: {
@@ -30319,27 +30385,27 @@ var petFeederCapability = {
30319
30385
  hopper2: gramsPortion.optional()
30320
30386
  }), _void(), {
30321
30387
  kind: "mutation",
30322
- auth: "admin"
30388
+ auth: "protected"
30323
30389
  }),
30324
30390
  /** Cancel an in-progress manual feed. */
30325
30391
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30326
30392
  kind: "mutation",
30327
- auth: "admin"
30393
+ auth: "protected"
30328
30394
  }),
30329
30395
  /** Reset the desiccant "days remaining" counter after replacing it. */
30330
30396
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30331
30397
  kind: "mutation",
30332
- auth: "admin"
30398
+ auth: "protected"
30333
30399
  }),
30334
30400
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
30335
30401
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30336
30402
  kind: "mutation",
30337
- auth: "admin"
30403
+ auth: "protected"
30338
30404
  }),
30339
30405
  /** Call the pet with the recorded prompt (D3). */
30340
30406
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30341
30407
  kind: "mutation",
30342
- auth: "admin"
30408
+ auth: "protected"
30343
30409
  }),
30344
30410
  /** Play a stored sound by id (D3 / D4H / D4SH). */
30345
30411
  playSound: method(object({
@@ -30347,7 +30413,7 @@ var petFeederCapability = {
30347
30413
  soundId: number().int().nonnegative()
30348
30414
  }), _void(), {
30349
30415
  kind: "mutation",
30350
- auth: "admin"
30416
+ auth: "protected"
30351
30417
  }),
30352
30418
  /** Toggle the child-lock (manual-lock) setting. */
30353
30419
  setChildLock: method(object({
@@ -30355,7 +30421,7 @@ var petFeederCapability = {
30355
30421
  on: boolean()
30356
30422
  }), _void(), {
30357
30423
  kind: "mutation",
30358
- auth: "admin"
30424
+ auth: "protected"
30359
30425
  }),
30360
30426
  /** Toggle the front indicator light. */
30361
30427
  setIndicatorLight: method(object({
@@ -30363,7 +30429,7 @@ var petFeederCapability = {
30363
30429
  on: boolean()
30364
30430
  }), _void(), {
30365
30431
  kind: "mutation",
30366
- auth: "admin"
30432
+ auth: "protected"
30367
30433
  }),
30368
30434
  /** Toggle the dispense chime. */
30369
30435
  setFeedSound: method(object({
@@ -30371,7 +30437,7 @@ var petFeederCapability = {
30371
30437
  on: boolean()
30372
30438
  }), _void(), {
30373
30439
  kind: "mutation",
30374
- auth: "admin"
30440
+ auth: "protected"
30375
30441
  }),
30376
30442
  /** Set the speaker / prompt volume level. */
30377
30443
  setVolume: method(object({
@@ -30379,7 +30445,7 @@ var petFeederCapability = {
30379
30445
  level: number().int().nonnegative()
30380
30446
  }), _void(), {
30381
30447
  kind: "mutation",
30382
- auth: "admin"
30448
+ auth: "protected"
30383
30449
  })
30384
30450
  },
30385
30451
  status: {
@@ -32734,7 +32800,7 @@ var switchCapability = {
32734
32800
  on: boolean()
32735
32801
  }), _void(), {
32736
32802
  kind: "mutation",
32737
- auth: "admin"
32803
+ auth: "protected"
32738
32804
  }) },
32739
32805
  events: { onStateChanged: { data: object({
32740
32806
  deviceId: number(),
@@ -33722,30 +33788,30 @@ var vacuumControlCapability = {
33722
33788
  methods: {
33723
33789
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33724
33790
  kind: "mutation",
33725
- auth: "admin"
33791
+ auth: "protected"
33726
33792
  }),
33727
33793
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33728
33794
  kind: "mutation",
33729
- auth: "admin"
33795
+ auth: "protected"
33730
33796
  }),
33731
33797
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33732
33798
  kind: "mutation",
33733
- auth: "admin"
33799
+ auth: "protected"
33734
33800
  }),
33735
33801
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33736
33802
  kind: "mutation",
33737
- auth: "admin"
33803
+ auth: "protected"
33738
33804
  }),
33739
33805
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33740
33806
  kind: "mutation",
33741
- auth: "admin"
33807
+ auth: "protected"
33742
33808
  }),
33743
33809
  setFanSpeed: method(object({
33744
33810
  deviceId: number().int().nonnegative(),
33745
33811
  speed: string().min(1)
33746
33812
  }), _void(), {
33747
33813
  kind: "mutation",
33748
- auth: "admin"
33814
+ auth: "protected"
33749
33815
  })
33750
33816
  },
33751
33817
  status: {
@@ -33789,22 +33855,22 @@ var valveCapability = {
33789
33855
  methods: {
33790
33856
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33791
33857
  kind: "mutation",
33792
- auth: "admin"
33858
+ auth: "protected"
33793
33859
  }),
33794
33860
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33795
33861
  kind: "mutation",
33796
- auth: "admin"
33862
+ auth: "protected"
33797
33863
  }),
33798
33864
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33799
33865
  kind: "mutation",
33800
- auth: "admin"
33866
+ auth: "protected"
33801
33867
  }),
33802
33868
  setPosition: method(object({
33803
33869
  deviceId: number().int().nonnegative(),
33804
33870
  position: number().min(0).max(100)
33805
33871
  }), _void(), {
33806
33872
  kind: "mutation",
33807
- auth: "admin"
33873
+ auth: "protected"
33808
33874
  })
33809
33875
  },
33810
33876
  status: {
@@ -33903,21 +33969,21 @@ var waterHeaterCapability = {
33903
33969
  temp: number().finite()
33904
33970
  }), _void(), {
33905
33971
  kind: "mutation",
33906
- auth: "admin"
33972
+ auth: "protected"
33907
33973
  }),
33908
33974
  setOperationMode: method(object({
33909
33975
  deviceId: number().int().nonnegative(),
33910
33976
  mode: string().min(1)
33911
33977
  }), _void(), {
33912
33978
  kind: "mutation",
33913
- auth: "admin"
33979
+ auth: "protected"
33914
33980
  }),
33915
33981
  setAway: method(object({
33916
33982
  deviceId: number().int().nonnegative(),
33917
33983
  on: boolean()
33918
33984
  }), _void(), {
33919
33985
  kind: "mutation",
33920
- auth: "admin"
33986
+ auth: "protected"
33921
33987
  })
33922
33988
  },
33923
33989
  status: {
@@ -37427,6 +37493,12 @@ Object.freeze({
37427
37493
  addonId: null,
37428
37494
  access: "create"
37429
37495
  },
37496
+ "faceGallery.auditIdentitySamples": {
37497
+ capName: "face-gallery",
37498
+ capScope: "system",
37499
+ addonId: null,
37500
+ access: "view"
37501
+ },
37430
37502
  "faceGallery.createIdentity": {
37431
37503
  capName: "face-gallery",
37432
37504
  capScope: "system",