@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.
Files changed (36) hide show
  1. package/dist/capabilities/addons.cap.d.ts +155 -3
  2. package/dist/capabilities/addons.cap.d.ts.map +1 -1
  3. package/dist/capabilities/device-export.cap.d.ts +55 -1
  4. package/dist/capabilities/device-export.cap.d.ts.map +1 -1
  5. package/dist/capabilities/index.d.ts +1 -1
  6. package/dist/capabilities/index.d.ts.map +1 -1
  7. package/dist/capabilities/mesh-network.cap.d.ts +4 -0
  8. package/dist/capabilities/mesh-network.cap.d.ts.map +1 -1
  9. package/dist/capabilities/nodes.cap.d.ts +13 -0
  10. package/dist/capabilities/nodes.cap.d.ts.map +1 -1
  11. package/dist/enums/event-category.d.ts +10 -0
  12. package/dist/enums/event-category.d.ts.map +1 -1
  13. package/dist/generated/addon-api.d.ts +120 -8
  14. package/dist/generated/addon-api.d.ts.map +1 -1
  15. package/dist/generated/capability-router-map.d.ts.map +1 -1
  16. package/dist/generated/method-access-map.d.ts +1 -1
  17. package/dist/generated/method-access-map.d.ts.map +1 -1
  18. package/dist/generated/system-proxy.d.ts +1 -1
  19. package/dist/generated/system-proxy.d.ts.map +1 -1
  20. package/dist/{index-YnRVILXN.mjs → index-Ce7RZWP4.mjs} +332 -166
  21. package/dist/index-Ce7RZWP4.mjs.map +1 -0
  22. package/dist/{index-DRWlYskM.js → index-DS7418lf.js} +172 -6
  23. package/dist/index-DS7418lf.js.map +1 -0
  24. package/dist/index.js +12 -1
  25. package/dist/index.js.map +1 -1
  26. package/dist/index.mjs +173 -162
  27. package/dist/index.mjs.map +1 -1
  28. package/dist/interfaces/addon.d.ts +21 -0
  29. package/dist/interfaces/addon.d.ts.map +1 -1
  30. package/dist/interfaces/event-bus.d.ts +21 -1
  31. package/dist/interfaces/event-bus.d.ts.map +1 -1
  32. package/dist/node.js +1 -1
  33. package/dist/node.mjs +1 -1
  34. package/package.json +6 -1
  35. package/dist/index-DRWlYskM.js.map +0 -1
  36. 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.void(),
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({ name: z.string().min(1), version: z.string().optional() }),
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
- forceRefresh: method(z.void(), z.unknown(), { kind: "mutation", auth: "admin" }),
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
- OsdOverlayPatchSchema as c$,
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
- LogLevelSchema$1 as cA,
8810
- LogStreamEntrySchema as cB,
8811
- MODEL_FORMATS as cC,
8812
- MediaFileSchema as cD,
8813
- MethodAccessSchema as cE,
8814
- MotionAnalysisResultSchema as cF,
8815
- MotionEventSchema as cG,
8816
- MotionOnMotionChangedDataSchema as cH,
8817
- MotionRegionSchema as cI,
8818
- MotionSourceEnum as cJ,
8819
- MotionSourcesSchema as cK,
8820
- MotionStatusSchema as cL,
8821
- MotionTriggerRuntimeStateSchema as cM,
8822
- MotionTriggerStatusSchema as cN,
8823
- StatusSchema as cO,
8824
- NativeDetectionSchema as cP,
8825
- NativeObjectClassEnum as cQ,
8826
- NativeObjectDetectionStatusSchema as cR,
8827
- NetworkAccessStatusSchema as cS,
8828
- NetworkAddressSchema as cT,
8829
- NetworkEndpointSchema as cU,
8830
- NotificationHistoryEntrySchema as cV,
8831
- NotificationRuleSchema as cW,
8832
- NotificationSchema as cX,
8833
- ObjectEventSchema as cY,
8834
- OrchestratorMetricsSchema as cZ,
8835
- OsdOverlayKindEnum as c_,
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
- ExposedDeviceSchema as ci,
8845
- ExposedResourceSchema as cj,
8846
- FeatureManifestSchema as ck,
8847
- FeatureProbeStatusSchema as cl,
8848
- FrameInputSchema as cm,
8849
- GetStreamWithCodecInputSchema as cn,
8850
- GlobalMetricsSchema as co,
8851
- HWACCEL_OPTIONS as cp,
8852
- HealthStatusSchema as cq,
8853
- HistoryPointSchema as cr,
8854
- HistoryResolutionEnum as cs,
8855
- InstalledPackageSchema as ct,
8856
- IntegrationLiteSchema as cu,
8857
- IntegrationWithStateSchema as cv,
8858
- IntercomAbilitySchema as cw,
8859
- IntercomStatusSchema as cx,
8860
- LocationStatSchema as cy,
8861
- LogEntrySchema as cz,
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
- StorageLocationSchema as d$,
8864
- OsdOverlaySchema as d0,
8865
- OsdPositionEnum as d1,
8866
- OsdStatusSchema as d2,
8867
- PIPELINE_FLOW_CAPABILITY_NAMES as d3,
8868
- PIPELINE_OWNER_CAPABILITY_NAMES as d4,
8869
- PackageUpdateSchema as d5,
8870
- PackageVersionInfoSchema as d6,
8871
- PasskeySummarySchema as d7,
8872
- PcmSampleFormatSchema as d8,
8873
- PerScopeBreakdownSchema as d9,
8874
- RunnerCameraDeviceUIFields as dA,
8875
- RunnerLocalLoadSchema as dB,
8876
- RunnerLocalMetricsSchema as dC,
8877
- STORAGE_LOCATION_CARDINALITY as dD,
8878
- ScopedTokenSchema as dE,
8879
- ScopedTokenSummarySchema as dF,
8880
- SearchResultSchema as dG,
8881
- SegmentSchema as dH,
8882
- SendEmailInputSchema as dI,
8883
- SendEmailResultSchema as dJ,
8884
- SettingsPatchSchema as dK,
8885
- SettingsRecordSchema as dL,
8886
- SettingsSchemaWithValuesSchema as dM,
8887
- SettingsUpdateResultSchema as dN,
8888
- SmtpStatusSchema as dO,
8889
- SnapshotImageSchema as dP,
8890
- SpatialDetectionSchema as dQ,
8891
- SsoBridgeClaimsSchema as dR,
8892
- StartEmbeddedInputSchema as dS,
8893
- AbortUploadInputSchema as dT,
8894
- BeginDownloadInputSchema as dU,
8895
- BeginDownloadResultSchema as dV,
8896
- BeginUploadInputSchema as dW,
8897
- BeginUploadResultSchema as dX,
8898
- EndDownloadInputSchema as dY,
8899
- FinalizeUploadInputSchema as dZ,
8900
- StorageLocationRefSchema as d_,
8901
- PipelineAssignmentSchema as da,
8902
- PipelineDefaultStepSchema as db,
8903
- PipelineEngineChoiceSchema as dc,
8904
- PipelineRunResultBridge as dd,
8905
- PipelineStepInputSchema as de,
8906
- PlaceholderReasonSchema as df,
8907
- PolygonPointSchema as dg,
8908
- ProfileSlotSchema as dh,
8909
- ProfileSlotStatusSchema as di,
8910
- ProviderStatusSchema as dj,
8911
- PtzAutotrackRuntimeStateSchema as dk,
8912
- PtzAutotrackSettingsSchema as dl,
8913
- PtzAutotrackStatusSchema as dm,
8914
- PtzAutotrackTargetOptionSchema as dn,
8915
- PtzMoveCommandSchema as dp,
8916
- PtzPositionSchema as dq,
8917
- PtzPresetSchema as dr,
8918
- QueryFilterSchema as ds,
8919
- RegisteredStreamSchema as dt,
8920
- RemoteAccessEndpointSchema as du,
8921
- RemoteAccessProviderInfoSchema as dv,
8922
- ReportMotionInputSchema as dw,
8923
- RtpSourceSchema as dx,
8924
- RtspRestreamEntrySchema as dy,
8925
- RunnerCameraConfigSchema as dz,
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
- StorageLocationTypeSchema as e0,
8928
- ProviderInfoSchema as e1,
8929
- ReadChunkInputSchema as e2,
8930
- TestLocationResultSchema as e3,
8931
- WriteChunkInputSchema as e4,
8932
- StreamFormatSchema as e5,
8933
- StreamInfoSchema as e6,
8934
- StreamNetworkStatsSchema as e7,
8935
- StreamSourceEntrySchema$1 as e8,
8936
- StreamSourceSchema as e9,
8937
- ZoneRuleModeEnum as eA,
8938
- ZoneRuleSchema as eB,
8939
- ZoneRuleStageEnum as eC,
8940
- ZoneRulesArraySchema as eD,
8941
- ZoneSchema as eE,
8942
- ZoneScopeBreakdownSchema as eF,
8943
- accessoryStableId as eG,
8944
- deviceMatchesProfile as eH,
8945
- event as eI,
8946
- expandCapMethods as eJ,
8947
- getAudioMacroClassIds as eK,
8948
- mapAudioLabelToMacro as eL,
8949
- method as eM,
8950
- resolveDeviceProfile as eN,
8951
- webrtcClientHintsSchema as eO,
8952
- SwitchStatusSchema as ea,
8953
- SystemMetricsSchema as eb,
8954
- TestConnectionResultSchema as ec,
8955
- ToastSchema as ed,
8956
- TokenScopeSchema as ee,
8957
- TopologyNodeSchema as ef,
8958
- TopologyProcessSchema as eg,
8959
- TopologyServiceSchema as eh,
8960
- TrackSchema as ei,
8961
- TrackStateSchema as ej,
8962
- TrackedDetectionSchema as ek,
8963
- TurnProviderInfoSchema as el,
8964
- TurnServerSchema as em,
8965
- UpdateIntegrationInputSchema as en,
8966
- UpdateUserInputSchema as eo,
8967
- UserRecordSchema as ep,
8968
- UserSummarySchema as eq,
8969
- WELL_KNOWN_TABS as er,
8970
- WELL_KNOWN_TAB_MAP as es,
8971
- WebrtcStreamChoiceSchema as et,
8972
- WebrtcStreamTargetSchema as eu,
8973
- WidgetHostEnum as ev,
8974
- WidgetMetadataSchema as ew,
8975
- WidgetSizeEnum as ex,
8976
- YAMNET_TO_MACRO as ey,
8977
- ZoneKindEnum as ez,
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-YnRVILXN.mjs.map
9166
+ //# sourceMappingURL=index-Ce7RZWP4.mjs.map