@camstack/types 0.1.33 → 0.1.34
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/capabilities/addons.cap.d.ts +155 -3
- package/dist/capabilities/addons.cap.d.ts.map +1 -1
- package/dist/capabilities/device-export.cap.d.ts +55 -1
- package/dist/capabilities/device-export.cap.d.ts.map +1 -1
- package/dist/capabilities/index.d.ts +1 -1
- package/dist/capabilities/index.d.ts.map +1 -1
- package/dist/capabilities/mesh-network.cap.d.ts +4 -0
- package/dist/capabilities/mesh-network.cap.d.ts.map +1 -1
- package/dist/capabilities/nodes.cap.d.ts +13 -0
- package/dist/capabilities/nodes.cap.d.ts.map +1 -1
- package/dist/enums/event-category.d.ts +10 -0
- package/dist/enums/event-category.d.ts.map +1 -1
- package/dist/generated/addon-api.d.ts +120 -8
- package/dist/generated/addon-api.d.ts.map +1 -1
- package/dist/generated/capability-router-map.d.ts.map +1 -1
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/method-access-map.d.ts.map +1 -1
- package/dist/generated/system-proxy.d.ts +1 -1
- package/dist/generated/system-proxy.d.ts.map +1 -1
- package/dist/{index-YnRVILXN.mjs → index-Ce7RZWP4.mjs} +332 -166
- package/dist/index-Ce7RZWP4.mjs.map +1 -0
- package/dist/{index-DRWlYskM.js → index-DS7418lf.js} +172 -6
- package/dist/index-DS7418lf.js.map +1 -0
- package/dist/index.js +12 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +173 -162
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/addon.d.ts +21 -0
- package/dist/interfaces/addon.d.ts.map +1 -1
- package/dist/interfaces/event-bus.d.ts +21 -1
- package/dist/interfaces/event-bus.d.ts.map +1 -1
- package/dist/node.js +1 -1
- package/dist/node.mjs +1 -1
- package/package.json +6 -1
- package/dist/index-DRWlYskM.js.map +0 -1
- package/dist/index-YnRVILXN.mjs.map +0 -1
|
@@ -3868,10 +3868,30 @@ const mqttBrokerCapability = {
|
|
|
3868
3868
|
}
|
|
3869
3869
|
};
|
|
3870
3870
|
const LinkStateSchema = z.enum(["unlinked", "linked", "error"]);
|
|
3871
|
+
const ExportSetupFieldSchema = z.object({
|
|
3872
|
+
label: z.string(),
|
|
3873
|
+
value: z.string(),
|
|
3874
|
+
/** Mask the value by default + render a reveal toggle (client id, secrets). */
|
|
3875
|
+
secret: z.boolean().optional()
|
|
3876
|
+
});
|
|
3877
|
+
const ExportSetupSchema = z.object({
|
|
3878
|
+
/** A string to render as a scannable QR — HAP `X-HM://…` URI, a pairing URL, etc. Omitted when there's nothing to scan. */
|
|
3879
|
+
qr: z.string().optional(),
|
|
3880
|
+
/** Label/value rows shown with a copy button (HAP setup code, OAuth URLs, client id, linked-account count, …). */
|
|
3881
|
+
fields: z.array(ExportSetupFieldSchema).readonly().optional(),
|
|
3882
|
+
/** Free-form operator instructions rendered above the fields. */
|
|
3883
|
+
note: z.string().optional()
|
|
3884
|
+
});
|
|
3871
3885
|
const DeviceExportStatusSchema = z.object({
|
|
3872
3886
|
linkState: LinkStateSchema,
|
|
3873
3887
|
exposedDeviceCount: z.number(),
|
|
3874
|
-
error: z.string().optional()
|
|
3888
|
+
error: z.string().optional(),
|
|
3889
|
+
/**
|
|
3890
|
+
* Optional pairing/account info the panel renders in a generic
|
|
3891
|
+
* "Setup" section. Addon-agnostic — the addon id identifies the
|
|
3892
|
+
* export target, never an `ecosystem` key here.
|
|
3893
|
+
*/
|
|
3894
|
+
setup: ExportSetupSchema.optional()
|
|
3875
3895
|
});
|
|
3876
3896
|
const DeviceKindSchema = z.string();
|
|
3877
3897
|
const ExposedDeviceSchema = z.object({
|
|
@@ -7550,7 +7570,25 @@ const MeshStatusSchema = z.object({
|
|
|
7550
7570
|
* doesn't rotate keys for the bound host. Operator-facing surface
|
|
7551
7571
|
* for "your access expires on …" banners.
|
|
7552
7572
|
*/
|
|
7553
|
-
keyExpiry: z.number().nullable()
|
|
7573
|
+
keyExpiry: z.number().nullable(),
|
|
7574
|
+
// ── Onboard-daemon handoff (Tailscale, generic slot) ────────────
|
|
7575
|
+
/**
|
|
7576
|
+
* When the provider runs its OWN mesh daemon (e.g. the Tailscale
|
|
7577
|
+
* client addon in `onboard` mode spawns a private `tailscaled`),
|
|
7578
|
+
* this carries the local control-socket path. Companion addons that
|
|
7579
|
+
* must drive the SAME daemon — chiefly `tailscale-ingress` for
|
|
7580
|
+
* Serve/Funnel — read it to point their CLI at the right socket
|
|
7581
|
+
* instead of the system default. Empty when the provider uses the
|
|
7582
|
+
* host's system daemon (or doesn't have the concept).
|
|
7583
|
+
*/
|
|
7584
|
+
daemonSocket: z.string().optional(),
|
|
7585
|
+
/**
|
|
7586
|
+
* Path to the mesh CLI binary the provider downloaded for onboard
|
|
7587
|
+
* mode. Companion addons reuse it so they don't need a system
|
|
7588
|
+
* install when the operator chose a fully self-contained mesh.
|
|
7589
|
+
* Empty in host mode.
|
|
7590
|
+
*/
|
|
7591
|
+
daemonCliPath: z.string().optional()
|
|
7554
7592
|
});
|
|
7555
7593
|
const meshNetworkCapability = {
|
|
7556
7594
|
name: "mesh-network",
|
|
@@ -8180,6 +8218,7 @@ const nodesCapability = {
|
|
|
8180
8218
|
name: "nodes",
|
|
8181
8219
|
scope: "system",
|
|
8182
8220
|
mode: "singleton",
|
|
8221
|
+
nodeIdMode: "data",
|
|
8183
8222
|
methods: {
|
|
8184
8223
|
topology: method(
|
|
8185
8224
|
z.void(),
|
|
@@ -8461,6 +8500,21 @@ const AddonAutoUpdateSchema = ChannelWithInheritSchema;
|
|
|
8461
8500
|
const RestartAddonResultSchema = z.unknown();
|
|
8462
8501
|
const InstallPackageResultSchema = z.unknown();
|
|
8463
8502
|
const ReloadPackagesResultSchema = z.unknown();
|
|
8503
|
+
const UpdateFrameworkPackageResultSchema = z.object({
|
|
8504
|
+
packageName: z.string(),
|
|
8505
|
+
fromVersion: z.string(),
|
|
8506
|
+
toVersion: z.string(),
|
|
8507
|
+
/** Ms-epoch the server scheduled its self-restart. */
|
|
8508
|
+
restartingAt: z.number()
|
|
8509
|
+
});
|
|
8510
|
+
const FrameworkPackageStatusSchema = z.object({
|
|
8511
|
+
packageName: z.string(),
|
|
8512
|
+
currentVersion: z.string(),
|
|
8513
|
+
latestVersion: z.string().nullable(),
|
|
8514
|
+
hasUpdate: z.boolean(),
|
|
8515
|
+
/** Optional manifest description for the row tooltip. */
|
|
8516
|
+
description: z.string().optional()
|
|
8517
|
+
});
|
|
8464
8518
|
const LogStreamEntrySchema = z.object({
|
|
8465
8519
|
timestamp: z.string(),
|
|
8466
8520
|
level: z.string(),
|
|
@@ -8477,6 +8531,7 @@ const addonsCapability = {
|
|
|
8477
8531
|
name: "addons",
|
|
8478
8532
|
scope: "system",
|
|
8479
8533
|
mode: "singleton",
|
|
8534
|
+
nodeIdMode: "data",
|
|
8480
8535
|
methods: {
|
|
8481
8536
|
// ── Listing ──────────────────────────────────────────────────────
|
|
8482
8537
|
list: method(z.void(), z.array(AddonListItemSchema).readonly()),
|
|
@@ -8523,13 +8578,29 @@ const addonsCapability = {
|
|
|
8523
8578
|
z.object({ query: z.string().optional() }),
|
|
8524
8579
|
z.array(SearchResultSchema)
|
|
8525
8580
|
),
|
|
8581
|
+
/**
|
|
8582
|
+
* Available package updates for a node. `nodeId` omitted (or
|
|
8583
|
+
* `'hub'`) checks the hub's own installed packages; an agent
|
|
8584
|
+
* `nodeId` checks that agent's installed roster against npm
|
|
8585
|
+
* (the hub does the npm lookups + diff — agents stay npm-free).
|
|
8586
|
+
*/
|
|
8526
8587
|
listUpdates: method(
|
|
8527
|
-
z.
|
|
8588
|
+
z.object({ nodeId: z.string().optional() }),
|
|
8528
8589
|
z.array(PackageUpdateSchema).readonly(),
|
|
8529
8590
|
{ auth: "admin" }
|
|
8530
8591
|
),
|
|
8592
|
+
/**
|
|
8593
|
+
* Update one package on a node. `nodeId` omitted (or `'hub'`)
|
|
8594
|
+
* installs on the hub via npm; an agent `nodeId` makes the hub
|
|
8595
|
+
* pack the resolved version and push the tarball to that agent
|
|
8596
|
+
* (`$agent.deploy` + `$agent.reload`) — agents need no npm runtime.
|
|
8597
|
+
*/
|
|
8531
8598
|
updatePackage: method(
|
|
8532
|
-
z.object({
|
|
8599
|
+
z.object({
|
|
8600
|
+
name: z.string().min(1),
|
|
8601
|
+
version: z.string().optional(),
|
|
8602
|
+
nodeId: z.string().optional()
|
|
8603
|
+
}),
|
|
8533
8604
|
z.unknown(),
|
|
8534
8605
|
{ kind: "mutation", auth: "admin" }
|
|
8535
8606
|
),
|
|
@@ -8550,12 +8621,105 @@ const addonsCapability = {
|
|
|
8550
8621
|
z.object({ rolledBackTo: z.string().nullable() }),
|
|
8551
8622
|
{ kind: "mutation", auth: "admin" }
|
|
8552
8623
|
),
|
|
8553
|
-
|
|
8624
|
+
/** Re-check updates for a node, bypassing any cache. `nodeId`
|
|
8625
|
+
* omitted (or `'hub'`) refreshes the hub; an agent `nodeId`
|
|
8626
|
+
* re-checks that agent's roster. */
|
|
8627
|
+
forceRefresh: method(
|
|
8628
|
+
z.object({ nodeId: z.string().optional() }),
|
|
8629
|
+
z.unknown(),
|
|
8630
|
+
{ kind: "mutation", auth: "admin" }
|
|
8631
|
+
),
|
|
8554
8632
|
restartServer: method(
|
|
8555
8633
|
z.object({ confirm: z.literal(true) }),
|
|
8556
8634
|
z.unknown(),
|
|
8557
8635
|
{ kind: "mutation", auth: "admin" }
|
|
8558
8636
|
),
|
|
8637
|
+
/**
|
|
8638
|
+
* Most-recent restart marker (kind / packageName / from→to versions
|
|
8639
|
+
* / requestedBy / requestedAt). Returns `null` when this process
|
|
8640
|
+
* didn't boot from a tracked restart, or when the
|
|
8641
|
+
* post-boot retention window (5 min) has elapsed.
|
|
8642
|
+
*
|
|
8643
|
+
* Drives the admin-UI reconnect overlay's success toast — the
|
|
8644
|
+
* `system.restart-completed` event itself is fired before the
|
|
8645
|
+
* client has time to re-subscribe, so the client queries this on
|
|
8646
|
+
* first reconnect instead.
|
|
8647
|
+
*/
|
|
8648
|
+
getLastRestart: method(
|
|
8649
|
+
z.void(),
|
|
8650
|
+
z.object({
|
|
8651
|
+
kind: z.enum(["framework-update", "manual", "system"]),
|
|
8652
|
+
packageName: z.string().optional(),
|
|
8653
|
+
fromVersion: z.string().optional(),
|
|
8654
|
+
toVersion: z.string().optional(),
|
|
8655
|
+
requestedBy: z.string().optional(),
|
|
8656
|
+
requestedAt: z.number()
|
|
8657
|
+
}).nullable(),
|
|
8658
|
+
{ auth: "admin" }
|
|
8659
|
+
),
|
|
8660
|
+
/**
|
|
8661
|
+
* Snapshot of the framework packages installed under the hub's
|
|
8662
|
+
* `<appRoot>/node_modules/`. Each row carries the currently
|
|
8663
|
+
* installed version and (best-effort) the latest version
|
|
8664
|
+
* available on npm. Drives the admin-UI "System packages" panel.
|
|
8665
|
+
*
|
|
8666
|
+
* Spec: docs/superpowers/specs/2026-05-14-framework-live-update-design.md
|
|
8667
|
+
*/
|
|
8668
|
+
listFrameworkPackages: method(
|
|
8669
|
+
z.void(),
|
|
8670
|
+
z.array(FrameworkPackageStatusSchema).readonly(),
|
|
8671
|
+
{ auth: "admin" }
|
|
8672
|
+
),
|
|
8673
|
+
/**
|
|
8674
|
+
* Cluster-wide capability-provider discovery. Returns the list of
|
|
8675
|
+
* `{ addonId, mode, isActive }` tuples for whatever addon(s)
|
|
8676
|
+
* currently provide the requested capability across the cluster.
|
|
8677
|
+
*
|
|
8678
|
+
* Why this lives on `addons` (and not on a `capabilities` cap of
|
|
8679
|
+
* its own): the hub's main-process `CapabilityRegistry` already
|
|
8680
|
+
* aggregates registrations from every forked group-runner and
|
|
8681
|
+
* remote agent via Moleculer event propagation — there's no
|
|
8682
|
+
* cross-process registry mirror to build, just an introspection
|
|
8683
|
+
* shim.
|
|
8684
|
+
*
|
|
8685
|
+
* Use this from addon code when you need to know whether another
|
|
8686
|
+
* addon has registered a specific cap (e.g. `tailscale-ingress`
|
|
8687
|
+
* checking `tailscale-client` is up before calling `tailscale
|
|
8688
|
+
* serve`). Don't reach for `ctx.capabilities.getCollectionEntries`
|
|
8689
|
+
* — that reads the LOCAL registry of the calling addon's group
|
|
8690
|
+
* runner and never sees providers in other processes. See
|
|
8691
|
+
* `CLAUDE.md` → Critical rules → ctx.api vs ctx.capabilities.
|
|
8692
|
+
*/
|
|
8693
|
+
listCapabilityProviders: method(
|
|
8694
|
+
z.object({ capName: z.string().min(1) }),
|
|
8695
|
+
z.array(z.object({
|
|
8696
|
+
addonId: z.string(),
|
|
8697
|
+
mode: z.enum(["singleton", "collection"]),
|
|
8698
|
+
isActive: z.boolean()
|
|
8699
|
+
})).readonly()
|
|
8700
|
+
),
|
|
8701
|
+
/**
|
|
8702
|
+
* Live-update one of the framework packages marked
|
|
8703
|
+
* `camstack.system: true` (`@camstack/types|kernel|core|sdk|ui-library`).
|
|
8704
|
+
* Runs `npm install --prefix <appRoot> <name>@<version> --no-save`,
|
|
8705
|
+
* writes a `.restart-pending` marker, emits `system.restarting`
|
|
8706
|
+
* and schedules a graceful process exit. The supervisor (Docker /
|
|
8707
|
+
* Electron / systemd) brings the hub back up; on first boot after
|
|
8708
|
+
* the restart the marker fires `system.restart-completed`.
|
|
8709
|
+
*
|
|
8710
|
+
* `version` defaults to `'latest'`. The allow-list of valid
|
|
8711
|
+
* `packageName` values is enforced server-side.
|
|
8712
|
+
*
|
|
8713
|
+
* Spec: docs/superpowers/specs/2026-05-14-framework-live-update-design.md
|
|
8714
|
+
*/
|
|
8715
|
+
updateFrameworkPackage: method(
|
|
8716
|
+
z.object({
|
|
8717
|
+
packageName: z.string().min(1),
|
|
8718
|
+
version: z.string().optional()
|
|
8719
|
+
}),
|
|
8720
|
+
UpdateFrameworkPackageResultSchema,
|
|
8721
|
+
{ kind: "mutation", auth: "admin" }
|
|
8722
|
+
),
|
|
8559
8723
|
getVersions: method(
|
|
8560
8724
|
z.object({ name: z.string() }),
|
|
8561
8725
|
z.array(PackageVersionInfoSchema).readonly()
|
|
@@ -8795,7 +8959,7 @@ export {
|
|
|
8795
8959
|
ChargingStatus as by,
|
|
8796
8960
|
ClientNetworkStatsSchema as bz,
|
|
8797
8961
|
motionCapability as c,
|
|
8798
|
-
|
|
8962
|
+
OrchestratorMetricsSchema as c$,
|
|
8799
8963
|
UnexposeInputSchema as c0,
|
|
8800
8964
|
DeviceFeature as c1,
|
|
8801
8965
|
DeviceInfoSchema as c2,
|
|
@@ -8806,33 +8970,33 @@ export {
|
|
|
8806
8970
|
DiscoveredChildDeviceSchema as c7,
|
|
8807
8971
|
DiscoveredChildStatusSchema as c8,
|
|
8808
8972
|
DiscoveredDeviceSchema as c9,
|
|
8809
|
-
|
|
8810
|
-
|
|
8811
|
-
|
|
8812
|
-
|
|
8813
|
-
|
|
8814
|
-
|
|
8815
|
-
|
|
8816
|
-
|
|
8817
|
-
|
|
8818
|
-
|
|
8819
|
-
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
|
|
8830
|
-
|
|
8831
|
-
|
|
8832
|
-
|
|
8833
|
-
|
|
8834
|
-
|
|
8835
|
-
|
|
8973
|
+
LocationStatSchema as cA,
|
|
8974
|
+
LogEntrySchema as cB,
|
|
8975
|
+
LogLevelSchema$1 as cC,
|
|
8976
|
+
LogStreamEntrySchema as cD,
|
|
8977
|
+
MODEL_FORMATS as cE,
|
|
8978
|
+
MediaFileSchema as cF,
|
|
8979
|
+
MethodAccessSchema as cG,
|
|
8980
|
+
MotionAnalysisResultSchema as cH,
|
|
8981
|
+
MotionEventSchema as cI,
|
|
8982
|
+
MotionOnMotionChangedDataSchema as cJ,
|
|
8983
|
+
MotionRegionSchema as cK,
|
|
8984
|
+
MotionSourceEnum as cL,
|
|
8985
|
+
MotionSourcesSchema as cM,
|
|
8986
|
+
MotionStatusSchema as cN,
|
|
8987
|
+
MotionTriggerRuntimeStateSchema as cO,
|
|
8988
|
+
MotionTriggerStatusSchema as cP,
|
|
8989
|
+
StatusSchema as cQ,
|
|
8990
|
+
NativeDetectionSchema as cR,
|
|
8991
|
+
NativeObjectClassEnum as cS,
|
|
8992
|
+
NativeObjectDetectionStatusSchema as cT,
|
|
8993
|
+
NetworkAccessStatusSchema as cU,
|
|
8994
|
+
NetworkAddressSchema as cV,
|
|
8995
|
+
NetworkEndpointSchema as cW,
|
|
8996
|
+
NotificationHistoryEntrySchema as cX,
|
|
8997
|
+
NotificationRuleSchema as cY,
|
|
8998
|
+
NotificationSchema as cZ,
|
|
8999
|
+
ObjectEventSchema as c_,
|
|
8836
9000
|
DoorbellPressEventSchema as ca,
|
|
8837
9001
|
DoorbellStatusSchema as cb,
|
|
8838
9002
|
EmbeddingInfoSchema as cc,
|
|
@@ -8841,140 +9005,142 @@ export {
|
|
|
8841
9005
|
EnrichedWidgetMetadataSchema as cf,
|
|
8842
9006
|
EventItemSchema as cg,
|
|
8843
9007
|
EventKindSchema as ch,
|
|
8844
|
-
|
|
8845
|
-
|
|
8846
|
-
|
|
8847
|
-
|
|
8848
|
-
|
|
8849
|
-
|
|
8850
|
-
|
|
8851
|
-
|
|
8852
|
-
|
|
8853
|
-
|
|
8854
|
-
|
|
8855
|
-
|
|
8856
|
-
|
|
8857
|
-
|
|
8858
|
-
|
|
8859
|
-
|
|
8860
|
-
|
|
8861
|
-
|
|
9008
|
+
ExportSetupFieldSchema as ci,
|
|
9009
|
+
ExportSetupSchema as cj,
|
|
9010
|
+
ExposedDeviceSchema as ck,
|
|
9011
|
+
ExposedResourceSchema as cl,
|
|
9012
|
+
FeatureManifestSchema as cm,
|
|
9013
|
+
FeatureProbeStatusSchema as cn,
|
|
9014
|
+
FrameInputSchema as co,
|
|
9015
|
+
GetStreamWithCodecInputSchema as cp,
|
|
9016
|
+
GlobalMetricsSchema as cq,
|
|
9017
|
+
HWACCEL_OPTIONS as cr,
|
|
9018
|
+
HealthStatusSchema as cs,
|
|
9019
|
+
HistoryPointSchema as ct,
|
|
9020
|
+
HistoryResolutionEnum as cu,
|
|
9021
|
+
InstalledPackageSchema as cv,
|
|
9022
|
+
IntegrationLiteSchema as cw,
|
|
9023
|
+
IntegrationWithStateSchema as cx,
|
|
9024
|
+
IntercomAbilitySchema as cy,
|
|
9025
|
+
IntercomStatusSchema as cz,
|
|
8862
9026
|
doorbellCapability as d,
|
|
8863
|
-
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
|
-
|
|
8870
|
-
|
|
8871
|
-
|
|
8872
|
-
|
|
8873
|
-
|
|
8874
|
-
|
|
8875
|
-
|
|
8876
|
-
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
|
-
|
|
8883
|
-
|
|
8884
|
-
|
|
8885
|
-
|
|
8886
|
-
|
|
8887
|
-
|
|
8888
|
-
|
|
8889
|
-
|
|
8890
|
-
|
|
8891
|
-
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
8896
|
-
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
|
|
8900
|
-
|
|
8901
|
-
|
|
8902
|
-
|
|
8903
|
-
|
|
8904
|
-
|
|
8905
|
-
|
|
8906
|
-
|
|
8907
|
-
|
|
8908
|
-
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
|
|
8912
|
-
|
|
8913
|
-
|
|
8914
|
-
|
|
8915
|
-
|
|
8916
|
-
|
|
8917
|
-
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
|
|
8924
|
-
|
|
8925
|
-
|
|
9027
|
+
FinalizeUploadInputSchema as d$,
|
|
9028
|
+
OsdOverlayKindEnum as d0,
|
|
9029
|
+
OsdOverlayPatchSchema as d1,
|
|
9030
|
+
OsdOverlaySchema as d2,
|
|
9031
|
+
OsdPositionEnum as d3,
|
|
9032
|
+
OsdStatusSchema as d4,
|
|
9033
|
+
PIPELINE_FLOW_CAPABILITY_NAMES as d5,
|
|
9034
|
+
PIPELINE_OWNER_CAPABILITY_NAMES as d6,
|
|
9035
|
+
PackageUpdateSchema as d7,
|
|
9036
|
+
PackageVersionInfoSchema as d8,
|
|
9037
|
+
PasskeySummarySchema as d9,
|
|
9038
|
+
RtspRestreamEntrySchema as dA,
|
|
9039
|
+
RunnerCameraConfigSchema as dB,
|
|
9040
|
+
RunnerCameraDeviceUIFields as dC,
|
|
9041
|
+
RunnerLocalLoadSchema as dD,
|
|
9042
|
+
RunnerLocalMetricsSchema as dE,
|
|
9043
|
+
STORAGE_LOCATION_CARDINALITY as dF,
|
|
9044
|
+
ScopedTokenSchema as dG,
|
|
9045
|
+
ScopedTokenSummarySchema as dH,
|
|
9046
|
+
SearchResultSchema as dI,
|
|
9047
|
+
SegmentSchema as dJ,
|
|
9048
|
+
SendEmailInputSchema as dK,
|
|
9049
|
+
SendEmailResultSchema as dL,
|
|
9050
|
+
SettingsPatchSchema as dM,
|
|
9051
|
+
SettingsRecordSchema as dN,
|
|
9052
|
+
SettingsSchemaWithValuesSchema as dO,
|
|
9053
|
+
SettingsUpdateResultSchema as dP,
|
|
9054
|
+
SmtpStatusSchema as dQ,
|
|
9055
|
+
SnapshotImageSchema as dR,
|
|
9056
|
+
SpatialDetectionSchema as dS,
|
|
9057
|
+
SsoBridgeClaimsSchema as dT,
|
|
9058
|
+
StartEmbeddedInputSchema as dU,
|
|
9059
|
+
AbortUploadInputSchema as dV,
|
|
9060
|
+
BeginDownloadInputSchema as dW,
|
|
9061
|
+
BeginDownloadResultSchema as dX,
|
|
9062
|
+
BeginUploadInputSchema as dY,
|
|
9063
|
+
BeginUploadResultSchema as dZ,
|
|
9064
|
+
EndDownloadInputSchema as d_,
|
|
9065
|
+
PcmSampleFormatSchema as da,
|
|
9066
|
+
PerScopeBreakdownSchema as db,
|
|
9067
|
+
PipelineAssignmentSchema as dc,
|
|
9068
|
+
PipelineDefaultStepSchema as dd,
|
|
9069
|
+
PipelineEngineChoiceSchema as de,
|
|
9070
|
+
PipelineRunResultBridge as df,
|
|
9071
|
+
PipelineStepInputSchema as dg,
|
|
9072
|
+
PlaceholderReasonSchema as dh,
|
|
9073
|
+
PolygonPointSchema as di,
|
|
9074
|
+
ProfileSlotSchema as dj,
|
|
9075
|
+
ProfileSlotStatusSchema as dk,
|
|
9076
|
+
ProviderStatusSchema as dl,
|
|
9077
|
+
PtzAutotrackRuntimeStateSchema as dm,
|
|
9078
|
+
PtzAutotrackSettingsSchema as dn,
|
|
9079
|
+
PtzAutotrackStatusSchema as dp,
|
|
9080
|
+
PtzAutotrackTargetOptionSchema as dq,
|
|
9081
|
+
PtzMoveCommandSchema as dr,
|
|
9082
|
+
PtzPositionSchema as ds,
|
|
9083
|
+
PtzPresetSchema as dt,
|
|
9084
|
+
QueryFilterSchema as du,
|
|
9085
|
+
RegisteredStreamSchema as dv,
|
|
9086
|
+
RemoteAccessEndpointSchema as dw,
|
|
9087
|
+
RemoteAccessProviderInfoSchema as dx,
|
|
9088
|
+
ReportMotionInputSchema as dy,
|
|
9089
|
+
RtpSourceSchema as dz,
|
|
8926
9090
|
errMsg as e,
|
|
8927
|
-
|
|
8928
|
-
|
|
8929
|
-
|
|
8930
|
-
|
|
8931
|
-
|
|
8932
|
-
|
|
8933
|
-
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
|
|
8937
|
-
|
|
8938
|
-
|
|
8939
|
-
|
|
8940
|
-
|
|
8941
|
-
|
|
8942
|
-
|
|
8943
|
-
|
|
8944
|
-
|
|
8945
|
-
|
|
8946
|
-
|
|
8947
|
-
|
|
8948
|
-
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
|
|
8953
|
-
|
|
8954
|
-
|
|
8955
|
-
|
|
8956
|
-
|
|
8957
|
-
|
|
8958
|
-
|
|
8959
|
-
|
|
8960
|
-
|
|
8961
|
-
|
|
8962
|
-
|
|
8963
|
-
|
|
8964
|
-
|
|
8965
|
-
|
|
8966
|
-
|
|
8967
|
-
|
|
8968
|
-
|
|
8969
|
-
|
|
8970
|
-
|
|
8971
|
-
|
|
8972
|
-
|
|
8973
|
-
|
|
8974
|
-
|
|
8975
|
-
|
|
8976
|
-
|
|
8977
|
-
|
|
9091
|
+
StorageLocationRefSchema as e0,
|
|
9092
|
+
StorageLocationSchema as e1,
|
|
9093
|
+
StorageLocationTypeSchema as e2,
|
|
9094
|
+
ProviderInfoSchema as e3,
|
|
9095
|
+
ReadChunkInputSchema as e4,
|
|
9096
|
+
TestLocationResultSchema as e5,
|
|
9097
|
+
WriteChunkInputSchema as e6,
|
|
9098
|
+
StreamFormatSchema as e7,
|
|
9099
|
+
StreamInfoSchema as e8,
|
|
9100
|
+
StreamNetworkStatsSchema as e9,
|
|
9101
|
+
YAMNET_TO_MACRO as eA,
|
|
9102
|
+
ZoneKindEnum as eB,
|
|
9103
|
+
ZoneRuleModeEnum as eC,
|
|
9104
|
+
ZoneRuleSchema as eD,
|
|
9105
|
+
ZoneRuleStageEnum as eE,
|
|
9106
|
+
ZoneRulesArraySchema as eF,
|
|
9107
|
+
ZoneSchema as eG,
|
|
9108
|
+
ZoneScopeBreakdownSchema as eH,
|
|
9109
|
+
accessoryStableId as eI,
|
|
9110
|
+
deviceMatchesProfile as eJ,
|
|
9111
|
+
event as eK,
|
|
9112
|
+
expandCapMethods as eL,
|
|
9113
|
+
getAudioMacroClassIds as eM,
|
|
9114
|
+
mapAudioLabelToMacro as eN,
|
|
9115
|
+
method as eO,
|
|
9116
|
+
resolveDeviceProfile as eP,
|
|
9117
|
+
webrtcClientHintsSchema as eQ,
|
|
9118
|
+
StreamSourceEntrySchema$1 as ea,
|
|
9119
|
+
StreamSourceSchema as eb,
|
|
9120
|
+
SwitchStatusSchema as ec,
|
|
9121
|
+
SystemMetricsSchema as ed,
|
|
9122
|
+
TestConnectionResultSchema as ee,
|
|
9123
|
+
ToastSchema as ef,
|
|
9124
|
+
TokenScopeSchema as eg,
|
|
9125
|
+
TopologyNodeSchema as eh,
|
|
9126
|
+
TopologyProcessSchema as ei,
|
|
9127
|
+
TopologyServiceSchema as ej,
|
|
9128
|
+
TrackSchema as ek,
|
|
9129
|
+
TrackStateSchema as el,
|
|
9130
|
+
TrackedDetectionSchema as em,
|
|
9131
|
+
TurnProviderInfoSchema as en,
|
|
9132
|
+
TurnServerSchema as eo,
|
|
9133
|
+
UpdateIntegrationInputSchema as ep,
|
|
9134
|
+
UpdateUserInputSchema as eq,
|
|
9135
|
+
UserRecordSchema as er,
|
|
9136
|
+
UserSummarySchema as es,
|
|
9137
|
+
WELL_KNOWN_TABS as et,
|
|
9138
|
+
WELL_KNOWN_TAB_MAP as eu,
|
|
9139
|
+
WebrtcStreamChoiceSchema as ev,
|
|
9140
|
+
WebrtcStreamTargetSchema as ew,
|
|
9141
|
+
WidgetHostEnum as ex,
|
|
9142
|
+
WidgetMetadataSchema as ey,
|
|
9143
|
+
WidgetSizeEnum as ez,
|
|
8978
9144
|
featureProbeCapability as f,
|
|
8979
9145
|
deviceStatusCapability as g,
|
|
8980
9146
|
hydrateSchema as h,
|
|
@@ -8997,4 +9163,4 @@ export {
|
|
|
8997
9163
|
addonsCapability as y,
|
|
8998
9164
|
zonesCapability as z
|
|
8999
9165
|
};
|
|
9000
|
-
//# sourceMappingURL=index-
|
|
9166
|
+
//# sourceMappingURL=index-Ce7RZWP4.mjs.map
|