@camstack/addon-model-studio 1.1.112 → 1.1.114

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. package/dist/{MotionZonesSettings-B3Ws1xqb.mjs → MotionZonesSettings-DAVw6BXi.mjs} +2 -2
  2. package/dist/{PrivacyMaskSettings-UekMg4X1.mjs → PrivacyMaskSettings-BjZIEVB_.mjs} +4 -4
  3. package/dist/{SceneMonitorEditor-6Z16a4l3.mjs → SceneMonitorEditor-DT-Fy63i.mjs} +3 -3
  4. package/dist/_stub.js +11 -10
  5. package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-UR8JpOH1.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-OoGmSv2G.mjs} +4 -4
  6. package/dist/_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-n-3Otnt6.mjs +26 -0
  7. package/dist/{hostInit-Cv2ox8kP.mjs → hostInit-BhlcivX_.mjs} +3 -3
  8. package/dist/model-studio.addon.js +110 -70
  9. package/dist/model-studio.addon.mjs +110 -70
  10. package/dist/{player-overlays-zjGpr2DV.mjs → player-overlays-C-_QA7oA.mjs} +1 -1
  11. package/dist/remoteEntry.js +1 -1
  12. package/dist/{responsive-CDob01xQ.mjs → responsive-QGlxiMwJ.mjs} +1 -1
  13. package/dist/{square-DVxG0_w-.mjs → square-Cgg4-7qo.mjs} +1 -1
  14. package/dist/{trash-2-BgbLMJP2.mjs → trash-2-BxTGubsD.mjs} +1 -1
  15. package/dist/{use-device-snapshot-esDPfd9B.mjs → use-device-snapshot-DeoObnw4.mjs} +1 -1
  16. package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-d43P43Ws.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-Ckn4cwB7.mjs} +1 -1
  17. package/package.json +1 -1
  18. package/dist/_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DZEgYM31.mjs +0 -26
@@ -8194,6 +8194,35 @@ var CameraSwitchGroupSchema = object({
8194
8194
  /** Unix ms when the group was composed server-side. */
8195
8195
  fetchedAt: number()
8196
8196
  });
8197
+ /** One archived note — the operator's words plus enough context to find what
8198
+ * they were looking at, after the track itself is gone. */
8199
+ var ArchivedDebugNoteSchema = object({
8200
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
8201
+ * same sentence about the same track lands on the row already there. */
8202
+ id: string(),
8203
+ /** The operator's own words, verbatim. */
8204
+ note: string(),
8205
+ /** The camera. Required — every question here is asked per-camera. */
8206
+ deviceId: number().int(),
8207
+ /** The track the note was written on. PROVENANCE, not ownership: the track
8208
+ * is expected to be gone, and this row is not a reference to it. */
8209
+ sourceTrackId: string(),
8210
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
8211
+ archivedAt: number().int(),
8212
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
8213
+ trackStartedAt: number().int().nullable(),
8214
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
8215
+ trackClass: string().nullable(),
8216
+ /** The track's display label at review time; `null` when it had none. */
8217
+ trackLabel: string().nullable()
8218
+ });
8219
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
8220
+ var ArchivedDebugNoteQueryInputSchema = object({
8221
+ /** Restrict to a single camera; omit for every row. */
8222
+ deviceId: number().int().optional(),
8223
+ /** Max rows returned, newest-first. */
8224
+ limit: number().int().min(1).max(1e3).optional()
8225
+ });
8197
8226
  /**
8198
8227
  * Ops-log — the durable, append-only operations audit shared by the
8199
8228
  * recordings and events management surfaces.
@@ -16440,16 +16469,16 @@ DeviceType.AlarmPanel, method(object({
16440
16469
  code: string().min(1).optional()
16441
16470
  }), _void(), {
16442
16471
  kind: "mutation",
16443
- auth: "admin"
16472
+ auth: "protected"
16444
16473
  }), method(object({
16445
16474
  deviceId: number().int().nonnegative(),
16446
16475
  code: string().min(1).optional()
16447
16476
  }), _void(), {
16448
16477
  kind: "mutation",
16449
- auth: "admin"
16478
+ auth: "protected"
16450
16479
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
16451
16480
  kind: "mutation",
16452
- auth: "admin"
16481
+ auth: "protected"
16453
16482
  });
16454
16483
  /**
16455
16484
  * Shared geometry vocabulary for on-frame shape caps — privacy-mask,
@@ -20351,7 +20380,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20351
20380
  deviceId: number(),
20352
20381
  trackId: string(),
20353
20382
  flags: TrackFlagsPatchSchema
20354
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
20383
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
20355
20384
  kind: "query",
20356
20385
  auth: "admin"
20357
20386
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -24104,7 +24133,7 @@ DeviceType.Light, method(object({
24104
24133
  percentage: number().min(0).max(100)
24105
24134
  }), _void(), {
24106
24135
  kind: "mutation",
24107
- auth: "admin"
24136
+ auth: "protected"
24108
24137
  }), object({
24109
24138
  deviceId: number(),
24110
24139
  percentage: number().min(0).max(100),
@@ -24112,7 +24141,7 @@ DeviceType.Light, method(object({
24112
24141
  });
24113
24142
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24114
24143
  kind: "mutation",
24115
- auth: "admin"
24144
+ auth: "protected"
24116
24145
  });
24117
24146
  /**
24118
24147
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -24271,50 +24300,50 @@ DeviceType.Thermostat, DeviceType.Climate, method(object({
24271
24300
  mode: HvacModeSchema
24272
24301
  }), _void(), {
24273
24302
  kind: "mutation",
24274
- auth: "admin"
24303
+ auth: "protected"
24275
24304
  }), method(object({
24276
24305
  deviceId: number().int().nonnegative(),
24277
24306
  fanMode: string().min(1)
24278
24307
  }), _void(), {
24279
24308
  kind: "mutation",
24280
- auth: "admin"
24309
+ auth: "protected"
24281
24310
  }), method(object({
24282
24311
  deviceId: number().int().nonnegative(),
24283
24312
  preset: string().min(1)
24284
24313
  }), _void(), {
24285
24314
  kind: "mutation",
24286
- auth: "admin"
24315
+ auth: "protected"
24287
24316
  }), method(object({
24288
24317
  deviceId: number().int().nonnegative(),
24289
24318
  target: number()
24290
24319
  }), _void(), {
24291
24320
  kind: "mutation",
24292
- auth: "admin"
24321
+ auth: "protected"
24293
24322
  }), method(object({
24294
24323
  deviceId: number().int().nonnegative(),
24295
24324
  targetLow: number(),
24296
24325
  targetHigh: number()
24297
24326
  }), _void(), {
24298
24327
  kind: "mutation",
24299
- auth: "admin"
24328
+ auth: "protected"
24300
24329
  }), method(object({
24301
24330
  deviceId: number().int().nonnegative(),
24302
24331
  targetHumidity: number().min(0).max(100)
24303
24332
  }), _void(), {
24304
24333
  kind: "mutation",
24305
- auth: "admin"
24334
+ auth: "protected"
24306
24335
  }), method(object({
24307
24336
  deviceId: number().int().nonnegative(),
24308
24337
  on: boolean()
24309
24338
  }), _void(), {
24310
24339
  kind: "mutation",
24311
- auth: "admin"
24340
+ auth: "protected"
24312
24341
  }), method(object({
24313
24342
  deviceId: number().int().nonnegative(),
24314
24343
  on: boolean()
24315
24344
  }), _void(), {
24316
24345
  kind: "mutation",
24317
- auth: "admin"
24346
+ auth: "protected"
24318
24347
  });
24319
24348
  /**
24320
24349
  * Color-light cap. Coexists with `switch` (on/off) and `brightness`
@@ -24389,7 +24418,7 @@ DeviceType.Light, method(object({
24389
24418
  color: ColorInputSchema
24390
24419
  }), _void(), {
24391
24420
  kind: "mutation",
24392
- auth: "admin"
24421
+ auth: "protected"
24393
24422
  }), object({
24394
24423
  deviceId: number(),
24395
24424
  mode: _enum([
@@ -24538,7 +24567,7 @@ DeviceType.Control, method(object({
24538
24567
  control: ControlSetValueInputSchema
24539
24568
  }), _void(), {
24540
24569
  kind: "mutation",
24541
- auth: "admin"
24570
+ auth: "protected"
24542
24571
  });
24543
24572
  object({
24544
24573
  /** Lifecycle state of the cover. */
@@ -24559,25 +24588,25 @@ object({
24559
24588
  });
24560
24589
  DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24561
24590
  kind: "mutation",
24562
- auth: "admin"
24591
+ auth: "protected"
24563
24592
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
24564
24593
  kind: "mutation",
24565
- auth: "admin"
24594
+ auth: "protected"
24566
24595
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
24567
24596
  kind: "mutation",
24568
- auth: "admin"
24597
+ auth: "protected"
24569
24598
  }), method(object({
24570
24599
  deviceId: number().int().nonnegative(),
24571
24600
  position: number().min(0).max(100)
24572
24601
  }), _void(), {
24573
24602
  kind: "mutation",
24574
- auth: "admin"
24603
+ auth: "protected"
24575
24604
  }), method(object({
24576
24605
  deviceId: number().int().nonnegative(),
24577
24606
  tiltPosition: number().min(0).max(100)
24578
24607
  }), _void(), {
24579
24608
  kind: "mutation",
24580
- auth: "admin"
24609
+ auth: "protected"
24581
24610
  });
24582
24611
  /**
24583
24612
  * Vendor-neutral day/night (IR-cut) control — the per-camera config cap
@@ -25172,25 +25201,25 @@ DeviceType.Fan, method(object({
25172
25201
  percentage: number().min(0).max(100)
25173
25202
  }), _void(), {
25174
25203
  kind: "mutation",
25175
- auth: "admin"
25204
+ auth: "protected"
25176
25205
  }), method(object({
25177
25206
  deviceId: number().int().nonnegative(),
25178
25207
  preset: string().min(1)
25179
25208
  }), _void(), {
25180
25209
  kind: "mutation",
25181
- auth: "admin"
25210
+ auth: "protected"
25182
25211
  }), method(object({
25183
25212
  deviceId: number().int().nonnegative(),
25184
25213
  direction: FanDirectionSchema
25185
25214
  }), _void(), {
25186
25215
  kind: "mutation",
25187
- auth: "admin"
25216
+ auth: "protected"
25188
25217
  }), method(object({
25189
25218
  deviceId: number().int().nonnegative(),
25190
25219
  oscillating: boolean()
25191
25220
  }), _void(), {
25192
25221
  kind: "mutation",
25193
- auth: "admin"
25222
+ auth: "protected"
25194
25223
  });
25195
25224
  /**
25196
25225
  * Per-device feature/identity probe slice. Holds the runtime-resolved
@@ -25293,19 +25322,19 @@ DeviceType.Humidifier, method(object({
25293
25322
  on: boolean()
25294
25323
  }), _void(), {
25295
25324
  kind: "mutation",
25296
- auth: "admin"
25325
+ auth: "protected"
25297
25326
  }), method(object({
25298
25327
  deviceId: number().int().nonnegative(),
25299
25328
  humidity: number().min(0).max(100)
25300
25329
  }), _void(), {
25301
25330
  kind: "mutation",
25302
- auth: "admin"
25331
+ auth: "protected"
25303
25332
  }), method(object({
25304
25333
  deviceId: number().int().nonnegative(),
25305
25334
  mode: string().min(1)
25306
25335
  }), _void(), {
25307
25336
  kind: "mutation",
25308
- auth: "admin"
25337
+ auth: "protected"
25309
25338
  });
25310
25339
  object({
25311
25340
  /** Current relative humidity, 0..100. */
@@ -25767,13 +25796,13 @@ object({
25767
25796
  });
25768
25797
  DeviceType.LawnMower, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25769
25798
  kind: "mutation",
25770
- auth: "admin"
25799
+ auth: "protected"
25771
25800
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25772
25801
  kind: "mutation",
25773
- auth: "admin"
25802
+ auth: "protected"
25774
25803
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25775
25804
  kind: "mutation",
25776
- auth: "admin"
25805
+ auth: "protected"
25777
25806
  });
25778
25807
  /**
25779
25808
  * local-network — hub-only singleton.
@@ -26033,16 +26062,16 @@ DeviceType.Lock, method(object({
26033
26062
  code: string().min(1).optional()
26034
26063
  }), _void(), {
26035
26064
  kind: "mutation",
26036
- auth: "admin"
26065
+ auth: "protected"
26037
26066
  }), method(object({
26038
26067
  deviceId: number().int().nonnegative(),
26039
26068
  code: string().min(1).optional()
26040
26069
  }), _void(), {
26041
26070
  kind: "mutation",
26042
- auth: "admin"
26071
+ auth: "protected"
26043
26072
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26044
26073
  kind: "mutation",
26045
- auth: "admin"
26074
+ auth: "protected"
26046
26075
  });
26047
26076
  /**
26048
26077
  * Media-player cap. Models HA `media_player.*` (Sonos, Chromecast,
@@ -26116,55 +26145,55 @@ object({
26116
26145
  });
26117
26146
  DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }), _void(), {
26118
26147
  kind: "mutation",
26119
- auth: "admin"
26148
+ auth: "protected"
26120
26149
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26121
26150
  kind: "mutation",
26122
- auth: "admin"
26151
+ auth: "protected"
26123
26152
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26124
26153
  kind: "mutation",
26125
- auth: "admin"
26154
+ auth: "protected"
26126
26155
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26127
26156
  kind: "mutation",
26128
- auth: "admin"
26157
+ auth: "protected"
26129
26158
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26130
26159
  kind: "mutation",
26131
- auth: "admin"
26160
+ auth: "protected"
26132
26161
  }), method(object({
26133
26162
  deviceId: number().int().nonnegative(),
26134
26163
  positionMs: number().int().nonnegative()
26135
26164
  }), _void(), {
26136
26165
  kind: "mutation",
26137
- auth: "admin"
26166
+ auth: "protected"
26138
26167
  }), method(object({
26139
26168
  deviceId: number().int().nonnegative(),
26140
26169
  volumeLevel: number().min(0).max(100)
26141
26170
  }), _void(), {
26142
26171
  kind: "mutation",
26143
- auth: "admin"
26172
+ auth: "protected"
26144
26173
  }), method(object({
26145
26174
  deviceId: number().int().nonnegative(),
26146
26175
  muted: boolean()
26147
26176
  }), _void(), {
26148
26177
  kind: "mutation",
26149
- auth: "admin"
26178
+ auth: "protected"
26150
26179
  }), method(object({
26151
26180
  deviceId: number().int().nonnegative(),
26152
26181
  shuffle: boolean()
26153
26182
  }), _void(), {
26154
26183
  kind: "mutation",
26155
- auth: "admin"
26184
+ auth: "protected"
26156
26185
  }), method(object({
26157
26186
  deviceId: number().int().nonnegative(),
26158
26187
  repeat: MediaPlayerRepeatSchema
26159
26188
  }), _void(), {
26160
26189
  kind: "mutation",
26161
- auth: "admin"
26190
+ auth: "protected"
26162
26191
  }), method(object({
26163
26192
  deviceId: number().int().nonnegative(),
26164
26193
  source: string().min(1)
26165
26194
  }), _void(), {
26166
26195
  kind: "mutation",
26167
- auth: "admin"
26196
+ auth: "protected"
26168
26197
  }), method(object({
26169
26198
  deviceId: number().int().nonnegative(),
26170
26199
  /** Media identifier / URL. */
@@ -26174,7 +26203,7 @@ DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }
26174
26203
  mediaType: string().min(1)
26175
26204
  }), _void(), {
26176
26205
  kind: "mutation",
26177
- auth: "admin"
26206
+ auth: "protected"
26178
26207
  });
26179
26208
  /**
26180
26209
  * mesh-network — collection cap for mesh-VPN providers.
@@ -27340,49 +27369,49 @@ DeviceType.PetFeeder, method(object({
27340
27369
  hopper2: gramsPortion.optional()
27341
27370
  }), _void(), {
27342
27371
  kind: "mutation",
27343
- auth: "admin"
27372
+ auth: "protected"
27344
27373
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
27345
27374
  kind: "mutation",
27346
- auth: "admin"
27375
+ auth: "protected"
27347
27376
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
27348
27377
  kind: "mutation",
27349
- auth: "admin"
27378
+ auth: "protected"
27350
27379
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
27351
27380
  kind: "mutation",
27352
- auth: "admin"
27381
+ auth: "protected"
27353
27382
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
27354
27383
  kind: "mutation",
27355
- auth: "admin"
27384
+ auth: "protected"
27356
27385
  }), method(object({
27357
27386
  deviceId: number().int().nonnegative(),
27358
27387
  soundId: number().int().nonnegative()
27359
27388
  }), _void(), {
27360
27389
  kind: "mutation",
27361
- auth: "admin"
27390
+ auth: "protected"
27362
27391
  }), method(object({
27363
27392
  deviceId: number().int().nonnegative(),
27364
27393
  on: boolean()
27365
27394
  }), _void(), {
27366
27395
  kind: "mutation",
27367
- auth: "admin"
27396
+ auth: "protected"
27368
27397
  }), method(object({
27369
27398
  deviceId: number().int().nonnegative(),
27370
27399
  on: boolean()
27371
27400
  }), _void(), {
27372
27401
  kind: "mutation",
27373
- auth: "admin"
27402
+ auth: "protected"
27374
27403
  }), method(object({
27375
27404
  deviceId: number().int().nonnegative(),
27376
27405
  on: boolean()
27377
27406
  }), _void(), {
27378
27407
  kind: "mutation",
27379
- auth: "admin"
27408
+ auth: "protected"
27380
27409
  }), method(object({
27381
27410
  deviceId: number().int().nonnegative(),
27382
27411
  level: number().int().nonnegative()
27383
27412
  }), _void(), {
27384
27413
  kind: "mutation",
27385
- auth: "admin"
27414
+ auth: "protected"
27386
27415
  });
27387
27416
  var VehicleSchema = object({
27388
27417
  id: string(),
@@ -29169,7 +29198,7 @@ DeviceType.Switch, DeviceType.Siren, DeviceType.Light, method(object({
29169
29198
  on: boolean()
29170
29199
  }), _void(), {
29171
29200
  kind: "mutation",
29172
- auth: "admin"
29201
+ auth: "protected"
29173
29202
  }), object({
29174
29203
  deviceId: number(),
29175
29204
  on: boolean(),
@@ -30026,25 +30055,25 @@ object({
30026
30055
  });
30027
30056
  DeviceType.Vacuum, method(object({ deviceId: number().int().nonnegative() }), _void(), {
30028
30057
  kind: "mutation",
30029
- auth: "admin"
30058
+ auth: "protected"
30030
30059
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30031
30060
  kind: "mutation",
30032
- auth: "admin"
30061
+ auth: "protected"
30033
30062
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30034
30063
  kind: "mutation",
30035
- auth: "admin"
30064
+ auth: "protected"
30036
30065
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30037
30066
  kind: "mutation",
30038
- auth: "admin"
30067
+ auth: "protected"
30039
30068
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30040
30069
  kind: "mutation",
30041
- auth: "admin"
30070
+ auth: "protected"
30042
30071
  }), method(object({
30043
30072
  deviceId: number().int().nonnegative(),
30044
30073
  speed: string().min(1)
30045
30074
  }), _void(), {
30046
30075
  kind: "mutation",
30047
- auth: "admin"
30076
+ auth: "protected"
30048
30077
  });
30049
30078
  object({
30050
30079
  /** Lifecycle state of the valve. */
@@ -30063,19 +30092,19 @@ object({
30063
30092
  });
30064
30093
  DeviceType.Valve, method(object({ deviceId: number().int().nonnegative() }), _void(), {
30065
30094
  kind: "mutation",
30066
- auth: "admin"
30095
+ auth: "protected"
30067
30096
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30068
30097
  kind: "mutation",
30069
- auth: "admin"
30098
+ auth: "protected"
30070
30099
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30071
30100
  kind: "mutation",
30072
- auth: "admin"
30101
+ auth: "protected"
30073
30102
  }), method(object({
30074
30103
  deviceId: number().int().nonnegative(),
30075
30104
  position: number().min(0).max(100)
30076
30105
  }), _void(), {
30077
30106
  kind: "mutation",
30078
- auth: "admin"
30107
+ auth: "protected"
30079
30108
  });
30080
30109
  object({
30081
30110
  detected: boolean(),
@@ -30109,19 +30138,19 @@ DeviceType.WaterHeater, method(object({
30109
30138
  temp: number().finite()
30110
30139
  }), _void(), {
30111
30140
  kind: "mutation",
30112
- auth: "admin"
30141
+ auth: "protected"
30113
30142
  }), method(object({
30114
30143
  deviceId: number().int().nonnegative(),
30115
30144
  mode: string().min(1)
30116
30145
  }), _void(), {
30117
30146
  kind: "mutation",
30118
- auth: "admin"
30147
+ auth: "protected"
30119
30148
  }), method(object({
30120
30149
  deviceId: number().int().nonnegative(),
30121
30150
  on: boolean()
30122
30151
  }), _void(), {
30123
30152
  kind: "mutation",
30124
- auth: "admin"
30153
+ auth: "protected"
30125
30154
  });
30126
30155
  object({
30127
30156
  /** Verbatim HA condition state (`sunny`, `cloudy`, `rainy`, …). Null
@@ -33749,6 +33778,12 @@ Object.freeze({
33749
33778
  addonId: null,
33750
33779
  access: "view"
33751
33780
  },
33781
+ "pipelineAnalytics.listArchivedDebugNotes": {
33782
+ capName: "pipeline-analytics",
33783
+ capScope: "device",
33784
+ addonId: null,
33785
+ access: "view"
33786
+ },
33752
33787
  "pipelineAnalytics.listEventKinds": {
33753
33788
  capName: "pipeline-analytics",
33754
33789
  capScope: "device",
@@ -37536,6 +37571,11 @@ Object.freeze({
37536
37571
  form: "array",
37537
37572
  optional: true
37538
37573
  }],
37574
+ "pipelineAnalytics.listArchivedDebugNotes": [{
37575
+ name: "deviceId",
37576
+ form: "single",
37577
+ optional: true
37578
+ }],
37539
37579
  "pipelineAnalytics.listEventKinds": [{
37540
37580
  name: "deviceId",
37541
37581
  form: "single",