@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.mjs CHANGED
@@ -18048,14 +18048,14 @@ var alarmPanelCapability = {
18048
18048
  code: string().min(1).optional()
18049
18049
  }), _void(), {
18050
18050
  kind: "mutation",
18051
- auth: "admin"
18051
+ auth: "protected"
18052
18052
  }),
18053
18053
  disarm: method(object({
18054
18054
  deviceId: number().int().nonnegative(),
18055
18055
  code: string().min(1).optional()
18056
18056
  }), _void(), {
18057
18057
  kind: "mutation",
18058
- auth: "admin"
18058
+ auth: "protected"
18059
18059
  }),
18060
18060
  /**
18061
18061
  * Force the panel into the `triggered` state — used by HA
@@ -18066,7 +18066,7 @@ var alarmPanelCapability = {
18066
18066
  */
18067
18067
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
18068
18068
  kind: "mutation",
18069
- auth: "admin"
18069
+ auth: "protected"
18070
18070
  })
18071
18071
  },
18072
18072
  status: {
@@ -28652,7 +28652,7 @@ var brightnessCapability = {
28652
28652
  percentage: number().min(0).max(100)
28653
28653
  }), _void(), {
28654
28654
  kind: "mutation",
28655
- auth: "admin"
28655
+ auth: "protected"
28656
28656
  }) },
28657
28657
  events: {
28658
28658
  /**
@@ -28701,7 +28701,7 @@ var buttonCapability = {
28701
28701
  deviceTypes: [DeviceType.Button],
28702
28702
  methods: { press: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28703
28703
  kind: "mutation",
28704
- auth: "admin"
28704
+ auth: "protected"
28705
28705
  }) }
28706
28706
  };
28707
28707
  /**
@@ -28918,28 +28918,28 @@ var climateControlCapability = {
28918
28918
  mode: HvacModeSchema
28919
28919
  }), _void(), {
28920
28920
  kind: "mutation",
28921
- auth: "admin"
28921
+ auth: "protected"
28922
28922
  }),
28923
28923
  setFanMode: method(object({
28924
28924
  deviceId: number().int().nonnegative(),
28925
28925
  fanMode: string().min(1)
28926
28926
  }), _void(), {
28927
28927
  kind: "mutation",
28928
- auth: "admin"
28928
+ auth: "protected"
28929
28929
  }),
28930
28930
  setPreset: method(object({
28931
28931
  deviceId: number().int().nonnegative(),
28932
28932
  preset: string().min(1)
28933
28933
  }), _void(), {
28934
28934
  kind: "mutation",
28935
- auth: "admin"
28935
+ auth: "protected"
28936
28936
  }),
28937
28937
  setTarget: method(object({
28938
28938
  deviceId: number().int().nonnegative(),
28939
28939
  target: number()
28940
28940
  }), _void(), {
28941
28941
  kind: "mutation",
28942
- auth: "admin"
28942
+ auth: "protected"
28943
28943
  }),
28944
28944
  setTargetRange: method(object({
28945
28945
  deviceId: number().int().nonnegative(),
@@ -28947,28 +28947,28 @@ var climateControlCapability = {
28947
28947
  targetHigh: number()
28948
28948
  }), _void(), {
28949
28949
  kind: "mutation",
28950
- auth: "admin"
28950
+ auth: "protected"
28951
28951
  }),
28952
28952
  setTargetHumidity: method(object({
28953
28953
  deviceId: number().int().nonnegative(),
28954
28954
  targetHumidity: number().min(0).max(100)
28955
28955
  }), _void(), {
28956
28956
  kind: "mutation",
28957
- auth: "admin"
28957
+ auth: "protected"
28958
28958
  }),
28959
28959
  setSwingVertical: method(object({
28960
28960
  deviceId: number().int().nonnegative(),
28961
28961
  on: boolean()
28962
28962
  }), _void(), {
28963
28963
  kind: "mutation",
28964
- auth: "admin"
28964
+ auth: "protected"
28965
28965
  }),
28966
28966
  setSwingHorizontal: method(object({
28967
28967
  deviceId: number().int().nonnegative(),
28968
28968
  on: boolean()
28969
28969
  }), _void(), {
28970
28970
  kind: "mutation",
28971
- auth: "admin"
28971
+ auth: "protected"
28972
28972
  })
28973
28973
  },
28974
28974
  status: {
@@ -29068,7 +29068,7 @@ var colorCapability = {
29068
29068
  color: ColorInputSchema
29069
29069
  }), _void(), {
29070
29070
  kind: "mutation",
29071
- auth: "admin"
29071
+ auth: "protected"
29072
29072
  }) },
29073
29073
  events: {
29074
29074
  /**
@@ -29405,7 +29405,7 @@ var controlCapability = {
29405
29405
  control: ControlSetValueInputSchema
29406
29406
  }), _void(), {
29407
29407
  kind: "mutation",
29408
- auth: "admin"
29408
+ auth: "protected"
29409
29409
  }) },
29410
29410
  status: {
29411
29411
  schema: ControlStatusSchema,
@@ -29451,29 +29451,29 @@ var coverCapability = {
29451
29451
  methods: {
29452
29452
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29453
29453
  kind: "mutation",
29454
- auth: "admin"
29454
+ auth: "protected"
29455
29455
  }),
29456
29456
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29457
29457
  kind: "mutation",
29458
- auth: "admin"
29458
+ auth: "protected"
29459
29459
  }),
29460
29460
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29461
29461
  kind: "mutation",
29462
- auth: "admin"
29462
+ auth: "protected"
29463
29463
  }),
29464
29464
  setPosition: method(object({
29465
29465
  deviceId: number().int().nonnegative(),
29466
29466
  position: number().min(0).max(100)
29467
29467
  }), _void(), {
29468
29468
  kind: "mutation",
29469
- auth: "admin"
29469
+ auth: "protected"
29470
29470
  }),
29471
29471
  setTiltPosition: method(object({
29472
29472
  deviceId: number().int().nonnegative(),
29473
29473
  tiltPosition: number().min(0).max(100)
29474
29474
  }), _void(), {
29475
29475
  kind: "mutation",
29476
- auth: "admin"
29476
+ auth: "protected"
29477
29477
  })
29478
29478
  },
29479
29479
  status: {
@@ -29869,6 +29869,59 @@ var IdentitySampleInfoSchema = object({
29869
29869
  deviceId: number().int().optional(),
29870
29870
  base64: string().optional()
29871
29871
  });
29872
+ /**
29873
+ * One enrolled sample, judged against the gallery it lives in.
29874
+ *
29875
+ * The gallery is the one input to recognition nobody re-reads: a sample
29876
+ * enrolled from the wrong face keeps voting forever, and because the matches it
29877
+ * pulls then look confident, nobody goes back. The 2026-09-08 audit found
29878
+ * exactly one such pair on this cluster — a sample scoring 0.61 against three
29879
+ * samples of ANOTHER person, enrolled from the same camera in the same minute,
29880
+ * where every other cross-identity pair sits under 0.50.
29881
+ */
29882
+ var IdentitySampleAuditRowSchema = object({
29883
+ sampleId: string(),
29884
+ enrolledAt: number().int(),
29885
+ deviceId: number().int().optional(),
29886
+ source: _enum(["detected", "photo"]),
29887
+ /** The enrolled crop's media key, so the panel can show the evidence. */
29888
+ mediaKey: string().optional(),
29889
+ /**
29890
+ * False = the sample is stamped with a DIFFERENT face model, and a cosine
29891
+ * across feature spaces is a well-formed float with no meaning. Every number
29892
+ * below then says nothing — it must read as "cannot say", never as an
29893
+ * accusation and never as a clean bill: this list ends in a Remove button.
29894
+ */
29895
+ comparable: boolean(),
29896
+ /** Mean cosine against this person's other samples. Null when there are none
29897
+ * to compare with — never 0, which would read as "opposite". */
29898
+ selfMean: number().nullable(),
29899
+ /** The other person this sample looks most like, when it looks like one.
29900
+ * This is the half that convicts: not looking like yourself can be a hard
29901
+ * angle; looking like someone the gallery can NAME is a mis-enrolment. */
29902
+ bestForeign: object({
29903
+ identityId: string(),
29904
+ name: string(),
29905
+ score: number()
29906
+ }).optional(),
29907
+ /** 0 = nothing to say. Higher = look at this one sooner. */
29908
+ suspicion: number()
29909
+ });
29910
+ var IdentitySampleAuditSchema = object({
29911
+ identityId: string(),
29912
+ name: string(),
29913
+ /** The cluster face model every comparison was made in. */
29914
+ modelId: string(),
29915
+ totalSamples: number().int(),
29916
+ comparableSamples: number().int(),
29917
+ flagged: number().int(),
29918
+ /** The bar `flagged` counts against, so the panel states the RULE and not
29919
+ * only its current result. */
29920
+ flagThreshold: number(),
29921
+ /** Worst first. A row with nothing to say still appears, at the bottom: the
29922
+ * operator asked to see the gallery, not only its accusations. */
29923
+ rows: array(IdentitySampleAuditRowSchema).readonly()
29924
+ });
29872
29925
  var FaceInfoSchema = object({
29873
29926
  faceId: string(),
29874
29927
  deviceId: number().int(),
@@ -30030,6 +30083,19 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
30030
30083
  auth: "admin"
30031
30084
  }),
30032
30085
  listIdentitySamples: method(object({ identityId: string() }), array(IdentitySampleInfoSchema).readonly()),
30086
+ /**
30087
+ * Re-analyse ONE person's enrolled samples against the whole gallery.
30088
+ *
30089
+ * A pure read — no write, no inference, just dot products over vectors the
30090
+ * hub already holds (327 of them on this cluster). `admin` for the same
30091
+ * reason `listIdentitySamples` is: the answer names every enrolled person
30092
+ * and how well one person's samples match them, which is the gallery's
30093
+ * shape and not a viewer-level fact.
30094
+ *
30095
+ * Removal deliberately stays `removeSample`: an analysis that could also
30096
+ * delete would be one confirmation away from emptying a gallery.
30097
+ */
30098
+ auditIdentitySamples: method(object({ identityId: string().min(1) }), IdentitySampleAuditSchema, { auth: "admin" }),
30033
30099
  removeSample: method(object({
30034
30100
  identityId: string(),
30035
30101
  sampleId: string()
@@ -30239,28 +30305,28 @@ var fanControlCapability = {
30239
30305
  percentage: number().min(0).max(100)
30240
30306
  }), _void(), {
30241
30307
  kind: "mutation",
30242
- auth: "admin"
30308
+ auth: "protected"
30243
30309
  }),
30244
30310
  setPreset: method(object({
30245
30311
  deviceId: number().int().nonnegative(),
30246
30312
  preset: string().min(1)
30247
30313
  }), _void(), {
30248
30314
  kind: "mutation",
30249
- auth: "admin"
30315
+ auth: "protected"
30250
30316
  }),
30251
30317
  setDirection: method(object({
30252
30318
  deviceId: number().int().nonnegative(),
30253
30319
  direction: FanDirectionSchema
30254
30320
  }), _void(), {
30255
30321
  kind: "mutation",
30256
- auth: "admin"
30322
+ auth: "protected"
30257
30323
  }),
30258
30324
  setOscillating: method(object({
30259
30325
  deviceId: number().int().nonnegative(),
30260
30326
  oscillating: boolean()
30261
30327
  }), _void(), {
30262
30328
  kind: "mutation",
30263
- auth: "admin"
30329
+ auth: "protected"
30264
30330
  })
30265
30331
  },
30266
30332
  status: {
@@ -30482,21 +30548,21 @@ var humidifierCapability = {
30482
30548
  on: boolean()
30483
30549
  }), _void(), {
30484
30550
  kind: "mutation",
30485
- auth: "admin"
30551
+ auth: "protected"
30486
30552
  }),
30487
30553
  setTargetHumidity: method(object({
30488
30554
  deviceId: number().int().nonnegative(),
30489
30555
  humidity: number().min(0).max(100)
30490
30556
  }), _void(), {
30491
30557
  kind: "mutation",
30492
- auth: "admin"
30558
+ auth: "protected"
30493
30559
  }),
30494
30560
  setMode: method(object({
30495
30561
  deviceId: number().int().nonnegative(),
30496
30562
  mode: string().min(1)
30497
30563
  }), _void(), {
30498
30564
  kind: "mutation",
30499
- auth: "admin"
30565
+ auth: "protected"
30500
30566
  })
30501
30567
  },
30502
30568
  status: {
@@ -31215,15 +31281,15 @@ var lawnMowerControlCapability = {
31215
31281
  methods: {
31216
31282
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31217
31283
  kind: "mutation",
31218
- auth: "admin"
31284
+ auth: "protected"
31219
31285
  }),
31220
31286
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31221
31287
  kind: "mutation",
31222
- auth: "admin"
31288
+ auth: "protected"
31223
31289
  }),
31224
31290
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31225
31291
  kind: "mutation",
31226
- auth: "admin"
31292
+ auth: "protected"
31227
31293
  })
31228
31294
  },
31229
31295
  status: {
@@ -31625,18 +31691,18 @@ var lockControlCapability = {
31625
31691
  code: string().min(1).optional()
31626
31692
  }), _void(), {
31627
31693
  kind: "mutation",
31628
- auth: "admin"
31694
+ auth: "protected"
31629
31695
  }),
31630
31696
  unlock: method(object({
31631
31697
  deviceId: number().int().nonnegative(),
31632
31698
  code: string().min(1).optional()
31633
31699
  }), _void(), {
31634
31700
  kind: "mutation",
31635
- auth: "admin"
31701
+ auth: "protected"
31636
31702
  }),
31637
31703
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31638
31704
  kind: "mutation",
31639
- auth: "admin"
31705
+ auth: "protected"
31640
31706
  })
31641
31707
  },
31642
31708
  status: {
@@ -31739,65 +31805,65 @@ var mediaPlayerCapability = {
31739
31805
  methods: {
31740
31806
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31741
31807
  kind: "mutation",
31742
- auth: "admin"
31808
+ auth: "protected"
31743
31809
  }),
31744
31810
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31745
31811
  kind: "mutation",
31746
- auth: "admin"
31812
+ auth: "protected"
31747
31813
  }),
31748
31814
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31749
31815
  kind: "mutation",
31750
- auth: "admin"
31816
+ auth: "protected"
31751
31817
  }),
31752
31818
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31753
31819
  kind: "mutation",
31754
- auth: "admin"
31820
+ auth: "protected"
31755
31821
  }),
31756
31822
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31757
31823
  kind: "mutation",
31758
- auth: "admin"
31824
+ auth: "protected"
31759
31825
  }),
31760
31826
  seek: method(object({
31761
31827
  deviceId: number().int().nonnegative(),
31762
31828
  positionMs: number().int().nonnegative()
31763
31829
  }), _void(), {
31764
31830
  kind: "mutation",
31765
- auth: "admin"
31831
+ auth: "protected"
31766
31832
  }),
31767
31833
  setVolume: method(object({
31768
31834
  deviceId: number().int().nonnegative(),
31769
31835
  volumeLevel: number().min(0).max(100)
31770
31836
  }), _void(), {
31771
31837
  kind: "mutation",
31772
- auth: "admin"
31838
+ auth: "protected"
31773
31839
  }),
31774
31840
  setMute: method(object({
31775
31841
  deviceId: number().int().nonnegative(),
31776
31842
  muted: boolean()
31777
31843
  }), _void(), {
31778
31844
  kind: "mutation",
31779
- auth: "admin"
31845
+ auth: "protected"
31780
31846
  }),
31781
31847
  setShuffle: method(object({
31782
31848
  deviceId: number().int().nonnegative(),
31783
31849
  shuffle: boolean()
31784
31850
  }), _void(), {
31785
31851
  kind: "mutation",
31786
- auth: "admin"
31852
+ auth: "protected"
31787
31853
  }),
31788
31854
  setRepeat: method(object({
31789
31855
  deviceId: number().int().nonnegative(),
31790
31856
  repeat: MediaPlayerRepeatSchema
31791
31857
  }), _void(), {
31792
31858
  kind: "mutation",
31793
- auth: "admin"
31859
+ auth: "protected"
31794
31860
  }),
31795
31861
  selectSource: method(object({
31796
31862
  deviceId: number().int().nonnegative(),
31797
31863
  source: string().min(1)
31798
31864
  }), _void(), {
31799
31865
  kind: "mutation",
31800
- auth: "admin"
31866
+ auth: "protected"
31801
31867
  }),
31802
31868
  playMedia: method(object({
31803
31869
  deviceId: number().int().nonnegative(),
@@ -31808,7 +31874,7 @@ var mediaPlayerCapability = {
31808
31874
  mediaType: string().min(1)
31809
31875
  }), _void(), {
31810
31876
  kind: "mutation",
31811
- auth: "admin"
31877
+ auth: "protected"
31812
31878
  })
31813
31879
  },
31814
31880
  status: {
@@ -33608,27 +33674,27 @@ var petFeederCapability = {
33608
33674
  hopper2: gramsPortion.optional()
33609
33675
  }), _void(), {
33610
33676
  kind: "mutation",
33611
- auth: "admin"
33677
+ auth: "protected"
33612
33678
  }),
33613
33679
  /** Cancel an in-progress manual feed. */
33614
33680
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33615
33681
  kind: "mutation",
33616
- auth: "admin"
33682
+ auth: "protected"
33617
33683
  }),
33618
33684
  /** Reset the desiccant "days remaining" counter after replacing it. */
33619
33685
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33620
33686
  kind: "mutation",
33621
- auth: "admin"
33687
+ auth: "protected"
33622
33688
  }),
33623
33689
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
33624
33690
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33625
33691
  kind: "mutation",
33626
- auth: "admin"
33692
+ auth: "protected"
33627
33693
  }),
33628
33694
  /** Call the pet with the recorded prompt (D3). */
33629
33695
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33630
33696
  kind: "mutation",
33631
- auth: "admin"
33697
+ auth: "protected"
33632
33698
  }),
33633
33699
  /** Play a stored sound by id (D3 / D4H / D4SH). */
33634
33700
  playSound: method(object({
@@ -33636,7 +33702,7 @@ var petFeederCapability = {
33636
33702
  soundId: number().int().nonnegative()
33637
33703
  }), _void(), {
33638
33704
  kind: "mutation",
33639
- auth: "admin"
33705
+ auth: "protected"
33640
33706
  }),
33641
33707
  /** Toggle the child-lock (manual-lock) setting. */
33642
33708
  setChildLock: method(object({
@@ -33644,7 +33710,7 @@ var petFeederCapability = {
33644
33710
  on: boolean()
33645
33711
  }), _void(), {
33646
33712
  kind: "mutation",
33647
- auth: "admin"
33713
+ auth: "protected"
33648
33714
  }),
33649
33715
  /** Toggle the front indicator light. */
33650
33716
  setIndicatorLight: method(object({
@@ -33652,7 +33718,7 @@ var petFeederCapability = {
33652
33718
  on: boolean()
33653
33719
  }), _void(), {
33654
33720
  kind: "mutation",
33655
- auth: "admin"
33721
+ auth: "protected"
33656
33722
  }),
33657
33723
  /** Toggle the dispense chime. */
33658
33724
  setFeedSound: method(object({
@@ -33660,7 +33726,7 @@ var petFeederCapability = {
33660
33726
  on: boolean()
33661
33727
  }), _void(), {
33662
33728
  kind: "mutation",
33663
- auth: "admin"
33729
+ auth: "protected"
33664
33730
  }),
33665
33731
  /** Set the speaker / prompt volume level. */
33666
33732
  setVolume: method(object({
@@ -33668,7 +33734,7 @@ var petFeederCapability = {
33668
33734
  level: number().int().nonnegative()
33669
33735
  }), _void(), {
33670
33736
  kind: "mutation",
33671
- auth: "admin"
33737
+ auth: "protected"
33672
33738
  })
33673
33739
  },
33674
33740
  status: {
@@ -36281,7 +36347,7 @@ var switchCapability = {
36281
36347
  on: boolean()
36282
36348
  }), _void(), {
36283
36349
  kind: "mutation",
36284
- auth: "admin"
36350
+ auth: "protected"
36285
36351
  }) },
36286
36352
  events: { onStateChanged: { data: object({
36287
36353
  deviceId: number(),
@@ -37420,30 +37486,30 @@ var vacuumControlCapability = {
37420
37486
  methods: {
37421
37487
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37422
37488
  kind: "mutation",
37423
- auth: "admin"
37489
+ auth: "protected"
37424
37490
  }),
37425
37491
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37426
37492
  kind: "mutation",
37427
- auth: "admin"
37493
+ auth: "protected"
37428
37494
  }),
37429
37495
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37430
37496
  kind: "mutation",
37431
- auth: "admin"
37497
+ auth: "protected"
37432
37498
  }),
37433
37499
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37434
37500
  kind: "mutation",
37435
- auth: "admin"
37501
+ auth: "protected"
37436
37502
  }),
37437
37503
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37438
37504
  kind: "mutation",
37439
- auth: "admin"
37505
+ auth: "protected"
37440
37506
  }),
37441
37507
  setFanSpeed: method(object({
37442
37508
  deviceId: number().int().nonnegative(),
37443
37509
  speed: string().min(1)
37444
37510
  }), _void(), {
37445
37511
  kind: "mutation",
37446
- auth: "admin"
37512
+ auth: "protected"
37447
37513
  })
37448
37514
  },
37449
37515
  status: {
@@ -37487,22 +37553,22 @@ var valveCapability = {
37487
37553
  methods: {
37488
37554
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37489
37555
  kind: "mutation",
37490
- auth: "admin"
37556
+ auth: "protected"
37491
37557
  }),
37492
37558
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37493
37559
  kind: "mutation",
37494
- auth: "admin"
37560
+ auth: "protected"
37495
37561
  }),
37496
37562
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37497
37563
  kind: "mutation",
37498
- auth: "admin"
37564
+ auth: "protected"
37499
37565
  }),
37500
37566
  setPosition: method(object({
37501
37567
  deviceId: number().int().nonnegative(),
37502
37568
  position: number().min(0).max(100)
37503
37569
  }), _void(), {
37504
37570
  kind: "mutation",
37505
- auth: "admin"
37571
+ auth: "protected"
37506
37572
  })
37507
37573
  },
37508
37574
  status: {
@@ -37601,21 +37667,21 @@ var waterHeaterCapability = {
37601
37667
  temp: number().finite()
37602
37668
  }), _void(), {
37603
37669
  kind: "mutation",
37604
- auth: "admin"
37670
+ auth: "protected"
37605
37671
  }),
37606
37672
  setOperationMode: method(object({
37607
37673
  deviceId: number().int().nonnegative(),
37608
37674
  mode: string().min(1)
37609
37675
  }), _void(), {
37610
37676
  kind: "mutation",
37611
- auth: "admin"
37677
+ auth: "protected"
37612
37678
  }),
37613
37679
  setAway: method(object({
37614
37680
  deviceId: number().int().nonnegative(),
37615
37681
  on: boolean()
37616
37682
  }), _void(), {
37617
37683
  kind: "mutation",
37618
- auth: "admin"
37684
+ auth: "protected"
37619
37685
  })
37620
37686
  },
37621
37687
  status: {
@@ -40114,6 +40180,12 @@ Object.freeze({
40114
40180
  addonId: null,
40115
40181
  access: "create"
40116
40182
  },
40183
+ "faceGallery.auditIdentitySamples": {
40184
+ capName: "face-gallery",
40185
+ capScope: "system",
40186
+ addonId: null,
40187
+ access: "view"
40188
+ },
40117
40189
  "faceGallery.createIdentity": {
40118
40190
  capName: "face-gallery",
40119
40191
  capScope: "system",
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-DhdrnB80.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-EQB13ywI.mjs";
2
2
  export { t as get, e as init };
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-C4pwsdzK.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-C2Wrpp1v.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-osd-manager",
3
- "version": "0.1.81",
3
+ "version": "0.1.83",
4
4
  "description": "Binds camera on-screen-display slots to live state and recognitions",
5
5
  "keywords": [
6
6
  "camstack",