@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
@@ -5670,54 +5670,6 @@ const authProviderCapability = {
5670
5670
  validateToken: method(zod.z.object({ token: zod.z.string() }), AuthResultSchema.nullable())
5671
5671
  }
5672
5672
  };
5673
- const AuthProviderInfoSchema = zod.z.object({
5674
- /** Stable id matching the addon id (used for `getLoginUrl({addonId,…})`). */
5675
- addonId: zod.z.string(),
5676
- /**
5677
- * Per-instance id when one addon registers multiple "logical"
5678
- * providers (e.g. OIDC with Google + Microsoft + custom). The login
5679
- * URL becomes `/addon/${addonId}/${instanceId}/start` — handler reads
5680
- * `:instanceId` from the route. Empty/unset means the addon is a
5681
- * single-instance provider; the URL is `/addon/${addonId}/start`.
5682
- */
5683
- instanceId: zod.z.string().optional(),
5684
- /** Display label shown on the login button + admin row. */
5685
- displayName: zod.z.string(),
5686
- /** Optional iconography hint (lucide-react icon name OR emoji). */
5687
- icon: zod.z.string().optional(),
5688
- /** When true, the provider exposes a redirect-based login flow
5689
- * (`getLoginUrl` returns a URL the browser navigates to). */
5690
- hasRedirectFlow: zod.z.boolean(),
5691
- /** When true, the provider exposes a credential-form login flow
5692
- * (`validateCredentials` accepts username + password). */
5693
- hasCredentialFlow: zod.z.boolean(),
5694
- /** Provider kind, drives admin-UI hint dispatch (oidc / saml / totp / …). */
5695
- kind: zod.z.string().optional(),
5696
- /** Operator-facing status string (e.g. "Connected to https://login.acme.com"). */
5697
- status: zod.z.string().optional(),
5698
- /** When false, the provider is registered but disabled by config; the
5699
- * UI surfaces it as inactive without enumerating it for login. */
5700
- enabled: zod.z.boolean()
5701
- });
5702
- const authenticationCapability = {
5703
- name: "authentication",
5704
- scope: "system",
5705
- mode: "singleton",
5706
- methods: {
5707
- /** All registered auth providers, both enabled and disabled. */
5708
- listProviders: method(zod.z.void(), zod.z.array(AuthProviderInfoSchema).readonly()),
5709
- /**
5710
- * Toggle a provider's enabled flag. Disabled providers stay
5711
- * registered but aren't surfaced on the login page. The orchestrator
5712
- * persists the state in `addon-settings` so it survives restarts.
5713
- */
5714
- setProviderEnabled: method(
5715
- zod.z.object({ addonId: zod.z.string(), enabled: zod.z.boolean() }),
5716
- zod.z.object({ success: zod.z.literal(true) }),
5717
- { kind: "mutation", auth: "admin" }
5718
- )
5719
- }
5720
- };
5721
5673
  const NetworkEndpointSchema = zod.z.object({
5722
5674
  url: zod.z.string(),
5723
5675
  hostname: zod.z.string(),
@@ -5746,7 +5698,6 @@ const networkAccessCapability = {
5746
5698
  name: "network-access",
5747
5699
  scope: "system",
5748
5700
  mode: "collection",
5749
- internal: true,
5750
5701
  providerKind: "ingress",
5751
5702
  methods: {
5752
5703
  start: method(zod.z.void(), NetworkEndpointSchema, { kind: "mutation" }),
@@ -5754,58 +5705,13 @@ const networkAccessCapability = {
5754
5705
  getEndpoint: method(zod.z.void(), NetworkEndpointSchema.nullable()),
5755
5706
  getStatus: method(zod.z.void(), NetworkAccessStatusSchema),
5756
5707
  /**
5757
- * Enumerate every active ingress entry. Default implementation (when
5758
- * the provider omits this method) is derived from `getEndpoint()` —
5759
- * see the remote-access orchestrator for the fallback path.
5708
+ * Enumerate every active ingress entry. Providers that expose only a
5709
+ * single endpoint may omit this method; callers fall back to
5710
+ * `getEndpoint()` in that case.
5760
5711
  */
5761
5712
  listEndpoints: method(zod.z.void(), zod.z.array(NetworkEndpointEntrySchema).readonly())
5762
5713
  }
5763
5714
  };
5764
- const RemoteAccessEndpointSchema = zod.z.object({
5765
- url: zod.z.string(),
5766
- hostname: zod.z.string(),
5767
- port: zod.z.number(),
5768
- protocol: zod.z.enum(["http", "https"])
5769
- });
5770
- const RemoteAccessProviderInfoSchema = zod.z.object({
5771
- /** Stable id matching the addon id. */
5772
- addonId: zod.z.string(),
5773
- /** Display label shown on the admin row — sourced from the addon manifest. */
5774
- displayName: zod.z.string(),
5775
- /** When false, the provider is registered but disabled. */
5776
- enabled: zod.z.boolean(),
5777
- /** True when the underlying tunnel/connection is up. */
5778
- connected: zod.z.boolean(),
5779
- /** Public-facing endpoint, when connected. Null otherwise. */
5780
- endpoint: RemoteAccessEndpointSchema.nullable(),
5781
- /** Last error message (when connected=false), if available. */
5782
- error: zod.z.string().optional()
5783
- });
5784
- const remoteAccessCapability = {
5785
- name: "remote-access",
5786
- scope: "system",
5787
- mode: "singleton",
5788
- methods: {
5789
- /** All registered remote-access providers + their live status. */
5790
- listProviders: method(zod.z.void(), zod.z.array(RemoteAccessProviderInfoSchema).readonly()),
5791
- /**
5792
- * Start a specific provider's tunnel. Per-provider config still
5793
- * lives on the addon's settings panel; this is just the on/off
5794
- * trigger so the admin UI can manage the lifecycle from one place.
5795
- */
5796
- startProvider: method(
5797
- zod.z.object({ addonId: zod.z.string() }),
5798
- RemoteAccessEndpointSchema,
5799
- { kind: "mutation", auth: "admin" }
5800
- ),
5801
- /** Stop a specific provider's tunnel (idempotent on already-stopped). */
5802
- stopProvider: method(
5803
- zod.z.object({ addonId: zod.z.string() }),
5804
- zod.z.object({ success: zod.z.literal(true) }),
5805
- { kind: "mutation", auth: "admin" }
5806
- )
5807
- }
5808
- };
5809
5715
  const TurnServerSchema = zod.z.object({
5810
5716
  /** Single URL or list of URLs (e.g. "turn:turn.example.com:3478?transport=udp"). */
5811
5717
  urls: zod.z.union([zod.z.string(), zod.z.array(zod.z.string())]),
@@ -5828,48 +5734,6 @@ const turnProviderCapability = {
5828
5734
  )
5829
5735
  }
5830
5736
  };
5831
- const TurnProviderInfoSchema = zod.z.object({
5832
- /** Stable id matching the addon id. */
5833
- addonId: zod.z.string(),
5834
- /** Display label shown on the admin row — sourced from the addon manifest. */
5835
- displayName: zod.z.string(),
5836
- /** When false, the provider is registered but disabled. */
5837
- enabled: zod.z.boolean(),
5838
- /** Number of servers this provider is currently exposing. */
5839
- serverCount: zod.z.number(),
5840
- /**
5841
- * Flat list of every TURN/STUN URL this provider currently exposes.
5842
- * One row per URL (multi-URL ICE server entries are flattened). The
5843
- * admin UI shows this in a compact per-provider list so operators
5844
- * can verify what's actually being negotiated without having to dig
5845
- * into the combined `getAllServers` output.
5846
- */
5847
- urls: zod.z.array(zod.z.string()).readonly(),
5848
- /** Last fetch error (when serverCount=0 due to API failure), if any. */
5849
- error: zod.z.string().optional()
5850
- });
5851
- const turnOrchestratorCapability = {
5852
- name: "turn-orchestrator",
5853
- scope: "system",
5854
- mode: "singleton",
5855
- methods: {
5856
- /** All registered TURN providers + per-provider stats. */
5857
- listProviders: method(zod.z.void(), zod.z.array(TurnProviderInfoSchema).readonly()),
5858
- /**
5859
- * Combined list of TURN/STUN servers from all ENABLED providers.
5860
- * Consumed by the WebRTC layer at session-creation time —
5861
- * implementations may fetch fresh short-lived credentials each
5862
- * call (e.g. Cloudflare API), so consumers SHOULD call per-session.
5863
- */
5864
- getAllServers: method(zod.z.void(), zod.z.array(TurnServerSchema).readonly()),
5865
- /** Toggle a provider's enabled flag. */
5866
- setProviderEnabled: method(
5867
- zod.z.object({ addonId: zod.z.string(), enabled: zod.z.boolean() }),
5868
- zod.z.object({ success: zod.z.literal(true) }),
5869
- { kind: "mutation", auth: "admin" }
5870
- )
5871
- }
5872
- };
5873
5737
  const SnapshotImageSchema = zod.z.object({
5874
5738
  base64: zod.z.string(),
5875
5739
  contentType: zod.z.string()
@@ -7465,7 +7329,7 @@ const localNetworkCapability = {
7465
7329
  )
7466
7330
  }
7467
7331
  };
7468
- const MeshEndpointSchema$1 = zod.z.object({
7332
+ const MeshEndpointSchema = zod.z.object({
7469
7333
  /** Stable identifier within the provider (e.g. `mesh-ipv4`, `magicdns`, `funnel`). */
7470
7334
  id: zod.z.string(),
7471
7335
  /** Operator-facing label (e.g. "Mesh IPv4", "MagicDNS"). */
@@ -7538,7 +7402,7 @@ const MeshStatusSchema = zod.z.object({
7538
7402
  /** Number of peers visible to this host (excluding self). */
7539
7403
  peerCount: zod.z.number(),
7540
7404
  /** Every endpoint this provider exposes for the current host. */
7541
- endpoints: zod.z.array(MeshEndpointSchema$1).readonly(),
7405
+ endpoints: zod.z.array(MeshEndpointSchema).readonly(),
7542
7406
  /** Last error from the daemon, when not joined. */
7543
7407
  error: zod.z.string().optional(),
7544
7408
  // ── Account / tenant identity (generic across providers) ────────
@@ -7705,108 +7569,6 @@ const meshNetworkCapability = {
7705
7569
  // tabs driven by this cap.
7706
7570
  }
7707
7571
  };
7708
- const MeshEndpointSchema = zod.z.object({
7709
- id: zod.z.string(),
7710
- label: zod.z.string(),
7711
- scope: zod.z.enum(["mesh", "public"]),
7712
- url: zod.z.string(),
7713
- hostname: zod.z.string(),
7714
- port: zod.z.number(),
7715
- protocol: zod.z.enum(["http", "https"])
7716
- });
7717
- const MeshProviderInfoSchema = zod.z.object({
7718
- /** Stable id matching the addon id. */
7719
- addonId: zod.z.string(),
7720
- /** Display label shown on the admin row — sourced from the addon manifest. */
7721
- displayName: zod.z.string(),
7722
- /** True when the host is joined to this provider's mesh. */
7723
- joined: zod.z.boolean(),
7724
- /** Local mesh IP (empty when not joined). */
7725
- meshIp: zod.z.string(),
7726
- /** MagicDNS / mesh hostname (empty when not configured). */
7727
- magicDnsHostname: zod.z.string(),
7728
- /** Peer count (excluding self). */
7729
- peerCount: zod.z.number(),
7730
- /** Active endpoints (mesh IP + MagicDNS + optional public Funnel). */
7731
- endpoints: zod.z.array(MeshEndpointSchema).readonly(),
7732
- /** Last error reported by the provider. */
7733
- error: zod.z.string().optional(),
7734
- // ── Generic identity fields mirrored from MeshStatus ─────────────
7735
- /** Tenant / tailnet / network display name. Empty pre-join. */
7736
- tenantName: zod.z.string(),
7737
- /** Mesh DNS suffix (e.g. tailXXXX.ts.net). Empty when not configured. */
7738
- magicDnsSuffix: zod.z.string(),
7739
- /** Authenticated user / account login. Null for token-only providers. */
7740
- userLogin: zod.z.string().nullable(),
7741
- /** Provider control-plane URL. */
7742
- controlPlaneUrl: zod.z.string(),
7743
- /** Machine-key expiry (epoch ms). Null when keys don't rotate. */
7744
- keyExpiry: zod.z.number().nullable()
7745
- });
7746
- const meshOrchestratorCapability = {
7747
- name: "mesh-orchestrator",
7748
- scope: "system",
7749
- mode: "singleton",
7750
- methods: {
7751
- /** All registered mesh-network providers + live status. */
7752
- listProviders: method(zod.z.void(), zod.z.array(MeshProviderInfoSchema).readonly()),
7753
- /**
7754
- * Join the mesh of a specific provider. Per-provider config still
7755
- * lives on its settings panel; the orchestrator forwards.
7756
- */
7757
- joinProvider: method(
7758
- zod.z.object({
7759
- addonId: zod.z.string(),
7760
- authKey: zod.z.string().min(8),
7761
- hostname: zod.z.string().optional()
7762
- }),
7763
- zod.z.object({ joined: zod.z.literal(true) }),
7764
- { kind: "mutation" }
7765
- ),
7766
- leaveProvider: method(
7767
- zod.z.object({ addonId: zod.z.string() }),
7768
- zod.z.object({ success: zod.z.literal(true) }),
7769
- { kind: "mutation" }
7770
- ),
7771
- /**
7772
- * Browser-redirect login flow. Forwards to the named provider's
7773
- * `mesh-network.startLogin` and returns the URL the daemon
7774
- * prints. UI opens it in a new tab, then polls `listProviders`
7775
- * for `joined: true`.
7776
- */
7777
- startLoginProvider: method(
7778
- zod.z.object({
7779
- addonId: zod.z.string(),
7780
- hostname: zod.z.string().optional()
7781
- }),
7782
- zod.z.object({ loginUrl: zod.z.string() }),
7783
- { kind: "mutation" }
7784
- ),
7785
- /**
7786
- * Sign out of the provider's account entirely (`mesh-network.logout`).
7787
- * Distinct from `leaveProvider` which only takes the host off-mesh;
7788
- * `logoutProvider` wipes credentials so the next start requires a
7789
- * fresh login.
7790
- */
7791
- logoutProvider: method(
7792
- zod.z.object({ addonId: zod.z.string() }),
7793
- zod.z.object({ loggedOut: zod.z.literal(true) }),
7794
- { kind: "mutation" }
7795
- ),
7796
- /**
7797
- * Per-provider peer list. Forwards to `mesh-network.listPeers` on
7798
- * the addressed provider. Separate from `listProviders` because
7799
- * peer payloads can be large on a heavily-populated tailnet —
7800
- * fetch only when the operator opens the Peers tab.
7801
- */
7802
- listProviderPeers: method(
7803
- zod.z.object({ addonId: zod.z.string() }),
7804
- zod.z.object({
7805
- peers: zod.z.array(MeshPeerSchema).readonly()
7806
- })
7807
- )
7808
- }
7809
- };
7810
7572
  const MethodAccessSchema = zod.z.enum(["view", "create", "delete"]);
7811
7573
  const AllowedProviderSchema = zod.z.union([zod.z.literal("*"), zod.z.array(zod.z.string())]);
7812
7574
  const AllowedDevicesSchema = zod.z.record(zod.z.string(), zod.z.union([zod.z.literal("*"), zod.z.array(zod.z.string())]));
@@ -8699,6 +8461,29 @@ const addonsCapability = {
8699
8461
  isActive: zod.z.boolean()
8700
8462
  })).readonly()
8701
8463
  ),
8464
+ /**
8465
+ * Toggle a single collection-cap provider on/off. Generic write-side
8466
+ * counterpart of `listCapabilityProviders` — drives the per-provider
8467
+ * Enable/Disable affordance in admin pages (TURN servers, etc.)
8468
+ * without needing a bespoke orchestrator cap.
8469
+ *
8470
+ * Reaches the hub's `CapabilityRegistry` directly:
8471
+ * `enableCollectionProvider` / `disableCollectionProvider` flip the
8472
+ * registry-level `disabledProviders` set. `getCollectionEntries`
8473
+ * already filters disabled providers out, so a disabled provider
8474
+ * drops out of every collection aggregate immediately. Only valid
8475
+ * for `mode: 'collection'` caps — the registry no-ops + warns for
8476
+ * singletons.
8477
+ */
8478
+ setCapabilityProviderEnabled: method(
8479
+ zod.z.object({
8480
+ capName: zod.z.string().min(1),
8481
+ addonId: zod.z.string().min(1),
8482
+ enabled: zod.z.boolean()
8483
+ }),
8484
+ zod.z.object({ success: zod.z.literal(true) }),
8485
+ { kind: "mutation", auth: "admin" }
8486
+ ),
8702
8487
  /**
8703
8488
  * Live-update one of the framework packages marked
8704
8489
  * `camstack.system: true` (`@camstack/types|kernel|core|sdk|ui-library`).
@@ -8837,7 +8622,6 @@ exports.AudioMetricsHistoryPointSchema = AudioMetricsHistoryPointSchema;
8837
8622
  exports.AudioMetricsHistorySchema = AudioMetricsHistorySchema;
8838
8623
  exports.AudioMetricsSnapshotSchema = AudioMetricsSnapshotSchema;
8839
8624
  exports.AudioPcmChunkSchema = AudioPcmChunkSchema;
8840
- exports.AuthProviderInfoSchema = AuthProviderInfoSchema;
8841
8625
  exports.AuthResultSchema = AuthResultSchema;
8842
8626
  exports.AutoUpdateSettingsSchema = AutoUpdateSettingsSchema;
8843
8627
  exports.AvailableIntegrationTypeSchema = AvailableIntegrationTypeSchema;
@@ -8943,6 +8727,8 @@ exports.LogLevelSchema = LogLevelSchema$1;
8943
8727
  exports.LogStreamEntrySchema = LogStreamEntrySchema;
8944
8728
  exports.MODEL_FORMATS = MODEL_FORMATS;
8945
8729
  exports.MediaFileSchema = MediaFileSchema;
8730
+ exports.MeshPeerSchema = MeshPeerSchema;
8731
+ exports.MeshStatusSchema = MeshStatusSchema;
8946
8732
  exports.MethodAccessSchema = MethodAccessSchema;
8947
8733
  exports.MotionAnalysisResultSchema = MotionAnalysisResultSchema;
8948
8734
  exports.MotionEventSchema = MotionEventSchema;
@@ -8997,8 +8783,6 @@ exports.PtzPresetSchema = PtzPresetSchema;
8997
8783
  exports.QueryFilterSchema = QueryFilterSchema;
8998
8784
  exports.ReadChunkInputSchema = ReadChunkInputSchema;
8999
8785
  exports.RegisteredStreamSchema = RegisteredStreamSchema;
9000
- exports.RemoteAccessEndpointSchema = RemoteAccessEndpointSchema;
9001
- exports.RemoteAccessProviderInfoSchema = RemoteAccessProviderInfoSchema;
9002
8786
  exports.ReportMotionInputSchema = ReportMotionInputSchema;
9003
8787
  exports.RtpSourceSchema = RtpSourceSchema;
9004
8788
  exports.RtspRestreamEntrySchema = RtspRestreamEntrySchema;
@@ -9043,7 +8827,6 @@ exports.TopologyServiceSchema = TopologyServiceSchema;
9043
8827
  exports.TrackSchema = TrackSchema;
9044
8828
  exports.TrackStateSchema = TrackStateSchema;
9045
8829
  exports.TrackedDetectionSchema = TrackedDetectionSchema;
9046
- exports.TurnProviderInfoSchema = TurnProviderInfoSchema;
9047
8830
  exports.TurnServerSchema = TurnServerSchema;
9048
8831
  exports.UnexposeInputSchema = UnexposeInputSchema;
9049
8832
  exports.UpdateIntegrationInputSchema = UpdateIntegrationInputSchema;
@@ -9083,7 +8866,6 @@ exports.audioAnalyzerCapability = audioAnalyzerCapability;
9083
8866
  exports.audioCodecCapability = audioCodecCapability;
9084
8867
  exports.audioMetricsCapability = audioMetricsCapability;
9085
8868
  exports.authProviderCapability = authProviderCapability;
9086
- exports.authenticationCapability = authenticationCapability;
9087
8869
  exports.backupCapability = backupCapability;
9088
8870
  exports.batteryCapability = batteryCapability;
9089
8871
  exports.brightnessCapability = brightnessCapability;
@@ -9114,7 +8896,6 @@ exports.localNetworkCapability = localNetworkCapability;
9114
8896
  exports.logDestinationCapability = logDestinationCapability;
9115
8897
  exports.mapAudioLabelToMacro = mapAudioLabelToMacro;
9116
8898
  exports.meshNetworkCapability = meshNetworkCapability;
9117
- exports.meshOrchestratorCapability = meshOrchestratorCapability;
9118
8899
  exports.method = method;
9119
8900
  exports.metricsProviderCapability = metricsProviderCapability;
9120
8901
  exports.motionCapability = motionCapability;
@@ -9137,7 +8918,6 @@ exports.ptzCapability = ptzCapability;
9137
8918
  exports.rebootCapability = rebootCapability;
9138
8919
  exports.recordingCapability = recordingCapability;
9139
8920
  exports.recordingEngineCapability = recordingEngineCapability;
9140
- exports.remoteAccessCapability = remoteAccessCapability;
9141
8921
  exports.resolveDeviceProfile = resolveDeviceProfile;
9142
8922
  exports.restreamerCapability = restreamerCapability;
9143
8923
  exports.settingsStoreCapability = settingsStoreCapability;
@@ -9152,7 +8932,6 @@ exports.streamingEngineCapability = streamingEngineCapability;
9152
8932
  exports.switchCapability = switchCapability;
9153
8933
  exports.systemCapability = systemCapability;
9154
8934
  exports.toastCapability = toastCapability;
9155
- exports.turnOrchestratorCapability = turnOrchestratorCapability;
9156
8935
  exports.turnProviderCapability = turnProviderCapability;
9157
8936
  exports.userManagementCapability = userManagementCapability;
9158
8937
  exports.userPasskeysCapability = userPasskeysCapability;
@@ -9162,4 +8941,4 @@ exports.webrtcSessionCapability = webrtcSessionCapability;
9162
8941
  exports.zoneAnalyticsCapability = zoneAnalyticsCapability;
9163
8942
  exports.zoneRulesCapability = zoneRulesCapability;
9164
8943
  exports.zonesCapability = zonesCapability;
9165
- //# sourceMappingURL=index-DS7418lf.js.map
8944
+ //# sourceMappingURL=index-BkSgJYP7.js.map