@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
@@ -8173,6 +8173,35 @@ var CameraSwitchGroupSchema = object({
8173
8173
  /** Unix ms when the group was composed server-side. */
8174
8174
  fetchedAt: number()
8175
8175
  });
8176
+ /** One archived note — the operator's words plus enough context to find what
8177
+ * they were looking at, after the track itself is gone. */
8178
+ var ArchivedDebugNoteSchema = object({
8179
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
8180
+ * same sentence about the same track lands on the row already there. */
8181
+ id: string(),
8182
+ /** The operator's own words, verbatim. */
8183
+ note: string(),
8184
+ /** The camera. Required — every question here is asked per-camera. */
8185
+ deviceId: number().int(),
8186
+ /** The track the note was written on. PROVENANCE, not ownership: the track
8187
+ * is expected to be gone, and this row is not a reference to it. */
8188
+ sourceTrackId: string(),
8189
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
8190
+ archivedAt: number().int(),
8191
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
8192
+ trackStartedAt: number().int().nullable(),
8193
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
8194
+ trackClass: string().nullable(),
8195
+ /** The track's display label at review time; `null` when it had none. */
8196
+ trackLabel: string().nullable()
8197
+ });
8198
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
8199
+ var ArchivedDebugNoteQueryInputSchema = object({
8200
+ /** Restrict to a single camera; omit for every row. */
8201
+ deviceId: number().int().optional(),
8202
+ /** Max rows returned, newest-first. */
8203
+ limit: number().int().min(1).max(1e3).optional()
8204
+ });
8176
8205
  /**
8177
8206
  * Ops-log — the durable, append-only operations audit shared by the
8178
8207
  * recordings and events management surfaces.
@@ -16419,16 +16448,16 @@ DeviceType.AlarmPanel, method(object({
16419
16448
  code: string().min(1).optional()
16420
16449
  }), _void(), {
16421
16450
  kind: "mutation",
16422
- auth: "admin"
16451
+ auth: "protected"
16423
16452
  }), method(object({
16424
16453
  deviceId: number().int().nonnegative(),
16425
16454
  code: string().min(1).optional()
16426
16455
  }), _void(), {
16427
16456
  kind: "mutation",
16428
- auth: "admin"
16457
+ auth: "protected"
16429
16458
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
16430
16459
  kind: "mutation",
16431
- auth: "admin"
16460
+ auth: "protected"
16432
16461
  });
16433
16462
  /**
16434
16463
  * Shared geometry vocabulary for on-frame shape caps — privacy-mask,
@@ -20330,7 +20359,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
20330
20359
  deviceId: number(),
20331
20360
  trackId: string(),
20332
20361
  flags: TrackFlagsPatchSchema
20333
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
20362
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
20334
20363
  kind: "query",
20335
20364
  auth: "admin"
20336
20365
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -24083,7 +24112,7 @@ DeviceType.Light, method(object({
24083
24112
  percentage: number().min(0).max(100)
24084
24113
  }), _void(), {
24085
24114
  kind: "mutation",
24086
- auth: "admin"
24115
+ auth: "protected"
24087
24116
  }), object({
24088
24117
  deviceId: number(),
24089
24118
  percentage: number().min(0).max(100),
@@ -24091,7 +24120,7 @@ DeviceType.Light, method(object({
24091
24120
  });
24092
24121
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24093
24122
  kind: "mutation",
24094
- auth: "admin"
24123
+ auth: "protected"
24095
24124
  });
24096
24125
  /**
24097
24126
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -24250,50 +24279,50 @@ DeviceType.Thermostat, DeviceType.Climate, method(object({
24250
24279
  mode: HvacModeSchema
24251
24280
  }), _void(), {
24252
24281
  kind: "mutation",
24253
- auth: "admin"
24282
+ auth: "protected"
24254
24283
  }), method(object({
24255
24284
  deviceId: number().int().nonnegative(),
24256
24285
  fanMode: string().min(1)
24257
24286
  }), _void(), {
24258
24287
  kind: "mutation",
24259
- auth: "admin"
24288
+ auth: "protected"
24260
24289
  }), method(object({
24261
24290
  deviceId: number().int().nonnegative(),
24262
24291
  preset: string().min(1)
24263
24292
  }), _void(), {
24264
24293
  kind: "mutation",
24265
- auth: "admin"
24294
+ auth: "protected"
24266
24295
  }), method(object({
24267
24296
  deviceId: number().int().nonnegative(),
24268
24297
  target: number()
24269
24298
  }), _void(), {
24270
24299
  kind: "mutation",
24271
- auth: "admin"
24300
+ auth: "protected"
24272
24301
  }), method(object({
24273
24302
  deviceId: number().int().nonnegative(),
24274
24303
  targetLow: number(),
24275
24304
  targetHigh: number()
24276
24305
  }), _void(), {
24277
24306
  kind: "mutation",
24278
- auth: "admin"
24307
+ auth: "protected"
24279
24308
  }), method(object({
24280
24309
  deviceId: number().int().nonnegative(),
24281
24310
  targetHumidity: number().min(0).max(100)
24282
24311
  }), _void(), {
24283
24312
  kind: "mutation",
24284
- auth: "admin"
24313
+ auth: "protected"
24285
24314
  }), method(object({
24286
24315
  deviceId: number().int().nonnegative(),
24287
24316
  on: boolean()
24288
24317
  }), _void(), {
24289
24318
  kind: "mutation",
24290
- auth: "admin"
24319
+ auth: "protected"
24291
24320
  }), method(object({
24292
24321
  deviceId: number().int().nonnegative(),
24293
24322
  on: boolean()
24294
24323
  }), _void(), {
24295
24324
  kind: "mutation",
24296
- auth: "admin"
24325
+ auth: "protected"
24297
24326
  });
24298
24327
  /**
24299
24328
  * Color-light cap. Coexists with `switch` (on/off) and `brightness`
@@ -24368,7 +24397,7 @@ DeviceType.Light, method(object({
24368
24397
  color: ColorInputSchema
24369
24398
  }), _void(), {
24370
24399
  kind: "mutation",
24371
- auth: "admin"
24400
+ auth: "protected"
24372
24401
  }), object({
24373
24402
  deviceId: number(),
24374
24403
  mode: _enum([
@@ -24517,7 +24546,7 @@ DeviceType.Control, method(object({
24517
24546
  control: ControlSetValueInputSchema
24518
24547
  }), _void(), {
24519
24548
  kind: "mutation",
24520
- auth: "admin"
24549
+ auth: "protected"
24521
24550
  });
24522
24551
  object({
24523
24552
  /** Lifecycle state of the cover. */
@@ -24538,25 +24567,25 @@ object({
24538
24567
  });
24539
24568
  DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24540
24569
  kind: "mutation",
24541
- auth: "admin"
24570
+ auth: "protected"
24542
24571
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
24543
24572
  kind: "mutation",
24544
- auth: "admin"
24573
+ auth: "protected"
24545
24574
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
24546
24575
  kind: "mutation",
24547
- auth: "admin"
24576
+ auth: "protected"
24548
24577
  }), method(object({
24549
24578
  deviceId: number().int().nonnegative(),
24550
24579
  position: number().min(0).max(100)
24551
24580
  }), _void(), {
24552
24581
  kind: "mutation",
24553
- auth: "admin"
24582
+ auth: "protected"
24554
24583
  }), method(object({
24555
24584
  deviceId: number().int().nonnegative(),
24556
24585
  tiltPosition: number().min(0).max(100)
24557
24586
  }), _void(), {
24558
24587
  kind: "mutation",
24559
- auth: "admin"
24588
+ auth: "protected"
24560
24589
  });
24561
24590
  /**
24562
24591
  * Vendor-neutral day/night (IR-cut) control — the per-camera config cap
@@ -25151,25 +25180,25 @@ DeviceType.Fan, method(object({
25151
25180
  percentage: number().min(0).max(100)
25152
25181
  }), _void(), {
25153
25182
  kind: "mutation",
25154
- auth: "admin"
25183
+ auth: "protected"
25155
25184
  }), method(object({
25156
25185
  deviceId: number().int().nonnegative(),
25157
25186
  preset: string().min(1)
25158
25187
  }), _void(), {
25159
25188
  kind: "mutation",
25160
- auth: "admin"
25189
+ auth: "protected"
25161
25190
  }), method(object({
25162
25191
  deviceId: number().int().nonnegative(),
25163
25192
  direction: FanDirectionSchema
25164
25193
  }), _void(), {
25165
25194
  kind: "mutation",
25166
- auth: "admin"
25195
+ auth: "protected"
25167
25196
  }), method(object({
25168
25197
  deviceId: number().int().nonnegative(),
25169
25198
  oscillating: boolean()
25170
25199
  }), _void(), {
25171
25200
  kind: "mutation",
25172
- auth: "admin"
25201
+ auth: "protected"
25173
25202
  });
25174
25203
  /**
25175
25204
  * Per-device feature/identity probe slice. Holds the runtime-resolved
@@ -25272,19 +25301,19 @@ DeviceType.Humidifier, method(object({
25272
25301
  on: boolean()
25273
25302
  }), _void(), {
25274
25303
  kind: "mutation",
25275
- auth: "admin"
25304
+ auth: "protected"
25276
25305
  }), method(object({
25277
25306
  deviceId: number().int().nonnegative(),
25278
25307
  humidity: number().min(0).max(100)
25279
25308
  }), _void(), {
25280
25309
  kind: "mutation",
25281
- auth: "admin"
25310
+ auth: "protected"
25282
25311
  }), method(object({
25283
25312
  deviceId: number().int().nonnegative(),
25284
25313
  mode: string().min(1)
25285
25314
  }), _void(), {
25286
25315
  kind: "mutation",
25287
- auth: "admin"
25316
+ auth: "protected"
25288
25317
  });
25289
25318
  object({
25290
25319
  /** Current relative humidity, 0..100. */
@@ -25746,13 +25775,13 @@ object({
25746
25775
  });
25747
25776
  DeviceType.LawnMower, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25748
25777
  kind: "mutation",
25749
- auth: "admin"
25778
+ auth: "protected"
25750
25779
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25751
25780
  kind: "mutation",
25752
- auth: "admin"
25781
+ auth: "protected"
25753
25782
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25754
25783
  kind: "mutation",
25755
- auth: "admin"
25784
+ auth: "protected"
25756
25785
  });
25757
25786
  /**
25758
25787
  * local-network — hub-only singleton.
@@ -26012,16 +26041,16 @@ DeviceType.Lock, method(object({
26012
26041
  code: string().min(1).optional()
26013
26042
  }), _void(), {
26014
26043
  kind: "mutation",
26015
- auth: "admin"
26044
+ auth: "protected"
26016
26045
  }), method(object({
26017
26046
  deviceId: number().int().nonnegative(),
26018
26047
  code: string().min(1).optional()
26019
26048
  }), _void(), {
26020
26049
  kind: "mutation",
26021
- auth: "admin"
26050
+ auth: "protected"
26022
26051
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26023
26052
  kind: "mutation",
26024
- auth: "admin"
26053
+ auth: "protected"
26025
26054
  });
26026
26055
  /**
26027
26056
  * Media-player cap. Models HA `media_player.*` (Sonos, Chromecast,
@@ -26095,55 +26124,55 @@ object({
26095
26124
  });
26096
26125
  DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }), _void(), {
26097
26126
  kind: "mutation",
26098
- auth: "admin"
26127
+ auth: "protected"
26099
26128
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26100
26129
  kind: "mutation",
26101
- auth: "admin"
26130
+ auth: "protected"
26102
26131
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26103
26132
  kind: "mutation",
26104
- auth: "admin"
26133
+ auth: "protected"
26105
26134
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26106
26135
  kind: "mutation",
26107
- auth: "admin"
26136
+ auth: "protected"
26108
26137
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26109
26138
  kind: "mutation",
26110
- auth: "admin"
26139
+ auth: "protected"
26111
26140
  }), method(object({
26112
26141
  deviceId: number().int().nonnegative(),
26113
26142
  positionMs: number().int().nonnegative()
26114
26143
  }), _void(), {
26115
26144
  kind: "mutation",
26116
- auth: "admin"
26145
+ auth: "protected"
26117
26146
  }), method(object({
26118
26147
  deviceId: number().int().nonnegative(),
26119
26148
  volumeLevel: number().min(0).max(100)
26120
26149
  }), _void(), {
26121
26150
  kind: "mutation",
26122
- auth: "admin"
26151
+ auth: "protected"
26123
26152
  }), method(object({
26124
26153
  deviceId: number().int().nonnegative(),
26125
26154
  muted: boolean()
26126
26155
  }), _void(), {
26127
26156
  kind: "mutation",
26128
- auth: "admin"
26157
+ auth: "protected"
26129
26158
  }), method(object({
26130
26159
  deviceId: number().int().nonnegative(),
26131
26160
  shuffle: boolean()
26132
26161
  }), _void(), {
26133
26162
  kind: "mutation",
26134
- auth: "admin"
26163
+ auth: "protected"
26135
26164
  }), method(object({
26136
26165
  deviceId: number().int().nonnegative(),
26137
26166
  repeat: MediaPlayerRepeatSchema
26138
26167
  }), _void(), {
26139
26168
  kind: "mutation",
26140
- auth: "admin"
26169
+ auth: "protected"
26141
26170
  }), method(object({
26142
26171
  deviceId: number().int().nonnegative(),
26143
26172
  source: string().min(1)
26144
26173
  }), _void(), {
26145
26174
  kind: "mutation",
26146
- auth: "admin"
26175
+ auth: "protected"
26147
26176
  }), method(object({
26148
26177
  deviceId: number().int().nonnegative(),
26149
26178
  /** Media identifier / URL. */
@@ -26153,7 +26182,7 @@ DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }
26153
26182
  mediaType: string().min(1)
26154
26183
  }), _void(), {
26155
26184
  kind: "mutation",
26156
- auth: "admin"
26185
+ auth: "protected"
26157
26186
  });
26158
26187
  /**
26159
26188
  * mesh-network — collection cap for mesh-VPN providers.
@@ -27319,49 +27348,49 @@ DeviceType.PetFeeder, method(object({
27319
27348
  hopper2: gramsPortion.optional()
27320
27349
  }), _void(), {
27321
27350
  kind: "mutation",
27322
- auth: "admin"
27351
+ auth: "protected"
27323
27352
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
27324
27353
  kind: "mutation",
27325
- auth: "admin"
27354
+ auth: "protected"
27326
27355
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
27327
27356
  kind: "mutation",
27328
- auth: "admin"
27357
+ auth: "protected"
27329
27358
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
27330
27359
  kind: "mutation",
27331
- auth: "admin"
27360
+ auth: "protected"
27332
27361
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
27333
27362
  kind: "mutation",
27334
- auth: "admin"
27363
+ auth: "protected"
27335
27364
  }), method(object({
27336
27365
  deviceId: number().int().nonnegative(),
27337
27366
  soundId: number().int().nonnegative()
27338
27367
  }), _void(), {
27339
27368
  kind: "mutation",
27340
- auth: "admin"
27369
+ auth: "protected"
27341
27370
  }), method(object({
27342
27371
  deviceId: number().int().nonnegative(),
27343
27372
  on: boolean()
27344
27373
  }), _void(), {
27345
27374
  kind: "mutation",
27346
- auth: "admin"
27375
+ auth: "protected"
27347
27376
  }), method(object({
27348
27377
  deviceId: number().int().nonnegative(),
27349
27378
  on: boolean()
27350
27379
  }), _void(), {
27351
27380
  kind: "mutation",
27352
- auth: "admin"
27381
+ auth: "protected"
27353
27382
  }), method(object({
27354
27383
  deviceId: number().int().nonnegative(),
27355
27384
  on: boolean()
27356
27385
  }), _void(), {
27357
27386
  kind: "mutation",
27358
- auth: "admin"
27387
+ auth: "protected"
27359
27388
  }), method(object({
27360
27389
  deviceId: number().int().nonnegative(),
27361
27390
  level: number().int().nonnegative()
27362
27391
  }), _void(), {
27363
27392
  kind: "mutation",
27364
- auth: "admin"
27393
+ auth: "protected"
27365
27394
  });
27366
27395
  var VehicleSchema = object({
27367
27396
  id: string(),
@@ -29148,7 +29177,7 @@ DeviceType.Switch, DeviceType.Siren, DeviceType.Light, method(object({
29148
29177
  on: boolean()
29149
29178
  }), _void(), {
29150
29179
  kind: "mutation",
29151
- auth: "admin"
29180
+ auth: "protected"
29152
29181
  }), object({
29153
29182
  deviceId: number(),
29154
29183
  on: boolean(),
@@ -30005,25 +30034,25 @@ object({
30005
30034
  });
30006
30035
  DeviceType.Vacuum, method(object({ deviceId: number().int().nonnegative() }), _void(), {
30007
30036
  kind: "mutation",
30008
- auth: "admin"
30037
+ auth: "protected"
30009
30038
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30010
30039
  kind: "mutation",
30011
- auth: "admin"
30040
+ auth: "protected"
30012
30041
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30013
30042
  kind: "mutation",
30014
- auth: "admin"
30043
+ auth: "protected"
30015
30044
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30016
30045
  kind: "mutation",
30017
- auth: "admin"
30046
+ auth: "protected"
30018
30047
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30019
30048
  kind: "mutation",
30020
- auth: "admin"
30049
+ auth: "protected"
30021
30050
  }), method(object({
30022
30051
  deviceId: number().int().nonnegative(),
30023
30052
  speed: string().min(1)
30024
30053
  }), _void(), {
30025
30054
  kind: "mutation",
30026
- auth: "admin"
30055
+ auth: "protected"
30027
30056
  });
30028
30057
  object({
30029
30058
  /** Lifecycle state of the valve. */
@@ -30042,19 +30071,19 @@ object({
30042
30071
  });
30043
30072
  DeviceType.Valve, method(object({ deviceId: number().int().nonnegative() }), _void(), {
30044
30073
  kind: "mutation",
30045
- auth: "admin"
30074
+ auth: "protected"
30046
30075
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30047
30076
  kind: "mutation",
30048
- auth: "admin"
30077
+ auth: "protected"
30049
30078
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
30050
30079
  kind: "mutation",
30051
- auth: "admin"
30080
+ auth: "protected"
30052
30081
  }), method(object({
30053
30082
  deviceId: number().int().nonnegative(),
30054
30083
  position: number().min(0).max(100)
30055
30084
  }), _void(), {
30056
30085
  kind: "mutation",
30057
- auth: "admin"
30086
+ auth: "protected"
30058
30087
  });
30059
30088
  object({
30060
30089
  detected: boolean(),
@@ -30088,19 +30117,19 @@ DeviceType.WaterHeater, method(object({
30088
30117
  temp: number().finite()
30089
30118
  }), _void(), {
30090
30119
  kind: "mutation",
30091
- auth: "admin"
30120
+ auth: "protected"
30092
30121
  }), method(object({
30093
30122
  deviceId: number().int().nonnegative(),
30094
30123
  mode: string().min(1)
30095
30124
  }), _void(), {
30096
30125
  kind: "mutation",
30097
- auth: "admin"
30126
+ auth: "protected"
30098
30127
  }), method(object({
30099
30128
  deviceId: number().int().nonnegative(),
30100
30129
  on: boolean()
30101
30130
  }), _void(), {
30102
30131
  kind: "mutation",
30103
- auth: "admin"
30132
+ auth: "protected"
30104
30133
  });
30105
30134
  object({
30106
30135
  /** Verbatim HA condition state (`sunny`, `cloudy`, `rainy`, …). Null
@@ -33728,6 +33757,12 @@ Object.freeze({
33728
33757
  addonId: null,
33729
33758
  access: "view"
33730
33759
  },
33760
+ "pipelineAnalytics.listArchivedDebugNotes": {
33761
+ capName: "pipeline-analytics",
33762
+ capScope: "device",
33763
+ addonId: null,
33764
+ access: "view"
33765
+ },
33731
33766
  "pipelineAnalytics.listEventKinds": {
33732
33767
  capName: "pipeline-analytics",
33733
33768
  capScope: "device",
@@ -37515,6 +37550,11 @@ Object.freeze({
37515
37550
  form: "array",
37516
37551
  optional: true
37517
37552
  }],
37553
+ "pipelineAnalytics.listArchivedDebugNotes": [{
37554
+ name: "deviceId",
37555
+ form: "single",
37556
+ optional: true
37557
+ }],
37518
37558
  "pipelineAnalytics.listEventKinds": [{
37519
37559
  name: "deviceId",
37520
37560
  form: "single",
@@ -1,5 +1,5 @@
1
1
  import { h as e, l as t, u as n, y as r } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
- import { o as i, s as a } from "./responsive-CDob01xQ.mjs";
2
+ import { o as i, s as a } from "./responsive-QGlxiMwJ.mjs";
3
3
  import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
4
4
  var l = a("chevron-down", [["path", {
5
5
  d: "m6 9 6 6 6-6",
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-d43P43Ws.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-Ckn4cwB7.mjs";
2
2
  export { t as get, e as init };
@@ -1,6 +1,6 @@
1
1
  import { c as e, g as t, h as n, l as r, n as i, p as a, r as o, t as s, u as c, y as l } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
2
  import "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-ds_Ehzaa.mjs";
3
- import { n as u } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DZEgYM31.mjs";
3
+ import { n as u } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-n-3Otnt6.mjs";
4
4
  //#region ../ui-library/node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js
5
5
  l();
6
6
  var d = (...e) => e.filter((e, t, n) => !!e && e.trim() !== "" && n.indexOf(e) === t).join(" ").trim(), f = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), p = (e) => e.replace(/^([A-Z])|[\s-_]+(\w)/g, (e, t, n) => n ? n.toUpperCase() : t.toLowerCase()), m = (e) => {
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-CDob01xQ.mjs";
1
+ import { s as e } from "./responsive-QGlxiMwJ.mjs";
2
2
  var t = e("eye-off", [
3
3
  ["path", {
4
4
  d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
@@ -1,4 +1,4 @@
1
- import { s as e } from "./responsive-CDob01xQ.mjs";
1
+ import { s as e } from "./responsive-QGlxiMwJ.mjs";
2
2
  var t = e("trash-2", [
3
3
  ["path", {
4
4
  d: "M10 11v6",
@@ -1,5 +1,5 @@
1
1
  import { c as e, h as t, p as n, y as r } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
2
- import { s as i } from "./responsive-CDob01xQ.mjs";
2
+ import { s as i } from "./responsive-QGlxiMwJ.mjs";
3
3
  var a = i("camera", [["path", {
4
4
  d: "M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",
5
5
  key: "18u6gg"
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-UR8JpOH1.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-OoGmSv2G.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-model-studio",
3
- "version": "1.1.112",
3
+ "version": "1.1.114",
4
4
  "description": "Custom detection model registry, conversion & distribution for CamStack",
5
5
  "keywords": [
6
6
  "camstack",