@camstack/addon-smtp-nodemailer 1.2.84 → 1.2.86
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/smtp.addon.js +110 -70
- package/dist/smtp.addon.mjs +110 -70
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -7648,6 +7648,35 @@ var CameraSwitchGroupSchema = object({
|
|
|
7648
7648
|
/** Unix ms when the group was composed server-side. */
|
|
7649
7649
|
fetchedAt: number()
|
|
7650
7650
|
});
|
|
7651
|
+
/** One archived note — the operator's words plus enough context to find what
|
|
7652
|
+
* they were looking at, after the track itself is gone. */
|
|
7653
|
+
var ArchivedDebugNoteSchema = object({
|
|
7654
|
+
/** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
|
|
7655
|
+
* same sentence about the same track lands on the row already there. */
|
|
7656
|
+
id: string(),
|
|
7657
|
+
/** The operator's own words, verbatim. */
|
|
7658
|
+
note: string(),
|
|
7659
|
+
/** The camera. Required — every question here is asked per-camera. */
|
|
7660
|
+
deviceId: number().int(),
|
|
7661
|
+
/** The track the note was written on. PROVENANCE, not ownership: the track
|
|
7662
|
+
* is expected to be gone, and this row is not a reference to it. */
|
|
7663
|
+
sourceTrackId: string(),
|
|
7664
|
+
/** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
|
|
7665
|
+
archivedAt: number().int(),
|
|
7666
|
+
/** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
|
|
7667
|
+
trackStartedAt: number().int().nullable(),
|
|
7668
|
+
/** The track's detector class (`person`, `car`, …); `null` when unknown. */
|
|
7669
|
+
trackClass: string().nullable(),
|
|
7670
|
+
/** The track's display label at review time; `null` when it had none. */
|
|
7671
|
+
trackLabel: string().nullable()
|
|
7672
|
+
});
|
|
7673
|
+
/** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
|
|
7674
|
+
var ArchivedDebugNoteQueryInputSchema = object({
|
|
7675
|
+
/** Restrict to a single camera; omit for every row. */
|
|
7676
|
+
deviceId: number().int().optional(),
|
|
7677
|
+
/** Max rows returned, newest-first. */
|
|
7678
|
+
limit: number().int().min(1).max(1e3).optional()
|
|
7679
|
+
});
|
|
7651
7680
|
/**
|
|
7652
7681
|
* Ops-log — the durable, append-only operations audit shared by the
|
|
7653
7682
|
* recordings and events management surfaces.
|
|
@@ -15832,16 +15861,16 @@ DeviceType.AlarmPanel, method(object({
|
|
|
15832
15861
|
code: string().min(1).optional()
|
|
15833
15862
|
}), _void(), {
|
|
15834
15863
|
kind: "mutation",
|
|
15835
|
-
auth: "
|
|
15864
|
+
auth: "protected"
|
|
15836
15865
|
}), method(object({
|
|
15837
15866
|
deviceId: number().int().nonnegative(),
|
|
15838
15867
|
code: string().min(1).optional()
|
|
15839
15868
|
}), _void(), {
|
|
15840
15869
|
kind: "mutation",
|
|
15841
|
-
auth: "
|
|
15870
|
+
auth: "protected"
|
|
15842
15871
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
15843
15872
|
kind: "mutation",
|
|
15844
|
-
auth: "
|
|
15873
|
+
auth: "protected"
|
|
15845
15874
|
});
|
|
15846
15875
|
/**
|
|
15847
15876
|
* Shared geometry vocabulary for on-frame shape caps — privacy-mask,
|
|
@@ -19743,7 +19772,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19743
19772
|
deviceId: number(),
|
|
19744
19773
|
trackId: string(),
|
|
19745
19774
|
flags: TrackFlagsPatchSchema
|
|
19746
|
-
}), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
|
|
19775
|
+
}), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
|
|
19747
19776
|
kind: "query",
|
|
19748
19777
|
auth: "admin"
|
|
19749
19778
|
}), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
|
|
@@ -23509,7 +23538,7 @@ DeviceType.Light, method(object({
|
|
|
23509
23538
|
percentage: number().min(0).max(100)
|
|
23510
23539
|
}), _void(), {
|
|
23511
23540
|
kind: "mutation",
|
|
23512
|
-
auth: "
|
|
23541
|
+
auth: "protected"
|
|
23513
23542
|
}), object({
|
|
23514
23543
|
deviceId: number(),
|
|
23515
23544
|
percentage: number().min(0).max(100),
|
|
@@ -23517,7 +23546,7 @@ DeviceType.Light, method(object({
|
|
|
23517
23546
|
});
|
|
23518
23547
|
DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
23519
23548
|
kind: "mutation",
|
|
23520
|
-
auth: "
|
|
23549
|
+
auth: "protected"
|
|
23521
23550
|
});
|
|
23522
23551
|
/**
|
|
23523
23552
|
* camera-credentials — device-scoped cap exposing the camera's network
|
|
@@ -23676,50 +23705,50 @@ DeviceType.Thermostat, DeviceType.Climate, method(object({
|
|
|
23676
23705
|
mode: HvacModeSchema
|
|
23677
23706
|
}), _void(), {
|
|
23678
23707
|
kind: "mutation",
|
|
23679
|
-
auth: "
|
|
23708
|
+
auth: "protected"
|
|
23680
23709
|
}), method(object({
|
|
23681
23710
|
deviceId: number().int().nonnegative(),
|
|
23682
23711
|
fanMode: string().min(1)
|
|
23683
23712
|
}), _void(), {
|
|
23684
23713
|
kind: "mutation",
|
|
23685
|
-
auth: "
|
|
23714
|
+
auth: "protected"
|
|
23686
23715
|
}), method(object({
|
|
23687
23716
|
deviceId: number().int().nonnegative(),
|
|
23688
23717
|
preset: string().min(1)
|
|
23689
23718
|
}), _void(), {
|
|
23690
23719
|
kind: "mutation",
|
|
23691
|
-
auth: "
|
|
23720
|
+
auth: "protected"
|
|
23692
23721
|
}), method(object({
|
|
23693
23722
|
deviceId: number().int().nonnegative(),
|
|
23694
23723
|
target: number()
|
|
23695
23724
|
}), _void(), {
|
|
23696
23725
|
kind: "mutation",
|
|
23697
|
-
auth: "
|
|
23726
|
+
auth: "protected"
|
|
23698
23727
|
}), method(object({
|
|
23699
23728
|
deviceId: number().int().nonnegative(),
|
|
23700
23729
|
targetLow: number(),
|
|
23701
23730
|
targetHigh: number()
|
|
23702
23731
|
}), _void(), {
|
|
23703
23732
|
kind: "mutation",
|
|
23704
|
-
auth: "
|
|
23733
|
+
auth: "protected"
|
|
23705
23734
|
}), method(object({
|
|
23706
23735
|
deviceId: number().int().nonnegative(),
|
|
23707
23736
|
targetHumidity: number().min(0).max(100)
|
|
23708
23737
|
}), _void(), {
|
|
23709
23738
|
kind: "mutation",
|
|
23710
|
-
auth: "
|
|
23739
|
+
auth: "protected"
|
|
23711
23740
|
}), method(object({
|
|
23712
23741
|
deviceId: number().int().nonnegative(),
|
|
23713
23742
|
on: boolean()
|
|
23714
23743
|
}), _void(), {
|
|
23715
23744
|
kind: "mutation",
|
|
23716
|
-
auth: "
|
|
23745
|
+
auth: "protected"
|
|
23717
23746
|
}), method(object({
|
|
23718
23747
|
deviceId: number().int().nonnegative(),
|
|
23719
23748
|
on: boolean()
|
|
23720
23749
|
}), _void(), {
|
|
23721
23750
|
kind: "mutation",
|
|
23722
|
-
auth: "
|
|
23751
|
+
auth: "protected"
|
|
23723
23752
|
});
|
|
23724
23753
|
/**
|
|
23725
23754
|
* Color-light cap. Coexists with `switch` (on/off) and `brightness`
|
|
@@ -23794,7 +23823,7 @@ DeviceType.Light, method(object({
|
|
|
23794
23823
|
color: ColorInputSchema
|
|
23795
23824
|
}), _void(), {
|
|
23796
23825
|
kind: "mutation",
|
|
23797
|
-
auth: "
|
|
23826
|
+
auth: "protected"
|
|
23798
23827
|
}), object({
|
|
23799
23828
|
deviceId: number(),
|
|
23800
23829
|
mode: _enum([
|
|
@@ -23943,7 +23972,7 @@ DeviceType.Control, method(object({
|
|
|
23943
23972
|
control: ControlSetValueInputSchema
|
|
23944
23973
|
}), _void(), {
|
|
23945
23974
|
kind: "mutation",
|
|
23946
|
-
auth: "
|
|
23975
|
+
auth: "protected"
|
|
23947
23976
|
});
|
|
23948
23977
|
object({
|
|
23949
23978
|
/** Lifecycle state of the cover. */
|
|
@@ -23964,25 +23993,25 @@ object({
|
|
|
23964
23993
|
});
|
|
23965
23994
|
DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
23966
23995
|
kind: "mutation",
|
|
23967
|
-
auth: "
|
|
23996
|
+
auth: "protected"
|
|
23968
23997
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
23969
23998
|
kind: "mutation",
|
|
23970
|
-
auth: "
|
|
23999
|
+
auth: "protected"
|
|
23971
24000
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
23972
24001
|
kind: "mutation",
|
|
23973
|
-
auth: "
|
|
24002
|
+
auth: "protected"
|
|
23974
24003
|
}), method(object({
|
|
23975
24004
|
deviceId: number().int().nonnegative(),
|
|
23976
24005
|
position: number().min(0).max(100)
|
|
23977
24006
|
}), _void(), {
|
|
23978
24007
|
kind: "mutation",
|
|
23979
|
-
auth: "
|
|
24008
|
+
auth: "protected"
|
|
23980
24009
|
}), method(object({
|
|
23981
24010
|
deviceId: number().int().nonnegative(),
|
|
23982
24011
|
tiltPosition: number().min(0).max(100)
|
|
23983
24012
|
}), _void(), {
|
|
23984
24013
|
kind: "mutation",
|
|
23985
|
-
auth: "
|
|
24014
|
+
auth: "protected"
|
|
23986
24015
|
});
|
|
23987
24016
|
/**
|
|
23988
24017
|
* Vendor-neutral day/night (IR-cut) control — the per-camera config cap
|
|
@@ -24577,25 +24606,25 @@ DeviceType.Fan, method(object({
|
|
|
24577
24606
|
percentage: number().min(0).max(100)
|
|
24578
24607
|
}), _void(), {
|
|
24579
24608
|
kind: "mutation",
|
|
24580
|
-
auth: "
|
|
24609
|
+
auth: "protected"
|
|
24581
24610
|
}), method(object({
|
|
24582
24611
|
deviceId: number().int().nonnegative(),
|
|
24583
24612
|
preset: string().min(1)
|
|
24584
24613
|
}), _void(), {
|
|
24585
24614
|
kind: "mutation",
|
|
24586
|
-
auth: "
|
|
24615
|
+
auth: "protected"
|
|
24587
24616
|
}), method(object({
|
|
24588
24617
|
deviceId: number().int().nonnegative(),
|
|
24589
24618
|
direction: FanDirectionSchema
|
|
24590
24619
|
}), _void(), {
|
|
24591
24620
|
kind: "mutation",
|
|
24592
|
-
auth: "
|
|
24621
|
+
auth: "protected"
|
|
24593
24622
|
}), method(object({
|
|
24594
24623
|
deviceId: number().int().nonnegative(),
|
|
24595
24624
|
oscillating: boolean()
|
|
24596
24625
|
}), _void(), {
|
|
24597
24626
|
kind: "mutation",
|
|
24598
|
-
auth: "
|
|
24627
|
+
auth: "protected"
|
|
24599
24628
|
});
|
|
24600
24629
|
/**
|
|
24601
24630
|
* Per-device feature/identity probe slice. Holds the runtime-resolved
|
|
@@ -24698,19 +24727,19 @@ DeviceType.Humidifier, method(object({
|
|
|
24698
24727
|
on: boolean()
|
|
24699
24728
|
}), _void(), {
|
|
24700
24729
|
kind: "mutation",
|
|
24701
|
-
auth: "
|
|
24730
|
+
auth: "protected"
|
|
24702
24731
|
}), method(object({
|
|
24703
24732
|
deviceId: number().int().nonnegative(),
|
|
24704
24733
|
humidity: number().min(0).max(100)
|
|
24705
24734
|
}), _void(), {
|
|
24706
24735
|
kind: "mutation",
|
|
24707
|
-
auth: "
|
|
24736
|
+
auth: "protected"
|
|
24708
24737
|
}), method(object({
|
|
24709
24738
|
deviceId: number().int().nonnegative(),
|
|
24710
24739
|
mode: string().min(1)
|
|
24711
24740
|
}), _void(), {
|
|
24712
24741
|
kind: "mutation",
|
|
24713
|
-
auth: "
|
|
24742
|
+
auth: "protected"
|
|
24714
24743
|
});
|
|
24715
24744
|
object({
|
|
24716
24745
|
/** Current relative humidity, 0..100. */
|
|
@@ -25172,13 +25201,13 @@ object({
|
|
|
25172
25201
|
});
|
|
25173
25202
|
DeviceType.LawnMower, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25174
25203
|
kind: "mutation",
|
|
25175
|
-
auth: "
|
|
25204
|
+
auth: "protected"
|
|
25176
25205
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25177
25206
|
kind: "mutation",
|
|
25178
|
-
auth: "
|
|
25207
|
+
auth: "protected"
|
|
25179
25208
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25180
25209
|
kind: "mutation",
|
|
25181
|
-
auth: "
|
|
25210
|
+
auth: "protected"
|
|
25182
25211
|
});
|
|
25183
25212
|
/**
|
|
25184
25213
|
* local-network — hub-only singleton.
|
|
@@ -25438,16 +25467,16 @@ DeviceType.Lock, method(object({
|
|
|
25438
25467
|
code: string().min(1).optional()
|
|
25439
25468
|
}), _void(), {
|
|
25440
25469
|
kind: "mutation",
|
|
25441
|
-
auth: "
|
|
25470
|
+
auth: "protected"
|
|
25442
25471
|
}), method(object({
|
|
25443
25472
|
deviceId: number().int().nonnegative(),
|
|
25444
25473
|
code: string().min(1).optional()
|
|
25445
25474
|
}), _void(), {
|
|
25446
25475
|
kind: "mutation",
|
|
25447
|
-
auth: "
|
|
25476
|
+
auth: "protected"
|
|
25448
25477
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25449
25478
|
kind: "mutation",
|
|
25450
|
-
auth: "
|
|
25479
|
+
auth: "protected"
|
|
25451
25480
|
});
|
|
25452
25481
|
/**
|
|
25453
25482
|
* Media-player cap. Models HA `media_player.*` (Sonos, Chromecast,
|
|
@@ -25521,55 +25550,55 @@ object({
|
|
|
25521
25550
|
});
|
|
25522
25551
|
DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25523
25552
|
kind: "mutation",
|
|
25524
|
-
auth: "
|
|
25553
|
+
auth: "protected"
|
|
25525
25554
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25526
25555
|
kind: "mutation",
|
|
25527
|
-
auth: "
|
|
25556
|
+
auth: "protected"
|
|
25528
25557
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25529
25558
|
kind: "mutation",
|
|
25530
|
-
auth: "
|
|
25559
|
+
auth: "protected"
|
|
25531
25560
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25532
25561
|
kind: "mutation",
|
|
25533
|
-
auth: "
|
|
25562
|
+
auth: "protected"
|
|
25534
25563
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25535
25564
|
kind: "mutation",
|
|
25536
|
-
auth: "
|
|
25565
|
+
auth: "protected"
|
|
25537
25566
|
}), method(object({
|
|
25538
25567
|
deviceId: number().int().nonnegative(),
|
|
25539
25568
|
positionMs: number().int().nonnegative()
|
|
25540
25569
|
}), _void(), {
|
|
25541
25570
|
kind: "mutation",
|
|
25542
|
-
auth: "
|
|
25571
|
+
auth: "protected"
|
|
25543
25572
|
}), method(object({
|
|
25544
25573
|
deviceId: number().int().nonnegative(),
|
|
25545
25574
|
volumeLevel: number().min(0).max(100)
|
|
25546
25575
|
}), _void(), {
|
|
25547
25576
|
kind: "mutation",
|
|
25548
|
-
auth: "
|
|
25577
|
+
auth: "protected"
|
|
25549
25578
|
}), method(object({
|
|
25550
25579
|
deviceId: number().int().nonnegative(),
|
|
25551
25580
|
muted: boolean()
|
|
25552
25581
|
}), _void(), {
|
|
25553
25582
|
kind: "mutation",
|
|
25554
|
-
auth: "
|
|
25583
|
+
auth: "protected"
|
|
25555
25584
|
}), method(object({
|
|
25556
25585
|
deviceId: number().int().nonnegative(),
|
|
25557
25586
|
shuffle: boolean()
|
|
25558
25587
|
}), _void(), {
|
|
25559
25588
|
kind: "mutation",
|
|
25560
|
-
auth: "
|
|
25589
|
+
auth: "protected"
|
|
25561
25590
|
}), method(object({
|
|
25562
25591
|
deviceId: number().int().nonnegative(),
|
|
25563
25592
|
repeat: MediaPlayerRepeatSchema
|
|
25564
25593
|
}), _void(), {
|
|
25565
25594
|
kind: "mutation",
|
|
25566
|
-
auth: "
|
|
25595
|
+
auth: "protected"
|
|
25567
25596
|
}), method(object({
|
|
25568
25597
|
deviceId: number().int().nonnegative(),
|
|
25569
25598
|
source: string().min(1)
|
|
25570
25599
|
}), _void(), {
|
|
25571
25600
|
kind: "mutation",
|
|
25572
|
-
auth: "
|
|
25601
|
+
auth: "protected"
|
|
25573
25602
|
}), method(object({
|
|
25574
25603
|
deviceId: number().int().nonnegative(),
|
|
25575
25604
|
/** Media identifier / URL. */
|
|
@@ -25579,7 +25608,7 @@ DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }
|
|
|
25579
25608
|
mediaType: string().min(1)
|
|
25580
25609
|
}), _void(), {
|
|
25581
25610
|
kind: "mutation",
|
|
25582
|
-
auth: "
|
|
25611
|
+
auth: "protected"
|
|
25583
25612
|
});
|
|
25584
25613
|
/**
|
|
25585
25614
|
* mesh-network — collection cap for mesh-VPN providers.
|
|
@@ -26745,49 +26774,49 @@ DeviceType.PetFeeder, method(object({
|
|
|
26745
26774
|
hopper2: gramsPortion.optional()
|
|
26746
26775
|
}), _void(), {
|
|
26747
26776
|
kind: "mutation",
|
|
26748
|
-
auth: "
|
|
26777
|
+
auth: "protected"
|
|
26749
26778
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
26750
26779
|
kind: "mutation",
|
|
26751
|
-
auth: "
|
|
26780
|
+
auth: "protected"
|
|
26752
26781
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
26753
26782
|
kind: "mutation",
|
|
26754
|
-
auth: "
|
|
26783
|
+
auth: "protected"
|
|
26755
26784
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
26756
26785
|
kind: "mutation",
|
|
26757
|
-
auth: "
|
|
26786
|
+
auth: "protected"
|
|
26758
26787
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
26759
26788
|
kind: "mutation",
|
|
26760
|
-
auth: "
|
|
26789
|
+
auth: "protected"
|
|
26761
26790
|
}), method(object({
|
|
26762
26791
|
deviceId: number().int().nonnegative(),
|
|
26763
26792
|
soundId: number().int().nonnegative()
|
|
26764
26793
|
}), _void(), {
|
|
26765
26794
|
kind: "mutation",
|
|
26766
|
-
auth: "
|
|
26795
|
+
auth: "protected"
|
|
26767
26796
|
}), method(object({
|
|
26768
26797
|
deviceId: number().int().nonnegative(),
|
|
26769
26798
|
on: boolean()
|
|
26770
26799
|
}), _void(), {
|
|
26771
26800
|
kind: "mutation",
|
|
26772
|
-
auth: "
|
|
26801
|
+
auth: "protected"
|
|
26773
26802
|
}), method(object({
|
|
26774
26803
|
deviceId: number().int().nonnegative(),
|
|
26775
26804
|
on: boolean()
|
|
26776
26805
|
}), _void(), {
|
|
26777
26806
|
kind: "mutation",
|
|
26778
|
-
auth: "
|
|
26807
|
+
auth: "protected"
|
|
26779
26808
|
}), method(object({
|
|
26780
26809
|
deviceId: number().int().nonnegative(),
|
|
26781
26810
|
on: boolean()
|
|
26782
26811
|
}), _void(), {
|
|
26783
26812
|
kind: "mutation",
|
|
26784
|
-
auth: "
|
|
26813
|
+
auth: "protected"
|
|
26785
26814
|
}), method(object({
|
|
26786
26815
|
deviceId: number().int().nonnegative(),
|
|
26787
26816
|
level: number().int().nonnegative()
|
|
26788
26817
|
}), _void(), {
|
|
26789
26818
|
kind: "mutation",
|
|
26790
|
-
auth: "
|
|
26819
|
+
auth: "protected"
|
|
26791
26820
|
});
|
|
26792
26821
|
var VehicleSchema = object({
|
|
26793
26822
|
id: string(),
|
|
@@ -28574,7 +28603,7 @@ DeviceType.Switch, DeviceType.Siren, DeviceType.Light, method(object({
|
|
|
28574
28603
|
on: boolean()
|
|
28575
28604
|
}), _void(), {
|
|
28576
28605
|
kind: "mutation",
|
|
28577
|
-
auth: "
|
|
28606
|
+
auth: "protected"
|
|
28578
28607
|
}), object({
|
|
28579
28608
|
deviceId: number(),
|
|
28580
28609
|
on: boolean(),
|
|
@@ -29431,25 +29460,25 @@ object({
|
|
|
29431
29460
|
});
|
|
29432
29461
|
DeviceType.Vacuum, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29433
29462
|
kind: "mutation",
|
|
29434
|
-
auth: "
|
|
29463
|
+
auth: "protected"
|
|
29435
29464
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29436
29465
|
kind: "mutation",
|
|
29437
|
-
auth: "
|
|
29466
|
+
auth: "protected"
|
|
29438
29467
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29439
29468
|
kind: "mutation",
|
|
29440
|
-
auth: "
|
|
29469
|
+
auth: "protected"
|
|
29441
29470
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29442
29471
|
kind: "mutation",
|
|
29443
|
-
auth: "
|
|
29472
|
+
auth: "protected"
|
|
29444
29473
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29445
29474
|
kind: "mutation",
|
|
29446
|
-
auth: "
|
|
29475
|
+
auth: "protected"
|
|
29447
29476
|
}), method(object({
|
|
29448
29477
|
deviceId: number().int().nonnegative(),
|
|
29449
29478
|
speed: string().min(1)
|
|
29450
29479
|
}), _void(), {
|
|
29451
29480
|
kind: "mutation",
|
|
29452
|
-
auth: "
|
|
29481
|
+
auth: "protected"
|
|
29453
29482
|
});
|
|
29454
29483
|
object({
|
|
29455
29484
|
/** Lifecycle state of the valve. */
|
|
@@ -29468,19 +29497,19 @@ object({
|
|
|
29468
29497
|
});
|
|
29469
29498
|
DeviceType.Valve, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29470
29499
|
kind: "mutation",
|
|
29471
|
-
auth: "
|
|
29500
|
+
auth: "protected"
|
|
29472
29501
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29473
29502
|
kind: "mutation",
|
|
29474
|
-
auth: "
|
|
29503
|
+
auth: "protected"
|
|
29475
29504
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29476
29505
|
kind: "mutation",
|
|
29477
|
-
auth: "
|
|
29506
|
+
auth: "protected"
|
|
29478
29507
|
}), method(object({
|
|
29479
29508
|
deviceId: number().int().nonnegative(),
|
|
29480
29509
|
position: number().min(0).max(100)
|
|
29481
29510
|
}), _void(), {
|
|
29482
29511
|
kind: "mutation",
|
|
29483
|
-
auth: "
|
|
29512
|
+
auth: "protected"
|
|
29484
29513
|
});
|
|
29485
29514
|
object({
|
|
29486
29515
|
detected: boolean(),
|
|
@@ -29514,19 +29543,19 @@ DeviceType.WaterHeater, method(object({
|
|
|
29514
29543
|
temp: number().finite()
|
|
29515
29544
|
}), _void(), {
|
|
29516
29545
|
kind: "mutation",
|
|
29517
|
-
auth: "
|
|
29546
|
+
auth: "protected"
|
|
29518
29547
|
}), method(object({
|
|
29519
29548
|
deviceId: number().int().nonnegative(),
|
|
29520
29549
|
mode: string().min(1)
|
|
29521
29550
|
}), _void(), {
|
|
29522
29551
|
kind: "mutation",
|
|
29523
|
-
auth: "
|
|
29552
|
+
auth: "protected"
|
|
29524
29553
|
}), method(object({
|
|
29525
29554
|
deviceId: number().int().nonnegative(),
|
|
29526
29555
|
on: boolean()
|
|
29527
29556
|
}), _void(), {
|
|
29528
29557
|
kind: "mutation",
|
|
29529
|
-
auth: "
|
|
29558
|
+
auth: "protected"
|
|
29530
29559
|
});
|
|
29531
29560
|
object({
|
|
29532
29561
|
/** Verbatim HA condition state (`sunny`, `cloudy`, `rainy`, …). Null
|
|
@@ -33154,6 +33183,12 @@ Object.freeze({
|
|
|
33154
33183
|
addonId: null,
|
|
33155
33184
|
access: "view"
|
|
33156
33185
|
},
|
|
33186
|
+
"pipelineAnalytics.listArchivedDebugNotes": {
|
|
33187
|
+
capName: "pipeline-analytics",
|
|
33188
|
+
capScope: "device",
|
|
33189
|
+
addonId: null,
|
|
33190
|
+
access: "view"
|
|
33191
|
+
},
|
|
33157
33192
|
"pipelineAnalytics.listEventKinds": {
|
|
33158
33193
|
capName: "pipeline-analytics",
|
|
33159
33194
|
capScope: "device",
|
|
@@ -36941,6 +36976,11 @@ Object.freeze({
|
|
|
36941
36976
|
form: "array",
|
|
36942
36977
|
optional: true
|
|
36943
36978
|
}],
|
|
36979
|
+
"pipelineAnalytics.listArchivedDebugNotes": [{
|
|
36980
|
+
name: "deviceId",
|
|
36981
|
+
form: "single",
|
|
36982
|
+
optional: true
|
|
36983
|
+
}],
|
|
36944
36984
|
"pipelineAnalytics.listEventKinds": [{
|
|
36945
36985
|
name: "deviceId",
|
|
36946
36986
|
form: "single",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -7646,6 +7646,35 @@ var CameraSwitchGroupSchema = object({
|
|
|
7646
7646
|
/** Unix ms when the group was composed server-side. */
|
|
7647
7647
|
fetchedAt: number()
|
|
7648
7648
|
});
|
|
7649
|
+
/** One archived note — the operator's words plus enough context to find what
|
|
7650
|
+
* they were looking at, after the track itself is gone. */
|
|
7651
|
+
var ArchivedDebugNoteSchema = object({
|
|
7652
|
+
/** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
|
|
7653
|
+
* same sentence about the same track lands on the row already there. */
|
|
7654
|
+
id: string(),
|
|
7655
|
+
/** The operator's own words, verbatim. */
|
|
7656
|
+
note: string(),
|
|
7657
|
+
/** The camera. Required — every question here is asked per-camera. */
|
|
7658
|
+
deviceId: number().int(),
|
|
7659
|
+
/** The track the note was written on. PROVENANCE, not ownership: the track
|
|
7660
|
+
* is expected to be gone, and this row is not a reference to it. */
|
|
7661
|
+
sourceTrackId: string(),
|
|
7662
|
+
/** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
|
|
7663
|
+
archivedAt: number().int(),
|
|
7664
|
+
/** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
|
|
7665
|
+
trackStartedAt: number().int().nullable(),
|
|
7666
|
+
/** The track's detector class (`person`, `car`, …); `null` when unknown. */
|
|
7667
|
+
trackClass: string().nullable(),
|
|
7668
|
+
/** The track's display label at review time; `null` when it had none. */
|
|
7669
|
+
trackLabel: string().nullable()
|
|
7670
|
+
});
|
|
7671
|
+
/** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
|
|
7672
|
+
var ArchivedDebugNoteQueryInputSchema = object({
|
|
7673
|
+
/** Restrict to a single camera; omit for every row. */
|
|
7674
|
+
deviceId: number().int().optional(),
|
|
7675
|
+
/** Max rows returned, newest-first. */
|
|
7676
|
+
limit: number().int().min(1).max(1e3).optional()
|
|
7677
|
+
});
|
|
7649
7678
|
/**
|
|
7650
7679
|
* Ops-log — the durable, append-only operations audit shared by the
|
|
7651
7680
|
* recordings and events management surfaces.
|
|
@@ -15830,16 +15859,16 @@ DeviceType.AlarmPanel, method(object({
|
|
|
15830
15859
|
code: string().min(1).optional()
|
|
15831
15860
|
}), _void(), {
|
|
15832
15861
|
kind: "mutation",
|
|
15833
|
-
auth: "
|
|
15862
|
+
auth: "protected"
|
|
15834
15863
|
}), method(object({
|
|
15835
15864
|
deviceId: number().int().nonnegative(),
|
|
15836
15865
|
code: string().min(1).optional()
|
|
15837
15866
|
}), _void(), {
|
|
15838
15867
|
kind: "mutation",
|
|
15839
|
-
auth: "
|
|
15868
|
+
auth: "protected"
|
|
15840
15869
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
15841
15870
|
kind: "mutation",
|
|
15842
|
-
auth: "
|
|
15871
|
+
auth: "protected"
|
|
15843
15872
|
});
|
|
15844
15873
|
/**
|
|
15845
15874
|
* Shared geometry vocabulary for on-frame shape caps — privacy-mask,
|
|
@@ -19741,7 +19770,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19741
19770
|
deviceId: number(),
|
|
19742
19771
|
trackId: string(),
|
|
19743
19772
|
flags: TrackFlagsPatchSchema
|
|
19744
|
-
}), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
|
|
19773
|
+
}), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
|
|
19745
19774
|
kind: "query",
|
|
19746
19775
|
auth: "admin"
|
|
19747
19776
|
}), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
|
|
@@ -23507,7 +23536,7 @@ DeviceType.Light, method(object({
|
|
|
23507
23536
|
percentage: number().min(0).max(100)
|
|
23508
23537
|
}), _void(), {
|
|
23509
23538
|
kind: "mutation",
|
|
23510
|
-
auth: "
|
|
23539
|
+
auth: "protected"
|
|
23511
23540
|
}), object({
|
|
23512
23541
|
deviceId: number(),
|
|
23513
23542
|
percentage: number().min(0).max(100),
|
|
@@ -23515,7 +23544,7 @@ DeviceType.Light, method(object({
|
|
|
23515
23544
|
});
|
|
23516
23545
|
DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
23517
23546
|
kind: "mutation",
|
|
23518
|
-
auth: "
|
|
23547
|
+
auth: "protected"
|
|
23519
23548
|
});
|
|
23520
23549
|
/**
|
|
23521
23550
|
* camera-credentials — device-scoped cap exposing the camera's network
|
|
@@ -23674,50 +23703,50 @@ DeviceType.Thermostat, DeviceType.Climate, method(object({
|
|
|
23674
23703
|
mode: HvacModeSchema
|
|
23675
23704
|
}), _void(), {
|
|
23676
23705
|
kind: "mutation",
|
|
23677
|
-
auth: "
|
|
23706
|
+
auth: "protected"
|
|
23678
23707
|
}), method(object({
|
|
23679
23708
|
deviceId: number().int().nonnegative(),
|
|
23680
23709
|
fanMode: string().min(1)
|
|
23681
23710
|
}), _void(), {
|
|
23682
23711
|
kind: "mutation",
|
|
23683
|
-
auth: "
|
|
23712
|
+
auth: "protected"
|
|
23684
23713
|
}), method(object({
|
|
23685
23714
|
deviceId: number().int().nonnegative(),
|
|
23686
23715
|
preset: string().min(1)
|
|
23687
23716
|
}), _void(), {
|
|
23688
23717
|
kind: "mutation",
|
|
23689
|
-
auth: "
|
|
23718
|
+
auth: "protected"
|
|
23690
23719
|
}), method(object({
|
|
23691
23720
|
deviceId: number().int().nonnegative(),
|
|
23692
23721
|
target: number()
|
|
23693
23722
|
}), _void(), {
|
|
23694
23723
|
kind: "mutation",
|
|
23695
|
-
auth: "
|
|
23724
|
+
auth: "protected"
|
|
23696
23725
|
}), method(object({
|
|
23697
23726
|
deviceId: number().int().nonnegative(),
|
|
23698
23727
|
targetLow: number(),
|
|
23699
23728
|
targetHigh: number()
|
|
23700
23729
|
}), _void(), {
|
|
23701
23730
|
kind: "mutation",
|
|
23702
|
-
auth: "
|
|
23731
|
+
auth: "protected"
|
|
23703
23732
|
}), method(object({
|
|
23704
23733
|
deviceId: number().int().nonnegative(),
|
|
23705
23734
|
targetHumidity: number().min(0).max(100)
|
|
23706
23735
|
}), _void(), {
|
|
23707
23736
|
kind: "mutation",
|
|
23708
|
-
auth: "
|
|
23737
|
+
auth: "protected"
|
|
23709
23738
|
}), method(object({
|
|
23710
23739
|
deviceId: number().int().nonnegative(),
|
|
23711
23740
|
on: boolean()
|
|
23712
23741
|
}), _void(), {
|
|
23713
23742
|
kind: "mutation",
|
|
23714
|
-
auth: "
|
|
23743
|
+
auth: "protected"
|
|
23715
23744
|
}), method(object({
|
|
23716
23745
|
deviceId: number().int().nonnegative(),
|
|
23717
23746
|
on: boolean()
|
|
23718
23747
|
}), _void(), {
|
|
23719
23748
|
kind: "mutation",
|
|
23720
|
-
auth: "
|
|
23749
|
+
auth: "protected"
|
|
23721
23750
|
});
|
|
23722
23751
|
/**
|
|
23723
23752
|
* Color-light cap. Coexists with `switch` (on/off) and `brightness`
|
|
@@ -23792,7 +23821,7 @@ DeviceType.Light, method(object({
|
|
|
23792
23821
|
color: ColorInputSchema
|
|
23793
23822
|
}), _void(), {
|
|
23794
23823
|
kind: "mutation",
|
|
23795
|
-
auth: "
|
|
23824
|
+
auth: "protected"
|
|
23796
23825
|
}), object({
|
|
23797
23826
|
deviceId: number(),
|
|
23798
23827
|
mode: _enum([
|
|
@@ -23941,7 +23970,7 @@ DeviceType.Control, method(object({
|
|
|
23941
23970
|
control: ControlSetValueInputSchema
|
|
23942
23971
|
}), _void(), {
|
|
23943
23972
|
kind: "mutation",
|
|
23944
|
-
auth: "
|
|
23973
|
+
auth: "protected"
|
|
23945
23974
|
});
|
|
23946
23975
|
object({
|
|
23947
23976
|
/** Lifecycle state of the cover. */
|
|
@@ -23962,25 +23991,25 @@ object({
|
|
|
23962
23991
|
});
|
|
23963
23992
|
DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
23964
23993
|
kind: "mutation",
|
|
23965
|
-
auth: "
|
|
23994
|
+
auth: "protected"
|
|
23966
23995
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
23967
23996
|
kind: "mutation",
|
|
23968
|
-
auth: "
|
|
23997
|
+
auth: "protected"
|
|
23969
23998
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
23970
23999
|
kind: "mutation",
|
|
23971
|
-
auth: "
|
|
24000
|
+
auth: "protected"
|
|
23972
24001
|
}), method(object({
|
|
23973
24002
|
deviceId: number().int().nonnegative(),
|
|
23974
24003
|
position: number().min(0).max(100)
|
|
23975
24004
|
}), _void(), {
|
|
23976
24005
|
kind: "mutation",
|
|
23977
|
-
auth: "
|
|
24006
|
+
auth: "protected"
|
|
23978
24007
|
}), method(object({
|
|
23979
24008
|
deviceId: number().int().nonnegative(),
|
|
23980
24009
|
tiltPosition: number().min(0).max(100)
|
|
23981
24010
|
}), _void(), {
|
|
23982
24011
|
kind: "mutation",
|
|
23983
|
-
auth: "
|
|
24012
|
+
auth: "protected"
|
|
23984
24013
|
});
|
|
23985
24014
|
/**
|
|
23986
24015
|
* Vendor-neutral day/night (IR-cut) control — the per-camera config cap
|
|
@@ -24575,25 +24604,25 @@ DeviceType.Fan, method(object({
|
|
|
24575
24604
|
percentage: number().min(0).max(100)
|
|
24576
24605
|
}), _void(), {
|
|
24577
24606
|
kind: "mutation",
|
|
24578
|
-
auth: "
|
|
24607
|
+
auth: "protected"
|
|
24579
24608
|
}), method(object({
|
|
24580
24609
|
deviceId: number().int().nonnegative(),
|
|
24581
24610
|
preset: string().min(1)
|
|
24582
24611
|
}), _void(), {
|
|
24583
24612
|
kind: "mutation",
|
|
24584
|
-
auth: "
|
|
24613
|
+
auth: "protected"
|
|
24585
24614
|
}), method(object({
|
|
24586
24615
|
deviceId: number().int().nonnegative(),
|
|
24587
24616
|
direction: FanDirectionSchema
|
|
24588
24617
|
}), _void(), {
|
|
24589
24618
|
kind: "mutation",
|
|
24590
|
-
auth: "
|
|
24619
|
+
auth: "protected"
|
|
24591
24620
|
}), method(object({
|
|
24592
24621
|
deviceId: number().int().nonnegative(),
|
|
24593
24622
|
oscillating: boolean()
|
|
24594
24623
|
}), _void(), {
|
|
24595
24624
|
kind: "mutation",
|
|
24596
|
-
auth: "
|
|
24625
|
+
auth: "protected"
|
|
24597
24626
|
});
|
|
24598
24627
|
/**
|
|
24599
24628
|
* Per-device feature/identity probe slice. Holds the runtime-resolved
|
|
@@ -24696,19 +24725,19 @@ DeviceType.Humidifier, method(object({
|
|
|
24696
24725
|
on: boolean()
|
|
24697
24726
|
}), _void(), {
|
|
24698
24727
|
kind: "mutation",
|
|
24699
|
-
auth: "
|
|
24728
|
+
auth: "protected"
|
|
24700
24729
|
}), method(object({
|
|
24701
24730
|
deviceId: number().int().nonnegative(),
|
|
24702
24731
|
humidity: number().min(0).max(100)
|
|
24703
24732
|
}), _void(), {
|
|
24704
24733
|
kind: "mutation",
|
|
24705
|
-
auth: "
|
|
24734
|
+
auth: "protected"
|
|
24706
24735
|
}), method(object({
|
|
24707
24736
|
deviceId: number().int().nonnegative(),
|
|
24708
24737
|
mode: string().min(1)
|
|
24709
24738
|
}), _void(), {
|
|
24710
24739
|
kind: "mutation",
|
|
24711
|
-
auth: "
|
|
24740
|
+
auth: "protected"
|
|
24712
24741
|
});
|
|
24713
24742
|
object({
|
|
24714
24743
|
/** Current relative humidity, 0..100. */
|
|
@@ -25170,13 +25199,13 @@ object({
|
|
|
25170
25199
|
});
|
|
25171
25200
|
DeviceType.LawnMower, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25172
25201
|
kind: "mutation",
|
|
25173
|
-
auth: "
|
|
25202
|
+
auth: "protected"
|
|
25174
25203
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25175
25204
|
kind: "mutation",
|
|
25176
|
-
auth: "
|
|
25205
|
+
auth: "protected"
|
|
25177
25206
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25178
25207
|
kind: "mutation",
|
|
25179
|
-
auth: "
|
|
25208
|
+
auth: "protected"
|
|
25180
25209
|
});
|
|
25181
25210
|
/**
|
|
25182
25211
|
* local-network — hub-only singleton.
|
|
@@ -25436,16 +25465,16 @@ DeviceType.Lock, method(object({
|
|
|
25436
25465
|
code: string().min(1).optional()
|
|
25437
25466
|
}), _void(), {
|
|
25438
25467
|
kind: "mutation",
|
|
25439
|
-
auth: "
|
|
25468
|
+
auth: "protected"
|
|
25440
25469
|
}), method(object({
|
|
25441
25470
|
deviceId: number().int().nonnegative(),
|
|
25442
25471
|
code: string().min(1).optional()
|
|
25443
25472
|
}), _void(), {
|
|
25444
25473
|
kind: "mutation",
|
|
25445
|
-
auth: "
|
|
25474
|
+
auth: "protected"
|
|
25446
25475
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25447
25476
|
kind: "mutation",
|
|
25448
|
-
auth: "
|
|
25477
|
+
auth: "protected"
|
|
25449
25478
|
});
|
|
25450
25479
|
/**
|
|
25451
25480
|
* Media-player cap. Models HA `media_player.*` (Sonos, Chromecast,
|
|
@@ -25519,55 +25548,55 @@ object({
|
|
|
25519
25548
|
});
|
|
25520
25549
|
DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25521
25550
|
kind: "mutation",
|
|
25522
|
-
auth: "
|
|
25551
|
+
auth: "protected"
|
|
25523
25552
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25524
25553
|
kind: "mutation",
|
|
25525
|
-
auth: "
|
|
25554
|
+
auth: "protected"
|
|
25526
25555
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25527
25556
|
kind: "mutation",
|
|
25528
|
-
auth: "
|
|
25557
|
+
auth: "protected"
|
|
25529
25558
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25530
25559
|
kind: "mutation",
|
|
25531
|
-
auth: "
|
|
25560
|
+
auth: "protected"
|
|
25532
25561
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
25533
25562
|
kind: "mutation",
|
|
25534
|
-
auth: "
|
|
25563
|
+
auth: "protected"
|
|
25535
25564
|
}), method(object({
|
|
25536
25565
|
deviceId: number().int().nonnegative(),
|
|
25537
25566
|
positionMs: number().int().nonnegative()
|
|
25538
25567
|
}), _void(), {
|
|
25539
25568
|
kind: "mutation",
|
|
25540
|
-
auth: "
|
|
25569
|
+
auth: "protected"
|
|
25541
25570
|
}), method(object({
|
|
25542
25571
|
deviceId: number().int().nonnegative(),
|
|
25543
25572
|
volumeLevel: number().min(0).max(100)
|
|
25544
25573
|
}), _void(), {
|
|
25545
25574
|
kind: "mutation",
|
|
25546
|
-
auth: "
|
|
25575
|
+
auth: "protected"
|
|
25547
25576
|
}), method(object({
|
|
25548
25577
|
deviceId: number().int().nonnegative(),
|
|
25549
25578
|
muted: boolean()
|
|
25550
25579
|
}), _void(), {
|
|
25551
25580
|
kind: "mutation",
|
|
25552
|
-
auth: "
|
|
25581
|
+
auth: "protected"
|
|
25553
25582
|
}), method(object({
|
|
25554
25583
|
deviceId: number().int().nonnegative(),
|
|
25555
25584
|
shuffle: boolean()
|
|
25556
25585
|
}), _void(), {
|
|
25557
25586
|
kind: "mutation",
|
|
25558
|
-
auth: "
|
|
25587
|
+
auth: "protected"
|
|
25559
25588
|
}), method(object({
|
|
25560
25589
|
deviceId: number().int().nonnegative(),
|
|
25561
25590
|
repeat: MediaPlayerRepeatSchema
|
|
25562
25591
|
}), _void(), {
|
|
25563
25592
|
kind: "mutation",
|
|
25564
|
-
auth: "
|
|
25593
|
+
auth: "protected"
|
|
25565
25594
|
}), method(object({
|
|
25566
25595
|
deviceId: number().int().nonnegative(),
|
|
25567
25596
|
source: string().min(1)
|
|
25568
25597
|
}), _void(), {
|
|
25569
25598
|
kind: "mutation",
|
|
25570
|
-
auth: "
|
|
25599
|
+
auth: "protected"
|
|
25571
25600
|
}), method(object({
|
|
25572
25601
|
deviceId: number().int().nonnegative(),
|
|
25573
25602
|
/** Media identifier / URL. */
|
|
@@ -25577,7 +25606,7 @@ DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }
|
|
|
25577
25606
|
mediaType: string().min(1)
|
|
25578
25607
|
}), _void(), {
|
|
25579
25608
|
kind: "mutation",
|
|
25580
|
-
auth: "
|
|
25609
|
+
auth: "protected"
|
|
25581
25610
|
});
|
|
25582
25611
|
/**
|
|
25583
25612
|
* mesh-network — collection cap for mesh-VPN providers.
|
|
@@ -26743,49 +26772,49 @@ DeviceType.PetFeeder, method(object({
|
|
|
26743
26772
|
hopper2: gramsPortion.optional()
|
|
26744
26773
|
}), _void(), {
|
|
26745
26774
|
kind: "mutation",
|
|
26746
|
-
auth: "
|
|
26775
|
+
auth: "protected"
|
|
26747
26776
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
26748
26777
|
kind: "mutation",
|
|
26749
|
-
auth: "
|
|
26778
|
+
auth: "protected"
|
|
26750
26779
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
26751
26780
|
kind: "mutation",
|
|
26752
|
-
auth: "
|
|
26781
|
+
auth: "protected"
|
|
26753
26782
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
26754
26783
|
kind: "mutation",
|
|
26755
|
-
auth: "
|
|
26784
|
+
auth: "protected"
|
|
26756
26785
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
26757
26786
|
kind: "mutation",
|
|
26758
|
-
auth: "
|
|
26787
|
+
auth: "protected"
|
|
26759
26788
|
}), method(object({
|
|
26760
26789
|
deviceId: number().int().nonnegative(),
|
|
26761
26790
|
soundId: number().int().nonnegative()
|
|
26762
26791
|
}), _void(), {
|
|
26763
26792
|
kind: "mutation",
|
|
26764
|
-
auth: "
|
|
26793
|
+
auth: "protected"
|
|
26765
26794
|
}), method(object({
|
|
26766
26795
|
deviceId: number().int().nonnegative(),
|
|
26767
26796
|
on: boolean()
|
|
26768
26797
|
}), _void(), {
|
|
26769
26798
|
kind: "mutation",
|
|
26770
|
-
auth: "
|
|
26799
|
+
auth: "protected"
|
|
26771
26800
|
}), method(object({
|
|
26772
26801
|
deviceId: number().int().nonnegative(),
|
|
26773
26802
|
on: boolean()
|
|
26774
26803
|
}), _void(), {
|
|
26775
26804
|
kind: "mutation",
|
|
26776
|
-
auth: "
|
|
26805
|
+
auth: "protected"
|
|
26777
26806
|
}), method(object({
|
|
26778
26807
|
deviceId: number().int().nonnegative(),
|
|
26779
26808
|
on: boolean()
|
|
26780
26809
|
}), _void(), {
|
|
26781
26810
|
kind: "mutation",
|
|
26782
|
-
auth: "
|
|
26811
|
+
auth: "protected"
|
|
26783
26812
|
}), method(object({
|
|
26784
26813
|
deviceId: number().int().nonnegative(),
|
|
26785
26814
|
level: number().int().nonnegative()
|
|
26786
26815
|
}), _void(), {
|
|
26787
26816
|
kind: "mutation",
|
|
26788
|
-
auth: "
|
|
26817
|
+
auth: "protected"
|
|
26789
26818
|
});
|
|
26790
26819
|
var VehicleSchema = object({
|
|
26791
26820
|
id: string(),
|
|
@@ -28572,7 +28601,7 @@ DeviceType.Switch, DeviceType.Siren, DeviceType.Light, method(object({
|
|
|
28572
28601
|
on: boolean()
|
|
28573
28602
|
}), _void(), {
|
|
28574
28603
|
kind: "mutation",
|
|
28575
|
-
auth: "
|
|
28604
|
+
auth: "protected"
|
|
28576
28605
|
}), object({
|
|
28577
28606
|
deviceId: number(),
|
|
28578
28607
|
on: boolean(),
|
|
@@ -29429,25 +29458,25 @@ object({
|
|
|
29429
29458
|
});
|
|
29430
29459
|
DeviceType.Vacuum, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29431
29460
|
kind: "mutation",
|
|
29432
|
-
auth: "
|
|
29461
|
+
auth: "protected"
|
|
29433
29462
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29434
29463
|
kind: "mutation",
|
|
29435
|
-
auth: "
|
|
29464
|
+
auth: "protected"
|
|
29436
29465
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29437
29466
|
kind: "mutation",
|
|
29438
|
-
auth: "
|
|
29467
|
+
auth: "protected"
|
|
29439
29468
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29440
29469
|
kind: "mutation",
|
|
29441
|
-
auth: "
|
|
29470
|
+
auth: "protected"
|
|
29442
29471
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29443
29472
|
kind: "mutation",
|
|
29444
|
-
auth: "
|
|
29473
|
+
auth: "protected"
|
|
29445
29474
|
}), method(object({
|
|
29446
29475
|
deviceId: number().int().nonnegative(),
|
|
29447
29476
|
speed: string().min(1)
|
|
29448
29477
|
}), _void(), {
|
|
29449
29478
|
kind: "mutation",
|
|
29450
|
-
auth: "
|
|
29479
|
+
auth: "protected"
|
|
29451
29480
|
});
|
|
29452
29481
|
object({
|
|
29453
29482
|
/** Lifecycle state of the valve. */
|
|
@@ -29466,19 +29495,19 @@ object({
|
|
|
29466
29495
|
});
|
|
29467
29496
|
DeviceType.Valve, method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29468
29497
|
kind: "mutation",
|
|
29469
|
-
auth: "
|
|
29498
|
+
auth: "protected"
|
|
29470
29499
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29471
29500
|
kind: "mutation",
|
|
29472
|
-
auth: "
|
|
29501
|
+
auth: "protected"
|
|
29473
29502
|
}), method(object({ deviceId: number().int().nonnegative() }), _void(), {
|
|
29474
29503
|
kind: "mutation",
|
|
29475
|
-
auth: "
|
|
29504
|
+
auth: "protected"
|
|
29476
29505
|
}), method(object({
|
|
29477
29506
|
deviceId: number().int().nonnegative(),
|
|
29478
29507
|
position: number().min(0).max(100)
|
|
29479
29508
|
}), _void(), {
|
|
29480
29509
|
kind: "mutation",
|
|
29481
|
-
auth: "
|
|
29510
|
+
auth: "protected"
|
|
29482
29511
|
});
|
|
29483
29512
|
object({
|
|
29484
29513
|
detected: boolean(),
|
|
@@ -29512,19 +29541,19 @@ DeviceType.WaterHeater, method(object({
|
|
|
29512
29541
|
temp: number().finite()
|
|
29513
29542
|
}), _void(), {
|
|
29514
29543
|
kind: "mutation",
|
|
29515
|
-
auth: "
|
|
29544
|
+
auth: "protected"
|
|
29516
29545
|
}), method(object({
|
|
29517
29546
|
deviceId: number().int().nonnegative(),
|
|
29518
29547
|
mode: string().min(1)
|
|
29519
29548
|
}), _void(), {
|
|
29520
29549
|
kind: "mutation",
|
|
29521
|
-
auth: "
|
|
29550
|
+
auth: "protected"
|
|
29522
29551
|
}), method(object({
|
|
29523
29552
|
deviceId: number().int().nonnegative(),
|
|
29524
29553
|
on: boolean()
|
|
29525
29554
|
}), _void(), {
|
|
29526
29555
|
kind: "mutation",
|
|
29527
|
-
auth: "
|
|
29556
|
+
auth: "protected"
|
|
29528
29557
|
});
|
|
29529
29558
|
object({
|
|
29530
29559
|
/** Verbatim HA condition state (`sunny`, `cloudy`, `rainy`, …). Null
|
|
@@ -33152,6 +33181,12 @@ Object.freeze({
|
|
|
33152
33181
|
addonId: null,
|
|
33153
33182
|
access: "view"
|
|
33154
33183
|
},
|
|
33184
|
+
"pipelineAnalytics.listArchivedDebugNotes": {
|
|
33185
|
+
capName: "pipeline-analytics",
|
|
33186
|
+
capScope: "device",
|
|
33187
|
+
addonId: null,
|
|
33188
|
+
access: "view"
|
|
33189
|
+
},
|
|
33155
33190
|
"pipelineAnalytics.listEventKinds": {
|
|
33156
33191
|
capName: "pipeline-analytics",
|
|
33157
33192
|
capScope: "device",
|
|
@@ -36939,6 +36974,11 @@ Object.freeze({
|
|
|
36939
36974
|
form: "array",
|
|
36940
36975
|
optional: true
|
|
36941
36976
|
}],
|
|
36977
|
+
"pipelineAnalytics.listArchivedDebugNotes": [{
|
|
36978
|
+
name: "deviceId",
|
|
36979
|
+
form: "single",
|
|
36980
|
+
optional: true
|
|
36981
|
+
}],
|
|
36942
36982
|
"pipelineAnalytics.listEventKinds": [{
|
|
36943
36983
|
name: "deviceId",
|
|
36944
36984
|
form: "single",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-smtp-nodemailer",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.86",
|
|
4
4
|
"description": "SMTP email provider addon for CamStack — wraps `nodemailer` and registers a `smtp-provider` cap collection entry. Used by magic-link login + notifier addons.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|