@camstack/addon-osd-manager 0.1.81 → 0.1.83

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/index.js CHANGED
@@ -18052,14 +18052,14 @@ var alarmPanelCapability = {
18052
18052
  code: string().min(1).optional()
18053
18053
  }), _void(), {
18054
18054
  kind: "mutation",
18055
- auth: "admin"
18055
+ auth: "protected"
18056
18056
  }),
18057
18057
  disarm: method(object({
18058
18058
  deviceId: number().int().nonnegative(),
18059
18059
  code: string().min(1).optional()
18060
18060
  }), _void(), {
18061
18061
  kind: "mutation",
18062
- auth: "admin"
18062
+ auth: "protected"
18063
18063
  }),
18064
18064
  /**
18065
18065
  * Force the panel into the `triggered` state — used by HA
@@ -18070,7 +18070,7 @@ var alarmPanelCapability = {
18070
18070
  */
18071
18071
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
18072
18072
  kind: "mutation",
18073
- auth: "admin"
18073
+ auth: "protected"
18074
18074
  })
18075
18075
  },
18076
18076
  status: {
@@ -28656,7 +28656,7 @@ var brightnessCapability = {
28656
28656
  percentage: number().min(0).max(100)
28657
28657
  }), _void(), {
28658
28658
  kind: "mutation",
28659
- auth: "admin"
28659
+ auth: "protected"
28660
28660
  }) },
28661
28661
  events: {
28662
28662
  /**
@@ -28705,7 +28705,7 @@ var buttonCapability = {
28705
28705
  deviceTypes: [DeviceType.Button],
28706
28706
  methods: { press: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28707
28707
  kind: "mutation",
28708
- auth: "admin"
28708
+ auth: "protected"
28709
28709
  }) }
28710
28710
  };
28711
28711
  /**
@@ -28922,28 +28922,28 @@ var climateControlCapability = {
28922
28922
  mode: HvacModeSchema
28923
28923
  }), _void(), {
28924
28924
  kind: "mutation",
28925
- auth: "admin"
28925
+ auth: "protected"
28926
28926
  }),
28927
28927
  setFanMode: method(object({
28928
28928
  deviceId: number().int().nonnegative(),
28929
28929
  fanMode: string().min(1)
28930
28930
  }), _void(), {
28931
28931
  kind: "mutation",
28932
- auth: "admin"
28932
+ auth: "protected"
28933
28933
  }),
28934
28934
  setPreset: method(object({
28935
28935
  deviceId: number().int().nonnegative(),
28936
28936
  preset: string().min(1)
28937
28937
  }), _void(), {
28938
28938
  kind: "mutation",
28939
- auth: "admin"
28939
+ auth: "protected"
28940
28940
  }),
28941
28941
  setTarget: method(object({
28942
28942
  deviceId: number().int().nonnegative(),
28943
28943
  target: number()
28944
28944
  }), _void(), {
28945
28945
  kind: "mutation",
28946
- auth: "admin"
28946
+ auth: "protected"
28947
28947
  }),
28948
28948
  setTargetRange: method(object({
28949
28949
  deviceId: number().int().nonnegative(),
@@ -28951,28 +28951,28 @@ var climateControlCapability = {
28951
28951
  targetHigh: number()
28952
28952
  }), _void(), {
28953
28953
  kind: "mutation",
28954
- auth: "admin"
28954
+ auth: "protected"
28955
28955
  }),
28956
28956
  setTargetHumidity: method(object({
28957
28957
  deviceId: number().int().nonnegative(),
28958
28958
  targetHumidity: number().min(0).max(100)
28959
28959
  }), _void(), {
28960
28960
  kind: "mutation",
28961
- auth: "admin"
28961
+ auth: "protected"
28962
28962
  }),
28963
28963
  setSwingVertical: method(object({
28964
28964
  deviceId: number().int().nonnegative(),
28965
28965
  on: boolean()
28966
28966
  }), _void(), {
28967
28967
  kind: "mutation",
28968
- auth: "admin"
28968
+ auth: "protected"
28969
28969
  }),
28970
28970
  setSwingHorizontal: method(object({
28971
28971
  deviceId: number().int().nonnegative(),
28972
28972
  on: boolean()
28973
28973
  }), _void(), {
28974
28974
  kind: "mutation",
28975
- auth: "admin"
28975
+ auth: "protected"
28976
28976
  })
28977
28977
  },
28978
28978
  status: {
@@ -29072,7 +29072,7 @@ var colorCapability = {
29072
29072
  color: ColorInputSchema
29073
29073
  }), _void(), {
29074
29074
  kind: "mutation",
29075
- auth: "admin"
29075
+ auth: "protected"
29076
29076
  }) },
29077
29077
  events: {
29078
29078
  /**
@@ -29409,7 +29409,7 @@ var controlCapability = {
29409
29409
  control: ControlSetValueInputSchema
29410
29410
  }), _void(), {
29411
29411
  kind: "mutation",
29412
- auth: "admin"
29412
+ auth: "protected"
29413
29413
  }) },
29414
29414
  status: {
29415
29415
  schema: ControlStatusSchema,
@@ -29455,29 +29455,29 @@ var coverCapability = {
29455
29455
  methods: {
29456
29456
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29457
29457
  kind: "mutation",
29458
- auth: "admin"
29458
+ auth: "protected"
29459
29459
  }),
29460
29460
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29461
29461
  kind: "mutation",
29462
- auth: "admin"
29462
+ auth: "protected"
29463
29463
  }),
29464
29464
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29465
29465
  kind: "mutation",
29466
- auth: "admin"
29466
+ auth: "protected"
29467
29467
  }),
29468
29468
  setPosition: method(object({
29469
29469
  deviceId: number().int().nonnegative(),
29470
29470
  position: number().min(0).max(100)
29471
29471
  }), _void(), {
29472
29472
  kind: "mutation",
29473
- auth: "admin"
29473
+ auth: "protected"
29474
29474
  }),
29475
29475
  setTiltPosition: method(object({
29476
29476
  deviceId: number().int().nonnegative(),
29477
29477
  tiltPosition: number().min(0).max(100)
29478
29478
  }), _void(), {
29479
29479
  kind: "mutation",
29480
- auth: "admin"
29480
+ auth: "protected"
29481
29481
  })
29482
29482
  },
29483
29483
  status: {
@@ -29873,6 +29873,59 @@ var IdentitySampleInfoSchema = object({
29873
29873
  deviceId: number().int().optional(),
29874
29874
  base64: string().optional()
29875
29875
  });
29876
+ /**
29877
+ * One enrolled sample, judged against the gallery it lives in.
29878
+ *
29879
+ * The gallery is the one input to recognition nobody re-reads: a sample
29880
+ * enrolled from the wrong face keeps voting forever, and because the matches it
29881
+ * pulls then look confident, nobody goes back. The 2026-09-08 audit found
29882
+ * exactly one such pair on this cluster — a sample scoring 0.61 against three
29883
+ * samples of ANOTHER person, enrolled from the same camera in the same minute,
29884
+ * where every other cross-identity pair sits under 0.50.
29885
+ */
29886
+ var IdentitySampleAuditRowSchema = object({
29887
+ sampleId: string(),
29888
+ enrolledAt: number().int(),
29889
+ deviceId: number().int().optional(),
29890
+ source: _enum(["detected", "photo"]),
29891
+ /** The enrolled crop's media key, so the panel can show the evidence. */
29892
+ mediaKey: string().optional(),
29893
+ /**
29894
+ * False = the sample is stamped with a DIFFERENT face model, and a cosine
29895
+ * across feature spaces is a well-formed float with no meaning. Every number
29896
+ * below then says nothing — it must read as "cannot say", never as an
29897
+ * accusation and never as a clean bill: this list ends in a Remove button.
29898
+ */
29899
+ comparable: boolean(),
29900
+ /** Mean cosine against this person's other samples. Null when there are none
29901
+ * to compare with — never 0, which would read as "opposite". */
29902
+ selfMean: number().nullable(),
29903
+ /** The other person this sample looks most like, when it looks like one.
29904
+ * This is the half that convicts: not looking like yourself can be a hard
29905
+ * angle; looking like someone the gallery can NAME is a mis-enrolment. */
29906
+ bestForeign: object({
29907
+ identityId: string(),
29908
+ name: string(),
29909
+ score: number()
29910
+ }).optional(),
29911
+ /** 0 = nothing to say. Higher = look at this one sooner. */
29912
+ suspicion: number()
29913
+ });
29914
+ var IdentitySampleAuditSchema = object({
29915
+ identityId: string(),
29916
+ name: string(),
29917
+ /** The cluster face model every comparison was made in. */
29918
+ modelId: string(),
29919
+ totalSamples: number().int(),
29920
+ comparableSamples: number().int(),
29921
+ flagged: number().int(),
29922
+ /** The bar `flagged` counts against, so the panel states the RULE and not
29923
+ * only its current result. */
29924
+ flagThreshold: number(),
29925
+ /** Worst first. A row with nothing to say still appears, at the bottom: the
29926
+ * operator asked to see the gallery, not only its accusations. */
29927
+ rows: array(IdentitySampleAuditRowSchema).readonly()
29928
+ });
29876
29929
  var FaceInfoSchema = object({
29877
29930
  faceId: string(),
29878
29931
  deviceId: number().int(),
@@ -30034,6 +30087,19 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
30034
30087
  auth: "admin"
30035
30088
  }),
30036
30089
  listIdentitySamples: method(object({ identityId: string() }), array(IdentitySampleInfoSchema).readonly()),
30090
+ /**
30091
+ * Re-analyse ONE person's enrolled samples against the whole gallery.
30092
+ *
30093
+ * A pure read — no write, no inference, just dot products over vectors the
30094
+ * hub already holds (327 of them on this cluster). `admin` for the same
30095
+ * reason `listIdentitySamples` is: the answer names every enrolled person
30096
+ * and how well one person's samples match them, which is the gallery's
30097
+ * shape and not a viewer-level fact.
30098
+ *
30099
+ * Removal deliberately stays `removeSample`: an analysis that could also
30100
+ * delete would be one confirmation away from emptying a gallery.
30101
+ */
30102
+ auditIdentitySamples: method(object({ identityId: string().min(1) }), IdentitySampleAuditSchema, { auth: "admin" }),
30037
30103
  removeSample: method(object({
30038
30104
  identityId: string(),
30039
30105
  sampleId: string()
@@ -30243,28 +30309,28 @@ var fanControlCapability = {
30243
30309
  percentage: number().min(0).max(100)
30244
30310
  }), _void(), {
30245
30311
  kind: "mutation",
30246
- auth: "admin"
30312
+ auth: "protected"
30247
30313
  }),
30248
30314
  setPreset: method(object({
30249
30315
  deviceId: number().int().nonnegative(),
30250
30316
  preset: string().min(1)
30251
30317
  }), _void(), {
30252
30318
  kind: "mutation",
30253
- auth: "admin"
30319
+ auth: "protected"
30254
30320
  }),
30255
30321
  setDirection: method(object({
30256
30322
  deviceId: number().int().nonnegative(),
30257
30323
  direction: FanDirectionSchema
30258
30324
  }), _void(), {
30259
30325
  kind: "mutation",
30260
- auth: "admin"
30326
+ auth: "protected"
30261
30327
  }),
30262
30328
  setOscillating: method(object({
30263
30329
  deviceId: number().int().nonnegative(),
30264
30330
  oscillating: boolean()
30265
30331
  }), _void(), {
30266
30332
  kind: "mutation",
30267
- auth: "admin"
30333
+ auth: "protected"
30268
30334
  })
30269
30335
  },
30270
30336
  status: {
@@ -30486,21 +30552,21 @@ var humidifierCapability = {
30486
30552
  on: boolean()
30487
30553
  }), _void(), {
30488
30554
  kind: "mutation",
30489
- auth: "admin"
30555
+ auth: "protected"
30490
30556
  }),
30491
30557
  setTargetHumidity: method(object({
30492
30558
  deviceId: number().int().nonnegative(),
30493
30559
  humidity: number().min(0).max(100)
30494
30560
  }), _void(), {
30495
30561
  kind: "mutation",
30496
- auth: "admin"
30562
+ auth: "protected"
30497
30563
  }),
30498
30564
  setMode: method(object({
30499
30565
  deviceId: number().int().nonnegative(),
30500
30566
  mode: string().min(1)
30501
30567
  }), _void(), {
30502
30568
  kind: "mutation",
30503
- auth: "admin"
30569
+ auth: "protected"
30504
30570
  })
30505
30571
  },
30506
30572
  status: {
@@ -31219,15 +31285,15 @@ var lawnMowerControlCapability = {
31219
31285
  methods: {
31220
31286
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31221
31287
  kind: "mutation",
31222
- auth: "admin"
31288
+ auth: "protected"
31223
31289
  }),
31224
31290
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31225
31291
  kind: "mutation",
31226
- auth: "admin"
31292
+ auth: "protected"
31227
31293
  }),
31228
31294
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31229
31295
  kind: "mutation",
31230
- auth: "admin"
31296
+ auth: "protected"
31231
31297
  })
31232
31298
  },
31233
31299
  status: {
@@ -31629,18 +31695,18 @@ var lockControlCapability = {
31629
31695
  code: string().min(1).optional()
31630
31696
  }), _void(), {
31631
31697
  kind: "mutation",
31632
- auth: "admin"
31698
+ auth: "protected"
31633
31699
  }),
31634
31700
  unlock: method(object({
31635
31701
  deviceId: number().int().nonnegative(),
31636
31702
  code: string().min(1).optional()
31637
31703
  }), _void(), {
31638
31704
  kind: "mutation",
31639
- auth: "admin"
31705
+ auth: "protected"
31640
31706
  }),
31641
31707
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31642
31708
  kind: "mutation",
31643
- auth: "admin"
31709
+ auth: "protected"
31644
31710
  })
31645
31711
  },
31646
31712
  status: {
@@ -31743,65 +31809,65 @@ var mediaPlayerCapability = {
31743
31809
  methods: {
31744
31810
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31745
31811
  kind: "mutation",
31746
- auth: "admin"
31812
+ auth: "protected"
31747
31813
  }),
31748
31814
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31749
31815
  kind: "mutation",
31750
- auth: "admin"
31816
+ auth: "protected"
31751
31817
  }),
31752
31818
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31753
31819
  kind: "mutation",
31754
- auth: "admin"
31820
+ auth: "protected"
31755
31821
  }),
31756
31822
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31757
31823
  kind: "mutation",
31758
- auth: "admin"
31824
+ auth: "protected"
31759
31825
  }),
31760
31826
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31761
31827
  kind: "mutation",
31762
- auth: "admin"
31828
+ auth: "protected"
31763
31829
  }),
31764
31830
  seek: method(object({
31765
31831
  deviceId: number().int().nonnegative(),
31766
31832
  positionMs: number().int().nonnegative()
31767
31833
  }), _void(), {
31768
31834
  kind: "mutation",
31769
- auth: "admin"
31835
+ auth: "protected"
31770
31836
  }),
31771
31837
  setVolume: method(object({
31772
31838
  deviceId: number().int().nonnegative(),
31773
31839
  volumeLevel: number().min(0).max(100)
31774
31840
  }), _void(), {
31775
31841
  kind: "mutation",
31776
- auth: "admin"
31842
+ auth: "protected"
31777
31843
  }),
31778
31844
  setMute: method(object({
31779
31845
  deviceId: number().int().nonnegative(),
31780
31846
  muted: boolean()
31781
31847
  }), _void(), {
31782
31848
  kind: "mutation",
31783
- auth: "admin"
31849
+ auth: "protected"
31784
31850
  }),
31785
31851
  setShuffle: method(object({
31786
31852
  deviceId: number().int().nonnegative(),
31787
31853
  shuffle: boolean()
31788
31854
  }), _void(), {
31789
31855
  kind: "mutation",
31790
- auth: "admin"
31856
+ auth: "protected"
31791
31857
  }),
31792
31858
  setRepeat: method(object({
31793
31859
  deviceId: number().int().nonnegative(),
31794
31860
  repeat: MediaPlayerRepeatSchema
31795
31861
  }), _void(), {
31796
31862
  kind: "mutation",
31797
- auth: "admin"
31863
+ auth: "protected"
31798
31864
  }),
31799
31865
  selectSource: method(object({
31800
31866
  deviceId: number().int().nonnegative(),
31801
31867
  source: string().min(1)
31802
31868
  }), _void(), {
31803
31869
  kind: "mutation",
31804
- auth: "admin"
31870
+ auth: "protected"
31805
31871
  }),
31806
31872
  playMedia: method(object({
31807
31873
  deviceId: number().int().nonnegative(),
@@ -31812,7 +31878,7 @@ var mediaPlayerCapability = {
31812
31878
  mediaType: string().min(1)
31813
31879
  }), _void(), {
31814
31880
  kind: "mutation",
31815
- auth: "admin"
31881
+ auth: "protected"
31816
31882
  })
31817
31883
  },
31818
31884
  status: {
@@ -33612,27 +33678,27 @@ var petFeederCapability = {
33612
33678
  hopper2: gramsPortion.optional()
33613
33679
  }), _void(), {
33614
33680
  kind: "mutation",
33615
- auth: "admin"
33681
+ auth: "protected"
33616
33682
  }),
33617
33683
  /** Cancel an in-progress manual feed. */
33618
33684
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33619
33685
  kind: "mutation",
33620
- auth: "admin"
33686
+ auth: "protected"
33621
33687
  }),
33622
33688
  /** Reset the desiccant "days remaining" counter after replacing it. */
33623
33689
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33624
33690
  kind: "mutation",
33625
- auth: "admin"
33691
+ auth: "protected"
33626
33692
  }),
33627
33693
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
33628
33694
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33629
33695
  kind: "mutation",
33630
- auth: "admin"
33696
+ auth: "protected"
33631
33697
  }),
33632
33698
  /** Call the pet with the recorded prompt (D3). */
33633
33699
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33634
33700
  kind: "mutation",
33635
- auth: "admin"
33701
+ auth: "protected"
33636
33702
  }),
33637
33703
  /** Play a stored sound by id (D3 / D4H / D4SH). */
33638
33704
  playSound: method(object({
@@ -33640,7 +33706,7 @@ var petFeederCapability = {
33640
33706
  soundId: number().int().nonnegative()
33641
33707
  }), _void(), {
33642
33708
  kind: "mutation",
33643
- auth: "admin"
33709
+ auth: "protected"
33644
33710
  }),
33645
33711
  /** Toggle the child-lock (manual-lock) setting. */
33646
33712
  setChildLock: method(object({
@@ -33648,7 +33714,7 @@ var petFeederCapability = {
33648
33714
  on: boolean()
33649
33715
  }), _void(), {
33650
33716
  kind: "mutation",
33651
- auth: "admin"
33717
+ auth: "protected"
33652
33718
  }),
33653
33719
  /** Toggle the front indicator light. */
33654
33720
  setIndicatorLight: method(object({
@@ -33656,7 +33722,7 @@ var petFeederCapability = {
33656
33722
  on: boolean()
33657
33723
  }), _void(), {
33658
33724
  kind: "mutation",
33659
- auth: "admin"
33725
+ auth: "protected"
33660
33726
  }),
33661
33727
  /** Toggle the dispense chime. */
33662
33728
  setFeedSound: method(object({
@@ -33664,7 +33730,7 @@ var petFeederCapability = {
33664
33730
  on: boolean()
33665
33731
  }), _void(), {
33666
33732
  kind: "mutation",
33667
- auth: "admin"
33733
+ auth: "protected"
33668
33734
  }),
33669
33735
  /** Set the speaker / prompt volume level. */
33670
33736
  setVolume: method(object({
@@ -33672,7 +33738,7 @@ var petFeederCapability = {
33672
33738
  level: number().int().nonnegative()
33673
33739
  }), _void(), {
33674
33740
  kind: "mutation",
33675
- auth: "admin"
33741
+ auth: "protected"
33676
33742
  })
33677
33743
  },
33678
33744
  status: {
@@ -36285,7 +36351,7 @@ var switchCapability = {
36285
36351
  on: boolean()
36286
36352
  }), _void(), {
36287
36353
  kind: "mutation",
36288
- auth: "admin"
36354
+ auth: "protected"
36289
36355
  }) },
36290
36356
  events: { onStateChanged: { data: object({
36291
36357
  deviceId: number(),
@@ -37424,30 +37490,30 @@ var vacuumControlCapability = {
37424
37490
  methods: {
37425
37491
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37426
37492
  kind: "mutation",
37427
- auth: "admin"
37493
+ auth: "protected"
37428
37494
  }),
37429
37495
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37430
37496
  kind: "mutation",
37431
- auth: "admin"
37497
+ auth: "protected"
37432
37498
  }),
37433
37499
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37434
37500
  kind: "mutation",
37435
- auth: "admin"
37501
+ auth: "protected"
37436
37502
  }),
37437
37503
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37438
37504
  kind: "mutation",
37439
- auth: "admin"
37505
+ auth: "protected"
37440
37506
  }),
37441
37507
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37442
37508
  kind: "mutation",
37443
- auth: "admin"
37509
+ auth: "protected"
37444
37510
  }),
37445
37511
  setFanSpeed: method(object({
37446
37512
  deviceId: number().int().nonnegative(),
37447
37513
  speed: string().min(1)
37448
37514
  }), _void(), {
37449
37515
  kind: "mutation",
37450
- auth: "admin"
37516
+ auth: "protected"
37451
37517
  })
37452
37518
  },
37453
37519
  status: {
@@ -37491,22 +37557,22 @@ var valveCapability = {
37491
37557
  methods: {
37492
37558
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37493
37559
  kind: "mutation",
37494
- auth: "admin"
37560
+ auth: "protected"
37495
37561
  }),
37496
37562
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37497
37563
  kind: "mutation",
37498
- auth: "admin"
37564
+ auth: "protected"
37499
37565
  }),
37500
37566
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37501
37567
  kind: "mutation",
37502
- auth: "admin"
37568
+ auth: "protected"
37503
37569
  }),
37504
37570
  setPosition: method(object({
37505
37571
  deviceId: number().int().nonnegative(),
37506
37572
  position: number().min(0).max(100)
37507
37573
  }), _void(), {
37508
37574
  kind: "mutation",
37509
- auth: "admin"
37575
+ auth: "protected"
37510
37576
  })
37511
37577
  },
37512
37578
  status: {
@@ -37605,21 +37671,21 @@ var waterHeaterCapability = {
37605
37671
  temp: number().finite()
37606
37672
  }), _void(), {
37607
37673
  kind: "mutation",
37608
- auth: "admin"
37674
+ auth: "protected"
37609
37675
  }),
37610
37676
  setOperationMode: method(object({
37611
37677
  deviceId: number().int().nonnegative(),
37612
37678
  mode: string().min(1)
37613
37679
  }), _void(), {
37614
37680
  kind: "mutation",
37615
- auth: "admin"
37681
+ auth: "protected"
37616
37682
  }),
37617
37683
  setAway: method(object({
37618
37684
  deviceId: number().int().nonnegative(),
37619
37685
  on: boolean()
37620
37686
  }), _void(), {
37621
37687
  kind: "mutation",
37622
- auth: "admin"
37688
+ auth: "protected"
37623
37689
  })
37624
37690
  },
37625
37691
  status: {
@@ -40118,6 +40184,12 @@ Object.freeze({
40118
40184
  addonId: null,
40119
40185
  access: "create"
40120
40186
  },
40187
+ "faceGallery.auditIdentitySamples": {
40188
+ capName: "face-gallery",
40189
+ capScope: "system",
40190
+ addonId: null,
40191
+ access: "view"
40192
+ },
40121
40193
  "faceGallery.createIdentity": {
40122
40194
  capName: "face-gallery",
40123
40195
  capScope: "system",