@camstack/addon-osd-manager 0.1.82 → 0.1.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. package/dist/{MotionZonesSettings-CcUQv9US.mjs → MotionZonesSettings-B2f-AAjf.mjs} +2 -2
  2. package/dist/{PrivacyMaskSettings-yTPSGJ_S.mjs → PrivacyMaskSettings-Ccj7UiJE.mjs} +4 -4
  3. package/dist/{SceneMonitorEditor-DSLR3HyX.mjs → SceneMonitorEditor-ywE98nl1.mjs} +3 -3
  4. package/dist/_stub.js +10 -10
  5. package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-BjOWOGEX.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-CAKFRKCq.mjs} +4 -4
  6. package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DK7I6saY.mjs +26 -0
  7. package/dist/{hostInit-D4cKycxj.mjs → hostInit-T7Gdb_xq.mjs} +3 -3
  8. package/dist/index.js +134 -69
  9. package/dist/index.mjs +134 -69
  10. package/dist/{player-overlays-DPEo1CnK.mjs → player-overlays-B6Jh8D_5.mjs} +1 -1
  11. package/dist/remoteEntry.js +1 -1
  12. package/dist/{responsive-veJ_u_lF.mjs → responsive-B92cHy3d.mjs} +1 -1
  13. package/dist/{square-BKRxPrj2.mjs → square-quB6uLsH.mjs} +1 -1
  14. package/dist/{trash-2-B_FOJHPE.mjs → trash-2-DtWGm2MX.mjs} +1 -1
  15. package/dist/{use-device-snapshot-CCUZGgXd.mjs → use-device-snapshot-63q3zcoQ.mjs} +1 -1
  16. package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-DZjvcVDU.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BumwNrmh.mjs} +1 -1
  17. package/package.json +1 -1
  18. package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-zKEKO1Le.mjs +0 -26
package/dist/index.js CHANGED
@@ -7726,6 +7726,35 @@ var CameraSwitchGroupSchema = object({
7726
7726
  /** Unix ms when the group was composed server-side. */
7727
7727
  fetchedAt: number()
7728
7728
  });
7729
+ /** One archived note — the operator's words plus enough context to find what
7730
+ * they were looking at, after the track itself is gone. */
7731
+ var ArchivedDebugNoteSchema = object({
7732
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7733
+ * same sentence about the same track lands on the row already there. */
7734
+ id: string(),
7735
+ /** The operator's own words, verbatim. */
7736
+ note: string(),
7737
+ /** The camera. Required — every question here is asked per-camera. */
7738
+ deviceId: number().int(),
7739
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7740
+ * is expected to be gone, and this row is not a reference to it. */
7741
+ sourceTrackId: string(),
7742
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7743
+ archivedAt: number().int(),
7744
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7745
+ trackStartedAt: number().int().nullable(),
7746
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7747
+ trackClass: string().nullable(),
7748
+ /** The track's display label at review time; `null` when it had none. */
7749
+ trackLabel: string().nullable()
7750
+ });
7751
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7752
+ var ArchivedDebugNoteQueryInputSchema = object({
7753
+ /** Restrict to a single camera; omit for every row. */
7754
+ deviceId: number().int().optional(),
7755
+ /** Max rows returned, newest-first. */
7756
+ limit: number().int().min(1).max(1e3).optional()
7757
+ });
7729
7758
  /**
7730
7759
  * Ops-log — the durable, append-only operations audit shared by the
7731
7760
  * recordings and events management surfaces.
@@ -18052,14 +18081,14 @@ var alarmPanelCapability = {
18052
18081
  code: string().min(1).optional()
18053
18082
  }), _void(), {
18054
18083
  kind: "mutation",
18055
- auth: "admin"
18084
+ auth: "protected"
18056
18085
  }),
18057
18086
  disarm: method(object({
18058
18087
  deviceId: number().int().nonnegative(),
18059
18088
  code: string().min(1).optional()
18060
18089
  }), _void(), {
18061
18090
  kind: "mutation",
18062
- auth: "admin"
18091
+ auth: "protected"
18063
18092
  }),
18064
18093
  /**
18065
18094
  * Force the panel into the `triggered` state — used by HA
@@ -18070,7 +18099,7 @@ var alarmPanelCapability = {
18070
18099
  */
18071
18100
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
18072
18101
  kind: "mutation",
18073
- auth: "admin"
18102
+ auth: "protected"
18074
18103
  })
18075
18104
  },
18076
18105
  status: {
@@ -23004,6 +23033,31 @@ var pipelineAnalyticsCapability = {
23004
23033
  flags: TrackFlagsPatchSchema
23005
23034
  }), TrackFlagsSchema, { kind: "mutation" }),
23006
23035
  /**
23036
+ * The archived debug notes, newest first — the corpus of what operators
23037
+ * have asked to be checked, across tracks that no longer exist (D405).
23038
+ *
23039
+ * `setTrackFlags` writes it: a patch carrying `debug: false` still clears
23040
+ * the note off the track row in the same statement (D353's invariant is
23041
+ * untouched), but the note is APPENDED here first. That is the whole point
23042
+ * — before D405, finishing a review destroyed every note written during it,
23043
+ * and the ones that survived aged out with their tracks. This method is the
23044
+ * only way to read what was kept.
23045
+ *
23046
+ * `auth: 'protected'`, matching `setTrackFlags` next door and for the same
23047
+ * reason: the notes are written from the viewer, by an authenticated
23048
+ * non-admin session, and a corpus only an admin can read is a corpus the
23049
+ * person who wrote it cannot use. It carries operator prose about cameras
23050
+ * and nothing else — no media, no paths, no identities beyond a track's
23051
+ * own display label.
23052
+ *
23053
+ * Newest-first, capped by `limit` (default
23054
+ * {@link ARCHIVED_DEBUG_NOTES_DEFAULT_LIMIT}), optionally one camera. The
23055
+ * table itself is bounded by row count, not by age — see
23056
+ * {@link MAX_ARCHIVED_DEBUG_NOTES} for why an age clock would be the wrong
23057
+ * bound for exactly this data.
23058
+ */
23059
+ listArchivedDebugNotes: method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }),
23060
+ /**
23007
23061
  * Durable event-store footprint for the management UI: event rows
23008
23062
  * (motion + object + audio) counted per camera + total, plus the
23009
23063
  * event-owned media bytes on disk per camera + total. Stat/count-based,
@@ -28656,7 +28710,7 @@ var brightnessCapability = {
28656
28710
  percentage: number().min(0).max(100)
28657
28711
  }), _void(), {
28658
28712
  kind: "mutation",
28659
- auth: "admin"
28713
+ auth: "protected"
28660
28714
  }) },
28661
28715
  events: {
28662
28716
  /**
@@ -28705,7 +28759,7 @@ var buttonCapability = {
28705
28759
  deviceTypes: [DeviceType.Button],
28706
28760
  methods: { press: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28707
28761
  kind: "mutation",
28708
- auth: "admin"
28762
+ auth: "protected"
28709
28763
  }) }
28710
28764
  };
28711
28765
  /**
@@ -28922,28 +28976,28 @@ var climateControlCapability = {
28922
28976
  mode: HvacModeSchema
28923
28977
  }), _void(), {
28924
28978
  kind: "mutation",
28925
- auth: "admin"
28979
+ auth: "protected"
28926
28980
  }),
28927
28981
  setFanMode: method(object({
28928
28982
  deviceId: number().int().nonnegative(),
28929
28983
  fanMode: string().min(1)
28930
28984
  }), _void(), {
28931
28985
  kind: "mutation",
28932
- auth: "admin"
28986
+ auth: "protected"
28933
28987
  }),
28934
28988
  setPreset: method(object({
28935
28989
  deviceId: number().int().nonnegative(),
28936
28990
  preset: string().min(1)
28937
28991
  }), _void(), {
28938
28992
  kind: "mutation",
28939
- auth: "admin"
28993
+ auth: "protected"
28940
28994
  }),
28941
28995
  setTarget: method(object({
28942
28996
  deviceId: number().int().nonnegative(),
28943
28997
  target: number()
28944
28998
  }), _void(), {
28945
28999
  kind: "mutation",
28946
- auth: "admin"
29000
+ auth: "protected"
28947
29001
  }),
28948
29002
  setTargetRange: method(object({
28949
29003
  deviceId: number().int().nonnegative(),
@@ -28951,28 +29005,28 @@ var climateControlCapability = {
28951
29005
  targetHigh: number()
28952
29006
  }), _void(), {
28953
29007
  kind: "mutation",
28954
- auth: "admin"
29008
+ auth: "protected"
28955
29009
  }),
28956
29010
  setTargetHumidity: method(object({
28957
29011
  deviceId: number().int().nonnegative(),
28958
29012
  targetHumidity: number().min(0).max(100)
28959
29013
  }), _void(), {
28960
29014
  kind: "mutation",
28961
- auth: "admin"
29015
+ auth: "protected"
28962
29016
  }),
28963
29017
  setSwingVertical: method(object({
28964
29018
  deviceId: number().int().nonnegative(),
28965
29019
  on: boolean()
28966
29020
  }), _void(), {
28967
29021
  kind: "mutation",
28968
- auth: "admin"
29022
+ auth: "protected"
28969
29023
  }),
28970
29024
  setSwingHorizontal: method(object({
28971
29025
  deviceId: number().int().nonnegative(),
28972
29026
  on: boolean()
28973
29027
  }), _void(), {
28974
29028
  kind: "mutation",
28975
- auth: "admin"
29029
+ auth: "protected"
28976
29030
  })
28977
29031
  },
28978
29032
  status: {
@@ -29072,7 +29126,7 @@ var colorCapability = {
29072
29126
  color: ColorInputSchema
29073
29127
  }), _void(), {
29074
29128
  kind: "mutation",
29075
- auth: "admin"
29129
+ auth: "protected"
29076
29130
  }) },
29077
29131
  events: {
29078
29132
  /**
@@ -29409,7 +29463,7 @@ var controlCapability = {
29409
29463
  control: ControlSetValueInputSchema
29410
29464
  }), _void(), {
29411
29465
  kind: "mutation",
29412
- auth: "admin"
29466
+ auth: "protected"
29413
29467
  }) },
29414
29468
  status: {
29415
29469
  schema: ControlStatusSchema,
@@ -29455,29 +29509,29 @@ var coverCapability = {
29455
29509
  methods: {
29456
29510
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29457
29511
  kind: "mutation",
29458
- auth: "admin"
29512
+ auth: "protected"
29459
29513
  }),
29460
29514
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29461
29515
  kind: "mutation",
29462
- auth: "admin"
29516
+ auth: "protected"
29463
29517
  }),
29464
29518
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29465
29519
  kind: "mutation",
29466
- auth: "admin"
29520
+ auth: "protected"
29467
29521
  }),
29468
29522
  setPosition: method(object({
29469
29523
  deviceId: number().int().nonnegative(),
29470
29524
  position: number().min(0).max(100)
29471
29525
  }), _void(), {
29472
29526
  kind: "mutation",
29473
- auth: "admin"
29527
+ auth: "protected"
29474
29528
  }),
29475
29529
  setTiltPosition: method(object({
29476
29530
  deviceId: number().int().nonnegative(),
29477
29531
  tiltPosition: number().min(0).max(100)
29478
29532
  }), _void(), {
29479
29533
  kind: "mutation",
29480
- auth: "admin"
29534
+ auth: "protected"
29481
29535
  })
29482
29536
  },
29483
29537
  status: {
@@ -30309,28 +30363,28 @@ var fanControlCapability = {
30309
30363
  percentage: number().min(0).max(100)
30310
30364
  }), _void(), {
30311
30365
  kind: "mutation",
30312
- auth: "admin"
30366
+ auth: "protected"
30313
30367
  }),
30314
30368
  setPreset: method(object({
30315
30369
  deviceId: number().int().nonnegative(),
30316
30370
  preset: string().min(1)
30317
30371
  }), _void(), {
30318
30372
  kind: "mutation",
30319
- auth: "admin"
30373
+ auth: "protected"
30320
30374
  }),
30321
30375
  setDirection: method(object({
30322
30376
  deviceId: number().int().nonnegative(),
30323
30377
  direction: FanDirectionSchema
30324
30378
  }), _void(), {
30325
30379
  kind: "mutation",
30326
- auth: "admin"
30380
+ auth: "protected"
30327
30381
  }),
30328
30382
  setOscillating: method(object({
30329
30383
  deviceId: number().int().nonnegative(),
30330
30384
  oscillating: boolean()
30331
30385
  }), _void(), {
30332
30386
  kind: "mutation",
30333
- auth: "admin"
30387
+ auth: "protected"
30334
30388
  })
30335
30389
  },
30336
30390
  status: {
@@ -30552,21 +30606,21 @@ var humidifierCapability = {
30552
30606
  on: boolean()
30553
30607
  }), _void(), {
30554
30608
  kind: "mutation",
30555
- auth: "admin"
30609
+ auth: "protected"
30556
30610
  }),
30557
30611
  setTargetHumidity: method(object({
30558
30612
  deviceId: number().int().nonnegative(),
30559
30613
  humidity: number().min(0).max(100)
30560
30614
  }), _void(), {
30561
30615
  kind: "mutation",
30562
- auth: "admin"
30616
+ auth: "protected"
30563
30617
  }),
30564
30618
  setMode: method(object({
30565
30619
  deviceId: number().int().nonnegative(),
30566
30620
  mode: string().min(1)
30567
30621
  }), _void(), {
30568
30622
  kind: "mutation",
30569
- auth: "admin"
30623
+ auth: "protected"
30570
30624
  })
30571
30625
  },
30572
30626
  status: {
@@ -31285,15 +31339,15 @@ var lawnMowerControlCapability = {
31285
31339
  methods: {
31286
31340
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31287
31341
  kind: "mutation",
31288
- auth: "admin"
31342
+ auth: "protected"
31289
31343
  }),
31290
31344
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31291
31345
  kind: "mutation",
31292
- auth: "admin"
31346
+ auth: "protected"
31293
31347
  }),
31294
31348
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31295
31349
  kind: "mutation",
31296
- auth: "admin"
31350
+ auth: "protected"
31297
31351
  })
31298
31352
  },
31299
31353
  status: {
@@ -31695,18 +31749,18 @@ var lockControlCapability = {
31695
31749
  code: string().min(1).optional()
31696
31750
  }), _void(), {
31697
31751
  kind: "mutation",
31698
- auth: "admin"
31752
+ auth: "protected"
31699
31753
  }),
31700
31754
  unlock: method(object({
31701
31755
  deviceId: number().int().nonnegative(),
31702
31756
  code: string().min(1).optional()
31703
31757
  }), _void(), {
31704
31758
  kind: "mutation",
31705
- auth: "admin"
31759
+ auth: "protected"
31706
31760
  }),
31707
31761
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31708
31762
  kind: "mutation",
31709
- auth: "admin"
31763
+ auth: "protected"
31710
31764
  })
31711
31765
  },
31712
31766
  status: {
@@ -31809,65 +31863,65 @@ var mediaPlayerCapability = {
31809
31863
  methods: {
31810
31864
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31811
31865
  kind: "mutation",
31812
- auth: "admin"
31866
+ auth: "protected"
31813
31867
  }),
31814
31868
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31815
31869
  kind: "mutation",
31816
- auth: "admin"
31870
+ auth: "protected"
31817
31871
  }),
31818
31872
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31819
31873
  kind: "mutation",
31820
- auth: "admin"
31874
+ auth: "protected"
31821
31875
  }),
31822
31876
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31823
31877
  kind: "mutation",
31824
- auth: "admin"
31878
+ auth: "protected"
31825
31879
  }),
31826
31880
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
31827
31881
  kind: "mutation",
31828
- auth: "admin"
31882
+ auth: "protected"
31829
31883
  }),
31830
31884
  seek: method(object({
31831
31885
  deviceId: number().int().nonnegative(),
31832
31886
  positionMs: number().int().nonnegative()
31833
31887
  }), _void(), {
31834
31888
  kind: "mutation",
31835
- auth: "admin"
31889
+ auth: "protected"
31836
31890
  }),
31837
31891
  setVolume: method(object({
31838
31892
  deviceId: number().int().nonnegative(),
31839
31893
  volumeLevel: number().min(0).max(100)
31840
31894
  }), _void(), {
31841
31895
  kind: "mutation",
31842
- auth: "admin"
31896
+ auth: "protected"
31843
31897
  }),
31844
31898
  setMute: method(object({
31845
31899
  deviceId: number().int().nonnegative(),
31846
31900
  muted: boolean()
31847
31901
  }), _void(), {
31848
31902
  kind: "mutation",
31849
- auth: "admin"
31903
+ auth: "protected"
31850
31904
  }),
31851
31905
  setShuffle: method(object({
31852
31906
  deviceId: number().int().nonnegative(),
31853
31907
  shuffle: boolean()
31854
31908
  }), _void(), {
31855
31909
  kind: "mutation",
31856
- auth: "admin"
31910
+ auth: "protected"
31857
31911
  }),
31858
31912
  setRepeat: method(object({
31859
31913
  deviceId: number().int().nonnegative(),
31860
31914
  repeat: MediaPlayerRepeatSchema
31861
31915
  }), _void(), {
31862
31916
  kind: "mutation",
31863
- auth: "admin"
31917
+ auth: "protected"
31864
31918
  }),
31865
31919
  selectSource: method(object({
31866
31920
  deviceId: number().int().nonnegative(),
31867
31921
  source: string().min(1)
31868
31922
  }), _void(), {
31869
31923
  kind: "mutation",
31870
- auth: "admin"
31924
+ auth: "protected"
31871
31925
  }),
31872
31926
  playMedia: method(object({
31873
31927
  deviceId: number().int().nonnegative(),
@@ -31878,7 +31932,7 @@ var mediaPlayerCapability = {
31878
31932
  mediaType: string().min(1)
31879
31933
  }), _void(), {
31880
31934
  kind: "mutation",
31881
- auth: "admin"
31935
+ auth: "protected"
31882
31936
  })
31883
31937
  },
31884
31938
  status: {
@@ -33678,27 +33732,27 @@ var petFeederCapability = {
33678
33732
  hopper2: gramsPortion.optional()
33679
33733
  }), _void(), {
33680
33734
  kind: "mutation",
33681
- auth: "admin"
33735
+ auth: "protected"
33682
33736
  }),
33683
33737
  /** Cancel an in-progress manual feed. */
33684
33738
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33685
33739
  kind: "mutation",
33686
- auth: "admin"
33740
+ auth: "protected"
33687
33741
  }),
33688
33742
  /** Reset the desiccant "days remaining" counter after replacing it. */
33689
33743
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33690
33744
  kind: "mutation",
33691
- auth: "admin"
33745
+ auth: "protected"
33692
33746
  }),
33693
33747
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
33694
33748
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33695
33749
  kind: "mutation",
33696
- auth: "admin"
33750
+ auth: "protected"
33697
33751
  }),
33698
33752
  /** Call the pet with the recorded prompt (D3). */
33699
33753
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33700
33754
  kind: "mutation",
33701
- auth: "admin"
33755
+ auth: "protected"
33702
33756
  }),
33703
33757
  /** Play a stored sound by id (D3 / D4H / D4SH). */
33704
33758
  playSound: method(object({
@@ -33706,7 +33760,7 @@ var petFeederCapability = {
33706
33760
  soundId: number().int().nonnegative()
33707
33761
  }), _void(), {
33708
33762
  kind: "mutation",
33709
- auth: "admin"
33763
+ auth: "protected"
33710
33764
  }),
33711
33765
  /** Toggle the child-lock (manual-lock) setting. */
33712
33766
  setChildLock: method(object({
@@ -33714,7 +33768,7 @@ var petFeederCapability = {
33714
33768
  on: boolean()
33715
33769
  }), _void(), {
33716
33770
  kind: "mutation",
33717
- auth: "admin"
33771
+ auth: "protected"
33718
33772
  }),
33719
33773
  /** Toggle the front indicator light. */
33720
33774
  setIndicatorLight: method(object({
@@ -33722,7 +33776,7 @@ var petFeederCapability = {
33722
33776
  on: boolean()
33723
33777
  }), _void(), {
33724
33778
  kind: "mutation",
33725
- auth: "admin"
33779
+ auth: "protected"
33726
33780
  }),
33727
33781
  /** Toggle the dispense chime. */
33728
33782
  setFeedSound: method(object({
@@ -33730,7 +33784,7 @@ var petFeederCapability = {
33730
33784
  on: boolean()
33731
33785
  }), _void(), {
33732
33786
  kind: "mutation",
33733
- auth: "admin"
33787
+ auth: "protected"
33734
33788
  }),
33735
33789
  /** Set the speaker / prompt volume level. */
33736
33790
  setVolume: method(object({
@@ -33738,7 +33792,7 @@ var petFeederCapability = {
33738
33792
  level: number().int().nonnegative()
33739
33793
  }), _void(), {
33740
33794
  kind: "mutation",
33741
- auth: "admin"
33795
+ auth: "protected"
33742
33796
  })
33743
33797
  },
33744
33798
  status: {
@@ -36351,7 +36405,7 @@ var switchCapability = {
36351
36405
  on: boolean()
36352
36406
  }), _void(), {
36353
36407
  kind: "mutation",
36354
- auth: "admin"
36408
+ auth: "protected"
36355
36409
  }) },
36356
36410
  events: { onStateChanged: { data: object({
36357
36411
  deviceId: number(),
@@ -37490,30 +37544,30 @@ var vacuumControlCapability = {
37490
37544
  methods: {
37491
37545
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37492
37546
  kind: "mutation",
37493
- auth: "admin"
37547
+ auth: "protected"
37494
37548
  }),
37495
37549
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37496
37550
  kind: "mutation",
37497
- auth: "admin"
37551
+ auth: "protected"
37498
37552
  }),
37499
37553
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37500
37554
  kind: "mutation",
37501
- auth: "admin"
37555
+ auth: "protected"
37502
37556
  }),
37503
37557
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37504
37558
  kind: "mutation",
37505
- auth: "admin"
37559
+ auth: "protected"
37506
37560
  }),
37507
37561
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37508
37562
  kind: "mutation",
37509
- auth: "admin"
37563
+ auth: "protected"
37510
37564
  }),
37511
37565
  setFanSpeed: method(object({
37512
37566
  deviceId: number().int().nonnegative(),
37513
37567
  speed: string().min(1)
37514
37568
  }), _void(), {
37515
37569
  kind: "mutation",
37516
- auth: "admin"
37570
+ auth: "protected"
37517
37571
  })
37518
37572
  },
37519
37573
  status: {
@@ -37557,22 +37611,22 @@ var valveCapability = {
37557
37611
  methods: {
37558
37612
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37559
37613
  kind: "mutation",
37560
- auth: "admin"
37614
+ auth: "protected"
37561
37615
  }),
37562
37616
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37563
37617
  kind: "mutation",
37564
- auth: "admin"
37618
+ auth: "protected"
37565
37619
  }),
37566
37620
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
37567
37621
  kind: "mutation",
37568
- auth: "admin"
37622
+ auth: "protected"
37569
37623
  }),
37570
37624
  setPosition: method(object({
37571
37625
  deviceId: number().int().nonnegative(),
37572
37626
  position: number().min(0).max(100)
37573
37627
  }), _void(), {
37574
37628
  kind: "mutation",
37575
- auth: "admin"
37629
+ auth: "protected"
37576
37630
  })
37577
37631
  },
37578
37632
  status: {
@@ -37671,21 +37725,21 @@ var waterHeaterCapability = {
37671
37725
  temp: number().finite()
37672
37726
  }), _void(), {
37673
37727
  kind: "mutation",
37674
- auth: "admin"
37728
+ auth: "protected"
37675
37729
  }),
37676
37730
  setOperationMode: method(object({
37677
37731
  deviceId: number().int().nonnegative(),
37678
37732
  mode: string().min(1)
37679
37733
  }), _void(), {
37680
37734
  kind: "mutation",
37681
- auth: "admin"
37735
+ auth: "protected"
37682
37736
  }),
37683
37737
  setAway: method(object({
37684
37738
  deviceId: number().int().nonnegative(),
37685
37739
  on: boolean()
37686
37740
  }), _void(), {
37687
37741
  kind: "mutation",
37688
- auth: "admin"
37742
+ auth: "protected"
37689
37743
  })
37690
37744
  },
37691
37745
  status: {
@@ -41720,6 +41774,12 @@ Object.freeze({
41720
41774
  addonId: null,
41721
41775
  access: "view"
41722
41776
  },
41777
+ "pipelineAnalytics.listArchivedDebugNotes": {
41778
+ capName: "pipeline-analytics",
41779
+ capScope: "device",
41780
+ addonId: null,
41781
+ access: "view"
41782
+ },
41723
41783
  "pipelineAnalytics.listEventKinds": {
41724
41784
  capName: "pipeline-analytics",
41725
41785
  capScope: "device",
@@ -45507,6 +45567,11 @@ Object.freeze({
45507
45567
  form: "array",
45508
45568
  optional: true
45509
45569
  }],
45570
+ "pipelineAnalytics.listArchivedDebugNotes": [{
45571
+ name: "deviceId",
45572
+ form: "single",
45573
+ optional: true
45574
+ }],
45510
45575
  "pipelineAnalytics.listEventKinds": [{
45511
45576
  name: "deviceId",
45512
45577
  form: "single",