@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
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const index = require("./index-DS7418lf.js");
3
+ const index = require("./index-BkSgJYP7.js");
4
4
  const zod = require("zod");
5
5
  class DisposerChain {
6
6
  disposers = [];
@@ -3235,6 +3235,7 @@ function createSystemProxy(api) {
3235
3235
  getLastRestart: (input) => dispatch("addons", "getLastRestart", "query", input),
3236
3236
  listFrameworkPackages: (input) => dispatch("addons", "listFrameworkPackages", "query", input),
3237
3237
  listCapabilityProviders: (input) => dispatch("addons", "listCapabilityProviders", "query", input),
3238
+ setCapabilityProviderEnabled: (input) => dispatch("addons", "setCapabilityProviderEnabled", "mutation", input),
3238
3239
  updateFrameworkPackage: (input) => dispatch("addons", "updateFrameworkPackage", "mutation", input),
3239
3240
  getVersions: (input) => dispatch("addons", "getVersions", "query", input),
3240
3241
  restartAddon: (input) => dispatch("addons", "restartAddon", "mutation", input),
@@ -3283,10 +3284,6 @@ function createSystemProxy(api) {
3283
3284
  flushEncode: (input) => dispatch("audioCodec", "flushEncode", "mutation", input),
3284
3285
  listActiveSessions: (input) => dispatch("audioCodec", "listActiveSessions", "query", input)
3285
3286
  };
3286
- const authenticationInterface = {
3287
- listProviders: (input) => dispatch("authentication", "listProviders", "query", input),
3288
- setProviderEnabled: (input) => dispatch("authentication", "setProviderEnabled", "mutation", input)
3289
- };
3290
3287
  const backupInterface = {
3291
3288
  listDestinations: (input) => dispatch("backup", "listDestinations", "query", input),
3292
3289
  trigger: (input) => dispatch("backup", "trigger", "mutation", input),
@@ -3383,14 +3380,6 @@ function createSystemProxy(api) {
3383
3380
  listPeers: (input) => dispatch("meshNetwork", "listPeers", "query", input),
3384
3381
  testConnection: (input) => dispatch("meshNetwork", "testConnection", "mutation", input)
3385
3382
  };
3386
- const meshOrchestratorInterface = {
3387
- listProviders: (input) => dispatch("meshOrchestrator", "listProviders", "query", input),
3388
- joinProvider: (input) => dispatch("meshOrchestrator", "joinProvider", "mutation", input),
3389
- leaveProvider: (input) => dispatch("meshOrchestrator", "leaveProvider", "mutation", input),
3390
- startLoginProvider: (input) => dispatch("meshOrchestrator", "startLoginProvider", "mutation", input),
3391
- logoutProvider: (input) => dispatch("meshOrchestrator", "logoutProvider", "mutation", input),
3392
- listProviderPeers: (input) => dispatch("meshOrchestrator", "listProviderPeers", "query", input)
3393
- };
3394
3383
  const metricsProviderInterface = {
3395
3384
  collectSnapshot: (input) => dispatch("metricsProvider", "collectSnapshot", "query", input),
3396
3385
  getCached: (input) => dispatch("metricsProvider", "getCached", "query", input),
@@ -3414,6 +3403,13 @@ function createSystemProxy(api) {
3414
3403
  stopEmbeddedBroker: (input) => dispatch("mqttBroker", "stopEmbeddedBroker", "mutation", input),
3415
3404
  getStatus: (input) => dispatch("mqttBroker", "getStatus", "query", input)
3416
3405
  };
3406
+ const networkAccessInterface = {
3407
+ start: (input) => dispatch("networkAccess", "start", "mutation", input),
3408
+ stop: (input) => dispatch("networkAccess", "stop", "mutation", input),
3409
+ getEndpoint: (input) => dispatch("networkAccess", "getEndpoint", "query", input),
3410
+ getStatus: (input) => dispatch("networkAccess", "getStatus", "query", input),
3411
+ listEndpoints: (input) => dispatch("networkAccess", "listEndpoints", "query", input)
3412
+ };
3417
3413
  const networkQualityInterface = {
3418
3414
  getAllStats: (input) => dispatch("networkQuality", "getAllStats", "query", input)
3419
3415
  };
@@ -3523,11 +3519,6 @@ function createSystemProxy(api) {
3523
3519
  updateRetentionConfig: (input) => dispatch("recordingEngine", "updateRetentionConfig", "mutation", input),
3524
3520
  getMotionStats: (input) => dispatch("recordingEngine", "getMotionStats", "query", input)
3525
3521
  };
3526
- const remoteAccessInterface = {
3527
- listProviders: (input) => dispatch("remoteAccess", "listProviders", "query", input),
3528
- startProvider: (input) => dispatch("remoteAccess", "startProvider", "mutation", input),
3529
- stopProvider: (input) => dispatch("remoteAccess", "stopProvider", "mutation", input)
3530
- };
3531
3522
  const settingsStoreInterface = {
3532
3523
  get: (input) => dispatch("settingsStore", "get", "query", input),
3533
3524
  set: (input) => dispatch("settingsStore", "set", "mutation", input),
@@ -3593,11 +3584,6 @@ function createSystemProxy(api) {
3593
3584
  const toastInterface = {
3594
3585
  onToast: (input, push) => dispatch("toast", "onToast", "subscription", input, push)
3595
3586
  };
3596
- const turnOrchestratorInterface = {
3597
- listProviders: (input) => dispatch("turnOrchestrator", "listProviders", "query", input),
3598
- getAllServers: (input) => dispatch("turnOrchestrator", "getAllServers", "query", input),
3599
- setProviderEnabled: (input) => dispatch("turnOrchestrator", "setProviderEnabled", "mutation", input)
3600
- };
3601
3587
  const turnProviderInterface = {
3602
3588
  getTurnServers: (input) => dispatch("turnProvider", "getTurnServers", "query", input)
3603
3589
  };
@@ -3631,7 +3617,6 @@ function createSystemProxy(api) {
3631
3617
  alerts: alertsInterface,
3632
3618
  audioAnalyzer: audioAnalyzerInterface,
3633
3619
  audioCodec: audioCodecInterface,
3634
- authentication: authenticationInterface,
3635
3620
  backup: backupInterface,
3636
3621
  decoder: decoderInterface,
3637
3622
  deviceExport: deviceExportInterface,
@@ -3641,9 +3626,9 @@ function createSystemProxy(api) {
3641
3626
  integrations: integrationsInterface,
3642
3627
  localNetwork: localNetworkInterface,
3643
3628
  meshNetwork: meshNetworkInterface,
3644
- meshOrchestrator: meshOrchestratorInterface,
3645
3629
  metricsProvider: metricsProviderInterface,
3646
3630
  mqttBroker: mqttBrokerInterface,
3631
+ networkAccess: networkAccessInterface,
3647
3632
  networkQuality: networkQualityInterface,
3648
3633
  nodes: nodesInterface,
3649
3634
  notificationOutput: notificationOutputInterface,
@@ -3652,13 +3637,11 @@ function createSystemProxy(api) {
3652
3637
  pipelineRunner: pipelineRunnerInterface,
3653
3638
  platformProbe: platformProbeInterface,
3654
3639
  recordingEngine: recordingEngineInterface,
3655
- remoteAccess: remoteAccessInterface,
3656
3640
  settingsStore: settingsStoreInterface,
3657
3641
  storage: storageInterface,
3658
3642
  streamBroker: streamBrokerInterface,
3659
3643
  system: systemInterface,
3660
3644
  toast: toastInterface,
3661
- turnOrchestrator: turnOrchestratorInterface,
3662
3645
  turnProvider: turnProviderInterface,
3663
3646
  userManagement: userManagementInterface
3664
3647
  };
@@ -4432,7 +4415,6 @@ const CAPABILITY_NAMES = {
4432
4415
  audioCodec: "audio-codec",
4433
4416
  audioMetrics: "audio-metrics",
4434
4417
  authProvider: "auth-provider",
4435
- authentication: "authentication",
4436
4418
  backup: "backup",
4437
4419
  battery: "battery",
4438
4420
  brightness: "brightness",
@@ -4456,7 +4438,6 @@ const CAPABILITY_NAMES = {
4456
4438
  localNetwork: "local-network",
4457
4439
  logDestination: "log-destination",
4458
4440
  meshNetwork: "mesh-network",
4459
- meshOrchestrator: "mesh-orchestrator",
4460
4441
  metricsProvider: "metrics-provider",
4461
4442
  motion: "motion",
4462
4443
  motionDetection: "motion-detection",
@@ -4478,7 +4459,6 @@ const CAPABILITY_NAMES = {
4478
4459
  reboot: "reboot",
4479
4460
  recording: "recording",
4480
4461
  recordingEngine: "recording-engine",
4481
- remoteAccess: "remote-access",
4482
4462
  restreamer: "restreamer",
4483
4463
  settingsStore: "settings-store",
4484
4464
  smtpProvider: "smtp-provider",
@@ -4492,7 +4472,6 @@ const CAPABILITY_NAMES = {
4492
4472
  switch: "switch",
4493
4473
  system: "system",
4494
4474
  toast: "toast",
4495
- turnOrchestrator: "turn-orchestrator",
4496
4475
  turnProvider: "turn-provider",
4497
4476
  userManagement: "user-management",
4498
4477
  userPasskeys: "user-passkeys",
@@ -4519,7 +4498,6 @@ const CAPABILITY_ROUTER_KEYS = [
4519
4498
  { key: "audioCodec", name: "audio-codec" },
4520
4499
  { key: "audioMetrics", name: "audio-metrics" },
4521
4500
  { key: "authProvider", name: "auth-provider" },
4522
- { key: "authentication", name: "authentication" },
4523
4501
  { key: "backup", name: "backup" },
4524
4502
  { key: "battery", name: "battery" },
4525
4503
  { key: "brightness", name: "brightness" },
@@ -4543,7 +4521,6 @@ const CAPABILITY_ROUTER_KEYS = [
4543
4521
  { key: "localNetwork", name: "local-network" },
4544
4522
  { key: "logDestination", name: "log-destination" },
4545
4523
  { key: "meshNetwork", name: "mesh-network" },
4546
- { key: "meshOrchestrator", name: "mesh-orchestrator" },
4547
4524
  { key: "metricsProvider", name: "metrics-provider" },
4548
4525
  { key: "motion", name: "motion" },
4549
4526
  { key: "motionDetection", name: "motion-detection" },
@@ -4565,7 +4542,6 @@ const CAPABILITY_ROUTER_KEYS = [
4565
4542
  { key: "reboot", name: "reboot" },
4566
4543
  { key: "recording", name: "recording" },
4567
4544
  { key: "recordingEngine", name: "recording-engine" },
4568
- { key: "remoteAccess", name: "remote-access" },
4569
4545
  { key: "restreamer", name: "restreamer" },
4570
4546
  { key: "settingsStore", name: "settings-store" },
4571
4547
  { key: "smtpProvider", name: "smtp-provider" },
@@ -4579,7 +4555,6 @@ const CAPABILITY_ROUTER_KEYS = [
4579
4555
  { key: "switch", name: "switch" },
4580
4556
  { key: "system", name: "system" },
4581
4557
  { key: "toast", name: "toast" },
4582
- { key: "turnOrchestrator", name: "turn-orchestrator" },
4583
4558
  { key: "turnProvider", name: "turn-provider" },
4584
4559
  { key: "userManagement", name: "user-management" },
4585
4560
  { key: "userPasskeys", name: "user-passkeys" },
@@ -4606,7 +4581,6 @@ const ALL_CAPABILITY_DEFINITIONS = [
4606
4581
  index.audioCodecCapability,
4607
4582
  index.audioMetricsCapability,
4608
4583
  index.authProviderCapability,
4609
- index.authenticationCapability,
4610
4584
  index.backupCapability,
4611
4585
  index.batteryCapability,
4612
4586
  index.brightnessCapability,
@@ -4630,7 +4604,6 @@ const ALL_CAPABILITY_DEFINITIONS = [
4630
4604
  index.localNetworkCapability,
4631
4605
  index.logDestinationCapability,
4632
4606
  index.meshNetworkCapability,
4633
- index.meshOrchestratorCapability,
4634
4607
  index.metricsProviderCapability,
4635
4608
  index.motionCapability,
4636
4609
  index.motionDetectionCapability,
@@ -4652,7 +4625,6 @@ const ALL_CAPABILITY_DEFINITIONS = [
4652
4625
  index.rebootCapability,
4653
4626
  index.recordingCapability,
4654
4627
  index.recordingEngineCapability,
4655
- index.remoteAccessCapability,
4656
4628
  index.restreamerCapability,
4657
4629
  index.settingsStoreCapability,
4658
4630
  index.smtpProviderCapability,
@@ -4666,7 +4638,6 @@ const ALL_CAPABILITY_DEFINITIONS = [
4666
4638
  index.switchCapability,
4667
4639
  index.systemCapability,
4668
4640
  index.toastCapability,
4669
- index.turnOrchestratorCapability,
4670
4641
  index.turnProviderCapability,
4671
4642
  index.userManagementCapability,
4672
4643
  index.userPasskeysCapability,
@@ -4728,6 +4699,7 @@ const METHOD_ACCESS_MAP = Object.freeze({
4728
4699
  "addons.searchAvailable": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4729
4700
  "addons.setAddonAutoUpdate": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4730
4701
  "addons.setAutoUpdateSettings": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4702
+ "addons.setCapabilityProviderEnabled": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4731
4703
  "addons.uninstallPackage": { capName: "addons", capScope: "system", addonId: null, access: "delete" },
4732
4704
  "addons.updateFrameworkPackage": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4733
4705
  "addons.updatePackage": { capName: "addons", capScope: "system", addonId: null, access: "create" },
@@ -4770,8 +4742,6 @@ const METHOD_ACCESS_MAP = Object.freeze({
4770
4742
  "audioCodec.pushPcm": { capName: "audio-codec", capScope: "system", addonId: null, access: "create" },
4771
4743
  "audioMetrics.getCurrentSnapshot": { capName: "audio-metrics", capScope: "device", addonId: null, access: "view" },
4772
4744
  "audioMetrics.getHistory": { capName: "audio-metrics", capScope: "device", addonId: null, access: "view" },
4773
- "authentication.listProviders": { capName: "authentication", capScope: "system", addonId: null, access: "view" },
4774
- "authentication.setProviderEnabled": { capName: "authentication", capScope: "system", addonId: null, access: "create" },
4775
4745
  "authProvider.getLoginUrl": { capName: "auth-provider", capScope: "system", addonId: null, access: "view" },
4776
4746
  "authProvider.handleCallback": { capName: "auth-provider", capScope: "system", addonId: null, access: "create" },
4777
4747
  "authProvider.validateCredentials": { capName: "auth-provider", capScope: "system", addonId: null, access: "create" },
@@ -4913,12 +4883,6 @@ const METHOD_ACCESS_MAP = Object.freeze({
4913
4883
  "meshNetwork.logout": { capName: "mesh-network", capScope: "system", addonId: null, access: "create" },
4914
4884
  "meshNetwork.startLogin": { capName: "mesh-network", capScope: "system", addonId: null, access: "create" },
4915
4885
  "meshNetwork.testConnection": { capName: "mesh-network", capScope: "system", addonId: null, access: "create" },
4916
- "meshOrchestrator.joinProvider": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "create" },
4917
- "meshOrchestrator.leaveProvider": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "create" },
4918
- "meshOrchestrator.listProviderPeers": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "view" },
4919
- "meshOrchestrator.listProviders": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "view" },
4920
- "meshOrchestrator.logoutProvider": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "create" },
4921
- "meshOrchestrator.startLoginProvider": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "create" },
4922
4886
  "metricsProvider.collectSnapshot": { capName: "metrics-provider", capScope: "system", addonId: null, access: "view" },
4923
4887
  "metricsProvider.getAddonStats": { capName: "metrics-provider", capScope: "system", addonId: null, access: "view" },
4924
4888
  "metricsProvider.getCached": { capName: "metrics-provider", capScope: "system", addonId: null, access: "view" },
@@ -5090,9 +5054,6 @@ const METHOD_ACCESS_MAP = Object.freeze({
5090
5054
  "recordingEngine.setPolicy": { capName: "recording-engine", capScope: "system", addonId: null, access: "create" },
5091
5055
  "recordingEngine.updateConfig": { capName: "recording-engine", capScope: "system", addonId: null, access: "create" },
5092
5056
  "recordingEngine.updateRetentionConfig": { capName: "recording-engine", capScope: "system", addonId: null, access: "create" },
5093
- "remoteAccess.listProviders": { capName: "remote-access", capScope: "system", addonId: null, access: "view" },
5094
- "remoteAccess.startProvider": { capName: "remote-access", capScope: "system", addonId: null, access: "create" },
5095
- "remoteAccess.stopProvider": { capName: "remote-access", capScope: "system", addonId: null, access: "create" },
5096
5057
  "restreamer.getExposedResources": { capName: "restreamer", capScope: "system", addonId: null, access: "view" },
5097
5058
  "restreamer.registerDevice": { capName: "restreamer", capScope: "system", addonId: null, access: "create" },
5098
5059
  "restreamer.unregisterDevice": { capName: "restreamer", capScope: "system", addonId: null, access: "delete" },
@@ -5186,9 +5147,6 @@ const METHOD_ACCESS_MAP = Object.freeze({
5186
5147
  "system.networkAddresses": { capName: "system", capScope: "system", addonId: null, access: "view" },
5187
5148
  "system.setRetentionConfig": { capName: "system", capScope: "system", addonId: null, access: "create" },
5188
5149
  "toast.onToast": { capName: "toast", capScope: "system", addonId: null, access: "view" },
5189
- "turnOrchestrator.getAllServers": { capName: "turn-orchestrator", capScope: "system", addonId: null, access: "view" },
5190
- "turnOrchestrator.listProviders": { capName: "turn-orchestrator", capScope: "system", addonId: null, access: "view" },
5191
- "turnOrchestrator.setProviderEnabled": { capName: "turn-orchestrator", capScope: "system", addonId: null, access: "create" },
5192
5150
  "turnProvider.getTurnServers": { capName: "turn-provider", capScope: "system", addonId: null, access: "view" },
5193
5151
  "userManagement.confirmTotp": { capName: "user-management", capScope: "system", addonId: null, access: "create" },
5194
5152
  "userManagement.createApiKey": { capName: "user-management", capScope: "system", addonId: null, access: "create" },
@@ -5257,7 +5215,6 @@ const KNOWN_CAP_NAMES = [
5257
5215
  "audio-codec",
5258
5216
  "audio-metrics",
5259
5217
  "auth-provider",
5260
- "authentication",
5261
5218
  "backup",
5262
5219
  "brightness",
5263
5220
  "camera-credentials",
@@ -5276,7 +5233,6 @@ const KNOWN_CAP_NAMES = [
5276
5233
  "local-network",
5277
5234
  "log-destination",
5278
5235
  "mesh-network",
5279
- "mesh-orchestrator",
5280
5236
  "metrics-provider",
5281
5237
  "motion",
5282
5238
  "motion-detection",
@@ -5297,7 +5253,6 @@ const KNOWN_CAP_NAMES = [
5297
5253
  "reboot",
5298
5254
  "recording",
5299
5255
  "recording-engine",
5300
- "remote-access",
5301
5256
  "restreamer",
5302
5257
  "settings-store",
5303
5258
  "smtp-provider",
@@ -5311,7 +5266,6 @@ const KNOWN_CAP_NAMES = [
5311
5266
  "switch",
5312
5267
  "system",
5313
5268
  "toast",
5314
- "turn-orchestrator",
5315
5269
  "turn-provider",
5316
5270
  "user-management",
5317
5271
  "user-passkeys",
@@ -5361,7 +5315,6 @@ const SYSTEM_CAP_NAMES = [
5361
5315
  "audio-analyzer",
5362
5316
  "audio-codec",
5363
5317
  "auth-provider",
5364
- "authentication",
5365
5318
  "backup",
5366
5319
  "decoder",
5367
5320
  "device-export",
@@ -5373,7 +5326,6 @@ const SYSTEM_CAP_NAMES = [
5373
5326
  "local-network",
5374
5327
  "log-destination",
5375
5328
  "mesh-network",
5376
- "mesh-orchestrator",
5377
5329
  "metrics-provider",
5378
5330
  "mqtt-broker",
5379
5331
  "network-access",
@@ -5385,7 +5337,6 @@ const SYSTEM_CAP_NAMES = [
5385
5337
  "pipeline-runner",
5386
5338
  "platform-probe",
5387
5339
  "recording-engine",
5388
- "remote-access",
5389
5340
  "restreamer",
5390
5341
  "settings-store",
5391
5342
  "smtp-provider",
@@ -5397,7 +5348,6 @@ const SYSTEM_CAP_NAMES = [
5397
5348
  "streaming-engine",
5398
5349
  "system",
5399
5350
  "toast",
5400
- "turn-orchestrator",
5401
5351
  "turn-provider",
5402
5352
  "user-management",
5403
5353
  "user-passkeys",
@@ -5550,7 +5500,6 @@ exports.AudioMetricsHistoryPointSchema = index.AudioMetricsHistoryPointSchema;
5550
5500
  exports.AudioMetricsHistorySchema = index.AudioMetricsHistorySchema;
5551
5501
  exports.AudioMetricsSnapshotSchema = index.AudioMetricsSnapshotSchema;
5552
5502
  exports.AudioPcmChunkSchema = index.AudioPcmChunkSchema;
5553
- exports.AuthProviderInfoSchema = index.AuthProviderInfoSchema;
5554
5503
  exports.AuthResultSchema = index.AuthResultSchema;
5555
5504
  exports.AutoUpdateSettingsSchema = index.AutoUpdateSettingsSchema;
5556
5505
  exports.AvailableIntegrationTypeSchema = index.AvailableIntegrationTypeSchema;
@@ -5651,6 +5600,8 @@ exports.LogLevelSchema = index.LogLevelSchema;
5651
5600
  exports.LogStreamEntrySchema = index.LogStreamEntrySchema;
5652
5601
  exports.MODEL_FORMATS = index.MODEL_FORMATS;
5653
5602
  exports.MediaFileSchema = index.MediaFileSchema;
5603
+ exports.MeshPeerSchema = index.MeshPeerSchema;
5604
+ exports.MeshStatusSchema = index.MeshStatusSchema;
5654
5605
  exports.MethodAccessSchema = index.MethodAccessSchema;
5655
5606
  exports.MotionAnalysisResultSchema = index.MotionAnalysisResultSchema;
5656
5607
  exports.MotionEventSchema = index.MotionEventSchema;
@@ -5704,8 +5655,6 @@ exports.PtzPositionSchema = index.PtzPositionSchema;
5704
5655
  exports.PtzPresetSchema = index.PtzPresetSchema;
5705
5656
  exports.QueryFilterSchema = index.QueryFilterSchema;
5706
5657
  exports.RegisteredStreamSchema = index.RegisteredStreamSchema;
5707
- exports.RemoteAccessEndpointSchema = index.RemoteAccessEndpointSchema;
5708
- exports.RemoteAccessProviderInfoSchema = index.RemoteAccessProviderInfoSchema;
5709
5658
  exports.ReportMotionInputSchema = index.ReportMotionInputSchema;
5710
5659
  exports.RtpSourceSchema = index.RtpSourceSchema;
5711
5660
  exports.RtspRestreamEntrySchema = index.RtspRestreamEntrySchema;
@@ -5759,7 +5708,6 @@ exports.TopologyServiceSchema = index.TopologyServiceSchema;
5759
5708
  exports.TrackSchema = index.TrackSchema;
5760
5709
  exports.TrackStateSchema = index.TrackStateSchema;
5761
5710
  exports.TrackedDetectionSchema = index.TrackedDetectionSchema;
5762
- exports.TurnProviderInfoSchema = index.TurnProviderInfoSchema;
5763
5711
  exports.TurnServerSchema = index.TurnServerSchema;
5764
5712
  exports.UpdateIntegrationInputSchema = index.UpdateIntegrationInputSchema;
5765
5713
  exports.UpdateUserInputSchema = index.UpdateUserInputSchema;
@@ -5797,7 +5745,6 @@ exports.audioAnalyzerCapability = index.audioAnalyzerCapability;
5797
5745
  exports.audioCodecCapability = index.audioCodecCapability;
5798
5746
  exports.audioMetricsCapability = index.audioMetricsCapability;
5799
5747
  exports.authProviderCapability = index.authProviderCapability;
5800
- exports.authenticationCapability = index.authenticationCapability;
5801
5748
  exports.backupCapability = index.backupCapability;
5802
5749
  exports.batteryCapability = index.batteryCapability;
5803
5750
  exports.brightnessCapability = index.brightnessCapability;
@@ -5828,7 +5775,6 @@ exports.localNetworkCapability = index.localNetworkCapability;
5828
5775
  exports.logDestinationCapability = index.logDestinationCapability;
5829
5776
  exports.mapAudioLabelToMacro = index.mapAudioLabelToMacro;
5830
5777
  exports.meshNetworkCapability = index.meshNetworkCapability;
5831
- exports.meshOrchestratorCapability = index.meshOrchestratorCapability;
5832
5778
  exports.method = index.method;
5833
5779
  exports.metricsProviderCapability = index.metricsProviderCapability;
5834
5780
  exports.motionCapability = index.motionCapability;
@@ -5851,7 +5797,6 @@ exports.ptzCapability = index.ptzCapability;
5851
5797
  exports.rebootCapability = index.rebootCapability;
5852
5798
  exports.recordingCapability = index.recordingCapability;
5853
5799
  exports.recordingEngineCapability = index.recordingEngineCapability;
5854
- exports.remoteAccessCapability = index.remoteAccessCapability;
5855
5800
  exports.resolveDeviceProfile = index.resolveDeviceProfile;
5856
5801
  exports.restreamerCapability = index.restreamerCapability;
5857
5802
  exports.settingsStoreCapability = index.settingsStoreCapability;
@@ -5866,7 +5811,6 @@ exports.streamingEngineCapability = index.streamingEngineCapability;
5866
5811
  exports.switchCapability = index.switchCapability;
5867
5812
  exports.systemCapability = index.systemCapability;
5868
5813
  exports.toastCapability = index.toastCapability;
5869
- exports.turnOrchestratorCapability = index.turnOrchestratorCapability;
5870
5814
  exports.turnProviderCapability = index.turnProviderCapability;
5871
5815
  exports.userManagementCapability = index.userManagementCapability;
5872
5816
  exports.userPasskeysCapability = index.userPasskeysCapability;