@camstack/types 0.1.34 → 0.1.35

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 (42) hide show
  1. package/dist/capabilities/addons.cap.d.ts +21 -0
  2. package/dist/capabilities/addons.cap.d.ts.map +1 -1
  3. package/dist/capabilities/index.d.ts +3 -10
  4. package/dist/capabilities/index.d.ts.map +1 -1
  5. package/dist/capabilities/local-network.cap.d.ts +5 -5
  6. package/dist/capabilities/mesh-network.cap.d.ts +4 -2
  7. package/dist/capabilities/mesh-network.cap.d.ts.map +1 -1
  8. package/dist/capabilities/network-access.cap.d.ts +5 -4
  9. package/dist/capabilities/network-access.cap.d.ts.map +1 -1
  10. package/dist/generated/addon-api.d.ts +227 -499
  11. package/dist/generated/addon-api.d.ts.map +1 -1
  12. package/dist/generated/capability-router-map.d.ts +2 -14
  13. package/dist/generated/capability-router-map.d.ts.map +1 -1
  14. package/dist/generated/method-access-map.d.ts +1 -1
  15. package/dist/generated/method-access-map.d.ts.map +1 -1
  16. package/dist/generated/system-proxy.d.ts +3 -9
  17. package/dist/generated/system-proxy.d.ts.map +1 -1
  18. package/dist/{index-DS7418lf.js → index-BkSgJYP7.js} +31 -252
  19. package/dist/index-BkSgJYP7.js.map +1 -0
  20. package/dist/{index-Ce7RZWP4.mjs → index-CWhQOnm9.mjs} +352 -573
  21. package/dist/index-CWhQOnm9.mjs.map +1 -0
  22. package/dist/index.js +13 -69
  23. package/dist/index.js.map +1 -1
  24. package/dist/index.mjs +285 -341
  25. package/dist/index.mjs.map +1 -1
  26. package/dist/interfaces/capability.d.ts +1 -6
  27. package/dist/interfaces/capability.d.ts.map +1 -1
  28. package/dist/interfaces/server-network.d.ts +8 -33
  29. package/dist/interfaces/server-network.d.ts.map +1 -1
  30. package/dist/node.js +1 -1
  31. package/dist/node.mjs +1 -1
  32. package/package.json +1 -1
  33. package/dist/capabilities/authentication.cap.d.ts +0 -73
  34. package/dist/capabilities/authentication.cap.d.ts.map +0 -1
  35. package/dist/capabilities/mesh-orchestrator.cap.d.ts +0 -151
  36. package/dist/capabilities/mesh-orchestrator.cap.d.ts.map +0 -1
  37. package/dist/capabilities/remote-access.cap.d.ts +0 -91
  38. package/dist/capabilities/remote-access.cap.d.ts.map +0 -1
  39. package/dist/capabilities/turn-orchestrator.cap.d.ts +0 -64
  40. package/dist/capabilities/turn-orchestrator.cap.d.ts.map +0 -1
  41. package/dist/index-Ce7RZWP4.mjs.map +0 -1
  42. package/dist/index-DS7418lf.js.map +0 -1
@@ -5669,54 +5669,6 @@ const authProviderCapability = {
5669
5669
  validateToken: method(z.object({ token: z.string() }), AuthResultSchema.nullable())
5670
5670
  }
5671
5671
  };
5672
- const AuthProviderInfoSchema = z.object({
5673
- /** Stable id matching the addon id (used for `getLoginUrl({addonId,…})`). */
5674
- addonId: z.string(),
5675
- /**
5676
- * Per-instance id when one addon registers multiple "logical"
5677
- * providers (e.g. OIDC with Google + Microsoft + custom). The login
5678
- * URL becomes `/addon/${addonId}/${instanceId}/start` — handler reads
5679
- * `:instanceId` from the route. Empty/unset means the addon is a
5680
- * single-instance provider; the URL is `/addon/${addonId}/start`.
5681
- */
5682
- instanceId: z.string().optional(),
5683
- /** Display label shown on the login button + admin row. */
5684
- displayName: z.string(),
5685
- /** Optional iconography hint (lucide-react icon name OR emoji). */
5686
- icon: z.string().optional(),
5687
- /** When true, the provider exposes a redirect-based login flow
5688
- * (`getLoginUrl` returns a URL the browser navigates to). */
5689
- hasRedirectFlow: z.boolean(),
5690
- /** When true, the provider exposes a credential-form login flow
5691
- * (`validateCredentials` accepts username + password). */
5692
- hasCredentialFlow: z.boolean(),
5693
- /** Provider kind, drives admin-UI hint dispatch (oidc / saml / totp / …). */
5694
- kind: z.string().optional(),
5695
- /** Operator-facing status string (e.g. "Connected to https://login.acme.com"). */
5696
- status: z.string().optional(),
5697
- /** When false, the provider is registered but disabled by config; the
5698
- * UI surfaces it as inactive without enumerating it for login. */
5699
- enabled: z.boolean()
5700
- });
5701
- const authenticationCapability = {
5702
- name: "authentication",
5703
- scope: "system",
5704
- mode: "singleton",
5705
- methods: {
5706
- /** All registered auth providers, both enabled and disabled. */
5707
- listProviders: method(z.void(), z.array(AuthProviderInfoSchema).readonly()),
5708
- /**
5709
- * Toggle a provider's enabled flag. Disabled providers stay
5710
- * registered but aren't surfaced on the login page. The orchestrator
5711
- * persists the state in `addon-settings` so it survives restarts.
5712
- */
5713
- setProviderEnabled: method(
5714
- z.object({ addonId: z.string(), enabled: z.boolean() }),
5715
- z.object({ success: z.literal(true) }),
5716
- { kind: "mutation", auth: "admin" }
5717
- )
5718
- }
5719
- };
5720
5672
  const NetworkEndpointSchema = z.object({
5721
5673
  url: z.string(),
5722
5674
  hostname: z.string(),
@@ -5745,7 +5697,6 @@ const networkAccessCapability = {
5745
5697
  name: "network-access",
5746
5698
  scope: "system",
5747
5699
  mode: "collection",
5748
- internal: true,
5749
5700
  providerKind: "ingress",
5750
5701
  methods: {
5751
5702
  start: method(z.void(), NetworkEndpointSchema, { kind: "mutation" }),
@@ -5753,58 +5704,13 @@ const networkAccessCapability = {
5753
5704
  getEndpoint: method(z.void(), NetworkEndpointSchema.nullable()),
5754
5705
  getStatus: method(z.void(), NetworkAccessStatusSchema),
5755
5706
  /**
5756
- * Enumerate every active ingress entry. Default implementation (when
5757
- * the provider omits this method) is derived from `getEndpoint()` —
5758
- * see the remote-access orchestrator for the fallback path.
5707
+ * Enumerate every active ingress entry. Providers that expose only a
5708
+ * single endpoint may omit this method; callers fall back to
5709
+ * `getEndpoint()` in that case.
5759
5710
  */
5760
5711
  listEndpoints: method(z.void(), z.array(NetworkEndpointEntrySchema).readonly())
5761
5712
  }
5762
5713
  };
5763
- const RemoteAccessEndpointSchema = z.object({
5764
- url: z.string(),
5765
- hostname: z.string(),
5766
- port: z.number(),
5767
- protocol: z.enum(["http", "https"])
5768
- });
5769
- const RemoteAccessProviderInfoSchema = z.object({
5770
- /** Stable id matching the addon id. */
5771
- addonId: z.string(),
5772
- /** Display label shown on the admin row — sourced from the addon manifest. */
5773
- displayName: z.string(),
5774
- /** When false, the provider is registered but disabled. */
5775
- enabled: z.boolean(),
5776
- /** True when the underlying tunnel/connection is up. */
5777
- connected: z.boolean(),
5778
- /** Public-facing endpoint, when connected. Null otherwise. */
5779
- endpoint: RemoteAccessEndpointSchema.nullable(),
5780
- /** Last error message (when connected=false), if available. */
5781
- error: z.string().optional()
5782
- });
5783
- const remoteAccessCapability = {
5784
- name: "remote-access",
5785
- scope: "system",
5786
- mode: "singleton",
5787
- methods: {
5788
- /** All registered remote-access providers + their live status. */
5789
- listProviders: method(z.void(), z.array(RemoteAccessProviderInfoSchema).readonly()),
5790
- /**
5791
- * Start a specific provider's tunnel. Per-provider config still
5792
- * lives on the addon's settings panel; this is just the on/off
5793
- * trigger so the admin UI can manage the lifecycle from one place.
5794
- */
5795
- startProvider: method(
5796
- z.object({ addonId: z.string() }),
5797
- RemoteAccessEndpointSchema,
5798
- { kind: "mutation", auth: "admin" }
5799
- ),
5800
- /** Stop a specific provider's tunnel (idempotent on already-stopped). */
5801
- stopProvider: method(
5802
- z.object({ addonId: z.string() }),
5803
- z.object({ success: z.literal(true) }),
5804
- { kind: "mutation", auth: "admin" }
5805
- )
5806
- }
5807
- };
5808
5714
  const TurnServerSchema = z.object({
5809
5715
  /** Single URL or list of URLs (e.g. "turn:turn.example.com:3478?transport=udp"). */
5810
5716
  urls: z.union([z.string(), z.array(z.string())]),
@@ -5827,48 +5733,6 @@ const turnProviderCapability = {
5827
5733
  )
5828
5734
  }
5829
5735
  };
5830
- const TurnProviderInfoSchema = z.object({
5831
- /** Stable id matching the addon id. */
5832
- addonId: z.string(),
5833
- /** Display label shown on the admin row — sourced from the addon manifest. */
5834
- displayName: z.string(),
5835
- /** When false, the provider is registered but disabled. */
5836
- enabled: z.boolean(),
5837
- /** Number of servers this provider is currently exposing. */
5838
- serverCount: z.number(),
5839
- /**
5840
- * Flat list of every TURN/STUN URL this provider currently exposes.
5841
- * One row per URL (multi-URL ICE server entries are flattened). The
5842
- * admin UI shows this in a compact per-provider list so operators
5843
- * can verify what's actually being negotiated without having to dig
5844
- * into the combined `getAllServers` output.
5845
- */
5846
- urls: z.array(z.string()).readonly(),
5847
- /** Last fetch error (when serverCount=0 due to API failure), if any. */
5848
- error: z.string().optional()
5849
- });
5850
- const turnOrchestratorCapability = {
5851
- name: "turn-orchestrator",
5852
- scope: "system",
5853
- mode: "singleton",
5854
- methods: {
5855
- /** All registered TURN providers + per-provider stats. */
5856
- listProviders: method(z.void(), z.array(TurnProviderInfoSchema).readonly()),
5857
- /**
5858
- * Combined list of TURN/STUN servers from all ENABLED providers.
5859
- * Consumed by the WebRTC layer at session-creation time —
5860
- * implementations may fetch fresh short-lived credentials each
5861
- * call (e.g. Cloudflare API), so consumers SHOULD call per-session.
5862
- */
5863
- getAllServers: method(z.void(), z.array(TurnServerSchema).readonly()),
5864
- /** Toggle a provider's enabled flag. */
5865
- setProviderEnabled: method(
5866
- z.object({ addonId: z.string(), enabled: z.boolean() }),
5867
- z.object({ success: z.literal(true) }),
5868
- { kind: "mutation", auth: "admin" }
5869
- )
5870
- }
5871
- };
5872
5736
  const SnapshotImageSchema = z.object({
5873
5737
  base64: z.string(),
5874
5738
  contentType: z.string()
@@ -7464,7 +7328,7 @@ const localNetworkCapability = {
7464
7328
  )
7465
7329
  }
7466
7330
  };
7467
- const MeshEndpointSchema$1 = z.object({
7331
+ const MeshEndpointSchema = z.object({
7468
7332
  /** Stable identifier within the provider (e.g. `mesh-ipv4`, `magicdns`, `funnel`). */
7469
7333
  id: z.string(),
7470
7334
  /** Operator-facing label (e.g. "Mesh IPv4", "MagicDNS"). */
@@ -7537,7 +7401,7 @@ const MeshStatusSchema = z.object({
7537
7401
  /** Number of peers visible to this host (excluding self). */
7538
7402
  peerCount: z.number(),
7539
7403
  /** Every endpoint this provider exposes for the current host. */
7540
- endpoints: z.array(MeshEndpointSchema$1).readonly(),
7404
+ endpoints: z.array(MeshEndpointSchema).readonly(),
7541
7405
  /** Last error from the daemon, when not joined. */
7542
7406
  error: z.string().optional(),
7543
7407
  // ── Account / tenant identity (generic across providers) ────────
@@ -7704,108 +7568,6 @@ const meshNetworkCapability = {
7704
7568
  // tabs driven by this cap.
7705
7569
  }
7706
7570
  };
7707
- const MeshEndpointSchema = z.object({
7708
- id: z.string(),
7709
- label: z.string(),
7710
- scope: z.enum(["mesh", "public"]),
7711
- url: z.string(),
7712
- hostname: z.string(),
7713
- port: z.number(),
7714
- protocol: z.enum(["http", "https"])
7715
- });
7716
- const MeshProviderInfoSchema = z.object({
7717
- /** Stable id matching the addon id. */
7718
- addonId: z.string(),
7719
- /** Display label shown on the admin row — sourced from the addon manifest. */
7720
- displayName: z.string(),
7721
- /** True when the host is joined to this provider's mesh. */
7722
- joined: z.boolean(),
7723
- /** Local mesh IP (empty when not joined). */
7724
- meshIp: z.string(),
7725
- /** MagicDNS / mesh hostname (empty when not configured). */
7726
- magicDnsHostname: z.string(),
7727
- /** Peer count (excluding self). */
7728
- peerCount: z.number(),
7729
- /** Active endpoints (mesh IP + MagicDNS + optional public Funnel). */
7730
- endpoints: z.array(MeshEndpointSchema).readonly(),
7731
- /** Last error reported by the provider. */
7732
- error: z.string().optional(),
7733
- // ── Generic identity fields mirrored from MeshStatus ─────────────
7734
- /** Tenant / tailnet / network display name. Empty pre-join. */
7735
- tenantName: z.string(),
7736
- /** Mesh DNS suffix (e.g. tailXXXX.ts.net). Empty when not configured. */
7737
- magicDnsSuffix: z.string(),
7738
- /** Authenticated user / account login. Null for token-only providers. */
7739
- userLogin: z.string().nullable(),
7740
- /** Provider control-plane URL. */
7741
- controlPlaneUrl: z.string(),
7742
- /** Machine-key expiry (epoch ms). Null when keys don't rotate. */
7743
- keyExpiry: z.number().nullable()
7744
- });
7745
- const meshOrchestratorCapability = {
7746
- name: "mesh-orchestrator",
7747
- scope: "system",
7748
- mode: "singleton",
7749
- methods: {
7750
- /** All registered mesh-network providers + live status. */
7751
- listProviders: method(z.void(), z.array(MeshProviderInfoSchema).readonly()),
7752
- /**
7753
- * Join the mesh of a specific provider. Per-provider config still
7754
- * lives on its settings panel; the orchestrator forwards.
7755
- */
7756
- joinProvider: method(
7757
- z.object({
7758
- addonId: z.string(),
7759
- authKey: z.string().min(8),
7760
- hostname: z.string().optional()
7761
- }),
7762
- z.object({ joined: z.literal(true) }),
7763
- { kind: "mutation" }
7764
- ),
7765
- leaveProvider: method(
7766
- z.object({ addonId: z.string() }),
7767
- z.object({ success: z.literal(true) }),
7768
- { kind: "mutation" }
7769
- ),
7770
- /**
7771
- * Browser-redirect login flow. Forwards to the named provider's
7772
- * `mesh-network.startLogin` and returns the URL the daemon
7773
- * prints. UI opens it in a new tab, then polls `listProviders`
7774
- * for `joined: true`.
7775
- */
7776
- startLoginProvider: method(
7777
- z.object({
7778
- addonId: z.string(),
7779
- hostname: z.string().optional()
7780
- }),
7781
- z.object({ loginUrl: z.string() }),
7782
- { kind: "mutation" }
7783
- ),
7784
- /**
7785
- * Sign out of the provider's account entirely (`mesh-network.logout`).
7786
- * Distinct from `leaveProvider` which only takes the host off-mesh;
7787
- * `logoutProvider` wipes credentials so the next start requires a
7788
- * fresh login.
7789
- */
7790
- logoutProvider: method(
7791
- z.object({ addonId: z.string() }),
7792
- z.object({ loggedOut: z.literal(true) }),
7793
- { kind: "mutation" }
7794
- ),
7795
- /**
7796
- * Per-provider peer list. Forwards to `mesh-network.listPeers` on
7797
- * the addressed provider. Separate from `listProviders` because
7798
- * peer payloads can be large on a heavily-populated tailnet —
7799
- * fetch only when the operator opens the Peers tab.
7800
- */
7801
- listProviderPeers: method(
7802
- z.object({ addonId: z.string() }),
7803
- z.object({
7804
- peers: z.array(MeshPeerSchema).readonly()
7805
- })
7806
- )
7807
- }
7808
- };
7809
7571
  const MethodAccessSchema = z.enum(["view", "create", "delete"]);
7810
7572
  const AllowedProviderSchema = z.union([z.literal("*"), z.array(z.string())]);
7811
7573
  const AllowedDevicesSchema = z.record(z.string(), z.union([z.literal("*"), z.array(z.string())]));
@@ -8698,6 +8460,29 @@ const addonsCapability = {
8698
8460
  isActive: z.boolean()
8699
8461
  })).readonly()
8700
8462
  ),
8463
+ /**
8464
+ * Toggle a single collection-cap provider on/off. Generic write-side
8465
+ * counterpart of `listCapabilityProviders` — drives the per-provider
8466
+ * Enable/Disable affordance in admin pages (TURN servers, etc.)
8467
+ * without needing a bespoke orchestrator cap.
8468
+ *
8469
+ * Reaches the hub's `CapabilityRegistry` directly:
8470
+ * `enableCollectionProvider` / `disableCollectionProvider` flip the
8471
+ * registry-level `disabledProviders` set. `getCollectionEntries`
8472
+ * already filters disabled providers out, so a disabled provider
8473
+ * drops out of every collection aggregate immediately. Only valid
8474
+ * for `mode: 'collection'` caps — the registry no-ops + warns for
8475
+ * singletons.
8476
+ */
8477
+ setCapabilityProviderEnabled: method(
8478
+ z.object({
8479
+ capName: z.string().min(1),
8480
+ addonId: z.string().min(1),
8481
+ enabled: z.boolean()
8482
+ }),
8483
+ z.object({ success: z.literal(true) }),
8484
+ { kind: "mutation", auth: "admin" }
8485
+ ),
8701
8486
  /**
8702
8487
  * Live-update one of the framework packages marked
8703
8488
  * `camstack.system: true` (`@camstack/types|kernel|core|sdk|ui-library`).
@@ -8800,7 +8585,7 @@ const PIPELINE_OWNER_CAPABILITY_NAMES = [
8800
8585
  "pipeline-runner"
8801
8586
  ];
8802
8587
  export {
8803
- nativeObjectDetectionCapability as $,
8588
+ networkQualityCapability as $,
8804
8589
  adminUiCapability as A,
8805
8590
  advancedNotifierCapability as B,
8806
8591
  alertsCapability as C,
@@ -8808,339 +8593,333 @@ export {
8808
8593
  audioAnalyzerCapability as E,
8809
8594
  audioCodecCapability as F,
8810
8595
  authProviderCapability as G,
8811
- authenticationCapability as H,
8812
- backupCapability as I,
8813
- cameraCredentialsCapability as J,
8814
- decoderCapability as K,
8815
- detectionPipelineCapability as L,
8816
- deviceExportCapability as M,
8817
- deviceManagerCapability as N,
8818
- deviceOpsCapability as O,
8819
- deviceStateCapability as P,
8820
- embeddingEncoderCapability as Q,
8821
- eventsCapability as R,
8822
- integrationsCapability as S,
8823
- intercomCapability as T,
8824
- localNetworkCapability as U,
8825
- logDestinationCapability as V,
8826
- meshNetworkCapability as W,
8827
- meshOrchestratorCapability as X,
8828
- metricsProviderCapability as Y,
8829
- motionDetectionCapability as Z,
8830
- mqttBrokerCapability as _,
8596
+ backupCapability as H,
8597
+ cameraCredentialsCapability as I,
8598
+ decoderCapability as J,
8599
+ detectionPipelineCapability as K,
8600
+ deviceExportCapability as L,
8601
+ deviceManagerCapability as M,
8602
+ deviceOpsCapability as N,
8603
+ deviceStateCapability as O,
8604
+ embeddingEncoderCapability as P,
8605
+ eventsCapability as Q,
8606
+ integrationsCapability as R,
8607
+ intercomCapability as S,
8608
+ localNetworkCapability as T,
8609
+ logDestinationCapability as U,
8610
+ meshNetworkCapability as V,
8611
+ metricsProviderCapability as W,
8612
+ motionDetectionCapability as X,
8613
+ mqttBrokerCapability as Y,
8614
+ nativeObjectDetectionCapability as Z,
8615
+ networkAccessCapability as _,
8831
8616
  zoneRulesCapability as a,
8832
- AudioEventSchema as a$,
8833
- networkAccessCapability as a0,
8834
- networkQualityCapability as a1,
8835
- nodesCapability as a2,
8836
- notificationOutputCapability as a3,
8837
- osdCapability as a4,
8838
- pipelineAnalyticsCapability as a5,
8839
- pipelineExecutorCapability as a6,
8840
- pipelineOrchestratorCapability as a7,
8841
- pipelineRunnerCapability as a8,
8842
- platformProbeCapability as a9,
8843
- AUDIO_MACRO_LABELS as aA,
8844
- AccessoriesStatusSchema as aB,
8845
- AccessoryKind as aC,
8846
- AddBrokerInputSchema as aD,
8847
- AddonAutoUpdateSchema as aE,
8848
- AddonListItemSchema as aF,
8849
- AddonPageDeclarationSchema as aG,
8850
- AddonPageInfoSchema as aH,
8851
- AgentLoadSummarySchema as aI,
8852
- AlertSchema as aJ,
8853
- AlertSeveritySchema as aK,
8854
- AlertSourceSchema as aL,
8855
- AlertStatusSchema as aM,
8856
- ApiKeyRecordSchema as aN,
8857
- ApiKeySummarySchema as aO,
8858
- ArchiveEntrySchema as aP,
8859
- ArchiveManifestSchema as aQ,
8860
- AudioAnalysisResultSchema as aR,
8861
- AudioAnalysisSettingsSchema as aS,
8862
- AudioChunkInputSchema as aT,
8863
- AudioClassSummarySchema as aU,
8864
- AudioClassificationLabelSchema as aV,
8865
- AudioClassificationResultSchema as aW,
8866
- AudioCodecInfoSchema as aX,
8867
- AudioDecodeSessionConfigSchema as aY,
8868
- AudioEncodeSessionConfigSchema as aZ,
8869
- AudioEncodedChunkSchema as a_,
8870
- ptzCapability as aa,
8871
- rebootCapability as ab,
8872
- recordingCapability as ac,
8873
- recordingEngineCapability as ad,
8874
- remoteAccessCapability as ae,
8875
- restreamerCapability as af,
8876
- settingsStoreCapability as ag,
8877
- smtpProviderCapability as ah,
8878
- snapshotCapability as ai,
8879
- snapshotProviderCapability as aj,
8880
- ssoBridgeCapability as ak,
8881
- storageCapability as al,
8882
- storageProviderCapability as am,
8883
- streamBrokerCapability as an,
8884
- streamingEngineCapability as ao,
8885
- systemCapability as ap,
8886
- toastCapability as aq,
8887
- turnOrchestratorCapability as ar,
8888
- turnProviderCapability as as,
8889
- userManagementCapability as at,
8890
- userPasskeysCapability as au,
8891
- webrtcCapability as av,
8892
- webrtcSessionCapability as aw,
8893
- ACCESSORY_LABEL as ax,
8894
- APPLE_SA_TO_MACRO as ay,
8895
- AUDIO_BACKEND_CHOICES as az,
8617
+ AudioMetricsSnapshotSchema as a$,
8618
+ nodesCapability as a0,
8619
+ notificationOutputCapability as a1,
8620
+ osdCapability as a2,
8621
+ pipelineAnalyticsCapability as a3,
8622
+ pipelineExecutorCapability as a4,
8623
+ pipelineOrchestratorCapability as a5,
8624
+ pipelineRunnerCapability as a6,
8625
+ platformProbeCapability as a7,
8626
+ ptzCapability as a8,
8627
+ rebootCapability as a9,
8628
+ AddonAutoUpdateSchema as aA,
8629
+ AddonListItemSchema as aB,
8630
+ AddonPageDeclarationSchema as aC,
8631
+ AddonPageInfoSchema as aD,
8632
+ AgentLoadSummarySchema as aE,
8633
+ AlertSchema as aF,
8634
+ AlertSeveritySchema as aG,
8635
+ AlertSourceSchema as aH,
8636
+ AlertStatusSchema as aI,
8637
+ ApiKeyRecordSchema as aJ,
8638
+ ApiKeySummarySchema as aK,
8639
+ ArchiveEntrySchema as aL,
8640
+ ArchiveManifestSchema as aM,
8641
+ AudioAnalysisResultSchema as aN,
8642
+ AudioAnalysisSettingsSchema as aO,
8643
+ AudioChunkInputSchema as aP,
8644
+ AudioClassSummarySchema as aQ,
8645
+ AudioClassificationLabelSchema as aR,
8646
+ AudioClassificationResultSchema as aS,
8647
+ AudioCodecInfoSchema as aT,
8648
+ AudioDecodeSessionConfigSchema as aU,
8649
+ AudioEncodeSessionConfigSchema as aV,
8650
+ AudioEncodedChunkSchema as aW,
8651
+ AudioEventSchema as aX,
8652
+ AudioLevelSchema as aY,
8653
+ AudioMetricsHistoryPointSchema as aZ,
8654
+ AudioMetricsHistorySchema as a_,
8655
+ recordingCapability as aa,
8656
+ recordingEngineCapability as ab,
8657
+ restreamerCapability as ac,
8658
+ settingsStoreCapability as ad,
8659
+ smtpProviderCapability as ae,
8660
+ snapshotCapability as af,
8661
+ snapshotProviderCapability as ag,
8662
+ ssoBridgeCapability as ah,
8663
+ storageCapability as ai,
8664
+ storageProviderCapability as aj,
8665
+ streamBrokerCapability as ak,
8666
+ streamingEngineCapability as al,
8667
+ systemCapability as am,
8668
+ toastCapability as an,
8669
+ turnProviderCapability as ao,
8670
+ userManagementCapability as ap,
8671
+ userPasskeysCapability as aq,
8672
+ webrtcCapability as ar,
8673
+ webrtcSessionCapability as as,
8674
+ ACCESSORY_LABEL as at,
8675
+ APPLE_SA_TO_MACRO as au,
8676
+ AUDIO_BACKEND_CHOICES as av,
8677
+ AUDIO_MACRO_LABELS as aw,
8678
+ AccessoriesStatusSchema as ax,
8679
+ AccessoryKind as ay,
8680
+ AddBrokerInputSchema as az,
8896
8681
  zoneAnalyticsCapability as b,
8897
- DeviceExportStatusSchema as b$,
8898
- AudioLevelSchema as b0,
8899
- AudioMetricsHistoryPointSchema as b1,
8900
- AudioMetricsHistorySchema as b2,
8901
- AudioMetricsSnapshotSchema as b3,
8902
- AudioPcmChunkSchema as b4,
8903
- AuthProviderInfoSchema as b5,
8904
- AuthResultSchema as b6,
8905
- AutoUpdateSettingsSchema as b7,
8906
- AvailableIntegrationTypeSchema as b8,
8907
- BATTERY_DEVICE_PROFILE as b9,
8908
- ClusterAddonNodeDeploymentSchema as bA,
8909
- ClusterAddonStatusEntrySchema as bB,
8910
- CollectionColumnSchema as bC,
8911
- CollectionIndexSchema as bD,
8912
- ConfigEntrySchema$1 as bE,
8913
- ConfigSectionWithValuesSchema as bF,
8914
- ConfigTabDeclarationSchema as bG,
8915
- CreateApiKeyInputSchema as bH,
8916
- CreateApiKeyResultSchema as bI,
8917
- CreateIntegrationInputSchema as bJ,
8918
- CreateScopedTokenInputSchema as bK,
8919
- CreateScopedTokenResultSchema as bL,
8920
- CreateUserInputSchema as bM,
8921
- CustomActionInputSchema as bN,
8922
- DEFAULT_AUDIO_ANALYZER_CONFIG as bO,
8923
- DEFAULT_DECODER_HWACCEL_CONFIG as bP,
8924
- DEVICE_PROFILES as bQ,
8925
- DEVICE_SETTINGS_CONTRIBUTION_METHODS as bR,
8926
- DEVICE_STATUS_METHOD as bS,
8927
- DecodedFrameSchema as bT,
8928
- DecoderAssignmentSchema as bU,
8929
- DecoderSessionConfigSchema as bV,
8930
- DecoderStatsSchema as bW,
8931
- DeleteIntegrationResultSchema as bX,
8932
- DetectorOutputSchema as bY,
8933
- DeviceDiscoveryStatusSchema as bZ,
8934
- ExposeInputSchema as b_,
8935
- BackupDestinationInfoSchema as ba,
8936
- BackupEntrySchema as bb,
8937
- BatteryStatusSchema as bc,
8938
- BoundingBoxSchema as bd,
8939
- BrightnessStatusSchema as be,
8940
- BrokerAudioClientSchema as bf,
8941
- BrokerClientsSchema as bg,
8942
- BrokerConnectionDetailsSchema as bh,
8943
- BrokerDecodedClientSchema as bi,
8944
- BrokerInfoSchema as bj,
8945
- BrokerRtspClientSchema as bk,
8946
- BrokerStatsSchema as bl,
8947
- BrokerStatusSchema$1 as bm,
8948
- CAM_PROFILE_ORDER as bn,
8949
- CamProfileSchema as bo,
8950
- CamStreamKindSchema as bp,
8951
- CamStreamResolutionSchema as bq,
8952
- CameraCredentialsSchema as br,
8953
- CameraCredentialsStatusSchema as bs,
8954
- CameraMetricsSchema as bt,
8955
- CameraMetricsWithDeviceIdSchema as bu,
8956
- CameraStreamSchema as bv,
8957
- CapScopeSchema as bw,
8958
- CapabilityBindingsSchema as bx,
8959
- ChargingStatus as by,
8960
- ClientNetworkStatsSchema as bz,
8682
+ DeviceRole as b$,
8683
+ AudioPcmChunkSchema as b0,
8684
+ AuthResultSchema as b1,
8685
+ AutoUpdateSettingsSchema as b2,
8686
+ AvailableIntegrationTypeSchema as b3,
8687
+ BATTERY_DEVICE_PROFILE as b4,
8688
+ BackupDestinationInfoSchema as b5,
8689
+ BackupEntrySchema as b6,
8690
+ BatteryStatusSchema as b7,
8691
+ BoundingBoxSchema as b8,
8692
+ BrightnessStatusSchema as b9,
8693
+ ConfigSectionWithValuesSchema as bA,
8694
+ ConfigTabDeclarationSchema as bB,
8695
+ CreateApiKeyInputSchema as bC,
8696
+ CreateApiKeyResultSchema as bD,
8697
+ CreateIntegrationInputSchema as bE,
8698
+ CreateScopedTokenInputSchema as bF,
8699
+ CreateScopedTokenResultSchema as bG,
8700
+ CreateUserInputSchema as bH,
8701
+ CustomActionInputSchema as bI,
8702
+ DEFAULT_AUDIO_ANALYZER_CONFIG as bJ,
8703
+ DEFAULT_DECODER_HWACCEL_CONFIG as bK,
8704
+ DEVICE_PROFILES as bL,
8705
+ DEVICE_SETTINGS_CONTRIBUTION_METHODS as bM,
8706
+ DEVICE_STATUS_METHOD as bN,
8707
+ DecodedFrameSchema as bO,
8708
+ DecoderAssignmentSchema as bP,
8709
+ DecoderSessionConfigSchema as bQ,
8710
+ DecoderStatsSchema as bR,
8711
+ DeleteIntegrationResultSchema as bS,
8712
+ DetectorOutputSchema as bT,
8713
+ DeviceDiscoveryStatusSchema as bU,
8714
+ ExposeInputSchema as bV,
8715
+ DeviceExportStatusSchema as bW,
8716
+ UnexposeInputSchema as bX,
8717
+ DeviceFeature as bY,
8718
+ DeviceInfoSchema as bZ,
8719
+ DeviceNetworkStatsSchema as b_,
8720
+ BrokerAudioClientSchema as ba,
8721
+ BrokerClientsSchema as bb,
8722
+ BrokerConnectionDetailsSchema as bc,
8723
+ BrokerDecodedClientSchema as bd,
8724
+ BrokerInfoSchema as be,
8725
+ BrokerRtspClientSchema as bf,
8726
+ BrokerStatsSchema as bg,
8727
+ BrokerStatusSchema$1 as bh,
8728
+ CAM_PROFILE_ORDER as bi,
8729
+ CamProfileSchema as bj,
8730
+ CamStreamKindSchema as bk,
8731
+ CamStreamResolutionSchema as bl,
8732
+ CameraCredentialsSchema as bm,
8733
+ CameraCredentialsStatusSchema as bn,
8734
+ CameraMetricsSchema as bo,
8735
+ CameraMetricsWithDeviceIdSchema as bp,
8736
+ CameraStreamSchema as bq,
8737
+ CapScopeSchema as br,
8738
+ CapabilityBindingsSchema as bs,
8739
+ ChargingStatus as bt,
8740
+ ClientNetworkStatsSchema as bu,
8741
+ ClusterAddonNodeDeploymentSchema as bv,
8742
+ ClusterAddonStatusEntrySchema as bw,
8743
+ CollectionColumnSchema as bx,
8744
+ CollectionIndexSchema as by,
8745
+ ConfigEntrySchema$1 as bz,
8961
8746
  motionCapability as c,
8962
- OrchestratorMetricsSchema as c$,
8963
- UnexposeInputSchema as c0,
8964
- DeviceFeature as c1,
8965
- DeviceInfoSchema as c2,
8966
- DeviceNetworkStatsSchema as c3,
8967
- DeviceRole as c4,
8968
- DeviceStatusSchema as c5,
8969
- DeviceType as c6,
8970
- DiscoveredChildDeviceSchema as c7,
8971
- DiscoveredChildStatusSchema as c8,
8972
- DiscoveredDeviceSchema as c9,
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_,
9000
- DoorbellPressEventSchema as ca,
9001
- DoorbellStatusSchema as cb,
9002
- EmbeddingInfoSchema as cc,
9003
- EmbeddingResultSchema as cd,
9004
- EncodedPacketSchema as ce,
9005
- EnrichedWidgetMetadataSchema as cf,
9006
- EventItemSchema as cg,
9007
- EventKindSchema as ch,
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,
8747
+ OsdOverlaySchema as c$,
8748
+ DeviceStatusSchema as c0,
8749
+ DeviceType as c1,
8750
+ DiscoveredChildDeviceSchema as c2,
8751
+ DiscoveredChildStatusSchema as c3,
8752
+ DiscoveredDeviceSchema as c4,
8753
+ DoorbellPressEventSchema as c5,
8754
+ DoorbellStatusSchema as c6,
8755
+ EmbeddingInfoSchema as c7,
8756
+ EmbeddingResultSchema as c8,
8757
+ EncodedPacketSchema as c9,
8758
+ MediaFileSchema as cA,
8759
+ MeshPeerSchema as cB,
8760
+ MeshStatusSchema as cC,
8761
+ MethodAccessSchema as cD,
8762
+ MotionAnalysisResultSchema as cE,
8763
+ MotionEventSchema as cF,
8764
+ MotionOnMotionChangedDataSchema as cG,
8765
+ MotionRegionSchema as cH,
8766
+ MotionSourceEnum as cI,
8767
+ MotionSourcesSchema as cJ,
8768
+ MotionStatusSchema as cK,
8769
+ MotionTriggerRuntimeStateSchema as cL,
8770
+ MotionTriggerStatusSchema as cM,
8771
+ StatusSchema as cN,
8772
+ NativeDetectionSchema as cO,
8773
+ NativeObjectClassEnum as cP,
8774
+ NativeObjectDetectionStatusSchema as cQ,
8775
+ NetworkAccessStatusSchema as cR,
8776
+ NetworkAddressSchema as cS,
8777
+ NetworkEndpointSchema as cT,
8778
+ NotificationHistoryEntrySchema as cU,
8779
+ NotificationRuleSchema as cV,
8780
+ NotificationSchema as cW,
8781
+ ObjectEventSchema as cX,
8782
+ OrchestratorMetricsSchema as cY,
8783
+ OsdOverlayKindEnum as cZ,
8784
+ OsdOverlayPatchSchema as c_,
8785
+ EnrichedWidgetMetadataSchema as ca,
8786
+ EventItemSchema as cb,
8787
+ EventKindSchema as cc,
8788
+ ExportSetupFieldSchema as cd,
8789
+ ExportSetupSchema as ce,
8790
+ ExposedDeviceSchema as cf,
8791
+ ExposedResourceSchema as cg,
8792
+ FeatureManifestSchema as ch,
8793
+ FeatureProbeStatusSchema as ci,
8794
+ FrameInputSchema as cj,
8795
+ GetStreamWithCodecInputSchema as ck,
8796
+ GlobalMetricsSchema as cl,
8797
+ HWACCEL_OPTIONS as cm,
8798
+ HealthStatusSchema as cn,
8799
+ HistoryPointSchema as co,
8800
+ HistoryResolutionEnum as cp,
8801
+ InstalledPackageSchema as cq,
8802
+ IntegrationLiteSchema as cr,
8803
+ IntegrationWithStateSchema as cs,
8804
+ IntercomAbilitySchema as ct,
8805
+ IntercomStatusSchema as cu,
8806
+ LocationStatSchema as cv,
8807
+ LogEntrySchema as cw,
8808
+ LogLevelSchema$1 as cx,
8809
+ LogStreamEntrySchema as cy,
8810
+ MODEL_FORMATS as cz,
9026
8811
  doorbellCapability as d,
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,
8812
+ ReadChunkInputSchema as d$,
8813
+ OsdPositionEnum as d0,
8814
+ OsdStatusSchema as d1,
8815
+ PIPELINE_FLOW_CAPABILITY_NAMES as d2,
8816
+ PIPELINE_OWNER_CAPABILITY_NAMES as d3,
8817
+ PackageUpdateSchema as d4,
8818
+ PackageVersionInfoSchema as d5,
8819
+ PasskeySummarySchema as d6,
8820
+ PcmSampleFormatSchema as d7,
8821
+ PerScopeBreakdownSchema as d8,
8822
+ PipelineAssignmentSchema as d9,
8823
+ STORAGE_LOCATION_CARDINALITY as dA,
8824
+ ScopedTokenSchema as dB,
8825
+ ScopedTokenSummarySchema as dC,
8826
+ SearchResultSchema as dD,
8827
+ SegmentSchema as dE,
8828
+ SendEmailInputSchema as dF,
8829
+ SendEmailResultSchema as dG,
8830
+ SettingsPatchSchema as dH,
8831
+ SettingsRecordSchema as dI,
8832
+ SettingsSchemaWithValuesSchema as dJ,
8833
+ SettingsUpdateResultSchema as dK,
8834
+ SmtpStatusSchema as dL,
8835
+ SnapshotImageSchema as dM,
8836
+ SpatialDetectionSchema as dN,
8837
+ SsoBridgeClaimsSchema as dO,
8838
+ StartEmbeddedInputSchema as dP,
8839
+ AbortUploadInputSchema as dQ,
8840
+ BeginDownloadInputSchema as dR,
8841
+ BeginDownloadResultSchema as dS,
8842
+ BeginUploadInputSchema as dT,
8843
+ BeginUploadResultSchema as dU,
8844
+ EndDownloadInputSchema as dV,
8845
+ FinalizeUploadInputSchema as dW,
8846
+ StorageLocationRefSchema as dX,
8847
+ StorageLocationSchema as dY,
8848
+ StorageLocationTypeSchema as dZ,
8849
+ ProviderInfoSchema as d_,
8850
+ PipelineDefaultStepSchema as da,
8851
+ PipelineEngineChoiceSchema as db,
8852
+ PipelineRunResultBridge as dc,
8853
+ PipelineStepInputSchema as dd,
8854
+ PlaceholderReasonSchema as de,
8855
+ PolygonPointSchema as df,
8856
+ ProfileSlotSchema as dg,
8857
+ ProfileSlotStatusSchema as dh,
8858
+ ProviderStatusSchema as di,
8859
+ PtzAutotrackRuntimeStateSchema as dj,
8860
+ PtzAutotrackSettingsSchema as dk,
8861
+ PtzAutotrackStatusSchema as dl,
8862
+ PtzAutotrackTargetOptionSchema as dm,
8863
+ PtzMoveCommandSchema as dn,
8864
+ PtzPositionSchema as dp,
8865
+ PtzPresetSchema as dq,
8866
+ QueryFilterSchema as dr,
8867
+ RegisteredStreamSchema as ds,
8868
+ ReportMotionInputSchema as dt,
8869
+ RtpSourceSchema as du,
8870
+ RtspRestreamEntrySchema as dv,
8871
+ RunnerCameraConfigSchema as dw,
8872
+ RunnerCameraDeviceUIFields as dx,
8873
+ RunnerLocalLoadSchema as dy,
8874
+ RunnerLocalMetricsSchema as dz,
9090
8875
  errMsg as e,
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,
8876
+ TestLocationResultSchema as e0,
8877
+ WriteChunkInputSchema as e1,
8878
+ StreamFormatSchema as e2,
8879
+ StreamInfoSchema as e3,
8880
+ StreamNetworkStatsSchema as e4,
8881
+ StreamSourceEntrySchema$1 as e5,
8882
+ StreamSourceSchema as e6,
8883
+ SwitchStatusSchema as e7,
8884
+ SystemMetricsSchema as e8,
8885
+ TestConnectionResultSchema as e9,
8886
+ ZoneSchema as eA,
8887
+ ZoneScopeBreakdownSchema as eB,
8888
+ accessoryStableId as eC,
8889
+ deviceMatchesProfile as eD,
8890
+ event as eE,
8891
+ expandCapMethods as eF,
8892
+ getAudioMacroClassIds as eG,
8893
+ mapAudioLabelToMacro as eH,
8894
+ method as eI,
8895
+ resolveDeviceProfile as eJ,
8896
+ webrtcClientHintsSchema as eK,
8897
+ ToastSchema as ea,
8898
+ TokenScopeSchema as eb,
8899
+ TopologyNodeSchema as ec,
8900
+ TopologyProcessSchema as ed,
8901
+ TopologyServiceSchema as ee,
8902
+ TrackSchema as ef,
8903
+ TrackStateSchema as eg,
8904
+ TrackedDetectionSchema as eh,
8905
+ TurnServerSchema as ei,
8906
+ UpdateIntegrationInputSchema as ej,
8907
+ UpdateUserInputSchema as ek,
8908
+ UserRecordSchema as el,
8909
+ UserSummarySchema as em,
8910
+ WELL_KNOWN_TABS as en,
8911
+ WELL_KNOWN_TAB_MAP as eo,
8912
+ WebrtcStreamChoiceSchema as ep,
8913
+ WebrtcStreamTargetSchema as eq,
8914
+ WidgetHostEnum as er,
8915
+ WidgetMetadataSchema as es,
8916
+ WidgetSizeEnum as et,
8917
+ YAMNET_TO_MACRO as eu,
8918
+ ZoneKindEnum as ev,
8919
+ ZoneRuleModeEnum as ew,
8920
+ ZoneRuleSchema as ex,
8921
+ ZoneRuleStageEnum as ey,
8922
+ ZoneRulesArraySchema as ez,
9144
8923
  featureProbeCapability as f,
9145
8924
  deviceStatusCapability as g,
9146
8925
  hydrateSchema as h,
@@ -9163,4 +8942,4 @@ export {
9163
8942
  addonsCapability as y,
9164
8943
  zonesCapability as z
9165
8944
  };
9166
- //# sourceMappingURL=index-Ce7RZWP4.mjs.map
8945
+ //# sourceMappingURL=index-CWhQOnm9.mjs.map