@camstack/addon-osd-manager 0.1.82 → 0.1.84
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.
- package/dist/{MotionZonesSettings-CcUQv9US.mjs → MotionZonesSettings-B2f-AAjf.mjs} +2 -2
- package/dist/{PrivacyMaskSettings-yTPSGJ_S.mjs → PrivacyMaskSettings-Ccj7UiJE.mjs} +4 -4
- package/dist/{SceneMonitorEditor-DSLR3HyX.mjs → SceneMonitorEditor-ywE98nl1.mjs} +3 -3
- package/dist/_stub.js +10 -10
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-BjOWOGEX.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-CAKFRKCq.mjs} +4 -4
- package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DK7I6saY.mjs +26 -0
- package/dist/{hostInit-D4cKycxj.mjs → hostInit-T7Gdb_xq.mjs} +3 -3
- package/dist/index.js +134 -69
- package/dist/index.mjs +134 -69
- package/dist/{player-overlays-DPEo1CnK.mjs → player-overlays-B6Jh8D_5.mjs} +1 -1
- package/dist/remoteEntry.js +1 -1
- package/dist/{responsive-veJ_u_lF.mjs → responsive-B92cHy3d.mjs} +1 -1
- package/dist/{square-BKRxPrj2.mjs → square-quB6uLsH.mjs} +1 -1
- package/dist/{trash-2-B_FOJHPE.mjs → trash-2-DtWGm2MX.mjs} +1 -1
- package/dist/{use-device-snapshot-CCUZGgXd.mjs → use-device-snapshot-63q3zcoQ.mjs} +1 -1
- package/dist/{virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-DZjvcVDU.mjs → virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BumwNrmh.mjs} +1 -1
- package/package.json +1 -1
- package/dist/_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-zKEKO1Le.mjs +0 -26
package/dist/index.mjs
CHANGED
|
@@ -7722,6 +7722,35 @@ var CameraSwitchGroupSchema = object({
|
|
|
7722
7722
|
/** Unix ms when the group was composed server-side. */
|
|
7723
7723
|
fetchedAt: number()
|
|
7724
7724
|
});
|
|
7725
|
+
/** One archived note — the operator's words plus enough context to find what
|
|
7726
|
+
* they were looking at, after the track itself is gone. */
|
|
7727
|
+
var ArchivedDebugNoteSchema = object({
|
|
7728
|
+
/** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
|
|
7729
|
+
* same sentence about the same track lands on the row already there. */
|
|
7730
|
+
id: string(),
|
|
7731
|
+
/** The operator's own words, verbatim. */
|
|
7732
|
+
note: string(),
|
|
7733
|
+
/** The camera. Required — every question here is asked per-camera. */
|
|
7734
|
+
deviceId: number().int(),
|
|
7735
|
+
/** The track the note was written on. PROVENANCE, not ownership: the track
|
|
7736
|
+
* is expected to be gone, and this row is not a reference to it. */
|
|
7737
|
+
sourceTrackId: string(),
|
|
7738
|
+
/** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
|
|
7739
|
+
archivedAt: number().int(),
|
|
7740
|
+
/** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
|
|
7741
|
+
trackStartedAt: number().int().nullable(),
|
|
7742
|
+
/** The track's detector class (`person`, `car`, …); `null` when unknown. */
|
|
7743
|
+
trackClass: string().nullable(),
|
|
7744
|
+
/** The track's display label at review time; `null` when it had none. */
|
|
7745
|
+
trackLabel: string().nullable()
|
|
7746
|
+
});
|
|
7747
|
+
/** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
|
|
7748
|
+
var ArchivedDebugNoteQueryInputSchema = object({
|
|
7749
|
+
/** Restrict to a single camera; omit for every row. */
|
|
7750
|
+
deviceId: number().int().optional(),
|
|
7751
|
+
/** Max rows returned, newest-first. */
|
|
7752
|
+
limit: number().int().min(1).max(1e3).optional()
|
|
7753
|
+
});
|
|
7725
7754
|
/**
|
|
7726
7755
|
* Ops-log — the durable, append-only operations audit shared by the
|
|
7727
7756
|
* recordings and events management surfaces.
|
|
@@ -18048,14 +18077,14 @@ var alarmPanelCapability = {
|
|
|
18048
18077
|
code: string().min(1).optional()
|
|
18049
18078
|
}), _void(), {
|
|
18050
18079
|
kind: "mutation",
|
|
18051
|
-
auth: "
|
|
18080
|
+
auth: "protected"
|
|
18052
18081
|
}),
|
|
18053
18082
|
disarm: method(object({
|
|
18054
18083
|
deviceId: number().int().nonnegative(),
|
|
18055
18084
|
code: string().min(1).optional()
|
|
18056
18085
|
}), _void(), {
|
|
18057
18086
|
kind: "mutation",
|
|
18058
|
-
auth: "
|
|
18087
|
+
auth: "protected"
|
|
18059
18088
|
}),
|
|
18060
18089
|
/**
|
|
18061
18090
|
* Force the panel into the `triggered` state — used by HA
|
|
@@ -18066,7 +18095,7 @@ var alarmPanelCapability = {
|
|
|
18066
18095
|
*/
|
|
18067
18096
|
trigger: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
18068
18097
|
kind: "mutation",
|
|
18069
|
-
auth: "
|
|
18098
|
+
auth: "protected"
|
|
18070
18099
|
})
|
|
18071
18100
|
},
|
|
18072
18101
|
status: {
|
|
@@ -23000,6 +23029,31 @@ var pipelineAnalyticsCapability = {
|
|
|
23000
23029
|
flags: TrackFlagsPatchSchema
|
|
23001
23030
|
}), TrackFlagsSchema, { kind: "mutation" }),
|
|
23002
23031
|
/**
|
|
23032
|
+
* The archived debug notes, newest first — the corpus of what operators
|
|
23033
|
+
* have asked to be checked, across tracks that no longer exist (D405).
|
|
23034
|
+
*
|
|
23035
|
+
* `setTrackFlags` writes it: a patch carrying `debug: false` still clears
|
|
23036
|
+
* the note off the track row in the same statement (D353's invariant is
|
|
23037
|
+
* untouched), but the note is APPENDED here first. That is the whole point
|
|
23038
|
+
* — before D405, finishing a review destroyed every note written during it,
|
|
23039
|
+
* and the ones that survived aged out with their tracks. This method is the
|
|
23040
|
+
* only way to read what was kept.
|
|
23041
|
+
*
|
|
23042
|
+
* `auth: 'protected'`, matching `setTrackFlags` next door and for the same
|
|
23043
|
+
* reason: the notes are written from the viewer, by an authenticated
|
|
23044
|
+
* non-admin session, and a corpus only an admin can read is a corpus the
|
|
23045
|
+
* person who wrote it cannot use. It carries operator prose about cameras
|
|
23046
|
+
* and nothing else — no media, no paths, no identities beyond a track's
|
|
23047
|
+
* own display label.
|
|
23048
|
+
*
|
|
23049
|
+
* Newest-first, capped by `limit` (default
|
|
23050
|
+
* {@link ARCHIVED_DEBUG_NOTES_DEFAULT_LIMIT}), optionally one camera. The
|
|
23051
|
+
* table itself is bounded by row count, not by age — see
|
|
23052
|
+
* {@link MAX_ARCHIVED_DEBUG_NOTES} for why an age clock would be the wrong
|
|
23053
|
+
* bound for exactly this data.
|
|
23054
|
+
*/
|
|
23055
|
+
listArchivedDebugNotes: method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }),
|
|
23056
|
+
/**
|
|
23003
23057
|
* Durable event-store footprint for the management UI: event rows
|
|
23004
23058
|
* (motion + object + audio) counted per camera + total, plus the
|
|
23005
23059
|
* event-owned media bytes on disk per camera + total. Stat/count-based,
|
|
@@ -28652,7 +28706,7 @@ var brightnessCapability = {
|
|
|
28652
28706
|
percentage: number().min(0).max(100)
|
|
28653
28707
|
}), _void(), {
|
|
28654
28708
|
kind: "mutation",
|
|
28655
|
-
auth: "
|
|
28709
|
+
auth: "protected"
|
|
28656
28710
|
}) },
|
|
28657
28711
|
events: {
|
|
28658
28712
|
/**
|
|
@@ -28701,7 +28755,7 @@ var buttonCapability = {
|
|
|
28701
28755
|
deviceTypes: [DeviceType.Button],
|
|
28702
28756
|
methods: { press: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
28703
28757
|
kind: "mutation",
|
|
28704
|
-
auth: "
|
|
28758
|
+
auth: "protected"
|
|
28705
28759
|
}) }
|
|
28706
28760
|
};
|
|
28707
28761
|
/**
|
|
@@ -28918,28 +28972,28 @@ var climateControlCapability = {
|
|
|
28918
28972
|
mode: HvacModeSchema
|
|
28919
28973
|
}), _void(), {
|
|
28920
28974
|
kind: "mutation",
|
|
28921
|
-
auth: "
|
|
28975
|
+
auth: "protected"
|
|
28922
28976
|
}),
|
|
28923
28977
|
setFanMode: method(object({
|
|
28924
28978
|
deviceId: number().int().nonnegative(),
|
|
28925
28979
|
fanMode: string().min(1)
|
|
28926
28980
|
}), _void(), {
|
|
28927
28981
|
kind: "mutation",
|
|
28928
|
-
auth: "
|
|
28982
|
+
auth: "protected"
|
|
28929
28983
|
}),
|
|
28930
28984
|
setPreset: method(object({
|
|
28931
28985
|
deviceId: number().int().nonnegative(),
|
|
28932
28986
|
preset: string().min(1)
|
|
28933
28987
|
}), _void(), {
|
|
28934
28988
|
kind: "mutation",
|
|
28935
|
-
auth: "
|
|
28989
|
+
auth: "protected"
|
|
28936
28990
|
}),
|
|
28937
28991
|
setTarget: method(object({
|
|
28938
28992
|
deviceId: number().int().nonnegative(),
|
|
28939
28993
|
target: number()
|
|
28940
28994
|
}), _void(), {
|
|
28941
28995
|
kind: "mutation",
|
|
28942
|
-
auth: "
|
|
28996
|
+
auth: "protected"
|
|
28943
28997
|
}),
|
|
28944
28998
|
setTargetRange: method(object({
|
|
28945
28999
|
deviceId: number().int().nonnegative(),
|
|
@@ -28947,28 +29001,28 @@ var climateControlCapability = {
|
|
|
28947
29001
|
targetHigh: number()
|
|
28948
29002
|
}), _void(), {
|
|
28949
29003
|
kind: "mutation",
|
|
28950
|
-
auth: "
|
|
29004
|
+
auth: "protected"
|
|
28951
29005
|
}),
|
|
28952
29006
|
setTargetHumidity: method(object({
|
|
28953
29007
|
deviceId: number().int().nonnegative(),
|
|
28954
29008
|
targetHumidity: number().min(0).max(100)
|
|
28955
29009
|
}), _void(), {
|
|
28956
29010
|
kind: "mutation",
|
|
28957
|
-
auth: "
|
|
29011
|
+
auth: "protected"
|
|
28958
29012
|
}),
|
|
28959
29013
|
setSwingVertical: method(object({
|
|
28960
29014
|
deviceId: number().int().nonnegative(),
|
|
28961
29015
|
on: boolean()
|
|
28962
29016
|
}), _void(), {
|
|
28963
29017
|
kind: "mutation",
|
|
28964
|
-
auth: "
|
|
29018
|
+
auth: "protected"
|
|
28965
29019
|
}),
|
|
28966
29020
|
setSwingHorizontal: method(object({
|
|
28967
29021
|
deviceId: number().int().nonnegative(),
|
|
28968
29022
|
on: boolean()
|
|
28969
29023
|
}), _void(), {
|
|
28970
29024
|
kind: "mutation",
|
|
28971
|
-
auth: "
|
|
29025
|
+
auth: "protected"
|
|
28972
29026
|
})
|
|
28973
29027
|
},
|
|
28974
29028
|
status: {
|
|
@@ -29068,7 +29122,7 @@ var colorCapability = {
|
|
|
29068
29122
|
color: ColorInputSchema
|
|
29069
29123
|
}), _void(), {
|
|
29070
29124
|
kind: "mutation",
|
|
29071
|
-
auth: "
|
|
29125
|
+
auth: "protected"
|
|
29072
29126
|
}) },
|
|
29073
29127
|
events: {
|
|
29074
29128
|
/**
|
|
@@ -29405,7 +29459,7 @@ var controlCapability = {
|
|
|
29405
29459
|
control: ControlSetValueInputSchema
|
|
29406
29460
|
}), _void(), {
|
|
29407
29461
|
kind: "mutation",
|
|
29408
|
-
auth: "
|
|
29462
|
+
auth: "protected"
|
|
29409
29463
|
}) },
|
|
29410
29464
|
status: {
|
|
29411
29465
|
schema: ControlStatusSchema,
|
|
@@ -29451,29 +29505,29 @@ var coverCapability = {
|
|
|
29451
29505
|
methods: {
|
|
29452
29506
|
open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29453
29507
|
kind: "mutation",
|
|
29454
|
-
auth: "
|
|
29508
|
+
auth: "protected"
|
|
29455
29509
|
}),
|
|
29456
29510
|
close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29457
29511
|
kind: "mutation",
|
|
29458
|
-
auth: "
|
|
29512
|
+
auth: "protected"
|
|
29459
29513
|
}),
|
|
29460
29514
|
stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29461
29515
|
kind: "mutation",
|
|
29462
|
-
auth: "
|
|
29516
|
+
auth: "protected"
|
|
29463
29517
|
}),
|
|
29464
29518
|
setPosition: method(object({
|
|
29465
29519
|
deviceId: number().int().nonnegative(),
|
|
29466
29520
|
position: number().min(0).max(100)
|
|
29467
29521
|
}), _void(), {
|
|
29468
29522
|
kind: "mutation",
|
|
29469
|
-
auth: "
|
|
29523
|
+
auth: "protected"
|
|
29470
29524
|
}),
|
|
29471
29525
|
setTiltPosition: method(object({
|
|
29472
29526
|
deviceId: number().int().nonnegative(),
|
|
29473
29527
|
tiltPosition: number().min(0).max(100)
|
|
29474
29528
|
}), _void(), {
|
|
29475
29529
|
kind: "mutation",
|
|
29476
|
-
auth: "
|
|
29530
|
+
auth: "protected"
|
|
29477
29531
|
})
|
|
29478
29532
|
},
|
|
29479
29533
|
status: {
|
|
@@ -30305,28 +30359,28 @@ var fanControlCapability = {
|
|
|
30305
30359
|
percentage: number().min(0).max(100)
|
|
30306
30360
|
}), _void(), {
|
|
30307
30361
|
kind: "mutation",
|
|
30308
|
-
auth: "
|
|
30362
|
+
auth: "protected"
|
|
30309
30363
|
}),
|
|
30310
30364
|
setPreset: method(object({
|
|
30311
30365
|
deviceId: number().int().nonnegative(),
|
|
30312
30366
|
preset: string().min(1)
|
|
30313
30367
|
}), _void(), {
|
|
30314
30368
|
kind: "mutation",
|
|
30315
|
-
auth: "
|
|
30369
|
+
auth: "protected"
|
|
30316
30370
|
}),
|
|
30317
30371
|
setDirection: method(object({
|
|
30318
30372
|
deviceId: number().int().nonnegative(),
|
|
30319
30373
|
direction: FanDirectionSchema
|
|
30320
30374
|
}), _void(), {
|
|
30321
30375
|
kind: "mutation",
|
|
30322
|
-
auth: "
|
|
30376
|
+
auth: "protected"
|
|
30323
30377
|
}),
|
|
30324
30378
|
setOscillating: method(object({
|
|
30325
30379
|
deviceId: number().int().nonnegative(),
|
|
30326
30380
|
oscillating: boolean()
|
|
30327
30381
|
}), _void(), {
|
|
30328
30382
|
kind: "mutation",
|
|
30329
|
-
auth: "
|
|
30383
|
+
auth: "protected"
|
|
30330
30384
|
})
|
|
30331
30385
|
},
|
|
30332
30386
|
status: {
|
|
@@ -30548,21 +30602,21 @@ var humidifierCapability = {
|
|
|
30548
30602
|
on: boolean()
|
|
30549
30603
|
}), _void(), {
|
|
30550
30604
|
kind: "mutation",
|
|
30551
|
-
auth: "
|
|
30605
|
+
auth: "protected"
|
|
30552
30606
|
}),
|
|
30553
30607
|
setTargetHumidity: method(object({
|
|
30554
30608
|
deviceId: number().int().nonnegative(),
|
|
30555
30609
|
humidity: number().min(0).max(100)
|
|
30556
30610
|
}), _void(), {
|
|
30557
30611
|
kind: "mutation",
|
|
30558
|
-
auth: "
|
|
30612
|
+
auth: "protected"
|
|
30559
30613
|
}),
|
|
30560
30614
|
setMode: method(object({
|
|
30561
30615
|
deviceId: number().int().nonnegative(),
|
|
30562
30616
|
mode: string().min(1)
|
|
30563
30617
|
}), _void(), {
|
|
30564
30618
|
kind: "mutation",
|
|
30565
|
-
auth: "
|
|
30619
|
+
auth: "protected"
|
|
30566
30620
|
})
|
|
30567
30621
|
},
|
|
30568
30622
|
status: {
|
|
@@ -31281,15 +31335,15 @@ var lawnMowerControlCapability = {
|
|
|
31281
31335
|
methods: {
|
|
31282
31336
|
startMowing: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31283
31337
|
kind: "mutation",
|
|
31284
|
-
auth: "
|
|
31338
|
+
auth: "protected"
|
|
31285
31339
|
}),
|
|
31286
31340
|
pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31287
31341
|
kind: "mutation",
|
|
31288
|
-
auth: "
|
|
31342
|
+
auth: "protected"
|
|
31289
31343
|
}),
|
|
31290
31344
|
dock: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31291
31345
|
kind: "mutation",
|
|
31292
|
-
auth: "
|
|
31346
|
+
auth: "protected"
|
|
31293
31347
|
})
|
|
31294
31348
|
},
|
|
31295
31349
|
status: {
|
|
@@ -31691,18 +31745,18 @@ var lockControlCapability = {
|
|
|
31691
31745
|
code: string().min(1).optional()
|
|
31692
31746
|
}), _void(), {
|
|
31693
31747
|
kind: "mutation",
|
|
31694
|
-
auth: "
|
|
31748
|
+
auth: "protected"
|
|
31695
31749
|
}),
|
|
31696
31750
|
unlock: method(object({
|
|
31697
31751
|
deviceId: number().int().nonnegative(),
|
|
31698
31752
|
code: string().min(1).optional()
|
|
31699
31753
|
}), _void(), {
|
|
31700
31754
|
kind: "mutation",
|
|
31701
|
-
auth: "
|
|
31755
|
+
auth: "protected"
|
|
31702
31756
|
}),
|
|
31703
31757
|
open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31704
31758
|
kind: "mutation",
|
|
31705
|
-
auth: "
|
|
31759
|
+
auth: "protected"
|
|
31706
31760
|
})
|
|
31707
31761
|
},
|
|
31708
31762
|
status: {
|
|
@@ -31805,65 +31859,65 @@ var mediaPlayerCapability = {
|
|
|
31805
31859
|
methods: {
|
|
31806
31860
|
play: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31807
31861
|
kind: "mutation",
|
|
31808
|
-
auth: "
|
|
31862
|
+
auth: "protected"
|
|
31809
31863
|
}),
|
|
31810
31864
|
pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31811
31865
|
kind: "mutation",
|
|
31812
|
-
auth: "
|
|
31866
|
+
auth: "protected"
|
|
31813
31867
|
}),
|
|
31814
31868
|
stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31815
31869
|
kind: "mutation",
|
|
31816
|
-
auth: "
|
|
31870
|
+
auth: "protected"
|
|
31817
31871
|
}),
|
|
31818
31872
|
next: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31819
31873
|
kind: "mutation",
|
|
31820
|
-
auth: "
|
|
31874
|
+
auth: "protected"
|
|
31821
31875
|
}),
|
|
31822
31876
|
previous: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
31823
31877
|
kind: "mutation",
|
|
31824
|
-
auth: "
|
|
31878
|
+
auth: "protected"
|
|
31825
31879
|
}),
|
|
31826
31880
|
seek: method(object({
|
|
31827
31881
|
deviceId: number().int().nonnegative(),
|
|
31828
31882
|
positionMs: number().int().nonnegative()
|
|
31829
31883
|
}), _void(), {
|
|
31830
31884
|
kind: "mutation",
|
|
31831
|
-
auth: "
|
|
31885
|
+
auth: "protected"
|
|
31832
31886
|
}),
|
|
31833
31887
|
setVolume: method(object({
|
|
31834
31888
|
deviceId: number().int().nonnegative(),
|
|
31835
31889
|
volumeLevel: number().min(0).max(100)
|
|
31836
31890
|
}), _void(), {
|
|
31837
31891
|
kind: "mutation",
|
|
31838
|
-
auth: "
|
|
31892
|
+
auth: "protected"
|
|
31839
31893
|
}),
|
|
31840
31894
|
setMute: method(object({
|
|
31841
31895
|
deviceId: number().int().nonnegative(),
|
|
31842
31896
|
muted: boolean()
|
|
31843
31897
|
}), _void(), {
|
|
31844
31898
|
kind: "mutation",
|
|
31845
|
-
auth: "
|
|
31899
|
+
auth: "protected"
|
|
31846
31900
|
}),
|
|
31847
31901
|
setShuffle: method(object({
|
|
31848
31902
|
deviceId: number().int().nonnegative(),
|
|
31849
31903
|
shuffle: boolean()
|
|
31850
31904
|
}), _void(), {
|
|
31851
31905
|
kind: "mutation",
|
|
31852
|
-
auth: "
|
|
31906
|
+
auth: "protected"
|
|
31853
31907
|
}),
|
|
31854
31908
|
setRepeat: method(object({
|
|
31855
31909
|
deviceId: number().int().nonnegative(),
|
|
31856
31910
|
repeat: MediaPlayerRepeatSchema
|
|
31857
31911
|
}), _void(), {
|
|
31858
31912
|
kind: "mutation",
|
|
31859
|
-
auth: "
|
|
31913
|
+
auth: "protected"
|
|
31860
31914
|
}),
|
|
31861
31915
|
selectSource: method(object({
|
|
31862
31916
|
deviceId: number().int().nonnegative(),
|
|
31863
31917
|
source: string().min(1)
|
|
31864
31918
|
}), _void(), {
|
|
31865
31919
|
kind: "mutation",
|
|
31866
|
-
auth: "
|
|
31920
|
+
auth: "protected"
|
|
31867
31921
|
}),
|
|
31868
31922
|
playMedia: method(object({
|
|
31869
31923
|
deviceId: number().int().nonnegative(),
|
|
@@ -31874,7 +31928,7 @@ var mediaPlayerCapability = {
|
|
|
31874
31928
|
mediaType: string().min(1)
|
|
31875
31929
|
}), _void(), {
|
|
31876
31930
|
kind: "mutation",
|
|
31877
|
-
auth: "
|
|
31931
|
+
auth: "protected"
|
|
31878
31932
|
})
|
|
31879
31933
|
},
|
|
31880
31934
|
status: {
|
|
@@ -33674,27 +33728,27 @@ var petFeederCapability = {
|
|
|
33674
33728
|
hopper2: gramsPortion.optional()
|
|
33675
33729
|
}), _void(), {
|
|
33676
33730
|
kind: "mutation",
|
|
33677
|
-
auth: "
|
|
33731
|
+
auth: "protected"
|
|
33678
33732
|
}),
|
|
33679
33733
|
/** Cancel an in-progress manual feed. */
|
|
33680
33734
|
cancelFeed: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
33681
33735
|
kind: "mutation",
|
|
33682
|
-
auth: "
|
|
33736
|
+
auth: "protected"
|
|
33683
33737
|
}),
|
|
33684
33738
|
/** Reset the desiccant "days remaining" counter after replacing it. */
|
|
33685
33739
|
resetDesiccant: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
33686
33740
|
kind: "mutation",
|
|
33687
|
-
auth: "
|
|
33741
|
+
auth: "protected"
|
|
33688
33742
|
}),
|
|
33689
33743
|
/** Mark a hopper as refilled (D4H/D4S/D4SH). */
|
|
33690
33744
|
markFoodReplenished: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
33691
33745
|
kind: "mutation",
|
|
33692
|
-
auth: "
|
|
33746
|
+
auth: "protected"
|
|
33693
33747
|
}),
|
|
33694
33748
|
/** Call the pet with the recorded prompt (D3). */
|
|
33695
33749
|
callPet: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
33696
33750
|
kind: "mutation",
|
|
33697
|
-
auth: "
|
|
33751
|
+
auth: "protected"
|
|
33698
33752
|
}),
|
|
33699
33753
|
/** Play a stored sound by id (D3 / D4H / D4SH). */
|
|
33700
33754
|
playSound: method(object({
|
|
@@ -33702,7 +33756,7 @@ var petFeederCapability = {
|
|
|
33702
33756
|
soundId: number().int().nonnegative()
|
|
33703
33757
|
}), _void(), {
|
|
33704
33758
|
kind: "mutation",
|
|
33705
|
-
auth: "
|
|
33759
|
+
auth: "protected"
|
|
33706
33760
|
}),
|
|
33707
33761
|
/** Toggle the child-lock (manual-lock) setting. */
|
|
33708
33762
|
setChildLock: method(object({
|
|
@@ -33710,7 +33764,7 @@ var petFeederCapability = {
|
|
|
33710
33764
|
on: boolean()
|
|
33711
33765
|
}), _void(), {
|
|
33712
33766
|
kind: "mutation",
|
|
33713
|
-
auth: "
|
|
33767
|
+
auth: "protected"
|
|
33714
33768
|
}),
|
|
33715
33769
|
/** Toggle the front indicator light. */
|
|
33716
33770
|
setIndicatorLight: method(object({
|
|
@@ -33718,7 +33772,7 @@ var petFeederCapability = {
|
|
|
33718
33772
|
on: boolean()
|
|
33719
33773
|
}), _void(), {
|
|
33720
33774
|
kind: "mutation",
|
|
33721
|
-
auth: "
|
|
33775
|
+
auth: "protected"
|
|
33722
33776
|
}),
|
|
33723
33777
|
/** Toggle the dispense chime. */
|
|
33724
33778
|
setFeedSound: method(object({
|
|
@@ -33726,7 +33780,7 @@ var petFeederCapability = {
|
|
|
33726
33780
|
on: boolean()
|
|
33727
33781
|
}), _void(), {
|
|
33728
33782
|
kind: "mutation",
|
|
33729
|
-
auth: "
|
|
33783
|
+
auth: "protected"
|
|
33730
33784
|
}),
|
|
33731
33785
|
/** Set the speaker / prompt volume level. */
|
|
33732
33786
|
setVolume: method(object({
|
|
@@ -33734,7 +33788,7 @@ var petFeederCapability = {
|
|
|
33734
33788
|
level: number().int().nonnegative()
|
|
33735
33789
|
}), _void(), {
|
|
33736
33790
|
kind: "mutation",
|
|
33737
|
-
auth: "
|
|
33791
|
+
auth: "protected"
|
|
33738
33792
|
})
|
|
33739
33793
|
},
|
|
33740
33794
|
status: {
|
|
@@ -36347,7 +36401,7 @@ var switchCapability = {
|
|
|
36347
36401
|
on: boolean()
|
|
36348
36402
|
}), _void(), {
|
|
36349
36403
|
kind: "mutation",
|
|
36350
|
-
auth: "
|
|
36404
|
+
auth: "protected"
|
|
36351
36405
|
}) },
|
|
36352
36406
|
events: { onStateChanged: { data: object({
|
|
36353
36407
|
deviceId: number(),
|
|
@@ -37486,30 +37540,30 @@ var vacuumControlCapability = {
|
|
|
37486
37540
|
methods: {
|
|
37487
37541
|
start: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
37488
37542
|
kind: "mutation",
|
|
37489
|
-
auth: "
|
|
37543
|
+
auth: "protected"
|
|
37490
37544
|
}),
|
|
37491
37545
|
pause: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
37492
37546
|
kind: "mutation",
|
|
37493
|
-
auth: "
|
|
37547
|
+
auth: "protected"
|
|
37494
37548
|
}),
|
|
37495
37549
|
stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
37496
37550
|
kind: "mutation",
|
|
37497
|
-
auth: "
|
|
37551
|
+
auth: "protected"
|
|
37498
37552
|
}),
|
|
37499
37553
|
returnToBase: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
37500
37554
|
kind: "mutation",
|
|
37501
|
-
auth: "
|
|
37555
|
+
auth: "protected"
|
|
37502
37556
|
}),
|
|
37503
37557
|
locate: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
37504
37558
|
kind: "mutation",
|
|
37505
|
-
auth: "
|
|
37559
|
+
auth: "protected"
|
|
37506
37560
|
}),
|
|
37507
37561
|
setFanSpeed: method(object({
|
|
37508
37562
|
deviceId: number().int().nonnegative(),
|
|
37509
37563
|
speed: string().min(1)
|
|
37510
37564
|
}), _void(), {
|
|
37511
37565
|
kind: "mutation",
|
|
37512
|
-
auth: "
|
|
37566
|
+
auth: "protected"
|
|
37513
37567
|
})
|
|
37514
37568
|
},
|
|
37515
37569
|
status: {
|
|
@@ -37553,22 +37607,22 @@ var valveCapability = {
|
|
|
37553
37607
|
methods: {
|
|
37554
37608
|
open: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
37555
37609
|
kind: "mutation",
|
|
37556
|
-
auth: "
|
|
37610
|
+
auth: "protected"
|
|
37557
37611
|
}),
|
|
37558
37612
|
close: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
37559
37613
|
kind: "mutation",
|
|
37560
|
-
auth: "
|
|
37614
|
+
auth: "protected"
|
|
37561
37615
|
}),
|
|
37562
37616
|
stop: method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
37563
37617
|
kind: "mutation",
|
|
37564
|
-
auth: "
|
|
37618
|
+
auth: "protected"
|
|
37565
37619
|
}),
|
|
37566
37620
|
setPosition: method(object({
|
|
37567
37621
|
deviceId: number().int().nonnegative(),
|
|
37568
37622
|
position: number().min(0).max(100)
|
|
37569
37623
|
}), _void(), {
|
|
37570
37624
|
kind: "mutation",
|
|
37571
|
-
auth: "
|
|
37625
|
+
auth: "protected"
|
|
37572
37626
|
})
|
|
37573
37627
|
},
|
|
37574
37628
|
status: {
|
|
@@ -37667,21 +37721,21 @@ var waterHeaterCapability = {
|
|
|
37667
37721
|
temp: number().finite()
|
|
37668
37722
|
}), _void(), {
|
|
37669
37723
|
kind: "mutation",
|
|
37670
|
-
auth: "
|
|
37724
|
+
auth: "protected"
|
|
37671
37725
|
}),
|
|
37672
37726
|
setOperationMode: method(object({
|
|
37673
37727
|
deviceId: number().int().nonnegative(),
|
|
37674
37728
|
mode: string().min(1)
|
|
37675
37729
|
}), _void(), {
|
|
37676
37730
|
kind: "mutation",
|
|
37677
|
-
auth: "
|
|
37731
|
+
auth: "protected"
|
|
37678
37732
|
}),
|
|
37679
37733
|
setAway: method(object({
|
|
37680
37734
|
deviceId: number().int().nonnegative(),
|
|
37681
37735
|
on: boolean()
|
|
37682
37736
|
}), _void(), {
|
|
37683
37737
|
kind: "mutation",
|
|
37684
|
-
auth: "
|
|
37738
|
+
auth: "protected"
|
|
37685
37739
|
})
|
|
37686
37740
|
},
|
|
37687
37741
|
status: {
|
|
@@ -41716,6 +41770,12 @@ Object.freeze({
|
|
|
41716
41770
|
addonId: null,
|
|
41717
41771
|
access: "view"
|
|
41718
41772
|
},
|
|
41773
|
+
"pipelineAnalytics.listArchivedDebugNotes": {
|
|
41774
|
+
capName: "pipeline-analytics",
|
|
41775
|
+
capScope: "device",
|
|
41776
|
+
addonId: null,
|
|
41777
|
+
access: "view"
|
|
41778
|
+
},
|
|
41719
41779
|
"pipelineAnalytics.listEventKinds": {
|
|
41720
41780
|
capName: "pipeline-analytics",
|
|
41721
41781
|
capScope: "device",
|
|
@@ -45503,6 +45563,11 @@ Object.freeze({
|
|
|
45503
45563
|
form: "array",
|
|
45504
45564
|
optional: true
|
|
45505
45565
|
}],
|
|
45566
|
+
"pipelineAnalytics.listArchivedDebugNotes": [{
|
|
45567
|
+
name: "deviceId",
|
|
45568
|
+
form: "single",
|
|
45569
|
+
optional: true
|
|
45570
|
+
}],
|
|
45506
45571
|
"pipelineAnalytics.listEventKinds": [{
|
|
45507
45572
|
name: "deviceId",
|
|
45508
45573
|
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_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
|
|
2
|
-
import { o as i, s as a } from "./responsive-
|
|
2
|
+
import { o as i, s as a } from "./responsive-B92cHy3d.mjs";
|
|
3
3
|
import { n as o, r as s, t as c } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-DalfdIDw.mjs";
|
|
4
4
|
var l = a("chevron-down", [["path", {
|
|
5
5
|
d: "m6 9 6 6 6-6",
|
package/dist/remoteEntry.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-
|
|
1
|
+
import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BumwNrmh.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_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
|
|
2
2
|
import "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-DalfdIDw.mjs";
|
|
3
|
-
import { n as u } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-
|
|
3
|
+
import { n as u } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DK7I6saY.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,5 +1,5 @@
|
|
|
1
1
|
import { c as e, h as t, p as n, y as r } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
|
|
2
|
-
import { s as i } from "./responsive-
|
|
2
|
+
import { s as i } from "./responsive-B92cHy3d.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_osd_manager_page-
|
|
2756
|
+
return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-CAKFRKCq.mjs")).catch((e) => {
|
|
2757
2757
|
throw tr = void 0, e;
|
|
2758
2758
|
}), tr;
|
|
2759
2759
|
}
|