@camstack/addon-provider-petkit 0.2.85 → 0.2.87

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 (3) hide show
  1. package/dist/addon.js +110 -70
  2. package/dist/addon.mjs +110 -70
  3. package/package.json +1 -1
package/dist/addon.js CHANGED
@@ -8729,6 +8729,35 @@ var CameraSwitchGroupSchema = object({
8729
8729
  /** Unix ms when the group was composed server-side. */
8730
8730
  fetchedAt: number()
8731
8731
  });
8732
+ /** One archived note — the operator's words plus enough context to find what
8733
+ * they were looking at, after the track itself is gone. */
8734
+ var ArchivedDebugNoteSchema = object({
8735
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
8736
+ * same sentence about the same track lands on the row already there. */
8737
+ id: string(),
8738
+ /** The operator's own words, verbatim. */
8739
+ note: string(),
8740
+ /** The camera. Required — every question here is asked per-camera. */
8741
+ deviceId: number().int(),
8742
+ /** The track the note was written on. PROVENANCE, not ownership: the track
8743
+ * is expected to be gone, and this row is not a reference to it. */
8744
+ sourceTrackId: string(),
8745
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
8746
+ archivedAt: number().int(),
8747
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
8748
+ trackStartedAt: number().int().nullable(),
8749
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
8750
+ trackClass: string().nullable(),
8751
+ /** The track's display label at review time; `null` when it had none. */
8752
+ trackLabel: string().nullable()
8753
+ });
8754
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
8755
+ var ArchivedDebugNoteQueryInputSchema = object({
8756
+ /** Restrict to a single camera; omit for every row. */
8757
+ deviceId: number().int().optional(),
8758
+ /** Max rows returned, newest-first. */
8759
+ limit: number().int().min(1).max(1e3).optional()
8760
+ });
8732
8761
  /**
8733
8762
  * Ops-log — the durable, append-only operations audit shared by the
8734
8763
  * recordings and events management surfaces.
@@ -17227,14 +17256,14 @@ var alarmPanelCapability = {
17227
17256
  code: string().min(1).optional()
17228
17257
  }), _void(), {
17229
17258
  kind: "mutation",
17230
- auth: "admin"
17259
+ auth: "protected"
17231
17260
  }),
17232
17261
  disarm: method(object({
17233
17262
  deviceId: number().int().nonnegative(),
17234
17263
  code: string().min(1).optional()
17235
17264
  }), _void(), {
17236
17265
  kind: "mutation",
17237
- auth: "admin"
17266
+ auth: "protected"
17238
17267
  }),
17239
17268
  /**
17240
17269
  * Force the panel into the `triggered` state — used by HA
@@ -17245,7 +17274,7 @@ var alarmPanelCapability = {
17245
17274
  */
17246
17275
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
17247
17276
  kind: "mutation",
17248
- auth: "admin"
17277
+ auth: "protected"
17249
17278
  })
17250
17279
  },
17251
17280
  status: {
@@ -21209,7 +21238,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
21209
21238
  deviceId: number(),
21210
21239
  trackId: string(),
21211
21240
  flags: TrackFlagsPatchSchema
21212
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
21241
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
21213
21242
  kind: "query",
21214
21243
  auth: "admin"
21215
21244
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -25212,7 +25241,7 @@ var brightnessCapability = {
25212
25241
  percentage: number().min(0).max(100)
25213
25242
  }), _void(), {
25214
25243
  kind: "mutation",
25215
- auth: "admin"
25244
+ auth: "protected"
25216
25245
  }) },
25217
25246
  events: {
25218
25247
  /**
@@ -25245,7 +25274,7 @@ onBrightnessChanged: { data: object({
25245
25274
  };
25246
25275
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25247
25276
  kind: "mutation",
25248
- auth: "admin"
25277
+ auth: "protected"
25249
25278
  });
25250
25279
  /**
25251
25280
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -25437,28 +25466,28 @@ var climateControlCapability = {
25437
25466
  mode: HvacModeSchema
25438
25467
  }), _void(), {
25439
25468
  kind: "mutation",
25440
- auth: "admin"
25469
+ auth: "protected"
25441
25470
  }),
25442
25471
  setFanMode: method(object({
25443
25472
  deviceId: number().int().nonnegative(),
25444
25473
  fanMode: string().min(1)
25445
25474
  }), _void(), {
25446
25475
  kind: "mutation",
25447
- auth: "admin"
25476
+ auth: "protected"
25448
25477
  }),
25449
25478
  setPreset: method(object({
25450
25479
  deviceId: number().int().nonnegative(),
25451
25480
  preset: string().min(1)
25452
25481
  }), _void(), {
25453
25482
  kind: "mutation",
25454
- auth: "admin"
25483
+ auth: "protected"
25455
25484
  }),
25456
25485
  setTarget: method(object({
25457
25486
  deviceId: number().int().nonnegative(),
25458
25487
  target: number()
25459
25488
  }), _void(), {
25460
25489
  kind: "mutation",
25461
- auth: "admin"
25490
+ auth: "protected"
25462
25491
  }),
25463
25492
  setTargetRange: method(object({
25464
25493
  deviceId: number().int().nonnegative(),
@@ -25466,28 +25495,28 @@ var climateControlCapability = {
25466
25495
  targetHigh: number()
25467
25496
  }), _void(), {
25468
25497
  kind: "mutation",
25469
- auth: "admin"
25498
+ auth: "protected"
25470
25499
  }),
25471
25500
  setTargetHumidity: method(object({
25472
25501
  deviceId: number().int().nonnegative(),
25473
25502
  targetHumidity: number().min(0).max(100)
25474
25503
  }), _void(), {
25475
25504
  kind: "mutation",
25476
- auth: "admin"
25505
+ auth: "protected"
25477
25506
  }),
25478
25507
  setSwingVertical: method(object({
25479
25508
  deviceId: number().int().nonnegative(),
25480
25509
  on: boolean()
25481
25510
  }), _void(), {
25482
25511
  kind: "mutation",
25483
- auth: "admin"
25512
+ auth: "protected"
25484
25513
  }),
25485
25514
  setSwingHorizontal: method(object({
25486
25515
  deviceId: number().int().nonnegative(),
25487
25516
  on: boolean()
25488
25517
  }), _void(), {
25489
25518
  kind: "mutation",
25490
- auth: "admin"
25519
+ auth: "protected"
25491
25520
  })
25492
25521
  },
25493
25522
  status: {
@@ -25587,7 +25616,7 @@ var colorCapability = {
25587
25616
  color: ColorInputSchema
25588
25617
  }), _void(), {
25589
25618
  kind: "mutation",
25590
- auth: "admin"
25619
+ auth: "protected"
25591
25620
  }) },
25592
25621
  events: {
25593
25622
  /**
@@ -25924,7 +25953,7 @@ var controlCapability = {
25924
25953
  control: ControlSetValueInputSchema
25925
25954
  }), _void(), {
25926
25955
  kind: "mutation",
25927
- auth: "admin"
25956
+ auth: "protected"
25928
25957
  }) },
25929
25958
  status: {
25930
25959
  schema: ControlStatusSchema,
@@ -25970,29 +25999,29 @@ var coverCapability = {
25970
25999
  methods: {
25971
26000
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25972
26001
  kind: "mutation",
25973
- auth: "admin"
26002
+ auth: "protected"
25974
26003
  }),
25975
26004
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25976
26005
  kind: "mutation",
25977
- auth: "admin"
26006
+ auth: "protected"
25978
26007
  }),
25979
26008
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25980
26009
  kind: "mutation",
25981
- auth: "admin"
26010
+ auth: "protected"
25982
26011
  }),
25983
26012
  setPosition: method(object({
25984
26013
  deviceId: number().int().nonnegative(),
25985
26014
  position: number().min(0).max(100)
25986
26015
  }), _void(), {
25987
26016
  kind: "mutation",
25988
- auth: "admin"
26017
+ auth: "protected"
25989
26018
  }),
25990
26019
  setTiltPosition: method(object({
25991
26020
  deviceId: number().int().nonnegative(),
25992
26021
  tiltPosition: number().min(0).max(100)
25993
26022
  }), _void(), {
25994
26023
  kind: "mutation",
25995
- auth: "admin"
26024
+ auth: "protected"
25996
26025
  })
25997
26026
  },
25998
26027
  status: {
@@ -26775,28 +26804,28 @@ var fanControlCapability = {
26775
26804
  percentage: number().min(0).max(100)
26776
26805
  }), _void(), {
26777
26806
  kind: "mutation",
26778
- auth: "admin"
26807
+ auth: "protected"
26779
26808
  }),
26780
26809
  setPreset: method(object({
26781
26810
  deviceId: number().int().nonnegative(),
26782
26811
  preset: string().min(1)
26783
26812
  }), _void(), {
26784
26813
  kind: "mutation",
26785
- auth: "admin"
26814
+ auth: "protected"
26786
26815
  }),
26787
26816
  setDirection: method(object({
26788
26817
  deviceId: number().int().nonnegative(),
26789
26818
  direction: FanDirectionSchema
26790
26819
  }), _void(), {
26791
26820
  kind: "mutation",
26792
- auth: "admin"
26821
+ auth: "protected"
26793
26822
  }),
26794
26823
  setOscillating: method(object({
26795
26824
  deviceId: number().int().nonnegative(),
26796
26825
  oscillating: boolean()
26797
26826
  }), _void(), {
26798
26827
  kind: "mutation",
26799
- auth: "admin"
26828
+ auth: "protected"
26800
26829
  })
26801
26830
  },
26802
26831
  status: {
@@ -27018,21 +27047,21 @@ var humidifierCapability = {
27018
27047
  on: boolean()
27019
27048
  }), _void(), {
27020
27049
  kind: "mutation",
27021
- auth: "admin"
27050
+ auth: "protected"
27022
27051
  }),
27023
27052
  setTargetHumidity: method(object({
27024
27053
  deviceId: number().int().nonnegative(),
27025
27054
  humidity: number().min(0).max(100)
27026
27055
  }), _void(), {
27027
27056
  kind: "mutation",
27028
- auth: "admin"
27057
+ auth: "protected"
27029
27058
  }),
27030
27059
  setMode: method(object({
27031
27060
  deviceId: number().int().nonnegative(),
27032
27061
  mode: string().min(1)
27033
27062
  }), _void(), {
27034
27063
  kind: "mutation",
27035
- auth: "admin"
27064
+ auth: "protected"
27036
27065
  })
27037
27066
  },
27038
27067
  status: {
@@ -27733,15 +27762,15 @@ var lawnMowerControlCapability = {
27733
27762
  methods: {
27734
27763
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27735
27764
  kind: "mutation",
27736
- auth: "admin"
27765
+ auth: "protected"
27737
27766
  }),
27738
27767
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27739
27768
  kind: "mutation",
27740
- auth: "admin"
27769
+ auth: "protected"
27741
27770
  }),
27742
27771
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27743
27772
  kind: "mutation",
27744
- auth: "admin"
27773
+ auth: "protected"
27745
27774
  })
27746
27775
  },
27747
27776
  status: {
@@ -28026,18 +28055,18 @@ var lockControlCapability = {
28026
28055
  code: string().min(1).optional()
28027
28056
  }), _void(), {
28028
28057
  kind: "mutation",
28029
- auth: "admin"
28058
+ auth: "protected"
28030
28059
  }),
28031
28060
  unlock: method(object({
28032
28061
  deviceId: number().int().nonnegative(),
28033
28062
  code: string().min(1).optional()
28034
28063
  }), _void(), {
28035
28064
  kind: "mutation",
28036
- auth: "admin"
28065
+ auth: "protected"
28037
28066
  }),
28038
28067
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28039
28068
  kind: "mutation",
28040
- auth: "admin"
28069
+ auth: "protected"
28041
28070
  })
28042
28071
  },
28043
28072
  status: {
@@ -28140,65 +28169,65 @@ var mediaPlayerCapability = {
28140
28169
  methods: {
28141
28170
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28142
28171
  kind: "mutation",
28143
- auth: "admin"
28172
+ auth: "protected"
28144
28173
  }),
28145
28174
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28146
28175
  kind: "mutation",
28147
- auth: "admin"
28176
+ auth: "protected"
28148
28177
  }),
28149
28178
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28150
28179
  kind: "mutation",
28151
- auth: "admin"
28180
+ auth: "protected"
28152
28181
  }),
28153
28182
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28154
28183
  kind: "mutation",
28155
- auth: "admin"
28184
+ auth: "protected"
28156
28185
  }),
28157
28186
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28158
28187
  kind: "mutation",
28159
- auth: "admin"
28188
+ auth: "protected"
28160
28189
  }),
28161
28190
  seek: method(object({
28162
28191
  deviceId: number().int().nonnegative(),
28163
28192
  positionMs: number().int().nonnegative()
28164
28193
  }), _void(), {
28165
28194
  kind: "mutation",
28166
- auth: "admin"
28195
+ auth: "protected"
28167
28196
  }),
28168
28197
  setVolume: method(object({
28169
28198
  deviceId: number().int().nonnegative(),
28170
28199
  volumeLevel: number().min(0).max(100)
28171
28200
  }), _void(), {
28172
28201
  kind: "mutation",
28173
- auth: "admin"
28202
+ auth: "protected"
28174
28203
  }),
28175
28204
  setMute: method(object({
28176
28205
  deviceId: number().int().nonnegative(),
28177
28206
  muted: boolean()
28178
28207
  }), _void(), {
28179
28208
  kind: "mutation",
28180
- auth: "admin"
28209
+ auth: "protected"
28181
28210
  }),
28182
28211
  setShuffle: method(object({
28183
28212
  deviceId: number().int().nonnegative(),
28184
28213
  shuffle: boolean()
28185
28214
  }), _void(), {
28186
28215
  kind: "mutation",
28187
- auth: "admin"
28216
+ auth: "protected"
28188
28217
  }),
28189
28218
  setRepeat: method(object({
28190
28219
  deviceId: number().int().nonnegative(),
28191
28220
  repeat: MediaPlayerRepeatSchema
28192
28221
  }), _void(), {
28193
28222
  kind: "mutation",
28194
- auth: "admin"
28223
+ auth: "protected"
28195
28224
  }),
28196
28225
  selectSource: method(object({
28197
28226
  deviceId: number().int().nonnegative(),
28198
28227
  source: string().min(1)
28199
28228
  }), _void(), {
28200
28229
  kind: "mutation",
28201
- auth: "admin"
28230
+ auth: "protected"
28202
28231
  }),
28203
28232
  playMedia: method(object({
28204
28233
  deviceId: number().int().nonnegative(),
@@ -28209,7 +28238,7 @@ var mediaPlayerCapability = {
28209
28238
  mediaType: string().min(1)
28210
28239
  }), _void(), {
28211
28240
  kind: "mutation",
28212
- auth: "admin"
28241
+ auth: "protected"
28213
28242
  })
28214
28243
  },
28215
28244
  status: {
@@ -29802,27 +29831,27 @@ var petFeederCapability = {
29802
29831
  hopper2: gramsPortion.optional()
29803
29832
  }), _void(), {
29804
29833
  kind: "mutation",
29805
- auth: "admin"
29834
+ auth: "protected"
29806
29835
  }),
29807
29836
  /** Cancel an in-progress manual feed. */
29808
29837
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29809
29838
  kind: "mutation",
29810
- auth: "admin"
29839
+ auth: "protected"
29811
29840
  }),
29812
29841
  /** Reset the desiccant "days remaining" counter after replacing it. */
29813
29842
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29814
29843
  kind: "mutation",
29815
- auth: "admin"
29844
+ auth: "protected"
29816
29845
  }),
29817
29846
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
29818
29847
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29819
29848
  kind: "mutation",
29820
- auth: "admin"
29849
+ auth: "protected"
29821
29850
  }),
29822
29851
  /** Call the pet with the recorded prompt (D3). */
29823
29852
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29824
29853
  kind: "mutation",
29825
- auth: "admin"
29854
+ auth: "protected"
29826
29855
  }),
29827
29856
  /** Play a stored sound by id (D3 / D4H / D4SH). */
29828
29857
  playSound: method(object({
@@ -29830,7 +29859,7 @@ var petFeederCapability = {
29830
29859
  soundId: number().int().nonnegative()
29831
29860
  }), _void(), {
29832
29861
  kind: "mutation",
29833
- auth: "admin"
29862
+ auth: "protected"
29834
29863
  }),
29835
29864
  /** Toggle the child-lock (manual-lock) setting. */
29836
29865
  setChildLock: method(object({
@@ -29838,7 +29867,7 @@ var petFeederCapability = {
29838
29867
  on: boolean()
29839
29868
  }), _void(), {
29840
29869
  kind: "mutation",
29841
- auth: "admin"
29870
+ auth: "protected"
29842
29871
  }),
29843
29872
  /** Toggle the front indicator light. */
29844
29873
  setIndicatorLight: method(object({
@@ -29846,7 +29875,7 @@ var petFeederCapability = {
29846
29875
  on: boolean()
29847
29876
  }), _void(), {
29848
29877
  kind: "mutation",
29849
- auth: "admin"
29878
+ auth: "protected"
29850
29879
  }),
29851
29880
  /** Toggle the dispense chime. */
29852
29881
  setFeedSound: method(object({
@@ -29854,7 +29883,7 @@ var petFeederCapability = {
29854
29883
  on: boolean()
29855
29884
  }), _void(), {
29856
29885
  kind: "mutation",
29857
- auth: "admin"
29886
+ auth: "protected"
29858
29887
  }),
29859
29888
  /** Set the speaker / prompt volume level. */
29860
29889
  setVolume: method(object({
@@ -29862,7 +29891,7 @@ var petFeederCapability = {
29862
29891
  level: number().int().nonnegative()
29863
29892
  }), _void(), {
29864
29893
  kind: "mutation",
29865
- auth: "admin"
29894
+ auth: "protected"
29866
29895
  })
29867
29896
  },
29868
29897
  status: {
@@ -32158,7 +32187,7 @@ var switchCapability = {
32158
32187
  on: boolean()
32159
32188
  }), _void(), {
32160
32189
  kind: "mutation",
32161
- auth: "admin"
32190
+ auth: "protected"
32162
32191
  }) },
32163
32192
  events: { onStateChanged: { data: object({
32164
32193
  deviceId: number(),
@@ -33146,30 +33175,30 @@ var vacuumControlCapability = {
33146
33175
  methods: {
33147
33176
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33148
33177
  kind: "mutation",
33149
- auth: "admin"
33178
+ auth: "protected"
33150
33179
  }),
33151
33180
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33152
33181
  kind: "mutation",
33153
- auth: "admin"
33182
+ auth: "protected"
33154
33183
  }),
33155
33184
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33156
33185
  kind: "mutation",
33157
- auth: "admin"
33186
+ auth: "protected"
33158
33187
  }),
33159
33188
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33160
33189
  kind: "mutation",
33161
- auth: "admin"
33190
+ auth: "protected"
33162
33191
  }),
33163
33192
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33164
33193
  kind: "mutation",
33165
- auth: "admin"
33194
+ auth: "protected"
33166
33195
  }),
33167
33196
  setFanSpeed: method(object({
33168
33197
  deviceId: number().int().nonnegative(),
33169
33198
  speed: string().min(1)
33170
33199
  }), _void(), {
33171
33200
  kind: "mutation",
33172
- auth: "admin"
33201
+ auth: "protected"
33173
33202
  })
33174
33203
  },
33175
33204
  status: {
@@ -33213,22 +33242,22 @@ var valveCapability = {
33213
33242
  methods: {
33214
33243
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33215
33244
  kind: "mutation",
33216
- auth: "admin"
33245
+ auth: "protected"
33217
33246
  }),
33218
33247
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33219
33248
  kind: "mutation",
33220
- auth: "admin"
33249
+ auth: "protected"
33221
33250
  }),
33222
33251
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33223
33252
  kind: "mutation",
33224
- auth: "admin"
33253
+ auth: "protected"
33225
33254
  }),
33226
33255
  setPosition: method(object({
33227
33256
  deviceId: number().int().nonnegative(),
33228
33257
  position: number().min(0).max(100)
33229
33258
  }), _void(), {
33230
33259
  kind: "mutation",
33231
- auth: "admin"
33260
+ auth: "protected"
33232
33261
  })
33233
33262
  },
33234
33263
  status: {
@@ -33327,21 +33356,21 @@ var waterHeaterCapability = {
33327
33356
  temp: number().finite()
33328
33357
  }), _void(), {
33329
33358
  kind: "mutation",
33330
- auth: "admin"
33359
+ auth: "protected"
33331
33360
  }),
33332
33361
  setOperationMode: method(object({
33333
33362
  deviceId: number().int().nonnegative(),
33334
33363
  mode: string().min(1)
33335
33364
  }), _void(), {
33336
33365
  kind: "mutation",
33337
- auth: "admin"
33366
+ auth: "protected"
33338
33367
  }),
33339
33368
  setAway: method(object({
33340
33369
  deviceId: number().int().nonnegative(),
33341
33370
  on: boolean()
33342
33371
  }), _void(), {
33343
33372
  kind: "mutation",
33344
- auth: "admin"
33373
+ auth: "protected"
33345
33374
  })
33346
33375
  },
33347
33376
  status: {
@@ -38611,6 +38640,12 @@ Object.freeze({
38611
38640
  addonId: null,
38612
38641
  access: "view"
38613
38642
  },
38643
+ "pipelineAnalytics.listArchivedDebugNotes": {
38644
+ capName: "pipeline-analytics",
38645
+ capScope: "device",
38646
+ addonId: null,
38647
+ access: "view"
38648
+ },
38614
38649
  "pipelineAnalytics.listEventKinds": {
38615
38650
  capName: "pipeline-analytics",
38616
38651
  capScope: "device",
@@ -42398,6 +42433,11 @@ Object.freeze({
42398
42433
  form: "array",
42399
42434
  optional: true
42400
42435
  }],
42436
+ "pipelineAnalytics.listArchivedDebugNotes": [{
42437
+ name: "deviceId",
42438
+ form: "single",
42439
+ optional: true
42440
+ }],
42401
42441
  "pipelineAnalytics.listEventKinds": [{
42402
42442
  name: "deviceId",
42403
42443
  form: "single",
package/dist/addon.mjs CHANGED
@@ -8728,6 +8728,35 @@ var CameraSwitchGroupSchema = object({
8728
8728
  /** Unix ms when the group was composed server-side. */
8729
8729
  fetchedAt: number()
8730
8730
  });
8731
+ /** One archived note — the operator's words plus enough context to find what
8732
+ * they were looking at, after the track itself is gone. */
8733
+ var ArchivedDebugNoteSchema = object({
8734
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
8735
+ * same sentence about the same track lands on the row already there. */
8736
+ id: string(),
8737
+ /** The operator's own words, verbatim. */
8738
+ note: string(),
8739
+ /** The camera. Required — every question here is asked per-camera. */
8740
+ deviceId: number().int(),
8741
+ /** The track the note was written on. PROVENANCE, not ownership: the track
8742
+ * is expected to be gone, and this row is not a reference to it. */
8743
+ sourceTrackId: string(),
8744
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
8745
+ archivedAt: number().int(),
8746
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
8747
+ trackStartedAt: number().int().nullable(),
8748
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
8749
+ trackClass: string().nullable(),
8750
+ /** The track's display label at review time; `null` when it had none. */
8751
+ trackLabel: string().nullable()
8752
+ });
8753
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
8754
+ var ArchivedDebugNoteQueryInputSchema = object({
8755
+ /** Restrict to a single camera; omit for every row. */
8756
+ deviceId: number().int().optional(),
8757
+ /** Max rows returned, newest-first. */
8758
+ limit: number().int().min(1).max(1e3).optional()
8759
+ });
8731
8760
  /**
8732
8761
  * Ops-log — the durable, append-only operations audit shared by the
8733
8762
  * recordings and events management surfaces.
@@ -17226,14 +17255,14 @@ var alarmPanelCapability = {
17226
17255
  code: string().min(1).optional()
17227
17256
  }), _void(), {
17228
17257
  kind: "mutation",
17229
- auth: "admin"
17258
+ auth: "protected"
17230
17259
  }),
17231
17260
  disarm: method(object({
17232
17261
  deviceId: number().int().nonnegative(),
17233
17262
  code: string().min(1).optional()
17234
17263
  }), _void(), {
17235
17264
  kind: "mutation",
17236
- auth: "admin"
17265
+ auth: "protected"
17237
17266
  }),
17238
17267
  /**
17239
17268
  * Force the panel into the `triggered` state — used by HA
@@ -17244,7 +17273,7 @@ var alarmPanelCapability = {
17244
17273
  */
17245
17274
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
17246
17275
  kind: "mutation",
17247
- auth: "admin"
17276
+ auth: "protected"
17248
17277
  })
17249
17278
  },
17250
17279
  status: {
@@ -21208,7 +21237,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
21208
21237
  deviceId: number(),
21209
21238
  trackId: string(),
21210
21239
  flags: TrackFlagsPatchSchema
21211
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
21240
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
21212
21241
  kind: "query",
21213
21242
  auth: "admin"
21214
21243
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -25211,7 +25240,7 @@ var brightnessCapability = {
25211
25240
  percentage: number().min(0).max(100)
25212
25241
  }), _void(), {
25213
25242
  kind: "mutation",
25214
- auth: "admin"
25243
+ auth: "protected"
25215
25244
  }) },
25216
25245
  events: {
25217
25246
  /**
@@ -25244,7 +25273,7 @@ onBrightnessChanged: { data: object({
25244
25273
  };
25245
25274
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25246
25275
  kind: "mutation",
25247
- auth: "admin"
25276
+ auth: "protected"
25248
25277
  });
25249
25278
  /**
25250
25279
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -25436,28 +25465,28 @@ var climateControlCapability = {
25436
25465
  mode: HvacModeSchema
25437
25466
  }), _void(), {
25438
25467
  kind: "mutation",
25439
- auth: "admin"
25468
+ auth: "protected"
25440
25469
  }),
25441
25470
  setFanMode: method(object({
25442
25471
  deviceId: number().int().nonnegative(),
25443
25472
  fanMode: string().min(1)
25444
25473
  }), _void(), {
25445
25474
  kind: "mutation",
25446
- auth: "admin"
25475
+ auth: "protected"
25447
25476
  }),
25448
25477
  setPreset: method(object({
25449
25478
  deviceId: number().int().nonnegative(),
25450
25479
  preset: string().min(1)
25451
25480
  }), _void(), {
25452
25481
  kind: "mutation",
25453
- auth: "admin"
25482
+ auth: "protected"
25454
25483
  }),
25455
25484
  setTarget: method(object({
25456
25485
  deviceId: number().int().nonnegative(),
25457
25486
  target: number()
25458
25487
  }), _void(), {
25459
25488
  kind: "mutation",
25460
- auth: "admin"
25489
+ auth: "protected"
25461
25490
  }),
25462
25491
  setTargetRange: method(object({
25463
25492
  deviceId: number().int().nonnegative(),
@@ -25465,28 +25494,28 @@ var climateControlCapability = {
25465
25494
  targetHigh: number()
25466
25495
  }), _void(), {
25467
25496
  kind: "mutation",
25468
- auth: "admin"
25497
+ auth: "protected"
25469
25498
  }),
25470
25499
  setTargetHumidity: method(object({
25471
25500
  deviceId: number().int().nonnegative(),
25472
25501
  targetHumidity: number().min(0).max(100)
25473
25502
  }), _void(), {
25474
25503
  kind: "mutation",
25475
- auth: "admin"
25504
+ auth: "protected"
25476
25505
  }),
25477
25506
  setSwingVertical: method(object({
25478
25507
  deviceId: number().int().nonnegative(),
25479
25508
  on: boolean()
25480
25509
  }), _void(), {
25481
25510
  kind: "mutation",
25482
- auth: "admin"
25511
+ auth: "protected"
25483
25512
  }),
25484
25513
  setSwingHorizontal: method(object({
25485
25514
  deviceId: number().int().nonnegative(),
25486
25515
  on: boolean()
25487
25516
  }), _void(), {
25488
25517
  kind: "mutation",
25489
- auth: "admin"
25518
+ auth: "protected"
25490
25519
  })
25491
25520
  },
25492
25521
  status: {
@@ -25586,7 +25615,7 @@ var colorCapability = {
25586
25615
  color: ColorInputSchema
25587
25616
  }), _void(), {
25588
25617
  kind: "mutation",
25589
- auth: "admin"
25618
+ auth: "protected"
25590
25619
  }) },
25591
25620
  events: {
25592
25621
  /**
@@ -25923,7 +25952,7 @@ var controlCapability = {
25923
25952
  control: ControlSetValueInputSchema
25924
25953
  }), _void(), {
25925
25954
  kind: "mutation",
25926
- auth: "admin"
25955
+ auth: "protected"
25927
25956
  }) },
25928
25957
  status: {
25929
25958
  schema: ControlStatusSchema,
@@ -25969,29 +25998,29 @@ var coverCapability = {
25969
25998
  methods: {
25970
25999
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25971
26000
  kind: "mutation",
25972
- auth: "admin"
26001
+ auth: "protected"
25973
26002
  }),
25974
26003
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25975
26004
  kind: "mutation",
25976
- auth: "admin"
26005
+ auth: "protected"
25977
26006
  }),
25978
26007
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25979
26008
  kind: "mutation",
25980
- auth: "admin"
26009
+ auth: "protected"
25981
26010
  }),
25982
26011
  setPosition: method(object({
25983
26012
  deviceId: number().int().nonnegative(),
25984
26013
  position: number().min(0).max(100)
25985
26014
  }), _void(), {
25986
26015
  kind: "mutation",
25987
- auth: "admin"
26016
+ auth: "protected"
25988
26017
  }),
25989
26018
  setTiltPosition: method(object({
25990
26019
  deviceId: number().int().nonnegative(),
25991
26020
  tiltPosition: number().min(0).max(100)
25992
26021
  }), _void(), {
25993
26022
  kind: "mutation",
25994
- auth: "admin"
26023
+ auth: "protected"
25995
26024
  })
25996
26025
  },
25997
26026
  status: {
@@ -26774,28 +26803,28 @@ var fanControlCapability = {
26774
26803
  percentage: number().min(0).max(100)
26775
26804
  }), _void(), {
26776
26805
  kind: "mutation",
26777
- auth: "admin"
26806
+ auth: "protected"
26778
26807
  }),
26779
26808
  setPreset: method(object({
26780
26809
  deviceId: number().int().nonnegative(),
26781
26810
  preset: string().min(1)
26782
26811
  }), _void(), {
26783
26812
  kind: "mutation",
26784
- auth: "admin"
26813
+ auth: "protected"
26785
26814
  }),
26786
26815
  setDirection: method(object({
26787
26816
  deviceId: number().int().nonnegative(),
26788
26817
  direction: FanDirectionSchema
26789
26818
  }), _void(), {
26790
26819
  kind: "mutation",
26791
- auth: "admin"
26820
+ auth: "protected"
26792
26821
  }),
26793
26822
  setOscillating: method(object({
26794
26823
  deviceId: number().int().nonnegative(),
26795
26824
  oscillating: boolean()
26796
26825
  }), _void(), {
26797
26826
  kind: "mutation",
26798
- auth: "admin"
26827
+ auth: "protected"
26799
26828
  })
26800
26829
  },
26801
26830
  status: {
@@ -27017,21 +27046,21 @@ var humidifierCapability = {
27017
27046
  on: boolean()
27018
27047
  }), _void(), {
27019
27048
  kind: "mutation",
27020
- auth: "admin"
27049
+ auth: "protected"
27021
27050
  }),
27022
27051
  setTargetHumidity: method(object({
27023
27052
  deviceId: number().int().nonnegative(),
27024
27053
  humidity: number().min(0).max(100)
27025
27054
  }), _void(), {
27026
27055
  kind: "mutation",
27027
- auth: "admin"
27056
+ auth: "protected"
27028
27057
  }),
27029
27058
  setMode: method(object({
27030
27059
  deviceId: number().int().nonnegative(),
27031
27060
  mode: string().min(1)
27032
27061
  }), _void(), {
27033
27062
  kind: "mutation",
27034
- auth: "admin"
27063
+ auth: "protected"
27035
27064
  })
27036
27065
  },
27037
27066
  status: {
@@ -27732,15 +27761,15 @@ var lawnMowerControlCapability = {
27732
27761
  methods: {
27733
27762
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27734
27763
  kind: "mutation",
27735
- auth: "admin"
27764
+ auth: "protected"
27736
27765
  }),
27737
27766
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27738
27767
  kind: "mutation",
27739
- auth: "admin"
27768
+ auth: "protected"
27740
27769
  }),
27741
27770
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27742
27771
  kind: "mutation",
27743
- auth: "admin"
27772
+ auth: "protected"
27744
27773
  })
27745
27774
  },
27746
27775
  status: {
@@ -28025,18 +28054,18 @@ var lockControlCapability = {
28025
28054
  code: string().min(1).optional()
28026
28055
  }), _void(), {
28027
28056
  kind: "mutation",
28028
- auth: "admin"
28057
+ auth: "protected"
28029
28058
  }),
28030
28059
  unlock: method(object({
28031
28060
  deviceId: number().int().nonnegative(),
28032
28061
  code: string().min(1).optional()
28033
28062
  }), _void(), {
28034
28063
  kind: "mutation",
28035
- auth: "admin"
28064
+ auth: "protected"
28036
28065
  }),
28037
28066
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28038
28067
  kind: "mutation",
28039
- auth: "admin"
28068
+ auth: "protected"
28040
28069
  })
28041
28070
  },
28042
28071
  status: {
@@ -28139,65 +28168,65 @@ var mediaPlayerCapability = {
28139
28168
  methods: {
28140
28169
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28141
28170
  kind: "mutation",
28142
- auth: "admin"
28171
+ auth: "protected"
28143
28172
  }),
28144
28173
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28145
28174
  kind: "mutation",
28146
- auth: "admin"
28175
+ auth: "protected"
28147
28176
  }),
28148
28177
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28149
28178
  kind: "mutation",
28150
- auth: "admin"
28179
+ auth: "protected"
28151
28180
  }),
28152
28181
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28153
28182
  kind: "mutation",
28154
- auth: "admin"
28183
+ auth: "protected"
28155
28184
  }),
28156
28185
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28157
28186
  kind: "mutation",
28158
- auth: "admin"
28187
+ auth: "protected"
28159
28188
  }),
28160
28189
  seek: method(object({
28161
28190
  deviceId: number().int().nonnegative(),
28162
28191
  positionMs: number().int().nonnegative()
28163
28192
  }), _void(), {
28164
28193
  kind: "mutation",
28165
- auth: "admin"
28194
+ auth: "protected"
28166
28195
  }),
28167
28196
  setVolume: method(object({
28168
28197
  deviceId: number().int().nonnegative(),
28169
28198
  volumeLevel: number().min(0).max(100)
28170
28199
  }), _void(), {
28171
28200
  kind: "mutation",
28172
- auth: "admin"
28201
+ auth: "protected"
28173
28202
  }),
28174
28203
  setMute: method(object({
28175
28204
  deviceId: number().int().nonnegative(),
28176
28205
  muted: boolean()
28177
28206
  }), _void(), {
28178
28207
  kind: "mutation",
28179
- auth: "admin"
28208
+ auth: "protected"
28180
28209
  }),
28181
28210
  setShuffle: method(object({
28182
28211
  deviceId: number().int().nonnegative(),
28183
28212
  shuffle: boolean()
28184
28213
  }), _void(), {
28185
28214
  kind: "mutation",
28186
- auth: "admin"
28215
+ auth: "protected"
28187
28216
  }),
28188
28217
  setRepeat: method(object({
28189
28218
  deviceId: number().int().nonnegative(),
28190
28219
  repeat: MediaPlayerRepeatSchema
28191
28220
  }), _void(), {
28192
28221
  kind: "mutation",
28193
- auth: "admin"
28222
+ auth: "protected"
28194
28223
  }),
28195
28224
  selectSource: method(object({
28196
28225
  deviceId: number().int().nonnegative(),
28197
28226
  source: string().min(1)
28198
28227
  }), _void(), {
28199
28228
  kind: "mutation",
28200
- auth: "admin"
28229
+ auth: "protected"
28201
28230
  }),
28202
28231
  playMedia: method(object({
28203
28232
  deviceId: number().int().nonnegative(),
@@ -28208,7 +28237,7 @@ var mediaPlayerCapability = {
28208
28237
  mediaType: string().min(1)
28209
28238
  }), _void(), {
28210
28239
  kind: "mutation",
28211
- auth: "admin"
28240
+ auth: "protected"
28212
28241
  })
28213
28242
  },
28214
28243
  status: {
@@ -29801,27 +29830,27 @@ var petFeederCapability = {
29801
29830
  hopper2: gramsPortion.optional()
29802
29831
  }), _void(), {
29803
29832
  kind: "mutation",
29804
- auth: "admin"
29833
+ auth: "protected"
29805
29834
  }),
29806
29835
  /** Cancel an in-progress manual feed. */
29807
29836
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29808
29837
  kind: "mutation",
29809
- auth: "admin"
29838
+ auth: "protected"
29810
29839
  }),
29811
29840
  /** Reset the desiccant "days remaining" counter after replacing it. */
29812
29841
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29813
29842
  kind: "mutation",
29814
- auth: "admin"
29843
+ auth: "protected"
29815
29844
  }),
29816
29845
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
29817
29846
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29818
29847
  kind: "mutation",
29819
- auth: "admin"
29848
+ auth: "protected"
29820
29849
  }),
29821
29850
  /** Call the pet with the recorded prompt (D3). */
29822
29851
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29823
29852
  kind: "mutation",
29824
- auth: "admin"
29853
+ auth: "protected"
29825
29854
  }),
29826
29855
  /** Play a stored sound by id (D3 / D4H / D4SH). */
29827
29856
  playSound: method(object({
@@ -29829,7 +29858,7 @@ var petFeederCapability = {
29829
29858
  soundId: number().int().nonnegative()
29830
29859
  }), _void(), {
29831
29860
  kind: "mutation",
29832
- auth: "admin"
29861
+ auth: "protected"
29833
29862
  }),
29834
29863
  /** Toggle the child-lock (manual-lock) setting. */
29835
29864
  setChildLock: method(object({
@@ -29837,7 +29866,7 @@ var petFeederCapability = {
29837
29866
  on: boolean()
29838
29867
  }), _void(), {
29839
29868
  kind: "mutation",
29840
- auth: "admin"
29869
+ auth: "protected"
29841
29870
  }),
29842
29871
  /** Toggle the front indicator light. */
29843
29872
  setIndicatorLight: method(object({
@@ -29845,7 +29874,7 @@ var petFeederCapability = {
29845
29874
  on: boolean()
29846
29875
  }), _void(), {
29847
29876
  kind: "mutation",
29848
- auth: "admin"
29877
+ auth: "protected"
29849
29878
  }),
29850
29879
  /** Toggle the dispense chime. */
29851
29880
  setFeedSound: method(object({
@@ -29853,7 +29882,7 @@ var petFeederCapability = {
29853
29882
  on: boolean()
29854
29883
  }), _void(), {
29855
29884
  kind: "mutation",
29856
- auth: "admin"
29885
+ auth: "protected"
29857
29886
  }),
29858
29887
  /** Set the speaker / prompt volume level. */
29859
29888
  setVolume: method(object({
@@ -29861,7 +29890,7 @@ var petFeederCapability = {
29861
29890
  level: number().int().nonnegative()
29862
29891
  }), _void(), {
29863
29892
  kind: "mutation",
29864
- auth: "admin"
29893
+ auth: "protected"
29865
29894
  })
29866
29895
  },
29867
29896
  status: {
@@ -32157,7 +32186,7 @@ var switchCapability = {
32157
32186
  on: boolean()
32158
32187
  }), _void(), {
32159
32188
  kind: "mutation",
32160
- auth: "admin"
32189
+ auth: "protected"
32161
32190
  }) },
32162
32191
  events: { onStateChanged: { data: object({
32163
32192
  deviceId: number(),
@@ -33145,30 +33174,30 @@ var vacuumControlCapability = {
33145
33174
  methods: {
33146
33175
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33147
33176
  kind: "mutation",
33148
- auth: "admin"
33177
+ auth: "protected"
33149
33178
  }),
33150
33179
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33151
33180
  kind: "mutation",
33152
- auth: "admin"
33181
+ auth: "protected"
33153
33182
  }),
33154
33183
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33155
33184
  kind: "mutation",
33156
- auth: "admin"
33185
+ auth: "protected"
33157
33186
  }),
33158
33187
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33159
33188
  kind: "mutation",
33160
- auth: "admin"
33189
+ auth: "protected"
33161
33190
  }),
33162
33191
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33163
33192
  kind: "mutation",
33164
- auth: "admin"
33193
+ auth: "protected"
33165
33194
  }),
33166
33195
  setFanSpeed: method(object({
33167
33196
  deviceId: number().int().nonnegative(),
33168
33197
  speed: string().min(1)
33169
33198
  }), _void(), {
33170
33199
  kind: "mutation",
33171
- auth: "admin"
33200
+ auth: "protected"
33172
33201
  })
33173
33202
  },
33174
33203
  status: {
@@ -33212,22 +33241,22 @@ var valveCapability = {
33212
33241
  methods: {
33213
33242
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33214
33243
  kind: "mutation",
33215
- auth: "admin"
33244
+ auth: "protected"
33216
33245
  }),
33217
33246
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33218
33247
  kind: "mutation",
33219
- auth: "admin"
33248
+ auth: "protected"
33220
33249
  }),
33221
33250
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33222
33251
  kind: "mutation",
33223
- auth: "admin"
33252
+ auth: "protected"
33224
33253
  }),
33225
33254
  setPosition: method(object({
33226
33255
  deviceId: number().int().nonnegative(),
33227
33256
  position: number().min(0).max(100)
33228
33257
  }), _void(), {
33229
33258
  kind: "mutation",
33230
- auth: "admin"
33259
+ auth: "protected"
33231
33260
  })
33232
33261
  },
33233
33262
  status: {
@@ -33326,21 +33355,21 @@ var waterHeaterCapability = {
33326
33355
  temp: number().finite()
33327
33356
  }), _void(), {
33328
33357
  kind: "mutation",
33329
- auth: "admin"
33358
+ auth: "protected"
33330
33359
  }),
33331
33360
  setOperationMode: method(object({
33332
33361
  deviceId: number().int().nonnegative(),
33333
33362
  mode: string().min(1)
33334
33363
  }), _void(), {
33335
33364
  kind: "mutation",
33336
- auth: "admin"
33365
+ auth: "protected"
33337
33366
  }),
33338
33367
  setAway: method(object({
33339
33368
  deviceId: number().int().nonnegative(),
33340
33369
  on: boolean()
33341
33370
  }), _void(), {
33342
33371
  kind: "mutation",
33343
- auth: "admin"
33372
+ auth: "protected"
33344
33373
  })
33345
33374
  },
33346
33375
  status: {
@@ -38610,6 +38639,12 @@ Object.freeze({
38610
38639
  addonId: null,
38611
38640
  access: "view"
38612
38641
  },
38642
+ "pipelineAnalytics.listArchivedDebugNotes": {
38643
+ capName: "pipeline-analytics",
38644
+ capScope: "device",
38645
+ addonId: null,
38646
+ access: "view"
38647
+ },
38613
38648
  "pipelineAnalytics.listEventKinds": {
38614
38649
  capName: "pipeline-analytics",
38615
38650
  capScope: "device",
@@ -42397,6 +42432,11 @@ Object.freeze({
42397
42432
  form: "array",
42398
42433
  optional: true
42399
42434
  }],
42435
+ "pipelineAnalytics.listArchivedDebugNotes": [{
42436
+ name: "deviceId",
42437
+ form: "single",
42438
+ optional: true
42439
+ }],
42400
42440
  "pipelineAnalytics.listEventKinds": [{
42401
42441
  name: "deviceId",
42402
42442
  form: "single",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-provider-petkit",
3
- "version": "0.2.85",
3
+ "version": "0.2.87",
4
4
  "description": "PetKit smart-feeder device-provider addon for CamStack — wraps the @apocaliss92/nodepetkit PetKit cloud client",
5
5
  "keywords": [
6
6
  "camstack",