@camstack/addon-provider-homeassistant 1.2.11 → 1.2.13
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/addon.js +863 -283
- package/dist/addon.mjs +863 -283
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -9467,8 +9467,11 @@ function prepareNotification(caps, n) {
|
|
|
9467
9467
|
});
|
|
9468
9468
|
}
|
|
9469
9469
|
const inActions = n.actions ?? [];
|
|
9470
|
-
const
|
|
9471
|
-
if (inActions.length >
|
|
9470
|
+
const kept = inActions.slice(0, Math.max(0, caps.actions));
|
|
9471
|
+
if (inActions.length > kept.length) dropped.push("actions");
|
|
9472
|
+
const iconsSupported = caps.actionIcons === true;
|
|
9473
|
+
if (!iconsSupported && kept.some((a) => a.icon !== void 0)) dropped.push("actionIcons");
|
|
9474
|
+
const actions = iconsSupported ? kept : kept.map(({ icon: _icon, ...rest }) => rest);
|
|
9472
9475
|
let clickUrl = null;
|
|
9473
9476
|
if (n.clickUrl !== void 0) if (caps.clickUrl) clickUrl = n.clickUrl;
|
|
9474
9477
|
else dropped.push("clickUrl");
|
|
@@ -9567,6 +9570,290 @@ var MaskGridDimsSchema = object({
|
|
|
9567
9570
|
height: number()
|
|
9568
9571
|
});
|
|
9569
9572
|
/**
|
|
9573
|
+
* notification-output — canonical, capability-gated notification delivery.
|
|
9574
|
+
*
|
|
9575
|
+
* Apprise-derived model (see
|
|
9576
|
+
* `docs/superpowers/specs/2026-07-03-notification-output-notifier-matrix.md`):
|
|
9577
|
+
* callers emit ONE canonical `Notification`; each provider declares a
|
|
9578
|
+
* per-kind capability descriptor (`TargetKind`), and the pure degrade
|
|
9579
|
+
* engine (`@camstack/types` `prepareNotification`) transcodes / degrades the
|
|
9580
|
+
* message to what the kind supports — callers never special-case a service.
|
|
9581
|
+
*
|
|
9582
|
+
* DESIGN DECISIONS (locked):
|
|
9583
|
+
* - Target CRUD lives on THIS cap (`upsertTarget` / `deleteTarget` /
|
|
9584
|
+
* `setTargetEnabled`), each provider persisting via the `settings-store`
|
|
9585
|
+
* cap. Rationale: the admin UI needs one uniform surface across the
|
|
9586
|
+
* notifiers addon AND the HA addon; the addon-`globalSettingsSchema`-array
|
|
9587
|
+
* alternative would fork the UI per addon and cannot host the
|
|
9588
|
+
* discovery→adopt flow.
|
|
9589
|
+
* - `listTargetKinds` / `listTargets` / `discoverTargets` return arrays →
|
|
9590
|
+
* the generated cap-mount auto-`concatCollection`-fans them across every
|
|
9591
|
+
* registered provider (notifiers addon + HA addon) so one catalog is
|
|
9592
|
+
* routable. `send` / `testTarget` / CRUD route to ONE provider by the
|
|
9593
|
+
* `addonId` the generated collection router extracts from the call input.
|
|
9594
|
+
* - `Attachment.bytes` is `Uint8Array`. Transport-safe: superjson (the tRPC
|
|
9595
|
+
* transformer) + UDS MsgPack both round-trip typed arrays — already used by
|
|
9596
|
+
* `storage` / `storage-provider` / `recording` caps over the same path. No
|
|
9597
|
+
* base64 fallback needed.
|
|
9598
|
+
*
|
|
9599
|
+
* TODO (deferred, closed-set change — separate decision): add
|
|
9600
|
+
* `providerKind: 'notify'` so notification providers surface on the unified
|
|
9601
|
+
* admin "Integrations" page.
|
|
9602
|
+
*/
|
|
9603
|
+
/**
|
|
9604
|
+
* Zentik-derived typed-media enum — the superset across every kind. Each
|
|
9605
|
+
* adapter picks what it supports and the degrade engine filters the rest.
|
|
9606
|
+
*/
|
|
9607
|
+
var AttachmentMediaTypeSchema = _enum([
|
|
9608
|
+
"image",
|
|
9609
|
+
"video",
|
|
9610
|
+
"gif",
|
|
9611
|
+
"audio",
|
|
9612
|
+
"icon"
|
|
9613
|
+
]);
|
|
9614
|
+
/**
|
|
9615
|
+
* A single attachment. Exactly one of `url` (remote source, most adapters
|
|
9616
|
+
* prefer this) or `bytes` (inline source; required for Pushover-style
|
|
9617
|
+
* bytes-only kinds) MUST be present — the degrade engine expresses a
|
|
9618
|
+
* url→bytes fetch as a `needsFetch` directive the adapter executes.
|
|
9619
|
+
*/
|
|
9620
|
+
var AttachmentSchema = object({
|
|
9621
|
+
mediaType: AttachmentMediaTypeSchema,
|
|
9622
|
+
url: string().optional(),
|
|
9623
|
+
bytes: _instanceof(Uint8Array).optional(),
|
|
9624
|
+
mime: string().optional(),
|
|
9625
|
+
name: string().optional()
|
|
9626
|
+
}).refine((a) => a.url !== void 0 || a.bytes !== void 0, { message: "Attachment requires either `url` or `bytes`" });
|
|
9627
|
+
var NotificationFormatSchema = _enum([
|
|
9628
|
+
"text",
|
|
9629
|
+
"markdown",
|
|
9630
|
+
"html"
|
|
9631
|
+
]);
|
|
9632
|
+
/**
|
|
9633
|
+
* The CLOSED icon vocabulary an action button may use.
|
|
9634
|
+
*
|
|
9635
|
+
* A closed set, not a free string, and that is the whole point: an arbitrary
|
|
9636
|
+
* icon name is one that ntfy renders, zentik silently drops, and nobody
|
|
9637
|
+
* notices — the same class of gap as a zone vocabulary nothing produced
|
|
9638
|
+
* ([D35](../../../docs/decisions/adr-0035.md)). Every adapter maps this set or
|
|
9639
|
+
* declares `actionIcons: false` and the degrade engine strips the field.
|
|
9640
|
+
*
|
|
9641
|
+
* Named by INTENT, never by glyph. "check" would tie the vocabulary to one
|
|
9642
|
+
* renderer's icon set; "acknowledge" survives an adapter that draws it
|
|
9643
|
+
* differently.
|
|
9644
|
+
*/
|
|
9645
|
+
var NotificationActionIconSchema = _enum([
|
|
9646
|
+
"acknowledge",
|
|
9647
|
+
"dismiss",
|
|
9648
|
+
"silence",
|
|
9649
|
+
"view",
|
|
9650
|
+
"play",
|
|
9651
|
+
"open",
|
|
9652
|
+
"close",
|
|
9653
|
+
"lock",
|
|
9654
|
+
"unlock",
|
|
9655
|
+
"arm",
|
|
9656
|
+
"disarm",
|
|
9657
|
+
"light",
|
|
9658
|
+
"alert"
|
|
9659
|
+
]);
|
|
9660
|
+
/** A single tap-through action button. */
|
|
9661
|
+
var NotificationActionSchema = object({
|
|
9662
|
+
id: string(),
|
|
9663
|
+
label: string(),
|
|
9664
|
+
url: string().optional(),
|
|
9665
|
+
/** Dropped by the degrade engine for a kind with `caps.actionIcons: false`. */
|
|
9666
|
+
icon: NotificationActionIconSchema.optional(),
|
|
9667
|
+
/**
|
|
9668
|
+
* Renders in a warning style where the notifier supports it.
|
|
9669
|
+
*
|
|
9670
|
+
* A HINT, never a gate. The callback's authority is its token and nothing
|
|
9671
|
+
* else — see `notification-center/action-token.ts` for what that does and
|
|
9672
|
+
* does not buy.
|
|
9673
|
+
*/
|
|
9674
|
+
destructive: boolean().optional()
|
|
9675
|
+
});
|
|
9676
|
+
/**
|
|
9677
|
+
* The canonical notification. `body` is the only hard field (Apprise model).
|
|
9678
|
+
* `priority` is a 5-level ORDINAL (1=lowest … 3=normal(default) … 5=urgent),
|
|
9679
|
+
* NOT a fixed severity enum — each kind declares its own `caps.levels` and
|
|
9680
|
+
* the adapter maps this ordinal onto its native level. `level?` is an
|
|
9681
|
+
* optional kind-native level id (`emergency`, `silent`, …) that overrides
|
|
9682
|
+
* `priority` for that one target.
|
|
9683
|
+
*/
|
|
9684
|
+
var NotificationSchema = object({
|
|
9685
|
+
body: string(),
|
|
9686
|
+
title: string().optional(),
|
|
9687
|
+
format: NotificationFormatSchema.default("text"),
|
|
9688
|
+
priority: number().int().min(1).max(5).default(3),
|
|
9689
|
+
level: string().optional(),
|
|
9690
|
+
attachments: array(AttachmentSchema).optional(),
|
|
9691
|
+
clickUrl: string().optional(),
|
|
9692
|
+
actions: array(NotificationActionSchema).optional(),
|
|
9693
|
+
sound: string().optional(),
|
|
9694
|
+
ttl: number().optional(),
|
|
9695
|
+
tag: string().optional(),
|
|
9696
|
+
deviceId: number().optional(),
|
|
9697
|
+
eventId: string().optional(),
|
|
9698
|
+
metadata: record(string(), unknown()).optional()
|
|
9699
|
+
});
|
|
9700
|
+
/** One declared native severity/priority level for a kind. */
|
|
9701
|
+
var TargetKindLevelSchema = object({
|
|
9702
|
+
id: string(),
|
|
9703
|
+
label: string(),
|
|
9704
|
+
/** Which canonical priority (1..5) this level maps to. `null` = qualitative-only. */
|
|
9705
|
+
ordinal: number().int().min(1).max(5).nullable(),
|
|
9706
|
+
flags: object({
|
|
9707
|
+
critical: boolean().optional(),
|
|
9708
|
+
silent: boolean().optional(),
|
|
9709
|
+
noPush: boolean().optional()
|
|
9710
|
+
}).optional(),
|
|
9711
|
+
/** e.g. Pushover `emergency` requires `retry` / `expire`. */
|
|
9712
|
+
requires: array(string()).optional(),
|
|
9713
|
+
description: string().optional()
|
|
9714
|
+
});
|
|
9715
|
+
/** The full capability block consulted before dispatch. */
|
|
9716
|
+
var TargetKindCapsSchema = object({
|
|
9717
|
+
attachments: object({
|
|
9718
|
+
mediaTypes: array(AttachmentMediaTypeSchema),
|
|
9719
|
+
mode: _enum([
|
|
9720
|
+
"url",
|
|
9721
|
+
"bytes",
|
|
9722
|
+
"both"
|
|
9723
|
+
]),
|
|
9724
|
+
max: number().int().nonnegative(),
|
|
9725
|
+
maxBytes: number().int().positive().optional()
|
|
9726
|
+
}),
|
|
9727
|
+
/** Max action buttons (0 = none). */
|
|
9728
|
+
actions: number().int().nonnegative(),
|
|
9729
|
+
/**
|
|
9730
|
+
* Whether this kind renders a per-action ICON.
|
|
9731
|
+
*
|
|
9732
|
+
* `.optional()`, deliberately NOT `.default(false)`: a Zod default does not
|
|
9733
|
+
* run on the addon cap path — three production failures in one day taught
|
|
9734
|
+
* this repo that once. Absent is read as false by the degrade engine, which
|
|
9735
|
+
* is the safe direction: an icon that is not rendered costs nothing, an icon
|
|
9736
|
+
* assumed and dropped costs the operator's trust in the field.
|
|
9737
|
+
*/
|
|
9738
|
+
actionIcons: boolean().optional(),
|
|
9739
|
+
levels: array(TargetKindLevelSchema),
|
|
9740
|
+
format: array(NotificationFormatSchema),
|
|
9741
|
+
clickUrl: boolean(),
|
|
9742
|
+
sound: boolean(),
|
|
9743
|
+
ttl: boolean(),
|
|
9744
|
+
bodyMaxLen: number().int().positive()
|
|
9745
|
+
});
|
|
9746
|
+
/**
|
|
9747
|
+
* `configSchema` is a `ConfigUISchema` tree passed through to the admin
|
|
9748
|
+
* FormBuilder. Stored as `z.unknown()` at the cap seam (mirrors
|
|
9749
|
+
* `device-provider.getChildCreationSchema` `CreationSchemaOutputSchema`) —
|
|
9750
|
+
* the union is large and not meant for runtime validation here; the exported
|
|
9751
|
+
* `TargetKind` type re-tightens `configSchema` to `ConfigUISchema`.
|
|
9752
|
+
*/
|
|
9753
|
+
var ConfigSchemaPassthrough$1 = unknown();
|
|
9754
|
+
var TargetKindSchema = object({
|
|
9755
|
+
kind: string(),
|
|
9756
|
+
label: string(),
|
|
9757
|
+
icon: string(),
|
|
9758
|
+
/** Stamped by each provider so the concat-fanned catalog stays routable. */
|
|
9759
|
+
addonId: string(),
|
|
9760
|
+
/**
|
|
9761
|
+
* URL of the kind's bundled BRAND icon, served by the providing addon over
|
|
9762
|
+
* its own `addon-routes` surface (`/addon/<addonId>/icons/<kind>`). Absent
|
|
9763
|
+
* when the addon bundles no icon for that kind — the client then falls back
|
|
9764
|
+
* to a neutral glyph rather than rendering the raw `icon` NAME as text.
|
|
9765
|
+
*
|
|
9766
|
+
* Root-relative on purpose: it resolves against whatever origin serves a web
|
|
9767
|
+
* client, and a native client joins it onto its own hub base.
|
|
9768
|
+
*
|
|
9769
|
+
* DECLARED here deliberately. It used to travel as an undeclared passthrough
|
|
9770
|
+
* field that survived only because the runtime cap-router forwards provider
|
|
9771
|
+
* output verbatim — so every consumer had to re-declare it by hand to stop
|
|
9772
|
+
* its own Zod parse from stripping it, and the whole arrangement would have
|
|
9773
|
+
* broken silently the moment output validation was tightened anywhere.
|
|
9774
|
+
*/
|
|
9775
|
+
iconUrl: string().optional(),
|
|
9776
|
+
/**
|
|
9777
|
+
* Media type of {@link iconUrl} (`image/svg+xml`, `image/png`, …).
|
|
9778
|
+
*
|
|
9779
|
+
* The server knows this and therefore says it, because the client cannot
|
|
9780
|
+
* safely guess: a React-Native client renders SVG and raster through two
|
|
9781
|
+
* DIFFERENT components (`react-native-svg` vs `expo-image` — expo-image does
|
|
9782
|
+
* not decode SVG on iOS/Android), so without this it silently fell back to a
|
|
9783
|
+
* placeholder glyph for every vector icon while the web build looked fine.
|
|
9784
|
+
*
|
|
9785
|
+
* Absent when {@link iconUrl} is absent, or for a legacy provider that has
|
|
9786
|
+
* not been updated — a client that cannot determine the type should prefer
|
|
9787
|
+
* its raster path, which is the safe default for an unknown image.
|
|
9788
|
+
*/
|
|
9789
|
+
iconMediaType: string().optional(),
|
|
9790
|
+
configSchema: ConfigSchemaPassthrough$1,
|
|
9791
|
+
supportsDiscovery: boolean(),
|
|
9792
|
+
caps: TargetKindCapsSchema
|
|
9793
|
+
});
|
|
9794
|
+
/**
|
|
9795
|
+
* A persisted target. `config` holds secrets; providers REDACT secret fields
|
|
9796
|
+
* (return a presence marker only) when serving `listTargets` — never
|
|
9797
|
+
* round-trip a stored secret to the UI.
|
|
9798
|
+
*/
|
|
9799
|
+
var TargetSchema = object({
|
|
9800
|
+
id: string(),
|
|
9801
|
+
name: string(),
|
|
9802
|
+
kind: string(),
|
|
9803
|
+
addonId: string(),
|
|
9804
|
+
enabled: boolean(),
|
|
9805
|
+
config: record(string(), unknown())
|
|
9806
|
+
});
|
|
9807
|
+
/** A discovery-surfaced candidate (config is partial + non-secret). */
|
|
9808
|
+
var DiscoveredTargetSchema = object({
|
|
9809
|
+
kind: string(),
|
|
9810
|
+
suggestedName: string(),
|
|
9811
|
+
config: record(string(), unknown())
|
|
9812
|
+
});
|
|
9813
|
+
/** The degrade engine's report — what was resolved / dropped / degraded. */
|
|
9814
|
+
var RenderedAsSchema = object({
|
|
9815
|
+
level: string(),
|
|
9816
|
+
format: NotificationFormatSchema,
|
|
9817
|
+
attachmentsSent: number().int().nonnegative(),
|
|
9818
|
+
actionsSent: number().int().nonnegative(),
|
|
9819
|
+
truncated: boolean(),
|
|
9820
|
+
dropped: array(string())
|
|
9821
|
+
});
|
|
9822
|
+
var SendResultSchema = object({
|
|
9823
|
+
success: boolean(),
|
|
9824
|
+
error: string().optional(),
|
|
9825
|
+
renderedAs: RenderedAsSchema.optional()
|
|
9826
|
+
});
|
|
9827
|
+
/** Same shape as SendResult — kept as a distinct name for the test panel. */
|
|
9828
|
+
var TestResultSchema = SendResultSchema;
|
|
9829
|
+
var notificationOutputCapability = {
|
|
9830
|
+
name: "notification-output",
|
|
9831
|
+
scope: "system",
|
|
9832
|
+
mode: "collection",
|
|
9833
|
+
methods: {
|
|
9834
|
+
listTargetKinds: method(object({}), array(TargetKindSchema)),
|
|
9835
|
+
listTargets: method(object({}), array(TargetSchema)),
|
|
9836
|
+
discoverTargets: method(object({
|
|
9837
|
+
kind: string(),
|
|
9838
|
+
config: record(string(), unknown()).optional()
|
|
9839
|
+
}), array(DiscoveredTargetSchema)),
|
|
9840
|
+
send: method(object({
|
|
9841
|
+
targetId: string(),
|
|
9842
|
+
notification: NotificationSchema
|
|
9843
|
+
}), SendResultSchema, { kind: "mutation" }),
|
|
9844
|
+
testTarget: method(object({
|
|
9845
|
+
targetId: string(),
|
|
9846
|
+
sample: NotificationSchema.optional()
|
|
9847
|
+
}), TestResultSchema, { kind: "mutation" }),
|
|
9848
|
+
upsertTarget: method(object({ target: TargetSchema }), TargetSchema, { kind: "mutation" }),
|
|
9849
|
+
deleteTarget: method(object({ targetId: string() }), _void(), { kind: "mutation" }),
|
|
9850
|
+
setTargetEnabled: method(object({
|
|
9851
|
+
targetId: string(),
|
|
9852
|
+
enabled: boolean()
|
|
9853
|
+
}), _void(), { kind: "mutation" })
|
|
9854
|
+
}
|
|
9855
|
+
};
|
|
9856
|
+
/**
|
|
9570
9857
|
* notification-rules — the Notification Center rule surface (P1 core).
|
|
9571
9858
|
*
|
|
9572
9859
|
* Spec: `docs/superpowers/specs/2026-07-22-notification-center-requirements.md`
|
|
@@ -9696,7 +9983,115 @@ var NcZoneConditionSchema = object({
|
|
|
9696
9983
|
* The P1 condition set — a flat AND of groups; absent group = pass;
|
|
9697
9984
|
* membership lists are OR within the list (spec §2.3).
|
|
9698
9985
|
*/
|
|
9986
|
+
/**
|
|
9987
|
+
* What a rule may actuate.
|
|
9988
|
+
*
|
|
9989
|
+
* **No hand-maintained allowlist** (operator decision, and the right one — a
|
|
9990
|
+
* written list of methods is a third parallel map to keep aligned, and this
|
|
9991
|
+
* repo has paid for those). The boundary instead comes from a property the
|
|
9992
|
+
* capabilities already carry: an action may target only a **device-scoped**
|
|
9993
|
+
* capability method.
|
|
9994
|
+
*
|
|
9995
|
+
* That is not decoration. A rule can be authored by a NON-ADMIN — personal
|
|
9996
|
+
* rules are a supported flow — and the executor runs with the addon's
|
|
9997
|
+
* privileges, so an unbounded action is an arbitrary RPC channel with a
|
|
9998
|
+
* privilege escalation attached. Restricting to device scope excludes the
|
|
9999
|
+
* system caps (`device-manager.removeDevice` and friends) by construction,
|
|
10000
|
+
* costs nothing to maintain, and cannot rot: a cap that stops being
|
|
10001
|
+
* device-scoped stops being actuatable in the same change.
|
|
10002
|
+
*
|
|
10003
|
+
* The executor enforces it; {@link NcRuleActionSchema} carries the intent.
|
|
10004
|
+
*/
|
|
10005
|
+
/**
|
|
10006
|
+
* One step of a sequence.
|
|
10007
|
+
*
|
|
10008
|
+
* `wait` is a first-class step rather than a property of the next action: it is
|
|
10009
|
+
* what makes a sequence a SEQUENCE and not a list — "unlock, wait 5s, open"
|
|
10010
|
+
* cannot be expressed otherwise.
|
|
10011
|
+
*/
|
|
10012
|
+
var NcRuleActionSchema = discriminatedUnion("kind", [object({
|
|
10013
|
+
kind: literal("wait"),
|
|
10014
|
+
seconds: number().min(0).max(300)
|
|
10015
|
+
}), object({
|
|
10016
|
+
kind: literal("cap"),
|
|
10017
|
+
deviceId: number().int(),
|
|
10018
|
+
/** Capability name, e.g. `alarm-panel`. */
|
|
10019
|
+
cap: string().min(1),
|
|
10020
|
+
/** Method on it. The executor refuses a non-device-scoped cap. */
|
|
10021
|
+
method: string().min(1),
|
|
10022
|
+
/** Method arguments, minus `deviceId` (the executor injects it). */
|
|
10023
|
+
args: record(string(), unknown()).optional()
|
|
10024
|
+
})]);
|
|
10025
|
+
/**
|
|
10026
|
+
* A named, ordered run of steps with its own throttle.
|
|
10027
|
+
*
|
|
10028
|
+
* `minDelaySec` exists because a noisy rule otherwise hammers a physical
|
|
10029
|
+
* actuator — the rule's own cooldown governs NOTIFICATIONS, which is a
|
|
10030
|
+
* different budget from "how often may this gate actually open".
|
|
10031
|
+
*/
|
|
10032
|
+
var NcRuleActionSequenceSchema = object({
|
|
10033
|
+
name: string().min(1).max(120),
|
|
10034
|
+
enabled: boolean(),
|
|
10035
|
+
minDelaySec: number().int().min(0).max(86400).optional(),
|
|
10036
|
+
actions: array(NcRuleActionSchema).min(1)
|
|
10037
|
+
});
|
|
10038
|
+
/**
|
|
10039
|
+
* One button carried by the notification, running a named sequence on tap.
|
|
10040
|
+
*
|
|
10041
|
+
* **Read this before adding a button that does something physical.** The tap
|
|
10042
|
+
* arrives over a link that travelled through third-party infrastructure — ntfy,
|
|
10043
|
+
* a push relay, whatever forwarded the message — and the callback's ONLY
|
|
10044
|
+
* authority is the token in that link: single-use, short-lived, bound to this
|
|
10045
|
+
* one action of this one notification. It does not identify who tapped.
|
|
10046
|
+
* Whoever holds the notification can run the button, once, inside the window.
|
|
10047
|
+
* That is the operator's explicit choice (2026-08-05), and `destructive` is a
|
|
10048
|
+
* rendering hint, not a second gate. [D47](decisions/adr-0047.md).
|
|
10049
|
+
*/
|
|
10050
|
+
var NcRuleNotificationButtonSchema = object({
|
|
10051
|
+
/** Stable id — travels in the callback and identifies the button in logs. */
|
|
10052
|
+
id: string().min(1).max(64),
|
|
10053
|
+
label: string().min(1).max(40),
|
|
10054
|
+
/** Name of a sequence in `onTrigger`. The dispatcher drops a button whose
|
|
10055
|
+
* sequence does not exist rather than minting a token for nothing. */
|
|
10056
|
+
sequence: string().min(1).max(120),
|
|
10057
|
+
icon: NotificationActionIconSchema.optional(),
|
|
10058
|
+
destructive: boolean().optional()
|
|
10059
|
+
});
|
|
10060
|
+
/**
|
|
10061
|
+
* Sequences a rule runs, by hook point.
|
|
10062
|
+
*
|
|
10063
|
+
* ONLY `onTrigger` is here, deliberately. The reference also has activation /
|
|
10064
|
+
* deactivation / reset / post-generation hooks, and they are wanted — but this
|
|
10065
|
+
* repo's expensive failure mode is declaring a surface nothing produces, so a
|
|
10066
|
+
* hook appears here in the same change that produces its edge, never before.
|
|
10067
|
+
*/
|
|
10068
|
+
var NcRuleActionsSchema = object({
|
|
10069
|
+
/** Runs when the rule MATCHES. */
|
|
10070
|
+
onTrigger: array(NcRuleActionSequenceSchema).optional(),
|
|
10071
|
+
/**
|
|
10072
|
+
* Buttons the NOTIFICATION carries, each running one of this rule's
|
|
10073
|
+
* sequences when tapped.
|
|
10074
|
+
*
|
|
10075
|
+
* Deliberately a REFERENCE to a sequence rather than a second place to
|
|
10076
|
+
* author steps. A button that could define its own actions would be a
|
|
10077
|
+
* parallel actuation vocabulary — the executor's device-scope check, the
|
|
10078
|
+
* stop-at-first-failure rule and the per-sequence throttle all live on
|
|
10079
|
+
* sequences, and a second authoring surface would drift from every one of
|
|
10080
|
+
* them.
|
|
10081
|
+
*
|
|
10082
|
+
* A sequence reachable ONLY by a button simply appears in `onTrigger` with
|
|
10083
|
+
* `enabled: false`: it is then authored, throttled and validated like the
|
|
10084
|
+
* rest, and nothing runs it automatically.
|
|
10085
|
+
*/
|
|
10086
|
+
buttons: array(NcRuleNotificationButtonSchema).max(8).optional()
|
|
10087
|
+
});
|
|
9699
10088
|
var NcConditionsSchema = object({
|
|
10089
|
+
/** Gate on ANOTHER device's current state (the alarm armed, a switch on). */
|
|
10090
|
+
deviceState: object({
|
|
10091
|
+
deviceId: number().int(),
|
|
10092
|
+
/** Any of these matches. */
|
|
10093
|
+
states: array(string().min(1)).min(1)
|
|
10094
|
+
}).optional(),
|
|
9700
10095
|
/** Device scope — absent = all devices. */
|
|
9701
10096
|
devices: array(number()).optional(),
|
|
9702
10097
|
/** Detector class names (any overlap with the record's class set). */
|
|
@@ -9897,6 +10292,14 @@ var NcMediaPolicySchema = object({
|
|
|
9897
10292
|
clipPreRollSec: number().int().min(0).max(30).optional(),
|
|
9898
10293
|
clipPostRollSec: number().int().min(0).max(30).optional(),
|
|
9899
10294
|
/**
|
|
10295
|
+
* Playback rate of the attached gif / clip. Absent = 2x.
|
|
10296
|
+
*
|
|
10297
|
+
* A notification clip is GLANCED at on a lock screen, not watched: at real
|
|
10298
|
+
* time an eight-second passage is eight seconds of the recipient's attention
|
|
10299
|
+
* and twice the bytes. 1 is real time for the operator who wants it.
|
|
10300
|
+
*/
|
|
10301
|
+
clipSpeed: number().min(1).max(8).optional(),
|
|
10302
|
+
/**
|
|
9900
10303
|
* Which stream profile the footage is cut from. Absent = the CHEAPEST
|
|
9901
10304
|
* assigned profile: a notification is watched on a phone, so the 4K
|
|
9902
10305
|
* rendition would burn CPU to produce a file the client downscales anyway.
|
|
@@ -9968,7 +10371,30 @@ var NcRuleInputSchema = object({
|
|
|
9968
10371
|
* behaviour, visible to all, read-only in the viewer). Present = personal
|
|
9969
10372
|
* rule owned by this userId. Server-stamped; never trusted from a client.
|
|
9970
10373
|
*/
|
|
9971
|
-
ownerUserId: string().optional()
|
|
10374
|
+
ownerUserId: string().optional(),
|
|
10375
|
+
/**
|
|
10376
|
+
* May a non-admin snooze this rule for EVERYONE, not just themselves?
|
|
10377
|
+
*
|
|
10378
|
+
* A snooze is personal by default — it silences the person who set it. This
|
|
10379
|
+
* opts THIS rule into the "the gardener is here all afternoon" case, where
|
|
10380
|
+
* silencing the camera for the whole household is legitimate. It silences
|
|
10381
|
+
* other people, so it is off unless a rule deliberately allows it.
|
|
10382
|
+
*
|
|
10383
|
+
* `.optional()`, deliberately NOT `.default()`: a Zod default does not run on
|
|
10384
|
+
* the addon cap path (three production failures in one day), so absent is
|
|
10385
|
+
* read as `false` by {@link canSetGlobal} in the engine. Admins are not bound
|
|
10386
|
+
* by this flag — see the scope rules on that function.
|
|
10387
|
+
*/
|
|
10388
|
+
snoozeAllowGlobal: boolean().optional(),
|
|
10389
|
+
/**
|
|
10390
|
+
* Devices this rule ACTUATES — arm the alarm, open a gate, turn on a light.
|
|
10391
|
+
*
|
|
10392
|
+
* This is what makes the rule set the alarm's trigger set without the alarm
|
|
10393
|
+
* being a special case: arming is
|
|
10394
|
+
* `{ cap: 'alarm-panel', method: 'arm', args: { mode: 'away' } }`, the same
|
|
10395
|
+
* shape as every other actuation.
|
|
10396
|
+
*/
|
|
10397
|
+
actions: NcRuleActionsSchema.optional()
|
|
9972
10398
|
});
|
|
9973
10399
|
/**
|
|
9974
10400
|
* Partial patch for `updateRule` — any subset of the input fields, plus the
|
|
@@ -10039,7 +10465,8 @@ var NcConditionDescriptorSchema = object({
|
|
|
10039
10465
|
"packagePhase",
|
|
10040
10466
|
"crossingSelect",
|
|
10041
10467
|
"polygonDraw",
|
|
10042
|
-
"occupancy"
|
|
10468
|
+
"occupancy",
|
|
10469
|
+
"deviceState"
|
|
10043
10470
|
]),
|
|
10044
10471
|
operator: _enum([
|
|
10045
10472
|
"in",
|
|
@@ -10053,7 +10480,28 @@ var NcConditionDescriptorSchema = object({
|
|
|
10053
10480
|
/** Which delivery kinds the condition applies to. */
|
|
10054
10481
|
appliesTo: array(NcDeliverySchema),
|
|
10055
10482
|
phase: string(),
|
|
10056
|
-
description: string().optional()
|
|
10483
|
+
description: string().optional(),
|
|
10484
|
+
/**
|
|
10485
|
+
* The CHOICES for a single-choice widget (`sourceSelect`, `crossingSelect`,
|
|
10486
|
+
* `packagePhase`, …), served with the descriptor.
|
|
10487
|
+
*
|
|
10488
|
+
* Before this the descriptor said which widget to render and not what to put
|
|
10489
|
+
* in it, so every option list lived in three places: this file's enums, the
|
|
10490
|
+
* admin's `NC_*_OPTIONS` and the viewer's `NC_*_VALUES`. That triple mirror
|
|
10491
|
+
* is the drift that emptied the viewer's rule editor on 2026-08-04 — the app
|
|
10492
|
+
* mirrors the cap by hand, so it is only ever as current as its last build.
|
|
10493
|
+
*
|
|
10494
|
+
* With the options on the wire, a condition of an EXISTING `valueType` costs
|
|
10495
|
+
* zero client changes. Clients keep a local fallback for an older hub that
|
|
10496
|
+
* does not send them; absent here is "use your own list", not "no choices".
|
|
10497
|
+
*/
|
|
10498
|
+
options: array(object({
|
|
10499
|
+
/** Written to the rule verbatim. `''` means the ABSENT state. */
|
|
10500
|
+
value: string(),
|
|
10501
|
+
label: string(),
|
|
10502
|
+
/** What THIS choice matches — shown one at a time, under the control. */
|
|
10503
|
+
hint: string().optional()
|
|
10504
|
+
})).readonly().optional()
|
|
10057
10505
|
});
|
|
10058
10506
|
/**
|
|
10059
10507
|
* The delivery lifecycle status of a history row — a straight read of the
|
|
@@ -10138,6 +10586,74 @@ var NcHistoryFilterSchema = object({
|
|
|
10138
10586
|
until: number().optional(),
|
|
10139
10587
|
limit: number().int().min(1).max(500).default(100)
|
|
10140
10588
|
});
|
|
10589
|
+
/**
|
|
10590
|
+
* What a snooze covers. Broader scopes win when several overlap, so one window
|
|
10591
|
+
* leaves ONE digest rather than a rule snooze and a whole-feed snooze both
|
|
10592
|
+
* summarising the same silence.
|
|
10593
|
+
*/
|
|
10594
|
+
var NcSnoozeScopeSchema = _enum([
|
|
10595
|
+
"rule",
|
|
10596
|
+
"device",
|
|
10597
|
+
"all"
|
|
10598
|
+
]);
|
|
10599
|
+
/**
|
|
10600
|
+
* Client-authored snooze. The server stamps `userId`, `startedAt` and
|
|
10601
|
+
* `expiresAt` — a DURATION is sent rather than an instant so a client with a
|
|
10602
|
+
* skewed clock cannot author a window that is already over, or never ends.
|
|
10603
|
+
*/
|
|
10604
|
+
var NcSnoozeInputSchema = object({
|
|
10605
|
+
scope: NcSnoozeScopeSchema,
|
|
10606
|
+
/** Required when `scope: 'rule'` — a scoped snooze with no id matches
|
|
10607
|
+
* NOTHING rather than degrading to "everything". */
|
|
10608
|
+
ruleId: string().optional(),
|
|
10609
|
+
/** Required when `scope: 'device'`. */
|
|
10610
|
+
deviceId: number().int().optional(),
|
|
10611
|
+
durationMinutes: number().int().min(1).max(1440),
|
|
10612
|
+
/**
|
|
10613
|
+
* Silence this for EVERY recipient, not just the caller. Permission is
|
|
10614
|
+
* checked server-side (the rule's `snoozeAllowGlobal`, or admin for the
|
|
10615
|
+
* broader scopes). Absent = personal.
|
|
10616
|
+
*/
|
|
10617
|
+
global: boolean().optional(),
|
|
10618
|
+
/**
|
|
10619
|
+
* Deliver a summary of what was suppressed when the window ends. Absent =
|
|
10620
|
+
* ON: someone silencing a nuisance camera wants it off, someone silencing a
|
|
10621
|
+
* SECURITY camera wants to know what they missed, and choosing "off" for
|
|
10622
|
+
* everybody is how a snooze becomes an outage. Resolved to a concrete
|
|
10623
|
+
* boolean by the server at create time — never left to a Zod default, which
|
|
10624
|
+
* does not run on the addon cap path.
|
|
10625
|
+
*/
|
|
10626
|
+
summary: boolean().optional()
|
|
10627
|
+
});
|
|
10628
|
+
/** A persisted snooze window. */
|
|
10629
|
+
var NcSnoozeSchema = object({
|
|
10630
|
+
id: string(),
|
|
10631
|
+
/** Who set it. Also who it silences, unless `global`. */
|
|
10632
|
+
userId: string(),
|
|
10633
|
+
scope: NcSnoozeScopeSchema,
|
|
10634
|
+
ruleId: string().optional(),
|
|
10635
|
+
deviceId: number().int().optional(),
|
|
10636
|
+
startedAt: number(),
|
|
10637
|
+
/** Exclusive: at exactly this instant the snooze is over. Expiry is a
|
|
10638
|
+
* COMPARISON, not a job — no sweeper can leave the operator silenced. */
|
|
10639
|
+
expiresAt: number(),
|
|
10640
|
+
global: boolean(),
|
|
10641
|
+
summary: boolean(),
|
|
10642
|
+
/** When the end-of-window digest went out. Absent = not sent (yet, or the
|
|
10643
|
+
* window has not closed, or `summary` is false). */
|
|
10644
|
+
digestSentAt: number().optional()
|
|
10645
|
+
});
|
|
10646
|
+
object({
|
|
10647
|
+
snoozeId: string(),
|
|
10648
|
+
targetId: string(),
|
|
10649
|
+
ruleId: string(),
|
|
10650
|
+
ruleName: string(),
|
|
10651
|
+
deviceId: number().int(),
|
|
10652
|
+
/** How many notifications this snooze hid for that pair. */
|
|
10653
|
+
count: number().int(),
|
|
10654
|
+
firstAt: number(),
|
|
10655
|
+
lastAt: number()
|
|
10656
|
+
});
|
|
10141
10657
|
method(object({}), object({ rules: array(NcRuleSchema) }), { auth: "admin" }), method(object({ ruleId: string() }), object({ rule: NcRuleSchema.nullable() }), { auth: "admin" }), method(object({ rule: NcRuleInputSchema }), object({ rule: NcRuleSchema }), {
|
|
10142
10658
|
kind: "mutation",
|
|
10143
10659
|
auth: "admin",
|
|
@@ -10167,7 +10683,13 @@ method(object({}), object({ rules: array(NcRuleSchema) }), { auth: "admin" }), m
|
|
|
10167
10683
|
}), method(object({}), object({
|
|
10168
10684
|
catalog: array(NcConditionDescriptorSchema),
|
|
10169
10685
|
taxonomy: NcTaxonomySchema.optional()
|
|
10170
|
-
})), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" })
|
|
10686
|
+
})), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" }), method(object({}), object({ snoozes: array(NcSnoozeSchema) }), { caller: "required" }), method(object({ snooze: NcSnoozeInputSchema }), object({ snooze: NcSnoozeSchema }), {
|
|
10687
|
+
kind: "mutation",
|
|
10688
|
+
caller: "required"
|
|
10689
|
+
}), method(object({ snoozeId: string() }), object({ success: literal(true) }), {
|
|
10690
|
+
kind: "mutation",
|
|
10691
|
+
caller: "required"
|
|
10692
|
+
});
|
|
10171
10693
|
/**
|
|
10172
10694
|
* TimelapseRule — the STANDALONE scheduled timelapse producer's rule model.
|
|
10173
10695
|
*
|
|
@@ -11187,7 +11709,15 @@ method(object({
|
|
|
11187
11709
|
format: _enum(["gif", "mp4"]).default("gif"),
|
|
11188
11710
|
maxWidth: number().int().min(120).max(1920).default(480),
|
|
11189
11711
|
/** GIF only — MP4 keeps the source cadence. */
|
|
11190
|
-
fps: number().int().min(1).max(15).default(5)
|
|
11712
|
+
fps: number().int().min(1).max(15).default(5),
|
|
11713
|
+
/**
|
|
11714
|
+
* Playback rate. A notification clip is GLANCED at on a lock screen,
|
|
11715
|
+
* not watched, so 2x is the default: the recipient sees the whole
|
|
11716
|
+
* passage in half the time and the GIF is half the bytes. `1` is real
|
|
11717
|
+
* time. Applies to MP4 as well — the operator set a speed, not a GIF
|
|
11718
|
+
* speed.
|
|
11719
|
+
*/
|
|
11720
|
+
speed: number().min(1).max(8).default(2)
|
|
11191
11721
|
}), object({
|
|
11192
11722
|
base64: string(),
|
|
11193
11723
|
mime: string(),
|
|
@@ -18313,6 +18843,20 @@ var GetInputSchema = object({ id: string() });
|
|
|
18313
18843
|
var AddInputSchema = object({
|
|
18314
18844
|
kind: string().min(1),
|
|
18315
18845
|
name: string().min(1),
|
|
18846
|
+
/**
|
|
18847
|
+
* ADOPT an existing id instead of minting a new one.
|
|
18848
|
+
*
|
|
18849
|
+
* Written the day this cost an outage. A broker's id is not a detail: HA
|
|
18850
|
+
* devices carry it inside their `stableId` (`ha:ha_004:dev:…`), so a broker
|
|
18851
|
+
* lost from config and re-added as `ha_001` leaves every one of its devices
|
|
18852
|
+
* bound to a broker that no longer exists. Re-entering the password under the
|
|
18853
|
+
* ORIGINAL id turns a multi-step device migration back into re-entering a
|
|
18854
|
+
* password.
|
|
18855
|
+
*
|
|
18856
|
+
* A provider MUST refuse an id that is already in use — adopting a live
|
|
18857
|
+
* broker's id would silently take it over.
|
|
18858
|
+
*/
|
|
18859
|
+
id: string().min(1).optional(),
|
|
18316
18860
|
/** Kind-specific settings (e.g. MQTT `{url,username,password}` or HA
|
|
18317
18861
|
* `{baseUrl,accessToken}`). Validated by the kind-specific provider
|
|
18318
18862
|
* branch on receipt — invalid shape rejects the add. */
|
|
@@ -19424,7 +19968,20 @@ method(object({
|
|
|
19424
19968
|
}), _void(), {
|
|
19425
19969
|
kind: "mutation",
|
|
19426
19970
|
auth: "admin"
|
|
19427
|
-
}), method(object({ addonId: string() }), array(SavedDeviceRowSchema)), method(object({
|
|
19971
|
+
}), method(object({ addonId: string() }), array(SavedDeviceRowSchema)), method(object({
|
|
19972
|
+
addonId: string().optional(),
|
|
19973
|
+
/**
|
|
19974
|
+
* `slim` omits `config` (returned `{}`), `metadata` (null) and the
|
|
19975
|
+
* `sourceInfo` derived from config — and skips the per-device settings
|
|
19976
|
+
* read that produces them. Everything identifying a device (id, name,
|
|
19977
|
+
* type, online, features, isCamera, parent/link ids) is unchanged.
|
|
19978
|
+
* Do not use it for dispatch routing, which needs `sourceInfo`.
|
|
19979
|
+
*/
|
|
19980
|
+
projection: _enum(["full", "slim"]).optional(),
|
|
19981
|
+
/** Return only camera devices. Filtering server-side instead of
|
|
19982
|
+
* shipping 293 rows to find 12. */
|
|
19983
|
+
isCamera: boolean().optional()
|
|
19984
|
+
}), array(DeviceInfoSchema)), method(object({ deviceId: number() }), DeviceInfoSchema.nullable()), method(object({ parentDeviceId: number() }), array(DeviceInfoSchema)), method(object({ deviceId: number() }), object({
|
|
19428
19985
|
mode: DeviceLinkModeSchema,
|
|
19429
19986
|
devices: array(LinkedDeviceSchema)
|
|
19430
19987
|
})), method(object({ deviceId: number() }), array(StreamSourceEntrySchema$1)), method(object({ deviceId: number() }), array(ConfigEntrySchema)), method(object({ deviceId: number() }), ConfigUISchemaOutput), method(object({
|
|
@@ -19863,14 +20420,14 @@ var LlmProfileSchema = object({
|
|
|
19863
20420
|
/** ConfigUISchema tree passed through untyped on the wire (the
|
|
19864
20421
|
* notification-output `ConfigSchemaPassthrough` precedent at
|
|
19865
20422
|
* notification-output.cap.ts:151); the exported TS type re-tightens it. */
|
|
19866
|
-
var ConfigSchemaPassthrough
|
|
20423
|
+
var ConfigSchemaPassthrough = unknown();
|
|
19867
20424
|
var LlmProfileKindDescriptorSchema = object({
|
|
19868
20425
|
kind: LlmProfileKindSchema,
|
|
19869
20426
|
label: string(),
|
|
19870
20427
|
icon: string(),
|
|
19871
20428
|
/** Stamped by each provider so the concat-fanned catalog stays routable. */
|
|
19872
20429
|
addonId: string(),
|
|
19873
|
-
configSchema: ConfigSchemaPassthrough
|
|
20430
|
+
configSchema: ConfigSchemaPassthrough
|
|
19874
20431
|
});
|
|
19875
20432
|
var LlmDefaultSelectorSchema = union([object({ consumer: string() }), object({ purpose: _enum(["text", "vision"]) })]);
|
|
19876
20433
|
var LlmDefaultSchema = object({
|
|
@@ -20367,275 +20924,136 @@ var StatusSchema = object({
|
|
|
20367
20924
|
embeddedRunning: boolean()
|
|
20368
20925
|
});
|
|
20369
20926
|
method(_void(), array(BrokerInfoSchema)), method(IdInputSchema, BrokerConnectionDetailsSchema), method(AddBrokerInputSchema, AddBrokerResultSchema, { kind: "mutation" }), method(IdInputSchema, _void(), { kind: "mutation" }), method(IdInputSchema, TestResultSchema$1, { kind: "mutation" }), method(StartEmbeddedInputSchema, StartEmbeddedResultSchema, { kind: "mutation" }), method(IdInputSchema, _void(), { kind: "mutation" }), method(_void(), StatusSchema);
|
|
20370
|
-
var NetworkEndpointSchema = object({
|
|
20371
|
-
url: string(),
|
|
20372
|
-
hostname: string(),
|
|
20373
|
-
port: number(),
|
|
20374
|
-
protocol: _enum(["http", "https"])
|
|
20375
|
-
});
|
|
20376
|
-
var NetworkAccessStatusSchema = object({
|
|
20377
|
-
connected: boolean(),
|
|
20378
|
-
endpoint: NetworkEndpointSchema.nullable(),
|
|
20379
|
-
error: string().optional()
|
|
20380
|
-
});
|
|
20381
|
-
/**
|
|
20382
|
-
* Optional, richer endpoint shape returned by providers that expose
|
|
20383
|
-
* MORE than one ingress concurrently (Tailscale Ingress with mixed
|
|
20384
|
-
* serve+funnel rules, future ngrok multi-tunnel, …). Each entry carries
|
|
20385
|
-
* the originating provider config (mode + sourcePort) so the
|
|
20386
|
-
* orchestrator UI can label rows distinctly. Providers that expose only
|
|
20387
|
-
* one endpoint just omit `listEndpoints` from their provider impl.
|
|
20388
|
-
*/
|
|
20389
|
-
var NetworkEndpointEntrySchema = NetworkEndpointSchema.extend({
|
|
20390
|
-
/**
|
|
20391
|
-
* Stable id within the provider — typically `<mode>-<sourcePort>` so
|
|
20392
|
-
* the orchestrator can dedupe across `listEndpoints` polls.
|
|
20393
|
-
*/
|
|
20394
|
-
id: string(),
|
|
20395
|
-
/** Operator-facing label (mirrors `MeshEndpoint.label`). */
|
|
20396
|
-
label: string(),
|
|
20397
|
-
/** Optional provider-specific mode tag, used for icon/colour in admin UI. */
|
|
20398
|
-
mode: string().optional(),
|
|
20399
|
-
/** Originating local port the ingress fronts (informational). */
|
|
20400
|
-
sourcePort: number().optional()
|
|
20401
|
-
});
|
|
20402
|
-
method(_void(), NetworkEndpointSchema, { kind: "mutation" }), method(_void(), _void(), { kind: "mutation" }), method(_void(), NetworkEndpointSchema.nullable()), method(_void(), NetworkAccessStatusSchema), method(_void(), array(NetworkEndpointEntrySchema).readonly());
|
|
20403
|
-
/**
|
|
20404
|
-
* notification-output — canonical, capability-gated notification delivery.
|
|
20405
|
-
*
|
|
20406
|
-
* Apprise-derived model (see
|
|
20407
|
-
* `docs/superpowers/specs/2026-07-03-notification-output-notifier-matrix.md`):
|
|
20408
|
-
* callers emit ONE canonical `Notification`; each provider declares a
|
|
20409
|
-
* per-kind capability descriptor (`TargetKind`), and the pure degrade
|
|
20410
|
-
* engine (`@camstack/types` `prepareNotification`) transcodes / degrades the
|
|
20411
|
-
* message to what the kind supports — callers never special-case a service.
|
|
20412
|
-
*
|
|
20413
|
-
* DESIGN DECISIONS (locked):
|
|
20414
|
-
* - Target CRUD lives on THIS cap (`upsertTarget` / `deleteTarget` /
|
|
20415
|
-
* `setTargetEnabled`), each provider persisting via the `settings-store`
|
|
20416
|
-
* cap. Rationale: the admin UI needs one uniform surface across the
|
|
20417
|
-
* notifiers addon AND the HA addon; the addon-`globalSettingsSchema`-array
|
|
20418
|
-
* alternative would fork the UI per addon and cannot host the
|
|
20419
|
-
* discovery→adopt flow.
|
|
20420
|
-
* - `listTargetKinds` / `listTargets` / `discoverTargets` return arrays →
|
|
20421
|
-
* the generated cap-mount auto-`concatCollection`-fans them across every
|
|
20422
|
-
* registered provider (notifiers addon + HA addon) so one catalog is
|
|
20423
|
-
* routable. `send` / `testTarget` / CRUD route to ONE provider by the
|
|
20424
|
-
* `addonId` the generated collection router extracts from the call input.
|
|
20425
|
-
* - `Attachment.bytes` is `Uint8Array`. Transport-safe: superjson (the tRPC
|
|
20426
|
-
* transformer) + UDS MsgPack both round-trip typed arrays — already used by
|
|
20427
|
-
* `storage` / `storage-provider` / `recording` caps over the same path. No
|
|
20428
|
-
* base64 fallback needed.
|
|
20429
|
-
*
|
|
20430
|
-
* TODO (deferred, closed-set change — separate decision): add
|
|
20431
|
-
* `providerKind: 'notify'` so notification providers surface on the unified
|
|
20432
|
-
* admin "Integrations" page.
|
|
20433
|
-
*/
|
|
20434
|
-
/**
|
|
20435
|
-
* Zentik-derived typed-media enum — the superset across every kind. Each
|
|
20436
|
-
* adapter picks what it supports and the degrade engine filters the rest.
|
|
20437
|
-
*/
|
|
20438
|
-
var AttachmentMediaTypeSchema = _enum([
|
|
20439
|
-
"image",
|
|
20440
|
-
"video",
|
|
20441
|
-
"gif",
|
|
20442
|
-
"audio",
|
|
20443
|
-
"icon"
|
|
20444
|
-
]);
|
|
20445
|
-
/**
|
|
20446
|
-
* A single attachment. Exactly one of `url` (remote source, most adapters
|
|
20447
|
-
* prefer this) or `bytes` (inline source; required for Pushover-style
|
|
20448
|
-
* bytes-only kinds) MUST be present — the degrade engine expresses a
|
|
20449
|
-
* url→bytes fetch as a `needsFetch` directive the adapter executes.
|
|
20450
|
-
*/
|
|
20451
|
-
var AttachmentSchema = object({
|
|
20452
|
-
mediaType: AttachmentMediaTypeSchema,
|
|
20453
|
-
url: string().optional(),
|
|
20454
|
-
bytes: _instanceof(Uint8Array).optional(),
|
|
20455
|
-
mime: string().optional(),
|
|
20456
|
-
name: string().optional()
|
|
20457
|
-
}).refine((a) => a.url !== void 0 || a.bytes !== void 0, { message: "Attachment requires either `url` or `bytes`" });
|
|
20458
|
-
var NotificationFormatSchema = _enum([
|
|
20459
|
-
"text",
|
|
20460
|
-
"markdown",
|
|
20461
|
-
"html"
|
|
20462
|
-
]);
|
|
20463
|
-
/** A single tap-through action button. */
|
|
20464
|
-
var NotificationActionSchema = object({
|
|
20465
|
-
id: string(),
|
|
20466
|
-
label: string(),
|
|
20467
|
-
url: string().optional()
|
|
20468
|
-
});
|
|
20469
|
-
/**
|
|
20470
|
-
* The canonical notification. `body` is the only hard field (Apprise model).
|
|
20471
|
-
* `priority` is a 5-level ORDINAL (1=lowest … 3=normal(default) … 5=urgent),
|
|
20472
|
-
* NOT a fixed severity enum — each kind declares its own `caps.levels` and
|
|
20473
|
-
* the adapter maps this ordinal onto its native level. `level?` is an
|
|
20474
|
-
* optional kind-native level id (`emergency`, `silent`, …) that overrides
|
|
20475
|
-
* `priority` for that one target.
|
|
20476
|
-
*/
|
|
20477
|
-
var NotificationSchema = object({
|
|
20478
|
-
body: string(),
|
|
20479
|
-
title: string().optional(),
|
|
20480
|
-
format: NotificationFormatSchema.default("text"),
|
|
20481
|
-
priority: number().int().min(1).max(5).default(3),
|
|
20482
|
-
level: string().optional(),
|
|
20483
|
-
attachments: array(AttachmentSchema).optional(),
|
|
20484
|
-
clickUrl: string().optional(),
|
|
20485
|
-
actions: array(NotificationActionSchema).optional(),
|
|
20486
|
-
sound: string().optional(),
|
|
20487
|
-
ttl: number().optional(),
|
|
20488
|
-
tag: string().optional(),
|
|
20489
|
-
deviceId: number().optional(),
|
|
20490
|
-
eventId: string().optional(),
|
|
20491
|
-
metadata: record(string(), unknown()).optional()
|
|
20492
|
-
});
|
|
20493
|
-
/** One declared native severity/priority level for a kind. */
|
|
20494
|
-
var TargetKindLevelSchema = object({
|
|
20495
|
-
id: string(),
|
|
20496
|
-
label: string(),
|
|
20497
|
-
/** Which canonical priority (1..5) this level maps to. `null` = qualitative-only. */
|
|
20498
|
-
ordinal: number().int().min(1).max(5).nullable(),
|
|
20499
|
-
flags: object({
|
|
20500
|
-
critical: boolean().optional(),
|
|
20501
|
-
silent: boolean().optional(),
|
|
20502
|
-
noPush: boolean().optional()
|
|
20503
|
-
}).optional(),
|
|
20504
|
-
/** e.g. Pushover `emergency` requires `retry` / `expire`. */
|
|
20505
|
-
requires: array(string()).optional(),
|
|
20506
|
-
description: string().optional()
|
|
20927
|
+
var NetworkEndpointSchema = object({
|
|
20928
|
+
url: string(),
|
|
20929
|
+
hostname: string(),
|
|
20930
|
+
port: number(),
|
|
20931
|
+
protocol: _enum(["http", "https"])
|
|
20507
20932
|
});
|
|
20508
|
-
|
|
20509
|
-
|
|
20510
|
-
|
|
20511
|
-
|
|
20512
|
-
mode: _enum([
|
|
20513
|
-
"url",
|
|
20514
|
-
"bytes",
|
|
20515
|
-
"both"
|
|
20516
|
-
]),
|
|
20517
|
-
max: number().int().nonnegative(),
|
|
20518
|
-
maxBytes: number().int().positive().optional()
|
|
20519
|
-
}),
|
|
20520
|
-
/** Max action buttons (0 = none). */
|
|
20521
|
-
actions: number().int().nonnegative(),
|
|
20522
|
-
levels: array(TargetKindLevelSchema),
|
|
20523
|
-
format: array(NotificationFormatSchema),
|
|
20524
|
-
clickUrl: boolean(),
|
|
20525
|
-
sound: boolean(),
|
|
20526
|
-
ttl: boolean(),
|
|
20527
|
-
bodyMaxLen: number().int().positive()
|
|
20933
|
+
var NetworkAccessStatusSchema = object({
|
|
20934
|
+
connected: boolean(),
|
|
20935
|
+
endpoint: NetworkEndpointSchema.nullable(),
|
|
20936
|
+
error: string().optional()
|
|
20528
20937
|
});
|
|
20529
20938
|
/**
|
|
20530
|
-
*
|
|
20531
|
-
*
|
|
20532
|
-
*
|
|
20533
|
-
* the
|
|
20534
|
-
*
|
|
20939
|
+
* Optional, richer endpoint shape returned by providers that expose
|
|
20940
|
+
* MORE than one ingress concurrently (Tailscale Ingress with mixed
|
|
20941
|
+
* serve+funnel rules, future ngrok multi-tunnel, …). Each entry carries
|
|
20942
|
+
* the originating provider config (mode + sourcePort) so the
|
|
20943
|
+
* orchestrator UI can label rows distinctly. Providers that expose only
|
|
20944
|
+
* one endpoint just omit `listEndpoints` from their provider impl.
|
|
20535
20945
|
*/
|
|
20536
|
-
var
|
|
20537
|
-
var TargetKindSchema = object({
|
|
20538
|
-
kind: string(),
|
|
20539
|
-
label: string(),
|
|
20540
|
-
icon: string(),
|
|
20541
|
-
/** Stamped by each provider so the concat-fanned catalog stays routable. */
|
|
20542
|
-
addonId: string(),
|
|
20543
|
-
/**
|
|
20544
|
-
* URL of the kind's bundled BRAND icon, served by the providing addon over
|
|
20545
|
-
* its own `addon-routes` surface (`/addon/<addonId>/icons/<kind>`). Absent
|
|
20546
|
-
* when the addon bundles no icon for that kind — the client then falls back
|
|
20547
|
-
* to a neutral glyph rather than rendering the raw `icon` NAME as text.
|
|
20548
|
-
*
|
|
20549
|
-
* Root-relative on purpose: it resolves against whatever origin serves a web
|
|
20550
|
-
* client, and a native client joins it onto its own hub base.
|
|
20551
|
-
*
|
|
20552
|
-
* DECLARED here deliberately. It used to travel as an undeclared passthrough
|
|
20553
|
-
* field that survived only because the runtime cap-router forwards provider
|
|
20554
|
-
* output verbatim — so every consumer had to re-declare it by hand to stop
|
|
20555
|
-
* its own Zod parse from stripping it, and the whole arrangement would have
|
|
20556
|
-
* broken silently the moment output validation was tightened anywhere.
|
|
20557
|
-
*/
|
|
20558
|
-
iconUrl: string().optional(),
|
|
20946
|
+
var NetworkEndpointEntrySchema = NetworkEndpointSchema.extend({
|
|
20559
20947
|
/**
|
|
20560
|
-
*
|
|
20561
|
-
*
|
|
20562
|
-
* The server knows this and therefore says it, because the client cannot
|
|
20563
|
-
* safely guess: a React-Native client renders SVG and raster through two
|
|
20564
|
-
* DIFFERENT components (`react-native-svg` vs `expo-image` — expo-image does
|
|
20565
|
-
* not decode SVG on iOS/Android), so without this it silently fell back to a
|
|
20566
|
-
* placeholder glyph for every vector icon while the web build looked fine.
|
|
20567
|
-
*
|
|
20568
|
-
* Absent when {@link iconUrl} is absent, or for a legacy provider that has
|
|
20569
|
-
* not been updated — a client that cannot determine the type should prefer
|
|
20570
|
-
* its raster path, which is the safe default for an unknown image.
|
|
20948
|
+
* Stable id within the provider — typically `<mode>-<sourcePort>` so
|
|
20949
|
+
* the orchestrator can dedupe across `listEndpoints` polls.
|
|
20571
20950
|
*/
|
|
20572
|
-
|
|
20573
|
-
|
|
20574
|
-
|
|
20575
|
-
|
|
20951
|
+
id: string(),
|
|
20952
|
+
/** Operator-facing label (mirrors `MeshEndpoint.label`). */
|
|
20953
|
+
label: string(),
|
|
20954
|
+
/** Optional provider-specific mode tag, used for icon/colour in admin UI. */
|
|
20955
|
+
mode: string().optional(),
|
|
20956
|
+
/** Originating local port the ingress fronts (informational). */
|
|
20957
|
+
sourcePort: number().optional()
|
|
20576
20958
|
});
|
|
20959
|
+
method(_void(), NetworkEndpointSchema, { kind: "mutation" }), method(_void(), _void(), { kind: "mutation" }), method(_void(), NetworkEndpointSchema.nullable()), method(_void(), NetworkAccessStatusSchema), method(_void(), array(NetworkEndpointEntrySchema).readonly());
|
|
20577
20960
|
/**
|
|
20578
|
-
*
|
|
20579
|
-
*
|
|
20580
|
-
*
|
|
20581
|
-
|
|
20582
|
-
|
|
20583
|
-
|
|
20584
|
-
|
|
20585
|
-
|
|
20586
|
-
|
|
20961
|
+
* core-blocks — user-authored TypeScript, stored in the kernel and executed in
|
|
20962
|
+
* its own process.
|
|
20963
|
+
*
|
|
20964
|
+
* Spec: `docs/superpowers/specs/2026-08-04-core-blocks-and-synthetic-devices-design.md`.
|
|
20965
|
+
*
|
|
20966
|
+
* The first use is **owning devices without being a device provider**: a block
|
|
20967
|
+
* declares devices under a system or custom integration and drives their state,
|
|
20968
|
+
* with the same `ctx` an addon gets. Automations come later; nothing here
|
|
20969
|
+
* models a trigger.
|
|
20970
|
+
*
|
|
20971
|
+
* **Stated plainly, because it does not change by being true:** a block has an
|
|
20972
|
+
* addon's powers — devices, storage, the event bus, `ctx.api`. It is a plugin
|
|
20973
|
+
* with no review step. What makes that survivable is not a sandbox, it is
|
|
20974
|
+
* PROCESS ISOLATION: one process per block, supervised by `CrashSupervisor`,
|
|
20975
|
+
* so a block that throws or never returns is marked `failed` and visible
|
|
20976
|
+
* instead of taking the hub with it (D6). Every method here is admin-only, and
|
|
20977
|
+
* must stay so.
|
|
20978
|
+
*/
|
|
20979
|
+
/** Where a block runs. The operator chooses — a block driving a device on an
|
|
20980
|
+
* agent is the reason placement is not fixed to the hub. */
|
|
20981
|
+
var CoreBlockPlacementSchema = union([literal("hub"), string().min(1)]);
|
|
20982
|
+
/** What a block's process is doing. Mirrors the addon runner's own lifecycle so
|
|
20983
|
+
* a failing block reads the same way a failing addon does. */
|
|
20984
|
+
var CoreBlockStatusSchema = _enum([
|
|
20985
|
+
"stopped",
|
|
20986
|
+
"starting",
|
|
20987
|
+
"running",
|
|
20988
|
+
"failed"
|
|
20989
|
+
]);
|
|
20990
|
+
/** Client-authored fields. */
|
|
20991
|
+
var CoreBlockInputSchema = object({
|
|
20992
|
+
name: string().min(1).max(120),
|
|
20993
|
+
/** TypeScript source. Compiled server-side before it is ever stored — a
|
|
20994
|
+
* block that does not compile is a fork failure the operator would meet
|
|
20995
|
+
* minutes later, in a log, instead of in the editor. */
|
|
20996
|
+
code: string().max(2e5),
|
|
20587
20997
|
enabled: boolean(),
|
|
20588
|
-
|
|
20589
|
-
|
|
20590
|
-
|
|
20591
|
-
|
|
20592
|
-
|
|
20593
|
-
|
|
20594
|
-
config: record(string(), unknown())
|
|
20998
|
+
placement: CoreBlockPlacementSchema,
|
|
20999
|
+
/**
|
|
21000
|
+
* Integration the block's devices hang from. Absent = the system integration
|
|
21001
|
+
* blocks share. A block may declare its own instead.
|
|
21002
|
+
*/
|
|
21003
|
+
integrationId: string().optional()
|
|
20595
21004
|
});
|
|
20596
|
-
/**
|
|
20597
|
-
var
|
|
20598
|
-
|
|
20599
|
-
|
|
20600
|
-
|
|
20601
|
-
|
|
20602
|
-
|
|
20603
|
-
|
|
21005
|
+
/** A stored block. */
|
|
21006
|
+
var CoreBlockSchema = CoreBlockInputSchema.extend({
|
|
21007
|
+
id: string(),
|
|
21008
|
+
createdAt: number(),
|
|
21009
|
+
updatedAt: number(),
|
|
21010
|
+
/** Server-stamped author. */
|
|
21011
|
+
createdBy: string(),
|
|
21012
|
+
status: CoreBlockStatusSchema,
|
|
21013
|
+
/**
|
|
21014
|
+
* Why the block is not running, when it is not. The operator's ONLY window
|
|
21015
|
+
* into a block that failed at load — a block that is silently absent is the
|
|
21016
|
+
* failure mode this whole feature has to avoid.
|
|
21017
|
+
*/
|
|
21018
|
+
lastError: string().optional(),
|
|
21019
|
+
/** Ms epoch of the last state change. */
|
|
21020
|
+
lastChangedAt: number()
|
|
20604
21021
|
});
|
|
20605
|
-
|
|
20606
|
-
|
|
21022
|
+
/** What a compile attempt produced. */
|
|
21023
|
+
var CoreBlockCompileResultSchema = object({
|
|
21024
|
+
ok: boolean(),
|
|
21025
|
+
/** Present when `ok` is false — the first error, in the author's words. */
|
|
20607
21026
|
error: string().optional(),
|
|
20608
|
-
|
|
21027
|
+
line: number().optional(),
|
|
21028
|
+
column: number().optional()
|
|
20609
21029
|
});
|
|
20610
|
-
|
|
20611
|
-
|
|
20612
|
-
|
|
20613
|
-
|
|
20614
|
-
|
|
20615
|
-
|
|
20616
|
-
|
|
20617
|
-
|
|
20618
|
-
|
|
20619
|
-
|
|
20620
|
-
|
|
20621
|
-
|
|
20622
|
-
|
|
20623
|
-
|
|
20624
|
-
|
|
20625
|
-
|
|
20626
|
-
|
|
20627
|
-
|
|
20628
|
-
|
|
20629
|
-
|
|
20630
|
-
|
|
20631
|
-
|
|
20632
|
-
|
|
20633
|
-
|
|
20634
|
-
|
|
20635
|
-
|
|
20636
|
-
|
|
20637
|
-
}
|
|
20638
|
-
};
|
|
21030
|
+
method(object({}), object({ blocks: array(CoreBlockSchema) }), { auth: "admin" }), method(object({ blockId: string() }), object({ block: CoreBlockSchema.nullable() }), { auth: "admin" }), method(object({ block: CoreBlockInputSchema }), object({ block: CoreBlockSchema }), {
|
|
21031
|
+
kind: "mutation",
|
|
21032
|
+
auth: "admin",
|
|
21033
|
+
caller: "required"
|
|
21034
|
+
}), method(object({
|
|
21035
|
+
blockId: string(),
|
|
21036
|
+
block: CoreBlockInputSchema.partial()
|
|
21037
|
+
}), object({ block: CoreBlockSchema }), {
|
|
21038
|
+
kind: "mutation",
|
|
21039
|
+
auth: "admin",
|
|
21040
|
+
caller: "required"
|
|
21041
|
+
}), method(object({ blockId: string() }), object({ success: literal(true) }), {
|
|
21042
|
+
kind: "mutation",
|
|
21043
|
+
auth: "admin"
|
|
21044
|
+
}), method(object({
|
|
21045
|
+
blockId: string(),
|
|
21046
|
+
enabled: boolean()
|
|
21047
|
+
}), object({ block: CoreBlockSchema }), {
|
|
21048
|
+
kind: "mutation",
|
|
21049
|
+
auth: "admin"
|
|
21050
|
+
}), method(object({ code: string() }), CoreBlockCompileResultSchema, {
|
|
21051
|
+
kind: "mutation",
|
|
21052
|
+
auth: "admin"
|
|
21053
|
+
}), method(object({}), object({ libs: array(object({
|
|
21054
|
+
filePath: string(),
|
|
21055
|
+
content: string()
|
|
21056
|
+
})) }), { auth: "admin" });
|
|
20639
21057
|
/**
|
|
20640
21058
|
* Zod schemas for persisted record types.
|
|
20641
21059
|
*
|
|
@@ -20883,6 +21301,11 @@ var EventKindDescriptorSchema = object({
|
|
|
20883
21301
|
deviceId: number()
|
|
20884
21302
|
})
|
|
20885
21303
|
});
|
|
21304
|
+
/** One camera's event vocabulary, as returned by `listEventKindsBatch`. */
|
|
21305
|
+
var EventKindsForDeviceSchema = object({
|
|
21306
|
+
deviceId: number(),
|
|
21307
|
+
kinds: array(EventKindDescriptorSchema).readonly()
|
|
21308
|
+
});
|
|
20886
21309
|
var SensorEventSchema = object({
|
|
20887
21310
|
id: string(),
|
|
20888
21311
|
/** The CAMERA the event is attributed to (a sensor linked to N cameras
|
|
@@ -21139,6 +21562,19 @@ var MediaFileSchema = object({
|
|
|
21139
21562
|
sizeBytes: number(),
|
|
21140
21563
|
timestamp: number()
|
|
21141
21564
|
});
|
|
21565
|
+
/**
|
|
21566
|
+
* One media row WITHOUT its bytes.
|
|
21567
|
+
*
|
|
21568
|
+
* A track's media is 5-8 MB of base64 (measured: 7.67 MB across 23 files for a
|
|
21569
|
+
* 140 s track), and a client that renders tiles from the media data plane needs
|
|
21570
|
+
* to know only WHAT EXISTS — the bytes then arrive per tile, lazily, over HTTP
|
|
21571
|
+
* with an immutable cache, instead of all at once inside a tRPC response that
|
|
21572
|
+
* blocks the whole view.
|
|
21573
|
+
*
|
|
21574
|
+
* `sizeBytes` is carried because it is what lets a client decide between the
|
|
21575
|
+
* stored blob and a `?variant=thumb` rendering without fetching either.
|
|
21576
|
+
*/
|
|
21577
|
+
var MediaFileInfoSchema = MediaFileSchema.omit({ base64: true });
|
|
21142
21578
|
var DEFAULT_EVENT_QUERY_LIMIT = 1e3;
|
|
21143
21579
|
var MAX_EVENT_QUERY_LIMIT = 5e3;
|
|
21144
21580
|
var DeviceEventQueryInput = object({
|
|
@@ -21288,7 +21724,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
21288
21724
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
21289
21725
|
kind: "mutation",
|
|
21290
21726
|
auth: "admin"
|
|
21291
|
-
}), method(DeviceEventQueryInput, array(MotionEventSchema).readonly()), method(ObjectEventQueryInput, array(ObjectEventSchema).readonly()), method(DeviceEventQueryInput, array(AudioEventSchema).readonly()), method(object({ deviceId: number() }), array(EventKindDescriptorSchema).readonly()), method(object({
|
|
21727
|
+
}), method(DeviceEventQueryInput, array(MotionEventSchema).readonly()), method(ObjectEventQueryInput, array(ObjectEventSchema).readonly()), method(DeviceEventQueryInput, array(AudioEventSchema).readonly()), method(object({ deviceId: number() }), array(EventKindDescriptorSchema).readonly()), method(object({ deviceIds: array(number()).min(1).max(200) }), array(EventKindsForDeviceSchema).readonly()), method(object({
|
|
21292
21728
|
deviceId: number(),
|
|
21293
21729
|
since: number().optional(),
|
|
21294
21730
|
until: number().optional(),
|
|
@@ -21362,7 +21798,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
21362
21798
|
}), array(MediaFileSchema).readonly()), method(object({
|
|
21363
21799
|
trackId: string(),
|
|
21364
21800
|
kinds: array(MediaFileKindEnum).optional()
|
|
21365
|
-
}), array(MediaFileSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), object({
|
|
21801
|
+
}), array(MediaFileSchema).readonly()), method(object({ trackId: string() }), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), object({
|
|
21366
21802
|
deviceId: number(),
|
|
21367
21803
|
timestamp: number(),
|
|
21368
21804
|
frameWidth: number(),
|
|
@@ -26041,6 +26477,54 @@ Object.freeze({
|
|
|
26041
26477
|
addonId: null,
|
|
26042
26478
|
access: "create"
|
|
26043
26479
|
},
|
|
26480
|
+
"coreBlocks.compile": {
|
|
26481
|
+
capName: "core-blocks",
|
|
26482
|
+
capScope: "system",
|
|
26483
|
+
addonId: null,
|
|
26484
|
+
access: "create"
|
|
26485
|
+
},
|
|
26486
|
+
"coreBlocks.create": {
|
|
26487
|
+
capName: "core-blocks",
|
|
26488
|
+
capScope: "system",
|
|
26489
|
+
addonId: null,
|
|
26490
|
+
access: "create"
|
|
26491
|
+
},
|
|
26492
|
+
"coreBlocks.delete": {
|
|
26493
|
+
capName: "core-blocks",
|
|
26494
|
+
capScope: "system",
|
|
26495
|
+
addonId: null,
|
|
26496
|
+
access: "delete"
|
|
26497
|
+
},
|
|
26498
|
+
"coreBlocks.get": {
|
|
26499
|
+
capName: "core-blocks",
|
|
26500
|
+
capScope: "system",
|
|
26501
|
+
addonId: null,
|
|
26502
|
+
access: "view"
|
|
26503
|
+
},
|
|
26504
|
+
"coreBlocks.getTypeDefs": {
|
|
26505
|
+
capName: "core-blocks",
|
|
26506
|
+
capScope: "system",
|
|
26507
|
+
addonId: null,
|
|
26508
|
+
access: "view"
|
|
26509
|
+
},
|
|
26510
|
+
"coreBlocks.list": {
|
|
26511
|
+
capName: "core-blocks",
|
|
26512
|
+
capScope: "system",
|
|
26513
|
+
addonId: null,
|
|
26514
|
+
access: "view"
|
|
26515
|
+
},
|
|
26516
|
+
"coreBlocks.setEnabled": {
|
|
26517
|
+
capName: "core-blocks",
|
|
26518
|
+
capScope: "system",
|
|
26519
|
+
addonId: null,
|
|
26520
|
+
access: "create"
|
|
26521
|
+
},
|
|
26522
|
+
"coreBlocks.update": {
|
|
26523
|
+
capName: "core-blocks",
|
|
26524
|
+
capScope: "system",
|
|
26525
|
+
addonId: null,
|
|
26526
|
+
access: "create"
|
|
26527
|
+
},
|
|
26044
26528
|
"cover.close": {
|
|
26045
26529
|
capName: "cover",
|
|
26046
26530
|
capScope: "device",
|
|
@@ -27949,12 +28433,24 @@ Object.freeze({
|
|
|
27949
28433
|
addonId: null,
|
|
27950
28434
|
access: "create"
|
|
27951
28435
|
},
|
|
28436
|
+
"notificationRules.cancelSnooze": {
|
|
28437
|
+
capName: "notification-rules",
|
|
28438
|
+
capScope: "system",
|
|
28439
|
+
addonId: null,
|
|
28440
|
+
access: "create"
|
|
28441
|
+
},
|
|
27952
28442
|
"notificationRules.createRule": {
|
|
27953
28443
|
capName: "notification-rules",
|
|
27954
28444
|
capScope: "system",
|
|
27955
28445
|
addonId: null,
|
|
27956
28446
|
access: "create"
|
|
27957
28447
|
},
|
|
28448
|
+
"notificationRules.createSnooze": {
|
|
28449
|
+
capName: "notification-rules",
|
|
28450
|
+
capScope: "system",
|
|
28451
|
+
addonId: null,
|
|
28452
|
+
access: "create"
|
|
28453
|
+
},
|
|
27958
28454
|
"notificationRules.deleteRule": {
|
|
27959
28455
|
capName: "notification-rules",
|
|
27960
28456
|
capScope: "system",
|
|
@@ -27985,6 +28481,12 @@ Object.freeze({
|
|
|
27985
28481
|
addonId: null,
|
|
27986
28482
|
access: "view"
|
|
27987
28483
|
},
|
|
28484
|
+
"notificationRules.listSnoozes": {
|
|
28485
|
+
capName: "notification-rules",
|
|
28486
|
+
capScope: "system",
|
|
28487
|
+
addonId: null,
|
|
28488
|
+
access: "view"
|
|
28489
|
+
},
|
|
27988
28490
|
"notificationRules.setRuleEnabled": {
|
|
27989
28491
|
capName: "notification-rules",
|
|
27990
28492
|
capScope: "system",
|
|
@@ -28189,6 +28691,12 @@ Object.freeze({
|
|
|
28189
28691
|
addonId: null,
|
|
28190
28692
|
access: "view"
|
|
28191
28693
|
},
|
|
28694
|
+
"pipelineAnalytics.listEventKindsBatch": {
|
|
28695
|
+
capName: "pipeline-analytics",
|
|
28696
|
+
capScope: "device",
|
|
28697
|
+
addonId: null,
|
|
28698
|
+
access: "view"
|
|
28699
|
+
},
|
|
28192
28700
|
"pipelineAnalytics.listOpsLog": {
|
|
28193
28701
|
capName: "pipeline-analytics",
|
|
28194
28702
|
capScope: "device",
|
|
@@ -28201,6 +28709,12 @@ Object.freeze({
|
|
|
28201
28709
|
addonId: null,
|
|
28202
28710
|
access: "view"
|
|
28203
28711
|
},
|
|
28712
|
+
"pipelineAnalytics.listTrackMedia": {
|
|
28713
|
+
capName: "pipeline-analytics",
|
|
28714
|
+
capScope: "device",
|
|
28715
|
+
addonId: null,
|
|
28716
|
+
access: "view"
|
|
28717
|
+
},
|
|
28204
28718
|
"pipelineAnalytics.listTracks": {
|
|
28205
28719
|
capName: "pipeline-analytics",
|
|
28206
28720
|
capScope: "device",
|
|
@@ -30671,11 +31185,18 @@ var HaBaseChildDevice = class HaBaseChildDevice extends BaseDevice {
|
|
|
30671
31185
|
async onActivate() {
|
|
30672
31186
|
await super.onActivate();
|
|
30673
31187
|
await this.refreshFeatures();
|
|
30674
|
-
await this.subscribeBrokerEntity()
|
|
30675
|
-
|
|
31188
|
+
if (await this.subscribeBrokerEntity()) {
|
|
31189
|
+
this.deviceLogger.info("HA entity ready", { meta: {
|
|
31190
|
+
entityId: this.entityId,
|
|
31191
|
+
type: this.ctx.deviceMeta.type,
|
|
31192
|
+
...this.features.length > 0 ? { features: [...this.features] } : {}
|
|
31193
|
+
} });
|
|
31194
|
+
return;
|
|
31195
|
+
}
|
|
31196
|
+
this.deviceLogger.warn("HA entity registered but NOT subscribed — it will receive nothing", { meta: {
|
|
30676
31197
|
entityId: this.entityId,
|
|
30677
|
-
|
|
30678
|
-
|
|
31198
|
+
brokerId: this.brokerId,
|
|
31199
|
+
type: this.ctx.deviceMeta.type
|
|
30679
31200
|
} });
|
|
30680
31201
|
}
|
|
30681
31202
|
async removeDevice() {
|
|
@@ -30779,6 +31300,8 @@ var HaBaseChildDevice = class HaBaseChildDevice extends BaseDevice {
|
|
|
30779
31300
|
* already-attached handler and `handleStatePush` fires with the real
|
|
30780
31301
|
* current state (seeding the cap-state slice at construction time).
|
|
30781
31302
|
*/
|
|
31303
|
+
/** True when the entity is genuinely subscribed. The caller uses it to
|
|
31304
|
+
* decide whether "ready" is an honest thing to log. */
|
|
30782
31305
|
async subscribeBrokerEntity() {
|
|
30783
31306
|
try {
|
|
30784
31307
|
const result = await this.ctx.api.broker.subscribe.mutate({
|
|
@@ -30786,12 +31309,14 @@ var HaBaseChildDevice = class HaBaseChildDevice extends BaseDevice {
|
|
|
30786
31309
|
filter: { entityIds: [this.entityId] }
|
|
30787
31310
|
});
|
|
30788
31311
|
this.brokerSubscriptionId = result.subscriptionId;
|
|
31312
|
+
return true;
|
|
30789
31313
|
} catch (err) {
|
|
30790
31314
|
this.deviceLogger.warn("ha-child failed to register broker subscription", { meta: {
|
|
30791
31315
|
entityId: this.entityId,
|
|
30792
31316
|
brokerId: this.brokerId,
|
|
30793
31317
|
error: errMsg(err)
|
|
30794
31318
|
} });
|
|
31319
|
+
return false;
|
|
30795
31320
|
}
|
|
30796
31321
|
}
|
|
30797
31322
|
attachEventBusListener() {
|
|
@@ -35606,6 +36131,27 @@ var HaBrokerRegistry = class {
|
|
|
35606
36131
|
this.nextIdCounter += 1;
|
|
35607
36132
|
return id;
|
|
35608
36133
|
}
|
|
36134
|
+
/**
|
|
36135
|
+
* Take a caller-supplied id, or refuse.
|
|
36136
|
+
*
|
|
36137
|
+
* Two refusals, and both matter more than they look:
|
|
36138
|
+
*
|
|
36139
|
+
* - **An id already in use** would SILENTLY take over a live broker: the new
|
|
36140
|
+
* entry replaces it in config while its devices keep pointing at the id,
|
|
36141
|
+
* now serving someone else's Home Assistant. Recovery is re-creating a
|
|
36142
|
+
* broker that is GONE, never overwriting one that is here.
|
|
36143
|
+
* - **The progressive counter is advanced past an adopted id.** Adopting
|
|
36144
|
+
* `ha_004` while the counter sits at 2 would let the next automatic
|
|
36145
|
+
* allocation mint `ha_004` a second time — two brokers, one id, and every
|
|
36146
|
+
* device bound to whichever won. The counter is only seeded from stored
|
|
36147
|
+
* entries at load, so it cannot discover this on its own.
|
|
36148
|
+
*/
|
|
36149
|
+
adoptId(id) {
|
|
36150
|
+
if (this.managers.has(id)) throw new Error(`broker id "${id}" is already in use — adopt an id only to restore a broker that is gone`);
|
|
36151
|
+
const match = id.match(/^ha_(\d+)$/);
|
|
36152
|
+
if (match) this.nextIdCounter = Math.max(this.nextIdCounter, Number.parseInt(match[1], 10) + 1);
|
|
36153
|
+
return id;
|
|
36154
|
+
}
|
|
35609
36155
|
seedCounterFromEntries(entries) {
|
|
35610
36156
|
let maxSeen = 0;
|
|
35611
36157
|
for (const e of entries) {
|
|
@@ -35625,7 +36171,7 @@ var HaBrokerRegistry = class {
|
|
|
35625
36171
|
async createEntry(name, settings, options = {}) {
|
|
35626
36172
|
const auth = settingsToAuth(settings);
|
|
35627
36173
|
const entry = {
|
|
35628
|
-
id: this.allocateId(),
|
|
36174
|
+
id: options.id !== void 0 ? this.adoptId(options.id) : this.allocateId(),
|
|
35629
36175
|
name,
|
|
35630
36176
|
auth,
|
|
35631
36177
|
...options.integrationId !== void 0 ? { integrationId: options.integrationId } : {}
|
|
@@ -36815,6 +37361,7 @@ function homeassistantTargetKind(addonId) {
|
|
|
36815
37361
|
max: 1
|
|
36816
37362
|
},
|
|
36817
37363
|
actions: 3,
|
|
37364
|
+
actionIcons: true,
|
|
36818
37365
|
levels: [
|
|
36819
37366
|
{
|
|
36820
37367
|
id: "default",
|
|
@@ -36870,6 +37417,21 @@ function applyLevel(data, level) {
|
|
|
36870
37417
|
}
|
|
36871
37418
|
data["push"] = push;
|
|
36872
37419
|
}
|
|
37420
|
+
var HA_ACTION_ICONS = {
|
|
37421
|
+
acknowledge: "mdi:check",
|
|
37422
|
+
dismiss: "mdi:close",
|
|
37423
|
+
silence: "mdi:bell-off",
|
|
37424
|
+
view: "mdi:eye",
|
|
37425
|
+
play: "mdi:play",
|
|
37426
|
+
open: "mdi:door-open",
|
|
37427
|
+
close: "mdi:door-closed",
|
|
37428
|
+
lock: "mdi:lock",
|
|
37429
|
+
unlock: "mdi:lock-open",
|
|
37430
|
+
arm: "mdi:shield-check",
|
|
37431
|
+
disarm: "mdi:shield-off",
|
|
37432
|
+
light: "mdi:lightbulb",
|
|
37433
|
+
alert: "mdi:alert"
|
|
37434
|
+
};
|
|
36873
37435
|
/**
|
|
36874
37436
|
* Build the `notify.<service>` `service_data` from a prepared (degraded)
|
|
36875
37437
|
* notification. PURE — no WS, unit-testable in isolation.
|
|
@@ -36886,7 +37448,8 @@ function buildNotifyServiceData(prepared) {
|
|
|
36886
37448
|
if (prepared.actions.length > 0) data["actions"] = prepared.actions.map((a) => ({
|
|
36887
37449
|
action: a.id,
|
|
36888
37450
|
title: a.label,
|
|
36889
|
-
...a.url !== void 0 ? { uri: a.url } : {}
|
|
37451
|
+
...a.url !== void 0 ? { uri: a.url } : {},
|
|
37452
|
+
...a.icon !== void 0 ? { icon: HA_ACTION_ICONS[a.icon] } : {}
|
|
36890
37453
|
}));
|
|
36891
37454
|
if (prepared.clickUrl !== null) {
|
|
36892
37455
|
data["url"] = prepared.clickUrl;
|
|
@@ -37230,6 +37793,19 @@ async function reconcileBroker(brokerId, deps) {
|
|
|
37230
37793
|
* whose integration no longer exists should be cleaned up. Brokers with no
|
|
37231
37794
|
* integrationId were created manually and are never auto-removed.
|
|
37232
37795
|
*/
|
|
37796
|
+
/**
|
|
37797
|
+
* Brokers whose spawning integration is gone.
|
|
37798
|
+
*
|
|
37799
|
+
* **The caller REPORTS these; it does not delete them.** This function used to
|
|
37800
|
+
* drive a delete, and on 2026-08-05 that erased the operator's Home Assistant
|
|
37801
|
+
* broker — host and token — when `integrations.list` returned an empty array
|
|
37802
|
+
* during a hub restart: nothing "survived", so everything was an orphan. A
|
|
37803
|
+
* broker cannot be rebuilt from an integration record, so the loss was
|
|
37804
|
+
* permanent and the doorbell simply stopped existing.
|
|
37805
|
+
*
|
|
37806
|
+
* Kept as a pure query because naming an orphan is useful; acting on one
|
|
37807
|
+
* automatically is not.
|
|
37808
|
+
*/
|
|
37233
37809
|
function computeBrokerCleanup(brokers, survivingIntegrationIds) {
|
|
37234
37810
|
return brokers.filter((b) => b.integrationId !== void 0 && !survivingIntegrationIds.has(b.integrationId)).map((b) => b.id);
|
|
37235
37811
|
}
|
|
@@ -37817,15 +38393,15 @@ var HaProviderAddon = class HaProviderAddon extends BaseDeviceProvider {
|
|
|
37817
38393
|
}
|
|
37818
38394
|
const linkedBrokers = linkBrokersToIntegrations(this.config.brokers, integrationsWithBrokerId);
|
|
37819
38395
|
if (linkedBrokers.some((b, i) => b !== this.config.brokers[i])) await this.updateGlobalSettings({ brokers: linkedBrokers });
|
|
37820
|
-
const
|
|
37821
|
-
if (toRemove.length === 0) return;
|
|
37822
|
-
for (const id of toRemove) await this.requireRegistry().removeEntry(id);
|
|
37823
|
-
const nextBrokers = this.config.brokers.filter((b) => !toRemove.includes(b.id));
|
|
37824
|
-
await this.updateGlobalSettings({ brokers: nextBrokers });
|
|
38396
|
+
const orphans = computeBrokerCleanup(this.config.brokers, survivingIntegrationIds);
|
|
37825
38397
|
this.ctx.logger.info("integration→broker reconcile", { meta: {
|
|
37826
|
-
brokerCount:
|
|
38398
|
+
brokerCount: this.config.brokers.length,
|
|
37827
38399
|
integrationCount: haIntegrations.length,
|
|
37828
|
-
|
|
38400
|
+
orphans: orphans.length
|
|
38401
|
+
} });
|
|
38402
|
+
if (orphans.length > 0) this.ctx.logger.warn("broker entries have no surviving integration — KEPT", { meta: {
|
|
38403
|
+
brokerIds: orphans,
|
|
38404
|
+
integrationCount: haIntegrations.length
|
|
37829
38405
|
} });
|
|
37830
38406
|
} catch (err) {
|
|
37831
38407
|
this.ctx.logger.warn("integration→broker reconcile failed", { meta: { error: errMsg(err) } });
|
|
@@ -37959,9 +38535,13 @@ var HaProviderAddon = class HaProviderAddon extends BaseDeviceProvider {
|
|
|
37959
38535
|
label: "Home Assistant"
|
|
37960
38536
|
}]
|
|
37961
38537
|
}],
|
|
37962
|
-
add: async ({ kind, name, settings }) => {
|
|
38538
|
+
add: async ({ kind, name, settings, id }) => {
|
|
37963
38539
|
if (kind !== HA_KIND) throw new Error(`provider-homeassistant: only kind '${HA_KIND}' is handled here (got '${kind}')`);
|
|
37964
|
-
const entry = await this.requireRegistry().createEntry(name, settings);
|
|
38540
|
+
const entry = await this.requireRegistry().createEntry(name, settings, { ...id !== void 0 ? { id } : {} });
|
|
38541
|
+
if (id !== void 0) this.ctx.logger.info("broker restored under an adopted id", { meta: {
|
|
38542
|
+
brokerId: entry.id,
|
|
38543
|
+
name
|
|
38544
|
+
} });
|
|
37965
38545
|
await this.updateGlobalSettings({ brokers: [...this.config.brokers, entry] });
|
|
37966
38546
|
return { id: entry.id };
|
|
37967
38547
|
},
|