@camstack/addon-provider-reolink 1.2.108 → 1.2.110

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
@@ -7665,6 +7665,35 @@ var CameraSwitchGroupSchema = object({
7665
7665
  /** Unix ms when the group was composed server-side. */
7666
7666
  fetchedAt: number()
7667
7667
  });
7668
+ /** One archived note — the operator's words plus enough context to find what
7669
+ * they were looking at, after the track itself is gone. */
7670
+ var ArchivedDebugNoteSchema = object({
7671
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7672
+ * same sentence about the same track lands on the row already there. */
7673
+ id: string(),
7674
+ /** The operator's own words, verbatim. */
7675
+ note: string(),
7676
+ /** The camera. Required — every question here is asked per-camera. */
7677
+ deviceId: number().int(),
7678
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7679
+ * is expected to be gone, and this row is not a reference to it. */
7680
+ sourceTrackId: string(),
7681
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7682
+ archivedAt: number().int(),
7683
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7684
+ trackStartedAt: number().int().nullable(),
7685
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7686
+ trackClass: string().nullable(),
7687
+ /** The track's display label at review time; `null` when it had none. */
7688
+ trackLabel: string().nullable()
7689
+ });
7690
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7691
+ var ArchivedDebugNoteQueryInputSchema = object({
7692
+ /** Restrict to a single camera; omit for every row. */
7693
+ deviceId: number().int().optional(),
7694
+ /** Max rows returned, newest-first. */
7695
+ limit: number().int().min(1).max(1e3).optional()
7696
+ });
7668
7697
  /**
7669
7698
  * Ops-log — the durable, append-only operations audit shared by the
7670
7699
  * recordings and events management surfaces.
@@ -16752,14 +16781,14 @@ var alarmPanelCapability = {
16752
16781
  code: string().min(1).optional()
16753
16782
  }), _void(), {
16754
16783
  kind: "mutation",
16755
- auth: "admin"
16784
+ auth: "protected"
16756
16785
  }),
16757
16786
  disarm: method(object({
16758
16787
  deviceId: number().int().nonnegative(),
16759
16788
  code: string().min(1).optional()
16760
16789
  }), _void(), {
16761
16790
  kind: "mutation",
16762
- auth: "admin"
16791
+ auth: "protected"
16763
16792
  }),
16764
16793
  /**
16765
16794
  * Force the panel into the `triggered` state — used by HA
@@ -16770,7 +16799,7 @@ var alarmPanelCapability = {
16770
16799
  */
16771
16800
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
16772
16801
  kind: "mutation",
16773
- auth: "admin"
16802
+ auth: "protected"
16774
16803
  })
16775
16804
  },
16776
16805
  status: {
@@ -20734,7 +20763,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20734
20763
  deviceId: number(),
20735
20764
  trackId: string(),
20736
20765
  flags: TrackFlagsPatchSchema
20737
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
20766
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
20738
20767
  kind: "query",
20739
20768
  auth: "admin"
20740
20769
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -24841,7 +24870,7 @@ var brightnessCapability = {
24841
24870
  percentage: number().min(0).max(100)
24842
24871
  }), _void(), {
24843
24872
  kind: "mutation",
24844
- auth: "admin"
24873
+ auth: "protected"
24845
24874
  }) },
24846
24875
  events: {
24847
24876
  /**
@@ -24874,7 +24903,7 @@ onBrightnessChanged: { data: object({
24874
24903
  };
24875
24904
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24876
24905
  kind: "mutation",
24877
- auth: "admin"
24906
+ auth: "protected"
24878
24907
  });
24879
24908
  /**
24880
24909
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -25066,28 +25095,28 @@ var climateControlCapability = {
25066
25095
  mode: HvacModeSchema
25067
25096
  }), _void(), {
25068
25097
  kind: "mutation",
25069
- auth: "admin"
25098
+ auth: "protected"
25070
25099
  }),
25071
25100
  setFanMode: method(object({
25072
25101
  deviceId: number().int().nonnegative(),
25073
25102
  fanMode: string().min(1)
25074
25103
  }), _void(), {
25075
25104
  kind: "mutation",
25076
- auth: "admin"
25105
+ auth: "protected"
25077
25106
  }),
25078
25107
  setPreset: method(object({
25079
25108
  deviceId: number().int().nonnegative(),
25080
25109
  preset: string().min(1)
25081
25110
  }), _void(), {
25082
25111
  kind: "mutation",
25083
- auth: "admin"
25112
+ auth: "protected"
25084
25113
  }),
25085
25114
  setTarget: method(object({
25086
25115
  deviceId: number().int().nonnegative(),
25087
25116
  target: number()
25088
25117
  }), _void(), {
25089
25118
  kind: "mutation",
25090
- auth: "admin"
25119
+ auth: "protected"
25091
25120
  }),
25092
25121
  setTargetRange: method(object({
25093
25122
  deviceId: number().int().nonnegative(),
@@ -25095,28 +25124,28 @@ var climateControlCapability = {
25095
25124
  targetHigh: number()
25096
25125
  }), _void(), {
25097
25126
  kind: "mutation",
25098
- auth: "admin"
25127
+ auth: "protected"
25099
25128
  }),
25100
25129
  setTargetHumidity: method(object({
25101
25130
  deviceId: number().int().nonnegative(),
25102
25131
  targetHumidity: number().min(0).max(100)
25103
25132
  }), _void(), {
25104
25133
  kind: "mutation",
25105
- auth: "admin"
25134
+ auth: "protected"
25106
25135
  }),
25107
25136
  setSwingVertical: method(object({
25108
25137
  deviceId: number().int().nonnegative(),
25109
25138
  on: boolean()
25110
25139
  }), _void(), {
25111
25140
  kind: "mutation",
25112
- auth: "admin"
25141
+ auth: "protected"
25113
25142
  }),
25114
25143
  setSwingHorizontal: method(object({
25115
25144
  deviceId: number().int().nonnegative(),
25116
25145
  on: boolean()
25117
25146
  }), _void(), {
25118
25147
  kind: "mutation",
25119
- auth: "admin"
25148
+ auth: "protected"
25120
25149
  })
25121
25150
  },
25122
25151
  status: {
@@ -25216,7 +25245,7 @@ var colorCapability = {
25216
25245
  color: ColorInputSchema
25217
25246
  }), _void(), {
25218
25247
  kind: "mutation",
25219
- auth: "admin"
25248
+ auth: "protected"
25220
25249
  }) },
25221
25250
  events: {
25222
25251
  /**
@@ -25545,7 +25574,7 @@ var controlCapability = {
25545
25574
  control: ControlSetValueInputSchema
25546
25575
  }), _void(), {
25547
25576
  kind: "mutation",
25548
- auth: "admin"
25577
+ auth: "protected"
25549
25578
  }) },
25550
25579
  status: {
25551
25580
  schema: ControlStatusSchema,
@@ -25591,29 +25620,29 @@ var coverCapability = {
25591
25620
  methods: {
25592
25621
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25593
25622
  kind: "mutation",
25594
- auth: "admin"
25623
+ auth: "protected"
25595
25624
  }),
25596
25625
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25597
25626
  kind: "mutation",
25598
- auth: "admin"
25627
+ auth: "protected"
25599
25628
  }),
25600
25629
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25601
25630
  kind: "mutation",
25602
- auth: "admin"
25631
+ auth: "protected"
25603
25632
  }),
25604
25633
  setPosition: method(object({
25605
25634
  deviceId: number().int().nonnegative(),
25606
25635
  position: number().min(0).max(100)
25607
25636
  }), _void(), {
25608
25637
  kind: "mutation",
25609
- auth: "admin"
25638
+ auth: "protected"
25610
25639
  }),
25611
25640
  setTiltPosition: method(object({
25612
25641
  deviceId: number().int().nonnegative(),
25613
25642
  tiltPosition: number().min(0).max(100)
25614
25643
  }), _void(), {
25615
25644
  kind: "mutation",
25616
- auth: "admin"
25645
+ auth: "protected"
25617
25646
  })
25618
25647
  },
25619
25648
  status: {
@@ -26396,28 +26425,28 @@ var fanControlCapability = {
26396
26425
  percentage: number().min(0).max(100)
26397
26426
  }), _void(), {
26398
26427
  kind: "mutation",
26399
- auth: "admin"
26428
+ auth: "protected"
26400
26429
  }),
26401
26430
  setPreset: method(object({
26402
26431
  deviceId: number().int().nonnegative(),
26403
26432
  preset: string().min(1)
26404
26433
  }), _void(), {
26405
26434
  kind: "mutation",
26406
- auth: "admin"
26435
+ auth: "protected"
26407
26436
  }),
26408
26437
  setDirection: method(object({
26409
26438
  deviceId: number().int().nonnegative(),
26410
26439
  direction: FanDirectionSchema
26411
26440
  }), _void(), {
26412
26441
  kind: "mutation",
26413
- auth: "admin"
26442
+ auth: "protected"
26414
26443
  }),
26415
26444
  setOscillating: method(object({
26416
26445
  deviceId: number().int().nonnegative(),
26417
26446
  oscillating: boolean()
26418
26447
  }), _void(), {
26419
26448
  kind: "mutation",
26420
- auth: "admin"
26449
+ auth: "protected"
26421
26450
  })
26422
26451
  },
26423
26452
  status: {
@@ -26639,21 +26668,21 @@ var humidifierCapability = {
26639
26668
  on: boolean()
26640
26669
  }), _void(), {
26641
26670
  kind: "mutation",
26642
- auth: "admin"
26671
+ auth: "protected"
26643
26672
  }),
26644
26673
  setTargetHumidity: method(object({
26645
26674
  deviceId: number().int().nonnegative(),
26646
26675
  humidity: number().min(0).max(100)
26647
26676
  }), _void(), {
26648
26677
  kind: "mutation",
26649
- auth: "admin"
26678
+ auth: "protected"
26650
26679
  }),
26651
26680
  setMode: method(object({
26652
26681
  deviceId: number().int().nonnegative(),
26653
26682
  mode: string().min(1)
26654
26683
  }), _void(), {
26655
26684
  kind: "mutation",
26656
- auth: "admin"
26685
+ auth: "protected"
26657
26686
  })
26658
26687
  },
26659
26688
  status: {
@@ -27354,15 +27383,15 @@ var lawnMowerControlCapability = {
27354
27383
  methods: {
27355
27384
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27356
27385
  kind: "mutation",
27357
- auth: "admin"
27386
+ auth: "protected"
27358
27387
  }),
27359
27388
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27360
27389
  kind: "mutation",
27361
- auth: "admin"
27390
+ auth: "protected"
27362
27391
  }),
27363
27392
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27364
27393
  kind: "mutation",
27365
- auth: "admin"
27394
+ auth: "protected"
27366
27395
  })
27367
27396
  },
27368
27397
  status: {
@@ -27647,18 +27676,18 @@ var lockControlCapability = {
27647
27676
  code: string().min(1).optional()
27648
27677
  }), _void(), {
27649
27678
  kind: "mutation",
27650
- auth: "admin"
27679
+ auth: "protected"
27651
27680
  }),
27652
27681
  unlock: method(object({
27653
27682
  deviceId: number().int().nonnegative(),
27654
27683
  code: string().min(1).optional()
27655
27684
  }), _void(), {
27656
27685
  kind: "mutation",
27657
- auth: "admin"
27686
+ auth: "protected"
27658
27687
  }),
27659
27688
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27660
27689
  kind: "mutation",
27661
- auth: "admin"
27690
+ auth: "protected"
27662
27691
  })
27663
27692
  },
27664
27693
  status: {
@@ -27761,65 +27790,65 @@ var mediaPlayerCapability = {
27761
27790
  methods: {
27762
27791
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27763
27792
  kind: "mutation",
27764
- auth: "admin"
27793
+ auth: "protected"
27765
27794
  }),
27766
27795
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27767
27796
  kind: "mutation",
27768
- auth: "admin"
27797
+ auth: "protected"
27769
27798
  }),
27770
27799
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27771
27800
  kind: "mutation",
27772
- auth: "admin"
27801
+ auth: "protected"
27773
27802
  }),
27774
27803
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27775
27804
  kind: "mutation",
27776
- auth: "admin"
27805
+ auth: "protected"
27777
27806
  }),
27778
27807
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27779
27808
  kind: "mutation",
27780
- auth: "admin"
27809
+ auth: "protected"
27781
27810
  }),
27782
27811
  seek: method(object({
27783
27812
  deviceId: number().int().nonnegative(),
27784
27813
  positionMs: number().int().nonnegative()
27785
27814
  }), _void(), {
27786
27815
  kind: "mutation",
27787
- auth: "admin"
27816
+ auth: "protected"
27788
27817
  }),
27789
27818
  setVolume: method(object({
27790
27819
  deviceId: number().int().nonnegative(),
27791
27820
  volumeLevel: number().min(0).max(100)
27792
27821
  }), _void(), {
27793
27822
  kind: "mutation",
27794
- auth: "admin"
27823
+ auth: "protected"
27795
27824
  }),
27796
27825
  setMute: method(object({
27797
27826
  deviceId: number().int().nonnegative(),
27798
27827
  muted: boolean()
27799
27828
  }), _void(), {
27800
27829
  kind: "mutation",
27801
- auth: "admin"
27830
+ auth: "protected"
27802
27831
  }),
27803
27832
  setShuffle: method(object({
27804
27833
  deviceId: number().int().nonnegative(),
27805
27834
  shuffle: boolean()
27806
27835
  }), _void(), {
27807
27836
  kind: "mutation",
27808
- auth: "admin"
27837
+ auth: "protected"
27809
27838
  }),
27810
27839
  setRepeat: method(object({
27811
27840
  deviceId: number().int().nonnegative(),
27812
27841
  repeat: MediaPlayerRepeatSchema
27813
27842
  }), _void(), {
27814
27843
  kind: "mutation",
27815
- auth: "admin"
27844
+ auth: "protected"
27816
27845
  }),
27817
27846
  selectSource: method(object({
27818
27847
  deviceId: number().int().nonnegative(),
27819
27848
  source: string().min(1)
27820
27849
  }), _void(), {
27821
27850
  kind: "mutation",
27822
- auth: "admin"
27851
+ auth: "protected"
27823
27852
  }),
27824
27853
  playMedia: method(object({
27825
27854
  deviceId: number().int().nonnegative(),
@@ -27830,7 +27859,7 @@ var mediaPlayerCapability = {
27830
27859
  mediaType: string().min(1)
27831
27860
  }), _void(), {
27832
27861
  kind: "mutation",
27833
- auth: "admin"
27862
+ auth: "protected"
27834
27863
  })
27835
27864
  },
27836
27865
  status: {
@@ -29443,27 +29472,27 @@ var petFeederCapability = {
29443
29472
  hopper2: gramsPortion.optional()
29444
29473
  }), _void(), {
29445
29474
  kind: "mutation",
29446
- auth: "admin"
29475
+ auth: "protected"
29447
29476
  }),
29448
29477
  /** Cancel an in-progress manual feed. */
29449
29478
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29450
29479
  kind: "mutation",
29451
- auth: "admin"
29480
+ auth: "protected"
29452
29481
  }),
29453
29482
  /** Reset the desiccant "days remaining" counter after replacing it. */
29454
29483
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29455
29484
  kind: "mutation",
29456
- auth: "admin"
29485
+ auth: "protected"
29457
29486
  }),
29458
29487
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
29459
29488
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29460
29489
  kind: "mutation",
29461
- auth: "admin"
29490
+ auth: "protected"
29462
29491
  }),
29463
29492
  /** Call the pet with the recorded prompt (D3). */
29464
29493
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29465
29494
  kind: "mutation",
29466
- auth: "admin"
29495
+ auth: "protected"
29467
29496
  }),
29468
29497
  /** Play a stored sound by id (D3 / D4H / D4SH). */
29469
29498
  playSound: method(object({
@@ -29471,7 +29500,7 @@ var petFeederCapability = {
29471
29500
  soundId: number().int().nonnegative()
29472
29501
  }), _void(), {
29473
29502
  kind: "mutation",
29474
- auth: "admin"
29503
+ auth: "protected"
29475
29504
  }),
29476
29505
  /** Toggle the child-lock (manual-lock) setting. */
29477
29506
  setChildLock: method(object({
@@ -29479,7 +29508,7 @@ var petFeederCapability = {
29479
29508
  on: boolean()
29480
29509
  }), _void(), {
29481
29510
  kind: "mutation",
29482
- auth: "admin"
29511
+ auth: "protected"
29483
29512
  }),
29484
29513
  /** Toggle the front indicator light. */
29485
29514
  setIndicatorLight: method(object({
@@ -29487,7 +29516,7 @@ var petFeederCapability = {
29487
29516
  on: boolean()
29488
29517
  }), _void(), {
29489
29518
  kind: "mutation",
29490
- auth: "admin"
29519
+ auth: "protected"
29491
29520
  }),
29492
29521
  /** Toggle the dispense chime. */
29493
29522
  setFeedSound: method(object({
@@ -29495,7 +29524,7 @@ var petFeederCapability = {
29495
29524
  on: boolean()
29496
29525
  }), _void(), {
29497
29526
  kind: "mutation",
29498
- auth: "admin"
29527
+ auth: "protected"
29499
29528
  }),
29500
29529
  /** Set the speaker / prompt volume level. */
29501
29530
  setVolume: method(object({
@@ -29503,7 +29532,7 @@ var petFeederCapability = {
29503
29532
  level: number().int().nonnegative()
29504
29533
  }), _void(), {
29505
29534
  kind: "mutation",
29506
- auth: "admin"
29535
+ auth: "protected"
29507
29536
  })
29508
29537
  },
29509
29538
  status: {
@@ -32084,7 +32113,7 @@ var switchCapability = {
32084
32113
  on: boolean()
32085
32114
  }), _void(), {
32086
32115
  kind: "mutation",
32087
- auth: "admin"
32116
+ auth: "protected"
32088
32117
  }) },
32089
32118
  events: { onStateChanged: { data: object({
32090
32119
  deviceId: number(),
@@ -33072,30 +33101,30 @@ var vacuumControlCapability = {
33072
33101
  methods: {
33073
33102
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33074
33103
  kind: "mutation",
33075
- auth: "admin"
33104
+ auth: "protected"
33076
33105
  }),
33077
33106
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33078
33107
  kind: "mutation",
33079
- auth: "admin"
33108
+ auth: "protected"
33080
33109
  }),
33081
33110
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33082
33111
  kind: "mutation",
33083
- auth: "admin"
33112
+ auth: "protected"
33084
33113
  }),
33085
33114
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33086
33115
  kind: "mutation",
33087
- auth: "admin"
33116
+ auth: "protected"
33088
33117
  }),
33089
33118
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33090
33119
  kind: "mutation",
33091
- auth: "admin"
33120
+ auth: "protected"
33092
33121
  }),
33093
33122
  setFanSpeed: method(object({
33094
33123
  deviceId: number().int().nonnegative(),
33095
33124
  speed: string().min(1)
33096
33125
  }), _void(), {
33097
33126
  kind: "mutation",
33098
- auth: "admin"
33127
+ auth: "protected"
33099
33128
  })
33100
33129
  },
33101
33130
  status: {
@@ -33139,22 +33168,22 @@ var valveCapability = {
33139
33168
  methods: {
33140
33169
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33141
33170
  kind: "mutation",
33142
- auth: "admin"
33171
+ auth: "protected"
33143
33172
  }),
33144
33173
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33145
33174
  kind: "mutation",
33146
- auth: "admin"
33175
+ auth: "protected"
33147
33176
  }),
33148
33177
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33149
33178
  kind: "mutation",
33150
- auth: "admin"
33179
+ auth: "protected"
33151
33180
  }),
33152
33181
  setPosition: method(object({
33153
33182
  deviceId: number().int().nonnegative(),
33154
33183
  position: number().min(0).max(100)
33155
33184
  }), _void(), {
33156
33185
  kind: "mutation",
33157
- auth: "admin"
33186
+ auth: "protected"
33158
33187
  })
33159
33188
  },
33160
33189
  status: {
@@ -33253,21 +33282,21 @@ var waterHeaterCapability = {
33253
33282
  temp: number().finite()
33254
33283
  }), _void(), {
33255
33284
  kind: "mutation",
33256
- auth: "admin"
33285
+ auth: "protected"
33257
33286
  }),
33258
33287
  setOperationMode: method(object({
33259
33288
  deviceId: number().int().nonnegative(),
33260
33289
  mode: string().min(1)
33261
33290
  }), _void(), {
33262
33291
  kind: "mutation",
33263
- auth: "admin"
33292
+ auth: "protected"
33264
33293
  }),
33265
33294
  setAway: method(object({
33266
33295
  deviceId: number().int().nonnegative(),
33267
33296
  on: boolean()
33268
33297
  }), _void(), {
33269
33298
  kind: "mutation",
33270
- auth: "admin"
33299
+ auth: "protected"
33271
33300
  })
33272
33301
  },
33273
33302
  status: {
@@ -38715,6 +38744,12 @@ Object.freeze({
38715
38744
  addonId: null,
38716
38745
  access: "view"
38717
38746
  },
38747
+ "pipelineAnalytics.listArchivedDebugNotes": {
38748
+ capName: "pipeline-analytics",
38749
+ capScope: "device",
38750
+ addonId: null,
38751
+ access: "view"
38752
+ },
38718
38753
  "pipelineAnalytics.listEventKinds": {
38719
38754
  capName: "pipeline-analytics",
38720
38755
  capScope: "device",
@@ -42502,6 +42537,11 @@ Object.freeze({
42502
42537
  form: "array",
42503
42538
  optional: true
42504
42539
  }],
42540
+ "pipelineAnalytics.listArchivedDebugNotes": [{
42541
+ name: "deviceId",
42542
+ form: "single",
42543
+ optional: true
42544
+ }],
42505
42545
  "pipelineAnalytics.listEventKinds": [{
42506
42546
  name: "deviceId",
42507
42547
  form: "single",
package/dist/addon.mjs CHANGED
@@ -7660,6 +7660,35 @@ var CameraSwitchGroupSchema = object({
7660
7660
  /** Unix ms when the group was composed server-side. */
7661
7661
  fetchedAt: number()
7662
7662
  });
7663
+ /** One archived note — the operator's words plus enough context to find what
7664
+ * they were looking at, after the track itself is gone. */
7665
+ var ArchivedDebugNoteSchema = object({
7666
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7667
+ * same sentence about the same track lands on the row already there. */
7668
+ id: string(),
7669
+ /** The operator's own words, verbatim. */
7670
+ note: string(),
7671
+ /** The camera. Required — every question here is asked per-camera. */
7672
+ deviceId: number().int(),
7673
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7674
+ * is expected to be gone, and this row is not a reference to it. */
7675
+ sourceTrackId: string(),
7676
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7677
+ archivedAt: number().int(),
7678
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7679
+ trackStartedAt: number().int().nullable(),
7680
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7681
+ trackClass: string().nullable(),
7682
+ /** The track's display label at review time; `null` when it had none. */
7683
+ trackLabel: string().nullable()
7684
+ });
7685
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7686
+ var ArchivedDebugNoteQueryInputSchema = object({
7687
+ /** Restrict to a single camera; omit for every row. */
7688
+ deviceId: number().int().optional(),
7689
+ /** Max rows returned, newest-first. */
7690
+ limit: number().int().min(1).max(1e3).optional()
7691
+ });
7663
7692
  /**
7664
7693
  * Ops-log — the durable, append-only operations audit shared by the
7665
7694
  * recordings and events management surfaces.
@@ -16747,14 +16776,14 @@ var alarmPanelCapability = {
16747
16776
  code: string().min(1).optional()
16748
16777
  }), _void(), {
16749
16778
  kind: "mutation",
16750
- auth: "admin"
16779
+ auth: "protected"
16751
16780
  }),
16752
16781
  disarm: method(object({
16753
16782
  deviceId: number().int().nonnegative(),
16754
16783
  code: string().min(1).optional()
16755
16784
  }), _void(), {
16756
16785
  kind: "mutation",
16757
- auth: "admin"
16786
+ auth: "protected"
16758
16787
  }),
16759
16788
  /**
16760
16789
  * Force the panel into the `triggered` state — used by HA
@@ -16765,7 +16794,7 @@ var alarmPanelCapability = {
16765
16794
  */
16766
16795
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
16767
16796
  kind: "mutation",
16768
- auth: "admin"
16797
+ auth: "protected"
16769
16798
  })
16770
16799
  },
16771
16800
  status: {
@@ -20729,7 +20758,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20729
20758
  deviceId: number(),
20730
20759
  trackId: string(),
20731
20760
  flags: TrackFlagsPatchSchema
20732
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
20761
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
20733
20762
  kind: "query",
20734
20763
  auth: "admin"
20735
20764
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -24836,7 +24865,7 @@ var brightnessCapability = {
24836
24865
  percentage: number().min(0).max(100)
24837
24866
  }), _void(), {
24838
24867
  kind: "mutation",
24839
- auth: "admin"
24868
+ auth: "protected"
24840
24869
  }) },
24841
24870
  events: {
24842
24871
  /**
@@ -24869,7 +24898,7 @@ onBrightnessChanged: { data: object({
24869
24898
  };
24870
24899
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24871
24900
  kind: "mutation",
24872
- auth: "admin"
24901
+ auth: "protected"
24873
24902
  });
24874
24903
  /**
24875
24904
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -25061,28 +25090,28 @@ var climateControlCapability = {
25061
25090
  mode: HvacModeSchema
25062
25091
  }), _void(), {
25063
25092
  kind: "mutation",
25064
- auth: "admin"
25093
+ auth: "protected"
25065
25094
  }),
25066
25095
  setFanMode: method(object({
25067
25096
  deviceId: number().int().nonnegative(),
25068
25097
  fanMode: string().min(1)
25069
25098
  }), _void(), {
25070
25099
  kind: "mutation",
25071
- auth: "admin"
25100
+ auth: "protected"
25072
25101
  }),
25073
25102
  setPreset: method(object({
25074
25103
  deviceId: number().int().nonnegative(),
25075
25104
  preset: string().min(1)
25076
25105
  }), _void(), {
25077
25106
  kind: "mutation",
25078
- auth: "admin"
25107
+ auth: "protected"
25079
25108
  }),
25080
25109
  setTarget: method(object({
25081
25110
  deviceId: number().int().nonnegative(),
25082
25111
  target: number()
25083
25112
  }), _void(), {
25084
25113
  kind: "mutation",
25085
- auth: "admin"
25114
+ auth: "protected"
25086
25115
  }),
25087
25116
  setTargetRange: method(object({
25088
25117
  deviceId: number().int().nonnegative(),
@@ -25090,28 +25119,28 @@ var climateControlCapability = {
25090
25119
  targetHigh: number()
25091
25120
  }), _void(), {
25092
25121
  kind: "mutation",
25093
- auth: "admin"
25122
+ auth: "protected"
25094
25123
  }),
25095
25124
  setTargetHumidity: method(object({
25096
25125
  deviceId: number().int().nonnegative(),
25097
25126
  targetHumidity: number().min(0).max(100)
25098
25127
  }), _void(), {
25099
25128
  kind: "mutation",
25100
- auth: "admin"
25129
+ auth: "protected"
25101
25130
  }),
25102
25131
  setSwingVertical: method(object({
25103
25132
  deviceId: number().int().nonnegative(),
25104
25133
  on: boolean()
25105
25134
  }), _void(), {
25106
25135
  kind: "mutation",
25107
- auth: "admin"
25136
+ auth: "protected"
25108
25137
  }),
25109
25138
  setSwingHorizontal: method(object({
25110
25139
  deviceId: number().int().nonnegative(),
25111
25140
  on: boolean()
25112
25141
  }), _void(), {
25113
25142
  kind: "mutation",
25114
- auth: "admin"
25143
+ auth: "protected"
25115
25144
  })
25116
25145
  },
25117
25146
  status: {
@@ -25211,7 +25240,7 @@ var colorCapability = {
25211
25240
  color: ColorInputSchema
25212
25241
  }), _void(), {
25213
25242
  kind: "mutation",
25214
- auth: "admin"
25243
+ auth: "protected"
25215
25244
  }) },
25216
25245
  events: {
25217
25246
  /**
@@ -25540,7 +25569,7 @@ var controlCapability = {
25540
25569
  control: ControlSetValueInputSchema
25541
25570
  }), _void(), {
25542
25571
  kind: "mutation",
25543
- auth: "admin"
25572
+ auth: "protected"
25544
25573
  }) },
25545
25574
  status: {
25546
25575
  schema: ControlStatusSchema,
@@ -25586,29 +25615,29 @@ var coverCapability = {
25586
25615
  methods: {
25587
25616
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25588
25617
  kind: "mutation",
25589
- auth: "admin"
25618
+ auth: "protected"
25590
25619
  }),
25591
25620
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25592
25621
  kind: "mutation",
25593
- auth: "admin"
25622
+ auth: "protected"
25594
25623
  }),
25595
25624
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25596
25625
  kind: "mutation",
25597
- auth: "admin"
25626
+ auth: "protected"
25598
25627
  }),
25599
25628
  setPosition: method(object({
25600
25629
  deviceId: number().int().nonnegative(),
25601
25630
  position: number().min(0).max(100)
25602
25631
  }), _void(), {
25603
25632
  kind: "mutation",
25604
- auth: "admin"
25633
+ auth: "protected"
25605
25634
  }),
25606
25635
  setTiltPosition: method(object({
25607
25636
  deviceId: number().int().nonnegative(),
25608
25637
  tiltPosition: number().min(0).max(100)
25609
25638
  }), _void(), {
25610
25639
  kind: "mutation",
25611
- auth: "admin"
25640
+ auth: "protected"
25612
25641
  })
25613
25642
  },
25614
25643
  status: {
@@ -26391,28 +26420,28 @@ var fanControlCapability = {
26391
26420
  percentage: number().min(0).max(100)
26392
26421
  }), _void(), {
26393
26422
  kind: "mutation",
26394
- auth: "admin"
26423
+ auth: "protected"
26395
26424
  }),
26396
26425
  setPreset: method(object({
26397
26426
  deviceId: number().int().nonnegative(),
26398
26427
  preset: string().min(1)
26399
26428
  }), _void(), {
26400
26429
  kind: "mutation",
26401
- auth: "admin"
26430
+ auth: "protected"
26402
26431
  }),
26403
26432
  setDirection: method(object({
26404
26433
  deviceId: number().int().nonnegative(),
26405
26434
  direction: FanDirectionSchema
26406
26435
  }), _void(), {
26407
26436
  kind: "mutation",
26408
- auth: "admin"
26437
+ auth: "protected"
26409
26438
  }),
26410
26439
  setOscillating: method(object({
26411
26440
  deviceId: number().int().nonnegative(),
26412
26441
  oscillating: boolean()
26413
26442
  }), _void(), {
26414
26443
  kind: "mutation",
26415
- auth: "admin"
26444
+ auth: "protected"
26416
26445
  })
26417
26446
  },
26418
26447
  status: {
@@ -26634,21 +26663,21 @@ var humidifierCapability = {
26634
26663
  on: boolean()
26635
26664
  }), _void(), {
26636
26665
  kind: "mutation",
26637
- auth: "admin"
26666
+ auth: "protected"
26638
26667
  }),
26639
26668
  setTargetHumidity: method(object({
26640
26669
  deviceId: number().int().nonnegative(),
26641
26670
  humidity: number().min(0).max(100)
26642
26671
  }), _void(), {
26643
26672
  kind: "mutation",
26644
- auth: "admin"
26673
+ auth: "protected"
26645
26674
  }),
26646
26675
  setMode: method(object({
26647
26676
  deviceId: number().int().nonnegative(),
26648
26677
  mode: string().min(1)
26649
26678
  }), _void(), {
26650
26679
  kind: "mutation",
26651
- auth: "admin"
26680
+ auth: "protected"
26652
26681
  })
26653
26682
  },
26654
26683
  status: {
@@ -27349,15 +27378,15 @@ var lawnMowerControlCapability = {
27349
27378
  methods: {
27350
27379
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27351
27380
  kind: "mutation",
27352
- auth: "admin"
27381
+ auth: "protected"
27353
27382
  }),
27354
27383
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27355
27384
  kind: "mutation",
27356
- auth: "admin"
27385
+ auth: "protected"
27357
27386
  }),
27358
27387
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27359
27388
  kind: "mutation",
27360
- auth: "admin"
27389
+ auth: "protected"
27361
27390
  })
27362
27391
  },
27363
27392
  status: {
@@ -27642,18 +27671,18 @@ var lockControlCapability = {
27642
27671
  code: string().min(1).optional()
27643
27672
  }), _void(), {
27644
27673
  kind: "mutation",
27645
- auth: "admin"
27674
+ auth: "protected"
27646
27675
  }),
27647
27676
  unlock: method(object({
27648
27677
  deviceId: number().int().nonnegative(),
27649
27678
  code: string().min(1).optional()
27650
27679
  }), _void(), {
27651
27680
  kind: "mutation",
27652
- auth: "admin"
27681
+ auth: "protected"
27653
27682
  }),
27654
27683
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27655
27684
  kind: "mutation",
27656
- auth: "admin"
27685
+ auth: "protected"
27657
27686
  })
27658
27687
  },
27659
27688
  status: {
@@ -27756,65 +27785,65 @@ var mediaPlayerCapability = {
27756
27785
  methods: {
27757
27786
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27758
27787
  kind: "mutation",
27759
- auth: "admin"
27788
+ auth: "protected"
27760
27789
  }),
27761
27790
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27762
27791
  kind: "mutation",
27763
- auth: "admin"
27792
+ auth: "protected"
27764
27793
  }),
27765
27794
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27766
27795
  kind: "mutation",
27767
- auth: "admin"
27796
+ auth: "protected"
27768
27797
  }),
27769
27798
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27770
27799
  kind: "mutation",
27771
- auth: "admin"
27800
+ auth: "protected"
27772
27801
  }),
27773
27802
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27774
27803
  kind: "mutation",
27775
- auth: "admin"
27804
+ auth: "protected"
27776
27805
  }),
27777
27806
  seek: method(object({
27778
27807
  deviceId: number().int().nonnegative(),
27779
27808
  positionMs: number().int().nonnegative()
27780
27809
  }), _void(), {
27781
27810
  kind: "mutation",
27782
- auth: "admin"
27811
+ auth: "protected"
27783
27812
  }),
27784
27813
  setVolume: method(object({
27785
27814
  deviceId: number().int().nonnegative(),
27786
27815
  volumeLevel: number().min(0).max(100)
27787
27816
  }), _void(), {
27788
27817
  kind: "mutation",
27789
- auth: "admin"
27818
+ auth: "protected"
27790
27819
  }),
27791
27820
  setMute: method(object({
27792
27821
  deviceId: number().int().nonnegative(),
27793
27822
  muted: boolean()
27794
27823
  }), _void(), {
27795
27824
  kind: "mutation",
27796
- auth: "admin"
27825
+ auth: "protected"
27797
27826
  }),
27798
27827
  setShuffle: method(object({
27799
27828
  deviceId: number().int().nonnegative(),
27800
27829
  shuffle: boolean()
27801
27830
  }), _void(), {
27802
27831
  kind: "mutation",
27803
- auth: "admin"
27832
+ auth: "protected"
27804
27833
  }),
27805
27834
  setRepeat: method(object({
27806
27835
  deviceId: number().int().nonnegative(),
27807
27836
  repeat: MediaPlayerRepeatSchema
27808
27837
  }), _void(), {
27809
27838
  kind: "mutation",
27810
- auth: "admin"
27839
+ auth: "protected"
27811
27840
  }),
27812
27841
  selectSource: method(object({
27813
27842
  deviceId: number().int().nonnegative(),
27814
27843
  source: string().min(1)
27815
27844
  }), _void(), {
27816
27845
  kind: "mutation",
27817
- auth: "admin"
27846
+ auth: "protected"
27818
27847
  }),
27819
27848
  playMedia: method(object({
27820
27849
  deviceId: number().int().nonnegative(),
@@ -27825,7 +27854,7 @@ var mediaPlayerCapability = {
27825
27854
  mediaType: string().min(1)
27826
27855
  }), _void(), {
27827
27856
  kind: "mutation",
27828
- auth: "admin"
27857
+ auth: "protected"
27829
27858
  })
27830
27859
  },
27831
27860
  status: {
@@ -29438,27 +29467,27 @@ var petFeederCapability = {
29438
29467
  hopper2: gramsPortion.optional()
29439
29468
  }), _void(), {
29440
29469
  kind: "mutation",
29441
- auth: "admin"
29470
+ auth: "protected"
29442
29471
  }),
29443
29472
  /** Cancel an in-progress manual feed. */
29444
29473
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29445
29474
  kind: "mutation",
29446
- auth: "admin"
29475
+ auth: "protected"
29447
29476
  }),
29448
29477
  /** Reset the desiccant "days remaining" counter after replacing it. */
29449
29478
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29450
29479
  kind: "mutation",
29451
- auth: "admin"
29480
+ auth: "protected"
29452
29481
  }),
29453
29482
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
29454
29483
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29455
29484
  kind: "mutation",
29456
- auth: "admin"
29485
+ auth: "protected"
29457
29486
  }),
29458
29487
  /** Call the pet with the recorded prompt (D3). */
29459
29488
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
29460
29489
  kind: "mutation",
29461
- auth: "admin"
29490
+ auth: "protected"
29462
29491
  }),
29463
29492
  /** Play a stored sound by id (D3 / D4H / D4SH). */
29464
29493
  playSound: method(object({
@@ -29466,7 +29495,7 @@ var petFeederCapability = {
29466
29495
  soundId: number().int().nonnegative()
29467
29496
  }), _void(), {
29468
29497
  kind: "mutation",
29469
- auth: "admin"
29498
+ auth: "protected"
29470
29499
  }),
29471
29500
  /** Toggle the child-lock (manual-lock) setting. */
29472
29501
  setChildLock: method(object({
@@ -29474,7 +29503,7 @@ var petFeederCapability = {
29474
29503
  on: boolean()
29475
29504
  }), _void(), {
29476
29505
  kind: "mutation",
29477
- auth: "admin"
29506
+ auth: "protected"
29478
29507
  }),
29479
29508
  /** Toggle the front indicator light. */
29480
29509
  setIndicatorLight: method(object({
@@ -29482,7 +29511,7 @@ var petFeederCapability = {
29482
29511
  on: boolean()
29483
29512
  }), _void(), {
29484
29513
  kind: "mutation",
29485
- auth: "admin"
29514
+ auth: "protected"
29486
29515
  }),
29487
29516
  /** Toggle the dispense chime. */
29488
29517
  setFeedSound: method(object({
@@ -29490,7 +29519,7 @@ var petFeederCapability = {
29490
29519
  on: boolean()
29491
29520
  }), _void(), {
29492
29521
  kind: "mutation",
29493
- auth: "admin"
29522
+ auth: "protected"
29494
29523
  }),
29495
29524
  /** Set the speaker / prompt volume level. */
29496
29525
  setVolume: method(object({
@@ -29498,7 +29527,7 @@ var petFeederCapability = {
29498
29527
  level: number().int().nonnegative()
29499
29528
  }), _void(), {
29500
29529
  kind: "mutation",
29501
- auth: "admin"
29530
+ auth: "protected"
29502
29531
  })
29503
29532
  },
29504
29533
  status: {
@@ -32079,7 +32108,7 @@ var switchCapability = {
32079
32108
  on: boolean()
32080
32109
  }), _void(), {
32081
32110
  kind: "mutation",
32082
- auth: "admin"
32111
+ auth: "protected"
32083
32112
  }) },
32084
32113
  events: { onStateChanged: { data: object({
32085
32114
  deviceId: number(),
@@ -33067,30 +33096,30 @@ var vacuumControlCapability = {
33067
33096
  methods: {
33068
33097
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33069
33098
  kind: "mutation",
33070
- auth: "admin"
33099
+ auth: "protected"
33071
33100
  }),
33072
33101
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33073
33102
  kind: "mutation",
33074
- auth: "admin"
33103
+ auth: "protected"
33075
33104
  }),
33076
33105
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33077
33106
  kind: "mutation",
33078
- auth: "admin"
33107
+ auth: "protected"
33079
33108
  }),
33080
33109
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33081
33110
  kind: "mutation",
33082
- auth: "admin"
33111
+ auth: "protected"
33083
33112
  }),
33084
33113
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33085
33114
  kind: "mutation",
33086
- auth: "admin"
33115
+ auth: "protected"
33087
33116
  }),
33088
33117
  setFanSpeed: method(object({
33089
33118
  deviceId: number().int().nonnegative(),
33090
33119
  speed: string().min(1)
33091
33120
  }), _void(), {
33092
33121
  kind: "mutation",
33093
- auth: "admin"
33122
+ auth: "protected"
33094
33123
  })
33095
33124
  },
33096
33125
  status: {
@@ -33134,22 +33163,22 @@ var valveCapability = {
33134
33163
  methods: {
33135
33164
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33136
33165
  kind: "mutation",
33137
- auth: "admin"
33166
+ auth: "protected"
33138
33167
  }),
33139
33168
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33140
33169
  kind: "mutation",
33141
- auth: "admin"
33170
+ auth: "protected"
33142
33171
  }),
33143
33172
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
33144
33173
  kind: "mutation",
33145
- auth: "admin"
33174
+ auth: "protected"
33146
33175
  }),
33147
33176
  setPosition: method(object({
33148
33177
  deviceId: number().int().nonnegative(),
33149
33178
  position: number().min(0).max(100)
33150
33179
  }), _void(), {
33151
33180
  kind: "mutation",
33152
- auth: "admin"
33181
+ auth: "protected"
33153
33182
  })
33154
33183
  },
33155
33184
  status: {
@@ -33248,21 +33277,21 @@ var waterHeaterCapability = {
33248
33277
  temp: number().finite()
33249
33278
  }), _void(), {
33250
33279
  kind: "mutation",
33251
- auth: "admin"
33280
+ auth: "protected"
33252
33281
  }),
33253
33282
  setOperationMode: method(object({
33254
33283
  deviceId: number().int().nonnegative(),
33255
33284
  mode: string().min(1)
33256
33285
  }), _void(), {
33257
33286
  kind: "mutation",
33258
- auth: "admin"
33287
+ auth: "protected"
33259
33288
  }),
33260
33289
  setAway: method(object({
33261
33290
  deviceId: number().int().nonnegative(),
33262
33291
  on: boolean()
33263
33292
  }), _void(), {
33264
33293
  kind: "mutation",
33265
- auth: "admin"
33294
+ auth: "protected"
33266
33295
  })
33267
33296
  },
33268
33297
  status: {
@@ -38710,6 +38739,12 @@ Object.freeze({
38710
38739
  addonId: null,
38711
38740
  access: "view"
38712
38741
  },
38742
+ "pipelineAnalytics.listArchivedDebugNotes": {
38743
+ capName: "pipeline-analytics",
38744
+ capScope: "device",
38745
+ addonId: null,
38746
+ access: "view"
38747
+ },
38713
38748
  "pipelineAnalytics.listEventKinds": {
38714
38749
  capName: "pipeline-analytics",
38715
38750
  capScope: "device",
@@ -42497,6 +42532,11 @@ Object.freeze({
42497
42532
  form: "array",
42498
42533
  optional: true
42499
42534
  }],
42535
+ "pipelineAnalytics.listArchivedDebugNotes": [{
42536
+ name: "deviceId",
42537
+ form: "single",
42538
+ optional: true
42539
+ }],
42500
42540
  "pipelineAnalytics.listEventKinds": [{
42501
42541
  name: "deviceId",
42502
42542
  form: "single",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-provider-reolink",
3
- "version": "1.2.108",
3
+ "version": "1.2.110",
4
4
  "description": "Reolink camera device provider addon for CamStack — native Baichuan protocol",
5
5
  "keywords": [
6
6
  "camstack",