@camstack/addon-provider-rtsp 1.2.85 → 1.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
@@ -7651,6 +7651,35 @@ var CameraSwitchGroupSchema = object({
7651
7651
  /** Unix ms when the group was composed server-side. */
7652
7652
  fetchedAt: number()
7653
7653
  });
7654
+ /** One archived note — the operator's words plus enough context to find what
7655
+ * they were looking at, after the track itself is gone. */
7656
+ var ArchivedDebugNoteSchema = object({
7657
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7658
+ * same sentence about the same track lands on the row already there. */
7659
+ id: string(),
7660
+ /** The operator's own words, verbatim. */
7661
+ note: string(),
7662
+ /** The camera. Required — every question here is asked per-camera. */
7663
+ deviceId: number().int(),
7664
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7665
+ * is expected to be gone, and this row is not a reference to it. */
7666
+ sourceTrackId: string(),
7667
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7668
+ archivedAt: number().int(),
7669
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7670
+ trackStartedAt: number().int().nullable(),
7671
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7672
+ trackClass: string().nullable(),
7673
+ /** The track's display label at review time; `null` when it had none. */
7674
+ trackLabel: string().nullable()
7675
+ });
7676
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7677
+ var ArchivedDebugNoteQueryInputSchema = object({
7678
+ /** Restrict to a single camera; omit for every row. */
7679
+ deviceId: number().int().optional(),
7680
+ /** Max rows returned, newest-first. */
7681
+ limit: number().int().min(1).max(1e3).optional()
7682
+ });
7654
7683
  /**
7655
7684
  * Compute pixel count for sorting. Returns w*h, or 0 if unknown.
7656
7685
  */
@@ -16164,14 +16193,14 @@ var alarmPanelCapability = {
16164
16193
  code: string().min(1).optional()
16165
16194
  }), _void(), {
16166
16195
  kind: "mutation",
16167
- auth: "admin"
16196
+ auth: "protected"
16168
16197
  }),
16169
16198
  disarm: method(object({
16170
16199
  deviceId: number().int().nonnegative(),
16171
16200
  code: string().min(1).optional()
16172
16201
  }), _void(), {
16173
16202
  kind: "mutation",
16174
- auth: "admin"
16203
+ auth: "protected"
16175
16204
  }),
16176
16205
  /**
16177
16206
  * Force the panel into the `triggered` state — used by HA
@@ -16182,7 +16211,7 @@ var alarmPanelCapability = {
16182
16211
  */
16183
16212
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
16184
16213
  kind: "mutation",
16185
- auth: "admin"
16214
+ auth: "protected"
16186
16215
  })
16187
16216
  },
16188
16217
  status: {
@@ -20146,7 +20175,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20146
20175
  deviceId: number(),
20147
20176
  trackId: string(),
20148
20177
  flags: TrackFlagsPatchSchema
20149
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
20178
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
20150
20179
  kind: "query",
20151
20180
  auth: "admin"
20152
20181
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -24253,7 +24282,7 @@ var brightnessCapability = {
24253
24282
  percentage: number().min(0).max(100)
24254
24283
  }), _void(), {
24255
24284
  kind: "mutation",
24256
- auth: "admin"
24285
+ auth: "protected"
24257
24286
  }) },
24258
24287
  events: {
24259
24288
  /**
@@ -24286,7 +24315,7 @@ onBrightnessChanged: { data: object({
24286
24315
  };
24287
24316
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24288
24317
  kind: "mutation",
24289
- auth: "admin"
24318
+ auth: "protected"
24290
24319
  });
24291
24320
  /**
24292
24321
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -24478,28 +24507,28 @@ var climateControlCapability = {
24478
24507
  mode: HvacModeSchema
24479
24508
  }), _void(), {
24480
24509
  kind: "mutation",
24481
- auth: "admin"
24510
+ auth: "protected"
24482
24511
  }),
24483
24512
  setFanMode: method(object({
24484
24513
  deviceId: number().int().nonnegative(),
24485
24514
  fanMode: string().min(1)
24486
24515
  }), _void(), {
24487
24516
  kind: "mutation",
24488
- auth: "admin"
24517
+ auth: "protected"
24489
24518
  }),
24490
24519
  setPreset: method(object({
24491
24520
  deviceId: number().int().nonnegative(),
24492
24521
  preset: string().min(1)
24493
24522
  }), _void(), {
24494
24523
  kind: "mutation",
24495
- auth: "admin"
24524
+ auth: "protected"
24496
24525
  }),
24497
24526
  setTarget: method(object({
24498
24527
  deviceId: number().int().nonnegative(),
24499
24528
  target: number()
24500
24529
  }), _void(), {
24501
24530
  kind: "mutation",
24502
- auth: "admin"
24531
+ auth: "protected"
24503
24532
  }),
24504
24533
  setTargetRange: method(object({
24505
24534
  deviceId: number().int().nonnegative(),
@@ -24507,28 +24536,28 @@ var climateControlCapability = {
24507
24536
  targetHigh: number()
24508
24537
  }), _void(), {
24509
24538
  kind: "mutation",
24510
- auth: "admin"
24539
+ auth: "protected"
24511
24540
  }),
24512
24541
  setTargetHumidity: method(object({
24513
24542
  deviceId: number().int().nonnegative(),
24514
24543
  targetHumidity: number().min(0).max(100)
24515
24544
  }), _void(), {
24516
24545
  kind: "mutation",
24517
- auth: "admin"
24546
+ auth: "protected"
24518
24547
  }),
24519
24548
  setSwingVertical: method(object({
24520
24549
  deviceId: number().int().nonnegative(),
24521
24550
  on: boolean()
24522
24551
  }), _void(), {
24523
24552
  kind: "mutation",
24524
- auth: "admin"
24553
+ auth: "protected"
24525
24554
  }),
24526
24555
  setSwingHorizontal: method(object({
24527
24556
  deviceId: number().int().nonnegative(),
24528
24557
  on: boolean()
24529
24558
  }), _void(), {
24530
24559
  kind: "mutation",
24531
- auth: "admin"
24560
+ auth: "protected"
24532
24561
  })
24533
24562
  },
24534
24563
  status: {
@@ -24628,7 +24657,7 @@ var colorCapability = {
24628
24657
  color: ColorInputSchema
24629
24658
  }), _void(), {
24630
24659
  kind: "mutation",
24631
- auth: "admin"
24660
+ auth: "protected"
24632
24661
  }) },
24633
24662
  events: {
24634
24663
  /**
@@ -24965,7 +24994,7 @@ var controlCapability = {
24965
24994
  control: ControlSetValueInputSchema
24966
24995
  }), _void(), {
24967
24996
  kind: "mutation",
24968
- auth: "admin"
24997
+ auth: "protected"
24969
24998
  }) },
24970
24999
  status: {
24971
25000
  schema: ControlStatusSchema,
@@ -25011,29 +25040,29 @@ var coverCapability = {
25011
25040
  methods: {
25012
25041
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25013
25042
  kind: "mutation",
25014
- auth: "admin"
25043
+ auth: "protected"
25015
25044
  }),
25016
25045
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25017
25046
  kind: "mutation",
25018
- auth: "admin"
25047
+ auth: "protected"
25019
25048
  }),
25020
25049
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
25021
25050
  kind: "mutation",
25022
- auth: "admin"
25051
+ auth: "protected"
25023
25052
  }),
25024
25053
  setPosition: method(object({
25025
25054
  deviceId: number().int().nonnegative(),
25026
25055
  position: number().min(0).max(100)
25027
25056
  }), _void(), {
25028
25057
  kind: "mutation",
25029
- auth: "admin"
25058
+ auth: "protected"
25030
25059
  }),
25031
25060
  setTiltPosition: method(object({
25032
25061
  deviceId: number().int().nonnegative(),
25033
25062
  tiltPosition: number().min(0).max(100)
25034
25063
  }), _void(), {
25035
25064
  kind: "mutation",
25036
- auth: "admin"
25065
+ auth: "protected"
25037
25066
  })
25038
25067
  },
25039
25068
  status: {
@@ -25816,28 +25845,28 @@ var fanControlCapability = {
25816
25845
  percentage: number().min(0).max(100)
25817
25846
  }), _void(), {
25818
25847
  kind: "mutation",
25819
- auth: "admin"
25848
+ auth: "protected"
25820
25849
  }),
25821
25850
  setPreset: method(object({
25822
25851
  deviceId: number().int().nonnegative(),
25823
25852
  preset: string().min(1)
25824
25853
  }), _void(), {
25825
25854
  kind: "mutation",
25826
- auth: "admin"
25855
+ auth: "protected"
25827
25856
  }),
25828
25857
  setDirection: method(object({
25829
25858
  deviceId: number().int().nonnegative(),
25830
25859
  direction: FanDirectionSchema
25831
25860
  }), _void(), {
25832
25861
  kind: "mutation",
25833
- auth: "admin"
25862
+ auth: "protected"
25834
25863
  }),
25835
25864
  setOscillating: method(object({
25836
25865
  deviceId: number().int().nonnegative(),
25837
25866
  oscillating: boolean()
25838
25867
  }), _void(), {
25839
25868
  kind: "mutation",
25840
- auth: "admin"
25869
+ auth: "protected"
25841
25870
  })
25842
25871
  },
25843
25872
  status: {
@@ -26059,21 +26088,21 @@ var humidifierCapability = {
26059
26088
  on: boolean()
26060
26089
  }), _void(), {
26061
26090
  kind: "mutation",
26062
- auth: "admin"
26091
+ auth: "protected"
26063
26092
  }),
26064
26093
  setTargetHumidity: method(object({
26065
26094
  deviceId: number().int().nonnegative(),
26066
26095
  humidity: number().min(0).max(100)
26067
26096
  }), _void(), {
26068
26097
  kind: "mutation",
26069
- auth: "admin"
26098
+ auth: "protected"
26070
26099
  }),
26071
26100
  setMode: method(object({
26072
26101
  deviceId: number().int().nonnegative(),
26073
26102
  mode: string().min(1)
26074
26103
  }), _void(), {
26075
26104
  kind: "mutation",
26076
- auth: "admin"
26105
+ auth: "protected"
26077
26106
  })
26078
26107
  },
26079
26108
  status: {
@@ -26774,15 +26803,15 @@ var lawnMowerControlCapability = {
26774
26803
  methods: {
26775
26804
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26776
26805
  kind: "mutation",
26777
- auth: "admin"
26806
+ auth: "protected"
26778
26807
  }),
26779
26808
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26780
26809
  kind: "mutation",
26781
- auth: "admin"
26810
+ auth: "protected"
26782
26811
  }),
26783
26812
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26784
26813
  kind: "mutation",
26785
- auth: "admin"
26814
+ auth: "protected"
26786
26815
  })
26787
26816
  },
26788
26817
  status: {
@@ -27067,18 +27096,18 @@ var lockControlCapability = {
27067
27096
  code: string().min(1).optional()
27068
27097
  }), _void(), {
27069
27098
  kind: "mutation",
27070
- auth: "admin"
27099
+ auth: "protected"
27071
27100
  }),
27072
27101
  unlock: method(object({
27073
27102
  deviceId: number().int().nonnegative(),
27074
27103
  code: string().min(1).optional()
27075
27104
  }), _void(), {
27076
27105
  kind: "mutation",
27077
- auth: "admin"
27106
+ auth: "protected"
27078
27107
  }),
27079
27108
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27080
27109
  kind: "mutation",
27081
- auth: "admin"
27110
+ auth: "protected"
27082
27111
  })
27083
27112
  },
27084
27113
  status: {
@@ -27181,65 +27210,65 @@ var mediaPlayerCapability = {
27181
27210
  methods: {
27182
27211
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27183
27212
  kind: "mutation",
27184
- auth: "admin"
27213
+ auth: "protected"
27185
27214
  }),
27186
27215
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27187
27216
  kind: "mutation",
27188
- auth: "admin"
27217
+ auth: "protected"
27189
27218
  }),
27190
27219
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27191
27220
  kind: "mutation",
27192
- auth: "admin"
27221
+ auth: "protected"
27193
27222
  }),
27194
27223
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27195
27224
  kind: "mutation",
27196
- auth: "admin"
27225
+ auth: "protected"
27197
27226
  }),
27198
27227
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27199
27228
  kind: "mutation",
27200
- auth: "admin"
27229
+ auth: "protected"
27201
27230
  }),
27202
27231
  seek: method(object({
27203
27232
  deviceId: number().int().nonnegative(),
27204
27233
  positionMs: number().int().nonnegative()
27205
27234
  }), _void(), {
27206
27235
  kind: "mutation",
27207
- auth: "admin"
27236
+ auth: "protected"
27208
27237
  }),
27209
27238
  setVolume: method(object({
27210
27239
  deviceId: number().int().nonnegative(),
27211
27240
  volumeLevel: number().min(0).max(100)
27212
27241
  }), _void(), {
27213
27242
  kind: "mutation",
27214
- auth: "admin"
27243
+ auth: "protected"
27215
27244
  }),
27216
27245
  setMute: method(object({
27217
27246
  deviceId: number().int().nonnegative(),
27218
27247
  muted: boolean()
27219
27248
  }), _void(), {
27220
27249
  kind: "mutation",
27221
- auth: "admin"
27250
+ auth: "protected"
27222
27251
  }),
27223
27252
  setShuffle: method(object({
27224
27253
  deviceId: number().int().nonnegative(),
27225
27254
  shuffle: boolean()
27226
27255
  }), _void(), {
27227
27256
  kind: "mutation",
27228
- auth: "admin"
27257
+ auth: "protected"
27229
27258
  }),
27230
27259
  setRepeat: method(object({
27231
27260
  deviceId: number().int().nonnegative(),
27232
27261
  repeat: MediaPlayerRepeatSchema
27233
27262
  }), _void(), {
27234
27263
  kind: "mutation",
27235
- auth: "admin"
27264
+ auth: "protected"
27236
27265
  }),
27237
27266
  selectSource: method(object({
27238
27267
  deviceId: number().int().nonnegative(),
27239
27268
  source: string().min(1)
27240
27269
  }), _void(), {
27241
27270
  kind: "mutation",
27242
- auth: "admin"
27271
+ auth: "protected"
27243
27272
  }),
27244
27273
  playMedia: method(object({
27245
27274
  deviceId: number().int().nonnegative(),
@@ -27250,7 +27279,7 @@ var mediaPlayerCapability = {
27250
27279
  mediaType: string().min(1)
27251
27280
  }), _void(), {
27252
27281
  kind: "mutation",
27253
- auth: "admin"
27282
+ auth: "protected"
27254
27283
  })
27255
27284
  },
27256
27285
  status: {
@@ -28843,27 +28872,27 @@ var petFeederCapability = {
28843
28872
  hopper2: gramsPortion.optional()
28844
28873
  }), _void(), {
28845
28874
  kind: "mutation",
28846
- auth: "admin"
28875
+ auth: "protected"
28847
28876
  }),
28848
28877
  /** Cancel an in-progress manual feed. */
28849
28878
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28850
28879
  kind: "mutation",
28851
- auth: "admin"
28880
+ auth: "protected"
28852
28881
  }),
28853
28882
  /** Reset the desiccant "days remaining" counter after replacing it. */
28854
28883
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28855
28884
  kind: "mutation",
28856
- auth: "admin"
28885
+ auth: "protected"
28857
28886
  }),
28858
28887
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
28859
28888
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28860
28889
  kind: "mutation",
28861
- auth: "admin"
28890
+ auth: "protected"
28862
28891
  }),
28863
28892
  /** Call the pet with the recorded prompt (D3). */
28864
28893
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28865
28894
  kind: "mutation",
28866
- auth: "admin"
28895
+ auth: "protected"
28867
28896
  }),
28868
28897
  /** Play a stored sound by id (D3 / D4H / D4SH). */
28869
28898
  playSound: method(object({
@@ -28871,7 +28900,7 @@ var petFeederCapability = {
28871
28900
  soundId: number().int().nonnegative()
28872
28901
  }), _void(), {
28873
28902
  kind: "mutation",
28874
- auth: "admin"
28903
+ auth: "protected"
28875
28904
  }),
28876
28905
  /** Toggle the child-lock (manual-lock) setting. */
28877
28906
  setChildLock: method(object({
@@ -28879,7 +28908,7 @@ var petFeederCapability = {
28879
28908
  on: boolean()
28880
28909
  }), _void(), {
28881
28910
  kind: "mutation",
28882
- auth: "admin"
28911
+ auth: "protected"
28883
28912
  }),
28884
28913
  /** Toggle the front indicator light. */
28885
28914
  setIndicatorLight: method(object({
@@ -28887,7 +28916,7 @@ var petFeederCapability = {
28887
28916
  on: boolean()
28888
28917
  }), _void(), {
28889
28918
  kind: "mutation",
28890
- auth: "admin"
28919
+ auth: "protected"
28891
28920
  }),
28892
28921
  /** Toggle the dispense chime. */
28893
28922
  setFeedSound: method(object({
@@ -28895,7 +28924,7 @@ var petFeederCapability = {
28895
28924
  on: boolean()
28896
28925
  }), _void(), {
28897
28926
  kind: "mutation",
28898
- auth: "admin"
28927
+ auth: "protected"
28899
28928
  }),
28900
28929
  /** Set the speaker / prompt volume level. */
28901
28930
  setVolume: method(object({
@@ -28903,7 +28932,7 @@ var petFeederCapability = {
28903
28932
  level: number().int().nonnegative()
28904
28933
  }), _void(), {
28905
28934
  kind: "mutation",
28906
- auth: "admin"
28935
+ auth: "protected"
28907
28936
  })
28908
28937
  },
28909
28938
  status: {
@@ -31199,7 +31228,7 @@ var switchCapability = {
31199
31228
  on: boolean()
31200
31229
  }), _void(), {
31201
31230
  kind: "mutation",
31202
- auth: "admin"
31231
+ auth: "protected"
31203
31232
  }) },
31204
31233
  events: { onStateChanged: { data: object({
31205
31234
  deviceId: number(),
@@ -32187,30 +32216,30 @@ var vacuumControlCapability = {
32187
32216
  methods: {
32188
32217
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32189
32218
  kind: "mutation",
32190
- auth: "admin"
32219
+ auth: "protected"
32191
32220
  }),
32192
32221
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32193
32222
  kind: "mutation",
32194
- auth: "admin"
32223
+ auth: "protected"
32195
32224
  }),
32196
32225
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32197
32226
  kind: "mutation",
32198
- auth: "admin"
32227
+ auth: "protected"
32199
32228
  }),
32200
32229
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32201
32230
  kind: "mutation",
32202
- auth: "admin"
32231
+ auth: "protected"
32203
32232
  }),
32204
32233
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32205
32234
  kind: "mutation",
32206
- auth: "admin"
32235
+ auth: "protected"
32207
32236
  }),
32208
32237
  setFanSpeed: method(object({
32209
32238
  deviceId: number().int().nonnegative(),
32210
32239
  speed: string().min(1)
32211
32240
  }), _void(), {
32212
32241
  kind: "mutation",
32213
- auth: "admin"
32242
+ auth: "protected"
32214
32243
  })
32215
32244
  },
32216
32245
  status: {
@@ -32254,22 +32283,22 @@ var valveCapability = {
32254
32283
  methods: {
32255
32284
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32256
32285
  kind: "mutation",
32257
- auth: "admin"
32286
+ auth: "protected"
32258
32287
  }),
32259
32288
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32260
32289
  kind: "mutation",
32261
- auth: "admin"
32290
+ auth: "protected"
32262
32291
  }),
32263
32292
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32264
32293
  kind: "mutation",
32265
- auth: "admin"
32294
+ auth: "protected"
32266
32295
  }),
32267
32296
  setPosition: method(object({
32268
32297
  deviceId: number().int().nonnegative(),
32269
32298
  position: number().min(0).max(100)
32270
32299
  }), _void(), {
32271
32300
  kind: "mutation",
32272
- auth: "admin"
32301
+ auth: "protected"
32273
32302
  })
32274
32303
  },
32275
32304
  status: {
@@ -32368,21 +32397,21 @@ var waterHeaterCapability = {
32368
32397
  temp: number().finite()
32369
32398
  }), _void(), {
32370
32399
  kind: "mutation",
32371
- auth: "admin"
32400
+ auth: "protected"
32372
32401
  }),
32373
32402
  setOperationMode: method(object({
32374
32403
  deviceId: number().int().nonnegative(),
32375
32404
  mode: string().min(1)
32376
32405
  }), _void(), {
32377
32406
  kind: "mutation",
32378
- auth: "admin"
32407
+ auth: "protected"
32379
32408
  }),
32380
32409
  setAway: method(object({
32381
32410
  deviceId: number().int().nonnegative(),
32382
32411
  on: boolean()
32383
32412
  }), _void(), {
32384
32413
  kind: "mutation",
32385
- auth: "admin"
32414
+ auth: "protected"
32386
32415
  })
32387
32416
  },
32388
32417
  status: {
@@ -37718,6 +37747,12 @@ Object.freeze({
37718
37747
  addonId: null,
37719
37748
  access: "view"
37720
37749
  },
37750
+ "pipelineAnalytics.listArchivedDebugNotes": {
37751
+ capName: "pipeline-analytics",
37752
+ capScope: "device",
37753
+ addonId: null,
37754
+ access: "view"
37755
+ },
37721
37756
  "pipelineAnalytics.listEventKinds": {
37722
37757
  capName: "pipeline-analytics",
37723
37758
  capScope: "device",
@@ -41505,6 +41540,11 @@ Object.freeze({
41505
41540
  form: "array",
41506
41541
  optional: true
41507
41542
  }],
41543
+ "pipelineAnalytics.listArchivedDebugNotes": [{
41544
+ name: "deviceId",
41545
+ form: "single",
41546
+ optional: true
41547
+ }],
41508
41548
  "pipelineAnalytics.listEventKinds": [{
41509
41549
  name: "deviceId",
41510
41550
  form: "single",
package/dist/addon.mjs CHANGED
@@ -7627,6 +7627,35 @@ var CameraSwitchGroupSchema = object({
7627
7627
  /** Unix ms when the group was composed server-side. */
7628
7628
  fetchedAt: number()
7629
7629
  });
7630
+ /** One archived note — the operator's words plus enough context to find what
7631
+ * they were looking at, after the track itself is gone. */
7632
+ var ArchivedDebugNoteSchema = object({
7633
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7634
+ * same sentence about the same track lands on the row already there. */
7635
+ id: string(),
7636
+ /** The operator's own words, verbatim. */
7637
+ note: string(),
7638
+ /** The camera. Required — every question here is asked per-camera. */
7639
+ deviceId: number().int(),
7640
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7641
+ * is expected to be gone, and this row is not a reference to it. */
7642
+ sourceTrackId: string(),
7643
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7644
+ archivedAt: number().int(),
7645
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7646
+ trackStartedAt: number().int().nullable(),
7647
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7648
+ trackClass: string().nullable(),
7649
+ /** The track's display label at review time; `null` when it had none. */
7650
+ trackLabel: string().nullable()
7651
+ });
7652
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7653
+ var ArchivedDebugNoteQueryInputSchema = object({
7654
+ /** Restrict to a single camera; omit for every row. */
7655
+ deviceId: number().int().optional(),
7656
+ /** Max rows returned, newest-first. */
7657
+ limit: number().int().min(1).max(1e3).optional()
7658
+ });
7630
7659
  /**
7631
7660
  * Compute pixel count for sorting. Returns w*h, or 0 if unknown.
7632
7661
  */
@@ -16140,14 +16169,14 @@ var alarmPanelCapability = {
16140
16169
  code: string().min(1).optional()
16141
16170
  }), _void(), {
16142
16171
  kind: "mutation",
16143
- auth: "admin"
16172
+ auth: "protected"
16144
16173
  }),
16145
16174
  disarm: method(object({
16146
16175
  deviceId: number().int().nonnegative(),
16147
16176
  code: string().min(1).optional()
16148
16177
  }), _void(), {
16149
16178
  kind: "mutation",
16150
- auth: "admin"
16179
+ auth: "protected"
16151
16180
  }),
16152
16181
  /**
16153
16182
  * Force the panel into the `triggered` state — used by HA
@@ -16158,7 +16187,7 @@ var alarmPanelCapability = {
16158
16187
  */
16159
16188
  trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
16160
16189
  kind: "mutation",
16161
- auth: "admin"
16190
+ auth: "protected"
16162
16191
  })
16163
16192
  },
16164
16193
  status: {
@@ -20122,7 +20151,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20122
20151
  deviceId: number(),
20123
20152
  trackId: string(),
20124
20153
  flags: TrackFlagsPatchSchema
20125
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
20154
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
20126
20155
  kind: "query",
20127
20156
  auth: "admin"
20128
20157
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -24229,7 +24258,7 @@ var brightnessCapability = {
24229
24258
  percentage: number().min(0).max(100)
24230
24259
  }), _void(), {
24231
24260
  kind: "mutation",
24232
- auth: "admin"
24261
+ auth: "protected"
24233
24262
  }) },
24234
24263
  events: {
24235
24264
  /**
@@ -24262,7 +24291,7 @@ onBrightnessChanged: { data: object({
24262
24291
  };
24263
24292
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24264
24293
  kind: "mutation",
24265
- auth: "admin"
24294
+ auth: "protected"
24266
24295
  });
24267
24296
  /**
24268
24297
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -24454,28 +24483,28 @@ var climateControlCapability = {
24454
24483
  mode: HvacModeSchema
24455
24484
  }), _void(), {
24456
24485
  kind: "mutation",
24457
- auth: "admin"
24486
+ auth: "protected"
24458
24487
  }),
24459
24488
  setFanMode: method(object({
24460
24489
  deviceId: number().int().nonnegative(),
24461
24490
  fanMode: string().min(1)
24462
24491
  }), _void(), {
24463
24492
  kind: "mutation",
24464
- auth: "admin"
24493
+ auth: "protected"
24465
24494
  }),
24466
24495
  setPreset: method(object({
24467
24496
  deviceId: number().int().nonnegative(),
24468
24497
  preset: string().min(1)
24469
24498
  }), _void(), {
24470
24499
  kind: "mutation",
24471
- auth: "admin"
24500
+ auth: "protected"
24472
24501
  }),
24473
24502
  setTarget: method(object({
24474
24503
  deviceId: number().int().nonnegative(),
24475
24504
  target: number()
24476
24505
  }), _void(), {
24477
24506
  kind: "mutation",
24478
- auth: "admin"
24507
+ auth: "protected"
24479
24508
  }),
24480
24509
  setTargetRange: method(object({
24481
24510
  deviceId: number().int().nonnegative(),
@@ -24483,28 +24512,28 @@ var climateControlCapability = {
24483
24512
  targetHigh: number()
24484
24513
  }), _void(), {
24485
24514
  kind: "mutation",
24486
- auth: "admin"
24515
+ auth: "protected"
24487
24516
  }),
24488
24517
  setTargetHumidity: method(object({
24489
24518
  deviceId: number().int().nonnegative(),
24490
24519
  targetHumidity: number().min(0).max(100)
24491
24520
  }), _void(), {
24492
24521
  kind: "mutation",
24493
- auth: "admin"
24522
+ auth: "protected"
24494
24523
  }),
24495
24524
  setSwingVertical: method(object({
24496
24525
  deviceId: number().int().nonnegative(),
24497
24526
  on: boolean()
24498
24527
  }), _void(), {
24499
24528
  kind: "mutation",
24500
- auth: "admin"
24529
+ auth: "protected"
24501
24530
  }),
24502
24531
  setSwingHorizontal: method(object({
24503
24532
  deviceId: number().int().nonnegative(),
24504
24533
  on: boolean()
24505
24534
  }), _void(), {
24506
24535
  kind: "mutation",
24507
- auth: "admin"
24536
+ auth: "protected"
24508
24537
  })
24509
24538
  },
24510
24539
  status: {
@@ -24604,7 +24633,7 @@ var colorCapability = {
24604
24633
  color: ColorInputSchema
24605
24634
  }), _void(), {
24606
24635
  kind: "mutation",
24607
- auth: "admin"
24636
+ auth: "protected"
24608
24637
  }) },
24609
24638
  events: {
24610
24639
  /**
@@ -24941,7 +24970,7 @@ var controlCapability = {
24941
24970
  control: ControlSetValueInputSchema
24942
24971
  }), _void(), {
24943
24972
  kind: "mutation",
24944
- auth: "admin"
24973
+ auth: "protected"
24945
24974
  }) },
24946
24975
  status: {
24947
24976
  schema: ControlStatusSchema,
@@ -24987,29 +25016,29 @@ var coverCapability = {
24987
25016
  methods: {
24988
25017
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
24989
25018
  kind: "mutation",
24990
- auth: "admin"
25019
+ auth: "protected"
24991
25020
  }),
24992
25021
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
24993
25022
  kind: "mutation",
24994
- auth: "admin"
25023
+ auth: "protected"
24995
25024
  }),
24996
25025
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
24997
25026
  kind: "mutation",
24998
- auth: "admin"
25027
+ auth: "protected"
24999
25028
  }),
25000
25029
  setPosition: method(object({
25001
25030
  deviceId: number().int().nonnegative(),
25002
25031
  position: number().min(0).max(100)
25003
25032
  }), _void(), {
25004
25033
  kind: "mutation",
25005
- auth: "admin"
25034
+ auth: "protected"
25006
25035
  }),
25007
25036
  setTiltPosition: method(object({
25008
25037
  deviceId: number().int().nonnegative(),
25009
25038
  tiltPosition: number().min(0).max(100)
25010
25039
  }), _void(), {
25011
25040
  kind: "mutation",
25012
- auth: "admin"
25041
+ auth: "protected"
25013
25042
  })
25014
25043
  },
25015
25044
  status: {
@@ -25792,28 +25821,28 @@ var fanControlCapability = {
25792
25821
  percentage: number().min(0).max(100)
25793
25822
  }), _void(), {
25794
25823
  kind: "mutation",
25795
- auth: "admin"
25824
+ auth: "protected"
25796
25825
  }),
25797
25826
  setPreset: method(object({
25798
25827
  deviceId: number().int().nonnegative(),
25799
25828
  preset: string().min(1)
25800
25829
  }), _void(), {
25801
25830
  kind: "mutation",
25802
- auth: "admin"
25831
+ auth: "protected"
25803
25832
  }),
25804
25833
  setDirection: method(object({
25805
25834
  deviceId: number().int().nonnegative(),
25806
25835
  direction: FanDirectionSchema
25807
25836
  }), _void(), {
25808
25837
  kind: "mutation",
25809
- auth: "admin"
25838
+ auth: "protected"
25810
25839
  }),
25811
25840
  setOscillating: method(object({
25812
25841
  deviceId: number().int().nonnegative(),
25813
25842
  oscillating: boolean()
25814
25843
  }), _void(), {
25815
25844
  kind: "mutation",
25816
- auth: "admin"
25845
+ auth: "protected"
25817
25846
  })
25818
25847
  },
25819
25848
  status: {
@@ -26035,21 +26064,21 @@ var humidifierCapability = {
26035
26064
  on: boolean()
26036
26065
  }), _void(), {
26037
26066
  kind: "mutation",
26038
- auth: "admin"
26067
+ auth: "protected"
26039
26068
  }),
26040
26069
  setTargetHumidity: method(object({
26041
26070
  deviceId: number().int().nonnegative(),
26042
26071
  humidity: number().min(0).max(100)
26043
26072
  }), _void(), {
26044
26073
  kind: "mutation",
26045
- auth: "admin"
26074
+ auth: "protected"
26046
26075
  }),
26047
26076
  setMode: method(object({
26048
26077
  deviceId: number().int().nonnegative(),
26049
26078
  mode: string().min(1)
26050
26079
  }), _void(), {
26051
26080
  kind: "mutation",
26052
- auth: "admin"
26081
+ auth: "protected"
26053
26082
  })
26054
26083
  },
26055
26084
  status: {
@@ -26750,15 +26779,15 @@ var lawnMowerControlCapability = {
26750
26779
  methods: {
26751
26780
  startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26752
26781
  kind: "mutation",
26753
- auth: "admin"
26782
+ auth: "protected"
26754
26783
  }),
26755
26784
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26756
26785
  kind: "mutation",
26757
- auth: "admin"
26786
+ auth: "protected"
26758
26787
  }),
26759
26788
  dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
26760
26789
  kind: "mutation",
26761
- auth: "admin"
26790
+ auth: "protected"
26762
26791
  })
26763
26792
  },
26764
26793
  status: {
@@ -27043,18 +27072,18 @@ var lockControlCapability = {
27043
27072
  code: string().min(1).optional()
27044
27073
  }), _void(), {
27045
27074
  kind: "mutation",
27046
- auth: "admin"
27075
+ auth: "protected"
27047
27076
  }),
27048
27077
  unlock: method(object({
27049
27078
  deviceId: number().int().nonnegative(),
27050
27079
  code: string().min(1).optional()
27051
27080
  }), _void(), {
27052
27081
  kind: "mutation",
27053
- auth: "admin"
27082
+ auth: "protected"
27054
27083
  }),
27055
27084
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27056
27085
  kind: "mutation",
27057
- auth: "admin"
27086
+ auth: "protected"
27058
27087
  })
27059
27088
  },
27060
27089
  status: {
@@ -27157,65 +27186,65 @@ var mediaPlayerCapability = {
27157
27186
  methods: {
27158
27187
  play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27159
27188
  kind: "mutation",
27160
- auth: "admin"
27189
+ auth: "protected"
27161
27190
  }),
27162
27191
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27163
27192
  kind: "mutation",
27164
- auth: "admin"
27193
+ auth: "protected"
27165
27194
  }),
27166
27195
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27167
27196
  kind: "mutation",
27168
- auth: "admin"
27197
+ auth: "protected"
27169
27198
  }),
27170
27199
  next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27171
27200
  kind: "mutation",
27172
- auth: "admin"
27201
+ auth: "protected"
27173
27202
  }),
27174
27203
  previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
27175
27204
  kind: "mutation",
27176
- auth: "admin"
27205
+ auth: "protected"
27177
27206
  }),
27178
27207
  seek: method(object({
27179
27208
  deviceId: number().int().nonnegative(),
27180
27209
  positionMs: number().int().nonnegative()
27181
27210
  }), _void(), {
27182
27211
  kind: "mutation",
27183
- auth: "admin"
27212
+ auth: "protected"
27184
27213
  }),
27185
27214
  setVolume: method(object({
27186
27215
  deviceId: number().int().nonnegative(),
27187
27216
  volumeLevel: number().min(0).max(100)
27188
27217
  }), _void(), {
27189
27218
  kind: "mutation",
27190
- auth: "admin"
27219
+ auth: "protected"
27191
27220
  }),
27192
27221
  setMute: method(object({
27193
27222
  deviceId: number().int().nonnegative(),
27194
27223
  muted: boolean()
27195
27224
  }), _void(), {
27196
27225
  kind: "mutation",
27197
- auth: "admin"
27226
+ auth: "protected"
27198
27227
  }),
27199
27228
  setShuffle: method(object({
27200
27229
  deviceId: number().int().nonnegative(),
27201
27230
  shuffle: boolean()
27202
27231
  }), _void(), {
27203
27232
  kind: "mutation",
27204
- auth: "admin"
27233
+ auth: "protected"
27205
27234
  }),
27206
27235
  setRepeat: method(object({
27207
27236
  deviceId: number().int().nonnegative(),
27208
27237
  repeat: MediaPlayerRepeatSchema
27209
27238
  }), _void(), {
27210
27239
  kind: "mutation",
27211
- auth: "admin"
27240
+ auth: "protected"
27212
27241
  }),
27213
27242
  selectSource: method(object({
27214
27243
  deviceId: number().int().nonnegative(),
27215
27244
  source: string().min(1)
27216
27245
  }), _void(), {
27217
27246
  kind: "mutation",
27218
- auth: "admin"
27247
+ auth: "protected"
27219
27248
  }),
27220
27249
  playMedia: method(object({
27221
27250
  deviceId: number().int().nonnegative(),
@@ -27226,7 +27255,7 @@ var mediaPlayerCapability = {
27226
27255
  mediaType: string().min(1)
27227
27256
  }), _void(), {
27228
27257
  kind: "mutation",
27229
- auth: "admin"
27258
+ auth: "protected"
27230
27259
  })
27231
27260
  },
27232
27261
  status: {
@@ -28819,27 +28848,27 @@ var petFeederCapability = {
28819
28848
  hopper2: gramsPortion.optional()
28820
28849
  }), _void(), {
28821
28850
  kind: "mutation",
28822
- auth: "admin"
28851
+ auth: "protected"
28823
28852
  }),
28824
28853
  /** Cancel an in-progress manual feed. */
28825
28854
  cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28826
28855
  kind: "mutation",
28827
- auth: "admin"
28856
+ auth: "protected"
28828
28857
  }),
28829
28858
  /** Reset the desiccant "days remaining" counter after replacing it. */
28830
28859
  resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28831
28860
  kind: "mutation",
28832
- auth: "admin"
28861
+ auth: "protected"
28833
28862
  }),
28834
28863
  /** Mark a hopper as refilled (D4H/D4S/D4SH). */
28835
28864
  markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28836
28865
  kind: "mutation",
28837
- auth: "admin"
28866
+ auth: "protected"
28838
28867
  }),
28839
28868
  /** Call the pet with the recorded prompt (D3). */
28840
28869
  callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
28841
28870
  kind: "mutation",
28842
- auth: "admin"
28871
+ auth: "protected"
28843
28872
  }),
28844
28873
  /** Play a stored sound by id (D3 / D4H / D4SH). */
28845
28874
  playSound: method(object({
@@ -28847,7 +28876,7 @@ var petFeederCapability = {
28847
28876
  soundId: number().int().nonnegative()
28848
28877
  }), _void(), {
28849
28878
  kind: "mutation",
28850
- auth: "admin"
28879
+ auth: "protected"
28851
28880
  }),
28852
28881
  /** Toggle the child-lock (manual-lock) setting. */
28853
28882
  setChildLock: method(object({
@@ -28855,7 +28884,7 @@ var petFeederCapability = {
28855
28884
  on: boolean()
28856
28885
  }), _void(), {
28857
28886
  kind: "mutation",
28858
- auth: "admin"
28887
+ auth: "protected"
28859
28888
  }),
28860
28889
  /** Toggle the front indicator light. */
28861
28890
  setIndicatorLight: method(object({
@@ -28863,7 +28892,7 @@ var petFeederCapability = {
28863
28892
  on: boolean()
28864
28893
  }), _void(), {
28865
28894
  kind: "mutation",
28866
- auth: "admin"
28895
+ auth: "protected"
28867
28896
  }),
28868
28897
  /** Toggle the dispense chime. */
28869
28898
  setFeedSound: method(object({
@@ -28871,7 +28900,7 @@ var petFeederCapability = {
28871
28900
  on: boolean()
28872
28901
  }), _void(), {
28873
28902
  kind: "mutation",
28874
- auth: "admin"
28903
+ auth: "protected"
28875
28904
  }),
28876
28905
  /** Set the speaker / prompt volume level. */
28877
28906
  setVolume: method(object({
@@ -28879,7 +28908,7 @@ var petFeederCapability = {
28879
28908
  level: number().int().nonnegative()
28880
28909
  }), _void(), {
28881
28910
  kind: "mutation",
28882
- auth: "admin"
28911
+ auth: "protected"
28883
28912
  })
28884
28913
  },
28885
28914
  status: {
@@ -31175,7 +31204,7 @@ var switchCapability = {
31175
31204
  on: boolean()
31176
31205
  }), _void(), {
31177
31206
  kind: "mutation",
31178
- auth: "admin"
31207
+ auth: "protected"
31179
31208
  }) },
31180
31209
  events: { onStateChanged: { data: object({
31181
31210
  deviceId: number(),
@@ -32163,30 +32192,30 @@ var vacuumControlCapability = {
32163
32192
  methods: {
32164
32193
  start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32165
32194
  kind: "mutation",
32166
- auth: "admin"
32195
+ auth: "protected"
32167
32196
  }),
32168
32197
  pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32169
32198
  kind: "mutation",
32170
- auth: "admin"
32199
+ auth: "protected"
32171
32200
  }),
32172
32201
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32173
32202
  kind: "mutation",
32174
- auth: "admin"
32203
+ auth: "protected"
32175
32204
  }),
32176
32205
  returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32177
32206
  kind: "mutation",
32178
- auth: "admin"
32207
+ auth: "protected"
32179
32208
  }),
32180
32209
  locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32181
32210
  kind: "mutation",
32182
- auth: "admin"
32211
+ auth: "protected"
32183
32212
  }),
32184
32213
  setFanSpeed: method(object({
32185
32214
  deviceId: number().int().nonnegative(),
32186
32215
  speed: string().min(1)
32187
32216
  }), _void(), {
32188
32217
  kind: "mutation",
32189
- auth: "admin"
32218
+ auth: "protected"
32190
32219
  })
32191
32220
  },
32192
32221
  status: {
@@ -32230,22 +32259,22 @@ var valveCapability = {
32230
32259
  methods: {
32231
32260
  open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32232
32261
  kind: "mutation",
32233
- auth: "admin"
32262
+ auth: "protected"
32234
32263
  }),
32235
32264
  close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32236
32265
  kind: "mutation",
32237
- auth: "admin"
32266
+ auth: "protected"
32238
32267
  }),
32239
32268
  stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
32240
32269
  kind: "mutation",
32241
- auth: "admin"
32270
+ auth: "protected"
32242
32271
  }),
32243
32272
  setPosition: method(object({
32244
32273
  deviceId: number().int().nonnegative(),
32245
32274
  position: number().min(0).max(100)
32246
32275
  }), _void(), {
32247
32276
  kind: "mutation",
32248
- auth: "admin"
32277
+ auth: "protected"
32249
32278
  })
32250
32279
  },
32251
32280
  status: {
@@ -32344,21 +32373,21 @@ var waterHeaterCapability = {
32344
32373
  temp: number().finite()
32345
32374
  }), _void(), {
32346
32375
  kind: "mutation",
32347
- auth: "admin"
32376
+ auth: "protected"
32348
32377
  }),
32349
32378
  setOperationMode: method(object({
32350
32379
  deviceId: number().int().nonnegative(),
32351
32380
  mode: string().min(1)
32352
32381
  }), _void(), {
32353
32382
  kind: "mutation",
32354
- auth: "admin"
32383
+ auth: "protected"
32355
32384
  }),
32356
32385
  setAway: method(object({
32357
32386
  deviceId: number().int().nonnegative(),
32358
32387
  on: boolean()
32359
32388
  }), _void(), {
32360
32389
  kind: "mutation",
32361
- auth: "admin"
32390
+ auth: "protected"
32362
32391
  })
32363
32392
  },
32364
32393
  status: {
@@ -37694,6 +37723,12 @@ Object.freeze({
37694
37723
  addonId: null,
37695
37724
  access: "view"
37696
37725
  },
37726
+ "pipelineAnalytics.listArchivedDebugNotes": {
37727
+ capName: "pipeline-analytics",
37728
+ capScope: "device",
37729
+ addonId: null,
37730
+ access: "view"
37731
+ },
37697
37732
  "pipelineAnalytics.listEventKinds": {
37698
37733
  capName: "pipeline-analytics",
37699
37734
  capScope: "device",
@@ -41481,6 +41516,11 @@ Object.freeze({
41481
41516
  form: "array",
41482
41517
  optional: true
41483
41518
  }],
41519
+ "pipelineAnalytics.listArchivedDebugNotes": [{
41520
+ name: "deviceId",
41521
+ form: "single",
41522
+ optional: true
41523
+ }],
41484
41524
  "pipelineAnalytics.listEventKinds": [{
41485
41525
  name: "deviceId",
41486
41526
  form: "single",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-provider-rtsp",
3
- "version": "1.2.85",
3
+ "version": "1.2.87",
4
4
  "description": "Generic RTSP camera device provider addon for CamStack",
5
5
  "keywords": [
6
6
  "camstack",