@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.
@@ -16600,14 +16600,14 @@ var alarmPanelCapability = {
16600
16600
  code: string().min(1).optional()
16601
16601
  }), _void(), {
16602
16602
  kind: "mutation",
16603
- auth: "admin"
16603
+ auth: "protected"
16604
16604
  }),
16605
16605
  disarm: method(object({
16606
16606
  deviceId: number().int().nonnegative(),
16607
16607
  code: string().min(1).optional()
16608
16608
  }), _void(), {
16609
16609
  kind: "mutation",
16610
- auth: "admin"
16610
+ auth: "protected"
16611
16611
  }),
16612
16612
  /**
16613
16613
  * Force the panel into the `triggered` state — used by HA
@@ -16618,7 +16618,7 @@ var alarmPanelCapability = {
16618
16618
  */
16619
16619
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
16620
16620
  kind: "mutation",
16621
- auth: "admin"
16621
+ auth: "protected"
16622
16622
  })
16623
16623
  },
16624
16624
  status: {
@@ -25795,7 +25795,7 @@ var brightnessCapability = {
25795
25795
  percentage: number().min(0).max(100)
25796
25796
  }), _void(), {
25797
25797
  kind: "mutation",
25798
- auth: "admin"
25798
+ auth: "protected"
25799
25799
  }) },
25800
25800
  events: {
25801
25801
  /**
@@ -25828,7 +25828,7 @@ onBrightnessChanged: { data: object({
25828
25828
  };
25829
25829
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25830
25830
  kind: "mutation",
25831
- auth: "admin"
25831
+ auth: "protected"
25832
25832
  });
25833
25833
  /**
25834
25834
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -26020,28 +26020,28 @@ var climateControlCapability = {
26020
26020
  mode: HvacModeSchema
26021
26021
  }), _void(), {
26022
26022
  kind: "mutation",
26023
- auth: "admin"
26023
+ auth: "protected"
26024
26024
  }),
26025
26025
  setFanMode: method(object({
26026
26026
  deviceId: number().int().nonnegative(),
26027
26027
  fanMode: string().min(1)
26028
26028
  }), _void(), {
26029
26029
  kind: "mutation",
26030
- auth: "admin"
26030
+ auth: "protected"
26031
26031
  }),
26032
26032
  setPreset: method(object({
26033
26033
  deviceId: number().int().nonnegative(),
26034
26034
  preset: string().min(1)
26035
26035
  }), _void(), {
26036
26036
  kind: "mutation",
26037
- auth: "admin"
26037
+ auth: "protected"
26038
26038
  }),
26039
26039
  setTarget: method(object({
26040
26040
  deviceId: number().int().nonnegative(),
26041
26041
  target: number()
26042
26042
  }), _void(), {
26043
26043
  kind: "mutation",
26044
- auth: "admin"
26044
+ auth: "protected"
26045
26045
  }),
26046
26046
  setTargetRange: method(object({
26047
26047
  deviceId: number().int().nonnegative(),
@@ -26049,28 +26049,28 @@ var climateControlCapability = {
26049
26049
  targetHigh: number()
26050
26050
  }), _void(), {
26051
26051
  kind: "mutation",
26052
- auth: "admin"
26052
+ auth: "protected"
26053
26053
  }),
26054
26054
  setTargetHumidity: method(object({
26055
26055
  deviceId: number().int().nonnegative(),
26056
26056
  targetHumidity: number().min(0).max(100)
26057
26057
  }), _void(), {
26058
26058
  kind: "mutation",
26059
- auth: "admin"
26059
+ auth: "protected"
26060
26060
  }),
26061
26061
  setSwingVertical: method(object({
26062
26062
  deviceId: number().int().nonnegative(),
26063
26063
  on: boolean()
26064
26064
  }), _void(), {
26065
26065
  kind: "mutation",
26066
- auth: "admin"
26066
+ auth: "protected"
26067
26067
  }),
26068
26068
  setSwingHorizontal: method(object({
26069
26069
  deviceId: number().int().nonnegative(),
26070
26070
  on: boolean()
26071
26071
  }), _void(), {
26072
26072
  kind: "mutation",
26073
- auth: "admin"
26073
+ auth: "protected"
26074
26074
  })
26075
26075
  },
26076
26076
  status: {
@@ -26170,7 +26170,7 @@ var colorCapability = {
26170
26170
  color: ColorInputSchema
26171
26171
  }), _void(), {
26172
26172
  kind: "mutation",
26173
- auth: "admin"
26173
+ auth: "protected"
26174
26174
  }) },
26175
26175
  events: {
26176
26176
  /**
@@ -26499,7 +26499,7 @@ var controlCapability = {
26499
26499
  control: ControlSetValueInputSchema
26500
26500
  }), _void(), {
26501
26501
  kind: "mutation",
26502
- auth: "admin"
26502
+ auth: "protected"
26503
26503
  }) },
26504
26504
  status: {
26505
26505
  schema: ControlStatusSchema,
@@ -26545,29 +26545,29 @@ var coverCapability = {
26545
26545
  methods: {
26546
26546
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26547
26547
  kind: "mutation",
26548
- auth: "admin"
26548
+ auth: "protected"
26549
26549
  }),
26550
26550
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26551
26551
  kind: "mutation",
26552
- auth: "admin"
26552
+ auth: "protected"
26553
26553
  }),
26554
26554
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26555
26555
  kind: "mutation",
26556
- auth: "admin"
26556
+ auth: "protected"
26557
26557
  }),
26558
26558
  setPosition: method(object({
26559
26559
  deviceId: number().int().nonnegative(),
26560
26560
  position: number().min(0).max(100)
26561
26561
  }), _void(), {
26562
26562
  kind: "mutation",
26563
- auth: "admin"
26563
+ auth: "protected"
26564
26564
  }),
26565
26565
  setTiltPosition: method(object({
26566
26566
  deviceId: number().int().nonnegative(),
26567
26567
  tiltPosition: number().min(0).max(100)
26568
26568
  }), _void(), {
26569
26569
  kind: "mutation",
26570
- auth: "admin"
26570
+ auth: "protected"
26571
26571
  })
26572
26572
  },
26573
26573
  status: {
@@ -26953,6 +26953,59 @@ var IdentitySampleInfoSchema = object({
26953
26953
  deviceId: number().int().optional(),
26954
26954
  base64: string().optional()
26955
26955
  });
26956
+ /**
26957
+ * One enrolled sample, judged against the gallery it lives in.
26958
+ *
26959
+ * The gallery is the one input to recognition nobody re-reads: a sample
26960
+ * enrolled from the wrong face keeps voting forever, and because the matches it
26961
+ * pulls then look confident, nobody goes back. The 2026-09-08 audit found
26962
+ * exactly one such pair on this cluster — a sample scoring 0.61 against three
26963
+ * samples of ANOTHER person, enrolled from the same camera in the same minute,
26964
+ * where every other cross-identity pair sits under 0.50.
26965
+ */
26966
+ var IdentitySampleAuditRowSchema = object({
26967
+ sampleId: string(),
26968
+ enrolledAt: number().int(),
26969
+ deviceId: number().int().optional(),
26970
+ source: _enum(["detected", "photo"]),
26971
+ /** The enrolled crop's media key, so the panel can show the evidence. */
26972
+ mediaKey: string().optional(),
26973
+ /**
26974
+ * False = the sample is stamped with a DIFFERENT face model, and a cosine
26975
+ * across feature spaces is a well-formed float with no meaning. Every number
26976
+ * below then says nothing — it must read as "cannot say", never as an
26977
+ * accusation and never as a clean bill: this list ends in a Remove button.
26978
+ */
26979
+ comparable: boolean(),
26980
+ /** Mean cosine against this person's other samples. Null when there are none
26981
+ * to compare with — never 0, which would read as "opposite". */
26982
+ selfMean: number().nullable(),
26983
+ /** The other person this sample looks most like, when it looks like one.
26984
+ * This is the half that convicts: not looking like yourself can be a hard
26985
+ * angle; looking like someone the gallery can NAME is a mis-enrolment. */
26986
+ bestForeign: object({
26987
+ identityId: string(),
26988
+ name: string(),
26989
+ score: number()
26990
+ }).optional(),
26991
+ /** 0 = nothing to say. Higher = look at this one sooner. */
26992
+ suspicion: number()
26993
+ });
26994
+ var IdentitySampleAuditSchema = object({
26995
+ identityId: string(),
26996
+ name: string(),
26997
+ /** The cluster face model every comparison was made in. */
26998
+ modelId: string(),
26999
+ totalSamples: number().int(),
27000
+ comparableSamples: number().int(),
27001
+ flagged: number().int(),
27002
+ /** The bar `flagged` counts against, so the panel states the RULE and not
27003
+ * only its current result. */
27004
+ flagThreshold: number(),
27005
+ /** Worst first. A row with nothing to say still appears, at the bottom: the
27006
+ * operator asked to see the gallery, not only its accusations. */
27007
+ rows: array(IdentitySampleAuditRowSchema).readonly()
27008
+ });
26956
27009
  var FaceInfoSchema = object({
26957
27010
  faceId: string(),
26958
27011
  deviceId: number().int(),
@@ -27114,6 +27167,19 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
27114
27167
  auth: "admin"
27115
27168
  }),
27116
27169
  listIdentitySamples: method(object({ identityId: string() }), array(IdentitySampleInfoSchema).readonly()),
27170
+ /**
27171
+ * Re-analyse ONE person's enrolled samples against the whole gallery.
27172
+ *
27173
+ * A pure read — no write, no inference, just dot products over vectors the
27174
+ * hub already holds (327 of them on this cluster). `admin` for the same
27175
+ * reason `listIdentitySamples` is: the answer names every enrolled person
27176
+ * and how well one person's samples match them, which is the gallery's
27177
+ * shape and not a viewer-level fact.
27178
+ *
27179
+ * Removal deliberately stays `removeSample`: an analysis that could also
27180
+ * delete would be one confirmation away from emptying a gallery.
27181
+ */
27182
+ auditIdentitySamples: method(object({ identityId: string().min(1) }), IdentitySampleAuditSchema, { auth: "admin" }),
27117
27183
  removeSample: method(object({
27118
27184
  identityId: string(),
27119
27185
  sampleId: string()
@@ -27323,28 +27389,28 @@ var fanControlCapability = {
27323
27389
  percentage: number().min(0).max(100)
27324
27390
  }), _void(), {
27325
27391
  kind: "mutation",
27326
- auth: "admin"
27392
+ auth: "protected"
27327
27393
  }),
27328
27394
  setPreset: method(object({
27329
27395
  deviceId: number().int().nonnegative(),
27330
27396
  preset: string().min(1)
27331
27397
  }), _void(), {
27332
27398
  kind: "mutation",
27333
- auth: "admin"
27399
+ auth: "protected"
27334
27400
  }),
27335
27401
  setDirection: method(object({
27336
27402
  deviceId: number().int().nonnegative(),
27337
27403
  direction: FanDirectionSchema
27338
27404
  }), _void(), {
27339
27405
  kind: "mutation",
27340
- auth: "admin"
27406
+ auth: "protected"
27341
27407
  }),
27342
27408
  setOscillating: method(object({
27343
27409
  deviceId: number().int().nonnegative(),
27344
27410
  oscillating: boolean()
27345
27411
  }), _void(), {
27346
27412
  kind: "mutation",
27347
- auth: "admin"
27413
+ auth: "protected"
27348
27414
  })
27349
27415
  },
27350
27416
  status: {
@@ -27566,21 +27632,21 @@ var humidifierCapability = {
27566
27632
  on: boolean()
27567
27633
  }), _void(), {
27568
27634
  kind: "mutation",
27569
- auth: "admin"
27635
+ auth: "protected"
27570
27636
  }),
27571
27637
  setTargetHumidity: method(object({
27572
27638
  deviceId: number().int().nonnegative(),
27573
27639
  humidity: number().min(0).max(100)
27574
27640
  }), _void(), {
27575
27641
  kind: "mutation",
27576
- auth: "admin"
27642
+ auth: "protected"
27577
27643
  }),
27578
27644
  setMode: method(object({
27579
27645
  deviceId: number().int().nonnegative(),
27580
27646
  mode: string().min(1)
27581
27647
  }), _void(), {
27582
27648
  kind: "mutation",
27583
- auth: "admin"
27649
+ auth: "protected"
27584
27650
  })
27585
27651
  },
27586
27652
  status: {
@@ -28281,15 +28347,15 @@ var lawnMowerControlCapability = {
28281
28347
  methods: {
28282
28348
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28283
28349
  kind: "mutation",
28284
- auth: "admin"
28350
+ auth: "protected"
28285
28351
  }),
28286
28352
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28287
28353
  kind: "mutation",
28288
- auth: "admin"
28354
+ auth: "protected"
28289
28355
  }),
28290
28356
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28291
28357
  kind: "mutation",
28292
- auth: "admin"
28358
+ auth: "protected"
28293
28359
  })
28294
28360
  },
28295
28361
  status: {
@@ -28574,18 +28640,18 @@ var lockControlCapability = {
28574
28640
  code: string().min(1).optional()
28575
28641
  }), _void(), {
28576
28642
  kind: "mutation",
28577
- auth: "admin"
28643
+ auth: "protected"
28578
28644
  }),
28579
28645
  unlock: method(object({
28580
28646
  deviceId: number().int().nonnegative(),
28581
28647
  code: string().min(1).optional()
28582
28648
  }), _void(), {
28583
28649
  kind: "mutation",
28584
- auth: "admin"
28650
+ auth: "protected"
28585
28651
  }),
28586
28652
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28587
28653
  kind: "mutation",
28588
- auth: "admin"
28654
+ auth: "protected"
28589
28655
  })
28590
28656
  },
28591
28657
  status: {
@@ -28688,65 +28754,65 @@ var mediaPlayerCapability = {
28688
28754
  methods: {
28689
28755
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28690
28756
  kind: "mutation",
28691
- auth: "admin"
28757
+ auth: "protected"
28692
28758
  }),
28693
28759
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28694
28760
  kind: "mutation",
28695
- auth: "admin"
28761
+ auth: "protected"
28696
28762
  }),
28697
28763
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28698
28764
  kind: "mutation",
28699
- auth: "admin"
28765
+ auth: "protected"
28700
28766
  }),
28701
28767
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28702
28768
  kind: "mutation",
28703
- auth: "admin"
28769
+ auth: "protected"
28704
28770
  }),
28705
28771
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28706
28772
  kind: "mutation",
28707
- auth: "admin"
28773
+ auth: "protected"
28708
28774
  }),
28709
28775
  seek: method(object({
28710
28776
  deviceId: number().int().nonnegative(),
28711
28777
  positionMs: number().int().nonnegative()
28712
28778
  }), _void(), {
28713
28779
  kind: "mutation",
28714
- auth: "admin"
28780
+ auth: "protected"
28715
28781
  }),
28716
28782
  setVolume: method(object({
28717
28783
  deviceId: number().int().nonnegative(),
28718
28784
  volumeLevel: number().min(0).max(100)
28719
28785
  }), _void(), {
28720
28786
  kind: "mutation",
28721
- auth: "admin"
28787
+ auth: "protected"
28722
28788
  }),
28723
28789
  setMute: method(object({
28724
28790
  deviceId: number().int().nonnegative(),
28725
28791
  muted: boolean()
28726
28792
  }), _void(), {
28727
28793
  kind: "mutation",
28728
- auth: "admin"
28794
+ auth: "protected"
28729
28795
  }),
28730
28796
  setShuffle: method(object({
28731
28797
  deviceId: number().int().nonnegative(),
28732
28798
  shuffle: boolean()
28733
28799
  }), _void(), {
28734
28800
  kind: "mutation",
28735
- auth: "admin"
28801
+ auth: "protected"
28736
28802
  }),
28737
28803
  setRepeat: method(object({
28738
28804
  deviceId: number().int().nonnegative(),
28739
28805
  repeat: MediaPlayerRepeatSchema
28740
28806
  }), _void(), {
28741
28807
  kind: "mutation",
28742
- auth: "admin"
28808
+ auth: "protected"
28743
28809
  }),
28744
28810
  selectSource: method(object({
28745
28811
  deviceId: number().int().nonnegative(),
28746
28812
  source: string().min(1)
28747
28813
  }), _void(), {
28748
28814
  kind: "mutation",
28749
- auth: "admin"
28815
+ auth: "protected"
28750
28816
  }),
28751
28817
  playMedia: method(object({
28752
28818
  deviceId: number().int().nonnegative(),
@@ -28757,7 +28823,7 @@ var mediaPlayerCapability = {
28757
28823
  mediaType: string().min(1)
28758
28824
  }), _void(), {
28759
28825
  kind: "mutation",
28760
- auth: "admin"
28826
+ auth: "protected"
28761
28827
  })
28762
28828
  },
28763
28829
  status: {
@@ -30350,27 +30416,27 @@ var petFeederCapability = {
30350
30416
  hopper2: gramsPortion.optional()
30351
30417
  }), _void(), {
30352
30418
  kind: "mutation",
30353
- auth: "admin"
30419
+ auth: "protected"
30354
30420
  }),
30355
30421
  /** Cancel an in-progress manual feed. */
30356
30422
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30357
30423
  kind: "mutation",
30358
- auth: "admin"
30424
+ auth: "protected"
30359
30425
  }),
30360
30426
  /** Reset the desiccant "days remaining" counter after replacing it. */
30361
30427
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30362
30428
  kind: "mutation",
30363
- auth: "admin"
30429
+ auth: "protected"
30364
30430
  }),
30365
30431
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
30366
30432
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30367
30433
  kind: "mutation",
30368
- auth: "admin"
30434
+ auth: "protected"
30369
30435
  }),
30370
30436
  /** Call the pet with the recorded prompt (D3). */
30371
30437
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
30372
30438
  kind: "mutation",
30373
- auth: "admin"
30439
+ auth: "protected"
30374
30440
  }),
30375
30441
  /** Play a stored sound by id (D3 / D4H / D4SH). */
30376
30442
  playSound: method(object({
@@ -30378,7 +30444,7 @@ var petFeederCapability = {
30378
30444
  soundId: number().int().nonnegative()
30379
30445
  }), _void(), {
30380
30446
  kind: "mutation",
30381
- auth: "admin"
30447
+ auth: "protected"
30382
30448
  }),
30383
30449
  /** Toggle the child-lock (manual-lock) setting. */
30384
30450
  setChildLock: method(object({
@@ -30386,7 +30452,7 @@ var petFeederCapability = {
30386
30452
  on: boolean()
30387
30453
  }), _void(), {
30388
30454
  kind: "mutation",
30389
- auth: "admin"
30455
+ auth: "protected"
30390
30456
  }),
30391
30457
  /** Toggle the front indicator light. */
30392
30458
  setIndicatorLight: method(object({
@@ -30394,7 +30460,7 @@ var petFeederCapability = {
30394
30460
  on: boolean()
30395
30461
  }), _void(), {
30396
30462
  kind: "mutation",
30397
- auth: "admin"
30463
+ auth: "protected"
30398
30464
  }),
30399
30465
  /** Toggle the dispense chime. */
30400
30466
  setFeedSound: method(object({
@@ -30402,7 +30468,7 @@ var petFeederCapability = {
30402
30468
  on: boolean()
30403
30469
  }), _void(), {
30404
30470
  kind: "mutation",
30405
- auth: "admin"
30471
+ auth: "protected"
30406
30472
  }),
30407
30473
  /** Set the speaker / prompt volume level. */
30408
30474
  setVolume: method(object({
@@ -30410,7 +30476,7 @@ var petFeederCapability = {
30410
30476
  level: number().int().nonnegative()
30411
30477
  }), _void(), {
30412
30478
  kind: "mutation",
30413
- auth: "admin"
30479
+ auth: "protected"
30414
30480
  })
30415
30481
  },
30416
30482
  status: {
@@ -32765,7 +32831,7 @@ var switchCapability = {
32765
32831
  on: boolean()
32766
32832
  }), _void(), {
32767
32833
  kind: "mutation",
32768
- auth: "admin"
32834
+ auth: "protected"
32769
32835
  }) },
32770
32836
  events: { onStateChanged: { data: object({
32771
32837
  deviceId: number(),
@@ -33753,30 +33819,30 @@ var vacuumControlCapability = {
33753
33819
  methods: {
33754
33820
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33755
33821
  kind: "mutation",
33756
- auth: "admin"
33822
+ auth: "protected"
33757
33823
  }),
33758
33824
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33759
33825
  kind: "mutation",
33760
- auth: "admin"
33826
+ auth: "protected"
33761
33827
  }),
33762
33828
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33763
33829
  kind: "mutation",
33764
- auth: "admin"
33830
+ auth: "protected"
33765
33831
  }),
33766
33832
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33767
33833
  kind: "mutation",
33768
- auth: "admin"
33834
+ auth: "protected"
33769
33835
  }),
33770
33836
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33771
33837
  kind: "mutation",
33772
- auth: "admin"
33838
+ auth: "protected"
33773
33839
  }),
33774
33840
  setFanSpeed: method(object({
33775
33841
  deviceId: number().int().nonnegative(),
33776
33842
  speed: string().min(1)
33777
33843
  }), _void(), {
33778
33844
  kind: "mutation",
33779
- auth: "admin"
33845
+ auth: "protected"
33780
33846
  })
33781
33847
  },
33782
33848
  status: {
@@ -33820,22 +33886,22 @@ var valveCapability = {
33820
33886
  methods: {
33821
33887
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33822
33888
  kind: "mutation",
33823
- auth: "admin"
33889
+ auth: "protected"
33824
33890
  }),
33825
33891
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33826
33892
  kind: "mutation",
33827
- auth: "admin"
33893
+ auth: "protected"
33828
33894
  }),
33829
33895
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33830
33896
  kind: "mutation",
33831
- auth: "admin"
33897
+ auth: "protected"
33832
33898
  }),
33833
33899
  setPosition: method(object({
33834
33900
  deviceId: number().int().nonnegative(),
33835
33901
  position: number().min(0).max(100)
33836
33902
  }), _void(), {
33837
33903
  kind: "mutation",
33838
- auth: "admin"
33904
+ auth: "protected"
33839
33905
  })
33840
33906
  },
33841
33907
  status: {
@@ -33934,21 +34000,21 @@ var waterHeaterCapability = {
33934
34000
  temp: number().finite()
33935
34001
  }), _void(), {
33936
34002
  kind: "mutation",
33937
- auth: "admin"
34003
+ auth: "protected"
33938
34004
  }),
33939
34005
  setOperationMode: method(object({
33940
34006
  deviceId: number().int().nonnegative(),
33941
34007
  mode: string().min(1)
33942
34008
  }), _void(), {
33943
34009
  kind: "mutation",
33944
- auth: "admin"
34010
+ auth: "protected"
33945
34011
  }),
33946
34012
  setAway: method(object({
33947
34013
  deviceId: number().int().nonnegative(),
33948
34014
  on: boolean()
33949
34015
  }), _void(), {
33950
34016
  kind: "mutation",
33951
- auth: "admin"
34017
+ auth: "protected"
33952
34018
  })
33953
34019
  },
33954
34020
  status: {
@@ -37458,6 +37524,12 @@ Object.freeze({
37458
37524
  addonId: null,
37459
37525
  access: "create"
37460
37526
  },
37527
+ "faceGallery.auditIdentitySamples": {
37528
+ capName: "face-gallery",
37529
+ capScope: "system",
37530
+ addonId: null,
37531
+ access: "view"
37532
+ },
37461
37533
  "faceGallery.createIdentity": {
37462
37534
  capName: "face-gallery",
37463
37535
  capScope: "system",
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_dist = require("../dist-sREZj0iq.js");
5
+ const require_dist = require("../dist-BttKNVmP.js");
6
6
  let node_fs = require("node:fs");
7
7
  node_fs = require_dist.__toESM(node_fs);
8
8
  let node_path = require("node:path");
@@ -1,4 +1,4 @@
1
- import { F as PoolMemoryWatchdog, Pt as BaseAddon, Tt as resolvePoolMemoryPolicy, at as embeddingEncoderCapability, dt as hfModelUrl, vt as parseProcStatus } from "../dist-WtZuLM5F.mjs";
1
+ import { F as PoolMemoryWatchdog, Pt as BaseAddon, Tt as resolvePoolMemoryPolicy, at as embeddingEncoderCapability, dt as hfModelUrl, vt as parseProcStatus } from "../dist-BV15Z8DR.mjs";
2
2
  import { createRequire } from "node:module";
3
3
  import * as fs from "node:fs";
4
4
  import * as path$1 from "node:path";
@@ -1,6 +1,6 @@
1
1
  import { a as e, i as t, n, o as r, r as i, t as a } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare__react__loadShare__.js-C0AuF9av.mjs";
2
2
  import { t as o } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare___mf_0_tanstack_mf_1_react_mf_2_query__loadShare__.js-B3Wx5J80.mjs";
3
- import { a as s, i as c, n as l, o as u, r as d, s as f, t as p } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-BsBwoxCb.mjs";
3
+ import { a as s, i as c, n as l, o as u, r as d, s as f, t as p } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-BYQbvSbq.mjs";
4
4
  import { n as m, r as h, t as g } from "./_virtual_mf___mfe_internal__addon_pipeline_analytics_widgets__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-Bm-iyjmq.mjs";
5
5
  //#region ../../node_modules/lucide-react/dist/esm/shared/src/utils.js
6
6
  var _ = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), v = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), y = (e) => {
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.2.87",
6
+ version: "1.2.89",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_pipeline_analytics_widgets",
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.2.167",
21
+ version: "1.2.169",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_pipeline_analytics_widgets",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.2.135",
36
+ version: "1.2.137",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_pipeline_analytics_widgets",