@camstack/types 0.1.33 → 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 (52) hide show
  1. package/dist/capabilities/addons.cap.d.ts +176 -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 +4 -11
  6. package/dist/capabilities/index.d.ts.map +1 -1
  7. package/dist/capabilities/local-network.cap.d.ts +5 -5
  8. package/dist/capabilities/mesh-network.cap.d.ts +8 -2
  9. package/dist/capabilities/mesh-network.cap.d.ts.map +1 -1
  10. package/dist/capabilities/network-access.cap.d.ts +5 -4
  11. package/dist/capabilities/network-access.cap.d.ts.map +1 -1
  12. package/dist/capabilities/nodes.cap.d.ts +13 -0
  13. package/dist/capabilities/nodes.cap.d.ts.map +1 -1
  14. package/dist/enums/event-category.d.ts +10 -0
  15. package/dist/enums/event-category.d.ts.map +1 -1
  16. package/dist/generated/addon-api.d.ts +356 -516
  17. package/dist/generated/addon-api.d.ts.map +1 -1
  18. package/dist/generated/capability-router-map.d.ts +2 -14
  19. package/dist/generated/capability-router-map.d.ts.map +1 -1
  20. package/dist/generated/method-access-map.d.ts +1 -1
  21. package/dist/generated/method-access-map.d.ts.map +1 -1
  22. package/dist/generated/system-proxy.d.ts +3 -9
  23. package/dist/generated/system-proxy.d.ts.map +1 -1
  24. package/dist/{index-DRWlYskM.js → index-BkSgJYP7.js} +202 -257
  25. package/dist/index-BkSgJYP7.js.map +1 -0
  26. package/dist/{index-YnRVILXN.mjs → index-CWhQOnm9.mjs} +521 -576
  27. package/dist/index-CWhQOnm9.mjs.map +1 -0
  28. package/dist/index.js +24 -69
  29. package/dist/index.js.map +1 -1
  30. package/dist/index.mjs +294 -339
  31. package/dist/index.mjs.map +1 -1
  32. package/dist/interfaces/addon.d.ts +21 -0
  33. package/dist/interfaces/addon.d.ts.map +1 -1
  34. package/dist/interfaces/capability.d.ts +1 -6
  35. package/dist/interfaces/capability.d.ts.map +1 -1
  36. package/dist/interfaces/event-bus.d.ts +21 -1
  37. package/dist/interfaces/event-bus.d.ts.map +1 -1
  38. package/dist/interfaces/server-network.d.ts +8 -33
  39. package/dist/interfaces/server-network.d.ts.map +1 -1
  40. package/dist/node.js +1 -1
  41. package/dist/node.mjs +1 -1
  42. package/package.json +6 -1
  43. package/dist/capabilities/authentication.cap.d.ts +0 -73
  44. package/dist/capabilities/authentication.cap.d.ts.map +0 -1
  45. package/dist/capabilities/mesh-orchestrator.cap.d.ts +0 -151
  46. package/dist/capabilities/mesh-orchestrator.cap.d.ts.map +0 -1
  47. package/dist/capabilities/remote-access.cap.d.ts +0 -91
  48. package/dist/capabilities/remote-access.cap.d.ts.map +0 -1
  49. package/dist/capabilities/turn-orchestrator.cap.d.ts +0 -64
  50. package/dist/capabilities/turn-orchestrator.cap.d.ts.map +0 -1
  51. package/dist/index-DRWlYskM.js.map +0 -1
  52. package/dist/index-YnRVILXN.mjs.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-DRWlYskM.js");
3
+ const index = require("./index-BkSgJYP7.js");
4
4
  const zod = require("zod");
5
5
  class DisposerChain {
6
6
  disposers = [];
@@ -95,6 +95,7 @@ var EventCategory = /* @__PURE__ */ ((EventCategory2) => {
95
95
  EventCategory2["SystemBoot"] = "system.boot";
96
96
  EventCategory2["SystemAddonsReady"] = "system.addons-ready";
97
97
  EventCategory2["SystemRestarting"] = "system.restarting";
98
+ EventCategory2["SystemRestartCompleted"] = "system.restart-completed";
98
99
  EventCategory2["SystemReadyState"] = "system.ready-state";
99
100
  EventCategory2["AddonStarted"] = "addon.started";
100
101
  EventCategory2["AddonStopped"] = "addon.stopped";
@@ -3231,6 +3232,11 @@ function createSystemProxy(api) {
3231
3232
  rollbackPackage: (input) => dispatch("addons", "rollbackPackage", "mutation", input),
3232
3233
  forceRefresh: (input) => dispatch("addons", "forceRefresh", "mutation", input),
3233
3234
  restartServer: (input) => dispatch("addons", "restartServer", "mutation", input),
3235
+ getLastRestart: (input) => dispatch("addons", "getLastRestart", "query", input),
3236
+ listFrameworkPackages: (input) => dispatch("addons", "listFrameworkPackages", "query", input),
3237
+ listCapabilityProviders: (input) => dispatch("addons", "listCapabilityProviders", "query", input),
3238
+ setCapabilityProviderEnabled: (input) => dispatch("addons", "setCapabilityProviderEnabled", "mutation", input),
3239
+ updateFrameworkPackage: (input) => dispatch("addons", "updateFrameworkPackage", "mutation", input),
3234
3240
  getVersions: (input) => dispatch("addons", "getVersions", "query", input),
3235
3241
  restartAddon: (input) => dispatch("addons", "restartAddon", "mutation", input),
3236
3242
  retryLoad: (input) => dispatch("addons", "retryLoad", "mutation", input),
@@ -3278,10 +3284,6 @@ function createSystemProxy(api) {
3278
3284
  flushEncode: (input) => dispatch("audioCodec", "flushEncode", "mutation", input),
3279
3285
  listActiveSessions: (input) => dispatch("audioCodec", "listActiveSessions", "query", input)
3280
3286
  };
3281
- const authenticationInterface = {
3282
- listProviders: (input) => dispatch("authentication", "listProviders", "query", input),
3283
- setProviderEnabled: (input) => dispatch("authentication", "setProviderEnabled", "mutation", input)
3284
- };
3285
3287
  const backupInterface = {
3286
3288
  listDestinations: (input) => dispatch("backup", "listDestinations", "query", input),
3287
3289
  trigger: (input) => dispatch("backup", "trigger", "mutation", input),
@@ -3378,14 +3380,6 @@ function createSystemProxy(api) {
3378
3380
  listPeers: (input) => dispatch("meshNetwork", "listPeers", "query", input),
3379
3381
  testConnection: (input) => dispatch("meshNetwork", "testConnection", "mutation", input)
3380
3382
  };
3381
- const meshOrchestratorInterface = {
3382
- listProviders: (input) => dispatch("meshOrchestrator", "listProviders", "query", input),
3383
- joinProvider: (input) => dispatch("meshOrchestrator", "joinProvider", "mutation", input),
3384
- leaveProvider: (input) => dispatch("meshOrchestrator", "leaveProvider", "mutation", input),
3385
- startLoginProvider: (input) => dispatch("meshOrchestrator", "startLoginProvider", "mutation", input),
3386
- logoutProvider: (input) => dispatch("meshOrchestrator", "logoutProvider", "mutation", input),
3387
- listProviderPeers: (input) => dispatch("meshOrchestrator", "listProviderPeers", "query", input)
3388
- };
3389
3383
  const metricsProviderInterface = {
3390
3384
  collectSnapshot: (input) => dispatch("metricsProvider", "collectSnapshot", "query", input),
3391
3385
  getCached: (input) => dispatch("metricsProvider", "getCached", "query", input),
@@ -3409,6 +3403,13 @@ function createSystemProxy(api) {
3409
3403
  stopEmbeddedBroker: (input) => dispatch("mqttBroker", "stopEmbeddedBroker", "mutation", input),
3410
3404
  getStatus: (input) => dispatch("mqttBroker", "getStatus", "query", input)
3411
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
+ };
3412
3413
  const networkQualityInterface = {
3413
3414
  getAllStats: (input) => dispatch("networkQuality", "getAllStats", "query", input)
3414
3415
  };
@@ -3518,11 +3519,6 @@ function createSystemProxy(api) {
3518
3519
  updateRetentionConfig: (input) => dispatch("recordingEngine", "updateRetentionConfig", "mutation", input),
3519
3520
  getMotionStats: (input) => dispatch("recordingEngine", "getMotionStats", "query", input)
3520
3521
  };
3521
- const remoteAccessInterface = {
3522
- listProviders: (input) => dispatch("remoteAccess", "listProviders", "query", input),
3523
- startProvider: (input) => dispatch("remoteAccess", "startProvider", "mutation", input),
3524
- stopProvider: (input) => dispatch("remoteAccess", "stopProvider", "mutation", input)
3525
- };
3526
3522
  const settingsStoreInterface = {
3527
3523
  get: (input) => dispatch("settingsStore", "get", "query", input),
3528
3524
  set: (input) => dispatch("settingsStore", "set", "mutation", input),
@@ -3588,11 +3584,6 @@ function createSystemProxy(api) {
3588
3584
  const toastInterface = {
3589
3585
  onToast: (input, push) => dispatch("toast", "onToast", "subscription", input, push)
3590
3586
  };
3591
- const turnOrchestratorInterface = {
3592
- listProviders: (input) => dispatch("turnOrchestrator", "listProviders", "query", input),
3593
- getAllServers: (input) => dispatch("turnOrchestrator", "getAllServers", "query", input),
3594
- setProviderEnabled: (input) => dispatch("turnOrchestrator", "setProviderEnabled", "mutation", input)
3595
- };
3596
3587
  const turnProviderInterface = {
3597
3588
  getTurnServers: (input) => dispatch("turnProvider", "getTurnServers", "query", input)
3598
3589
  };
@@ -3626,7 +3617,6 @@ function createSystemProxy(api) {
3626
3617
  alerts: alertsInterface,
3627
3618
  audioAnalyzer: audioAnalyzerInterface,
3628
3619
  audioCodec: audioCodecInterface,
3629
- authentication: authenticationInterface,
3630
3620
  backup: backupInterface,
3631
3621
  decoder: decoderInterface,
3632
3622
  deviceExport: deviceExportInterface,
@@ -3636,9 +3626,9 @@ function createSystemProxy(api) {
3636
3626
  integrations: integrationsInterface,
3637
3627
  localNetwork: localNetworkInterface,
3638
3628
  meshNetwork: meshNetworkInterface,
3639
- meshOrchestrator: meshOrchestratorInterface,
3640
3629
  metricsProvider: metricsProviderInterface,
3641
3630
  mqttBroker: mqttBrokerInterface,
3631
+ networkAccess: networkAccessInterface,
3642
3632
  networkQuality: networkQualityInterface,
3643
3633
  nodes: nodesInterface,
3644
3634
  notificationOutput: notificationOutputInterface,
@@ -3647,13 +3637,11 @@ function createSystemProxy(api) {
3647
3637
  pipelineRunner: pipelineRunnerInterface,
3648
3638
  platformProbe: platformProbeInterface,
3649
3639
  recordingEngine: recordingEngineInterface,
3650
- remoteAccess: remoteAccessInterface,
3651
3640
  settingsStore: settingsStoreInterface,
3652
3641
  storage: storageInterface,
3653
3642
  streamBroker: streamBrokerInterface,
3654
3643
  system: systemInterface,
3655
3644
  toast: toastInterface,
3656
- turnOrchestrator: turnOrchestratorInterface,
3657
3645
  turnProvider: turnProviderInterface,
3658
3646
  userManagement: userManagementInterface
3659
3647
  };
@@ -4427,7 +4415,6 @@ const CAPABILITY_NAMES = {
4427
4415
  audioCodec: "audio-codec",
4428
4416
  audioMetrics: "audio-metrics",
4429
4417
  authProvider: "auth-provider",
4430
- authentication: "authentication",
4431
4418
  backup: "backup",
4432
4419
  battery: "battery",
4433
4420
  brightness: "brightness",
@@ -4451,7 +4438,6 @@ const CAPABILITY_NAMES = {
4451
4438
  localNetwork: "local-network",
4452
4439
  logDestination: "log-destination",
4453
4440
  meshNetwork: "mesh-network",
4454
- meshOrchestrator: "mesh-orchestrator",
4455
4441
  metricsProvider: "metrics-provider",
4456
4442
  motion: "motion",
4457
4443
  motionDetection: "motion-detection",
@@ -4473,7 +4459,6 @@ const CAPABILITY_NAMES = {
4473
4459
  reboot: "reboot",
4474
4460
  recording: "recording",
4475
4461
  recordingEngine: "recording-engine",
4476
- remoteAccess: "remote-access",
4477
4462
  restreamer: "restreamer",
4478
4463
  settingsStore: "settings-store",
4479
4464
  smtpProvider: "smtp-provider",
@@ -4487,7 +4472,6 @@ const CAPABILITY_NAMES = {
4487
4472
  switch: "switch",
4488
4473
  system: "system",
4489
4474
  toast: "toast",
4490
- turnOrchestrator: "turn-orchestrator",
4491
4475
  turnProvider: "turn-provider",
4492
4476
  userManagement: "user-management",
4493
4477
  userPasskeys: "user-passkeys",
@@ -4514,7 +4498,6 @@ const CAPABILITY_ROUTER_KEYS = [
4514
4498
  { key: "audioCodec", name: "audio-codec" },
4515
4499
  { key: "audioMetrics", name: "audio-metrics" },
4516
4500
  { key: "authProvider", name: "auth-provider" },
4517
- { key: "authentication", name: "authentication" },
4518
4501
  { key: "backup", name: "backup" },
4519
4502
  { key: "battery", name: "battery" },
4520
4503
  { key: "brightness", name: "brightness" },
@@ -4538,7 +4521,6 @@ const CAPABILITY_ROUTER_KEYS = [
4538
4521
  { key: "localNetwork", name: "local-network" },
4539
4522
  { key: "logDestination", name: "log-destination" },
4540
4523
  { key: "meshNetwork", name: "mesh-network" },
4541
- { key: "meshOrchestrator", name: "mesh-orchestrator" },
4542
4524
  { key: "metricsProvider", name: "metrics-provider" },
4543
4525
  { key: "motion", name: "motion" },
4544
4526
  { key: "motionDetection", name: "motion-detection" },
@@ -4560,7 +4542,6 @@ const CAPABILITY_ROUTER_KEYS = [
4560
4542
  { key: "reboot", name: "reboot" },
4561
4543
  { key: "recording", name: "recording" },
4562
4544
  { key: "recordingEngine", name: "recording-engine" },
4563
- { key: "remoteAccess", name: "remote-access" },
4564
4545
  { key: "restreamer", name: "restreamer" },
4565
4546
  { key: "settingsStore", name: "settings-store" },
4566
4547
  { key: "smtpProvider", name: "smtp-provider" },
@@ -4574,7 +4555,6 @@ const CAPABILITY_ROUTER_KEYS = [
4574
4555
  { key: "switch", name: "switch" },
4575
4556
  { key: "system", name: "system" },
4576
4557
  { key: "toast", name: "toast" },
4577
- { key: "turnOrchestrator", name: "turn-orchestrator" },
4578
4558
  { key: "turnProvider", name: "turn-provider" },
4579
4559
  { key: "userManagement", name: "user-management" },
4580
4560
  { key: "userPasskeys", name: "user-passkeys" },
@@ -4601,7 +4581,6 @@ const ALL_CAPABILITY_DEFINITIONS = [
4601
4581
  index.audioCodecCapability,
4602
4582
  index.audioMetricsCapability,
4603
4583
  index.authProviderCapability,
4604
- index.authenticationCapability,
4605
4584
  index.backupCapability,
4606
4585
  index.batteryCapability,
4607
4586
  index.brightnessCapability,
@@ -4625,7 +4604,6 @@ const ALL_CAPABILITY_DEFINITIONS = [
4625
4604
  index.localNetworkCapability,
4626
4605
  index.logDestinationCapability,
4627
4606
  index.meshNetworkCapability,
4628
- index.meshOrchestratorCapability,
4629
4607
  index.metricsProviderCapability,
4630
4608
  index.motionCapability,
4631
4609
  index.motionDetectionCapability,
@@ -4647,7 +4625,6 @@ const ALL_CAPABILITY_DEFINITIONS = [
4647
4625
  index.rebootCapability,
4648
4626
  index.recordingCapability,
4649
4627
  index.recordingEngineCapability,
4650
- index.remoteAccessCapability,
4651
4628
  index.restreamerCapability,
4652
4629
  index.settingsStoreCapability,
4653
4630
  index.smtpProviderCapability,
@@ -4661,7 +4638,6 @@ const ALL_CAPABILITY_DEFINITIONS = [
4661
4638
  index.switchCapability,
4662
4639
  index.systemCapability,
4663
4640
  index.toastCapability,
4664
- index.turnOrchestratorCapability,
4665
4641
  index.turnProviderCapability,
4666
4642
  index.userManagementCapability,
4667
4643
  index.userPasskeysCapability,
@@ -4702,12 +4678,15 @@ const METHOD_ACCESS_MAP = Object.freeze({
4702
4678
  "addons.forceRefresh": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4703
4679
  "addons.getAddonAutoUpdate": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4704
4680
  "addons.getAutoUpdateSettings": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4681
+ "addons.getLastRestart": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4705
4682
  "addons.getLogs": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4706
4683
  "addons.getVersions": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4707
4684
  "addons.installFromWorkspace": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4708
4685
  "addons.installPackage": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4709
4686
  "addons.isWorkspaceAvailable": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4710
4687
  "addons.list": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4688
+ "addons.listCapabilityProviders": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4689
+ "addons.listFrameworkPackages": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4711
4690
  "addons.listPackages": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4712
4691
  "addons.listUpdates": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4713
4692
  "addons.listWorkspacePackages": { capName: "addons", capScope: "system", addonId: null, access: "view" },
@@ -4720,7 +4699,9 @@ const METHOD_ACCESS_MAP = Object.freeze({
4720
4699
  "addons.searchAvailable": { capName: "addons", capScope: "system", addonId: null, access: "view" },
4721
4700
  "addons.setAddonAutoUpdate": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4722
4701
  "addons.setAutoUpdateSettings": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4702
+ "addons.setCapabilityProviderEnabled": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4723
4703
  "addons.uninstallPackage": { capName: "addons", capScope: "system", addonId: null, access: "delete" },
4704
+ "addons.updateFrameworkPackage": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4724
4705
  "addons.updatePackage": { capName: "addons", capScope: "system", addonId: null, access: "create" },
4725
4706
  "addonSettings.getDeviceSettings": { capName: "addon-settings", capScope: "system", addonId: null, access: "view" },
4726
4707
  "addonSettings.getGlobalSettings": { capName: "addon-settings", capScope: "system", addonId: null, access: "view" },
@@ -4761,8 +4742,6 @@ const METHOD_ACCESS_MAP = Object.freeze({
4761
4742
  "audioCodec.pushPcm": { capName: "audio-codec", capScope: "system", addonId: null, access: "create" },
4762
4743
  "audioMetrics.getCurrentSnapshot": { capName: "audio-metrics", capScope: "device", addonId: null, access: "view" },
4763
4744
  "audioMetrics.getHistory": { capName: "audio-metrics", capScope: "device", addonId: null, access: "view" },
4764
- "authentication.listProviders": { capName: "authentication", capScope: "system", addonId: null, access: "view" },
4765
- "authentication.setProviderEnabled": { capName: "authentication", capScope: "system", addonId: null, access: "create" },
4766
4745
  "authProvider.getLoginUrl": { capName: "auth-provider", capScope: "system", addonId: null, access: "view" },
4767
4746
  "authProvider.handleCallback": { capName: "auth-provider", capScope: "system", addonId: null, access: "create" },
4768
4747
  "authProvider.validateCredentials": { capName: "auth-provider", capScope: "system", addonId: null, access: "create" },
@@ -4904,12 +4883,6 @@ const METHOD_ACCESS_MAP = Object.freeze({
4904
4883
  "meshNetwork.logout": { capName: "mesh-network", capScope: "system", addonId: null, access: "create" },
4905
4884
  "meshNetwork.startLogin": { capName: "mesh-network", capScope: "system", addonId: null, access: "create" },
4906
4885
  "meshNetwork.testConnection": { capName: "mesh-network", capScope: "system", addonId: null, access: "create" },
4907
- "meshOrchestrator.joinProvider": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "create" },
4908
- "meshOrchestrator.leaveProvider": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "create" },
4909
- "meshOrchestrator.listProviderPeers": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "view" },
4910
- "meshOrchestrator.listProviders": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "view" },
4911
- "meshOrchestrator.logoutProvider": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "create" },
4912
- "meshOrchestrator.startLoginProvider": { capName: "mesh-orchestrator", capScope: "system", addonId: null, access: "create" },
4913
4886
  "metricsProvider.collectSnapshot": { capName: "metrics-provider", capScope: "system", addonId: null, access: "view" },
4914
4887
  "metricsProvider.getAddonStats": { capName: "metrics-provider", capScope: "system", addonId: null, access: "view" },
4915
4888
  "metricsProvider.getCached": { capName: "metrics-provider", capScope: "system", addonId: null, access: "view" },
@@ -5081,9 +5054,6 @@ const METHOD_ACCESS_MAP = Object.freeze({
5081
5054
  "recordingEngine.setPolicy": { capName: "recording-engine", capScope: "system", addonId: null, access: "create" },
5082
5055
  "recordingEngine.updateConfig": { capName: "recording-engine", capScope: "system", addonId: null, access: "create" },
5083
5056
  "recordingEngine.updateRetentionConfig": { capName: "recording-engine", capScope: "system", addonId: null, access: "create" },
5084
- "remoteAccess.listProviders": { capName: "remote-access", capScope: "system", addonId: null, access: "view" },
5085
- "remoteAccess.startProvider": { capName: "remote-access", capScope: "system", addonId: null, access: "create" },
5086
- "remoteAccess.stopProvider": { capName: "remote-access", capScope: "system", addonId: null, access: "create" },
5087
5057
  "restreamer.getExposedResources": { capName: "restreamer", capScope: "system", addonId: null, access: "view" },
5088
5058
  "restreamer.registerDevice": { capName: "restreamer", capScope: "system", addonId: null, access: "create" },
5089
5059
  "restreamer.unregisterDevice": { capName: "restreamer", capScope: "system", addonId: null, access: "delete" },
@@ -5177,9 +5147,6 @@ const METHOD_ACCESS_MAP = Object.freeze({
5177
5147
  "system.networkAddresses": { capName: "system", capScope: "system", addonId: null, access: "view" },
5178
5148
  "system.setRetentionConfig": { capName: "system", capScope: "system", addonId: null, access: "create" },
5179
5149
  "toast.onToast": { capName: "toast", capScope: "system", addonId: null, access: "view" },
5180
- "turnOrchestrator.getAllServers": { capName: "turn-orchestrator", capScope: "system", addonId: null, access: "view" },
5181
- "turnOrchestrator.listProviders": { capName: "turn-orchestrator", capScope: "system", addonId: null, access: "view" },
5182
- "turnOrchestrator.setProviderEnabled": { capName: "turn-orchestrator", capScope: "system", addonId: null, access: "create" },
5183
5150
  "turnProvider.getTurnServers": { capName: "turn-provider", capScope: "system", addonId: null, access: "view" },
5184
5151
  "userManagement.confirmTotp": { capName: "user-management", capScope: "system", addonId: null, access: "create" },
5185
5152
  "userManagement.createApiKey": { capName: "user-management", capScope: "system", addonId: null, access: "create" },
@@ -5248,7 +5215,6 @@ const KNOWN_CAP_NAMES = [
5248
5215
  "audio-codec",
5249
5216
  "audio-metrics",
5250
5217
  "auth-provider",
5251
- "authentication",
5252
5218
  "backup",
5253
5219
  "brightness",
5254
5220
  "camera-credentials",
@@ -5267,7 +5233,6 @@ const KNOWN_CAP_NAMES = [
5267
5233
  "local-network",
5268
5234
  "log-destination",
5269
5235
  "mesh-network",
5270
- "mesh-orchestrator",
5271
5236
  "metrics-provider",
5272
5237
  "motion",
5273
5238
  "motion-detection",
@@ -5288,7 +5253,6 @@ const KNOWN_CAP_NAMES = [
5288
5253
  "reboot",
5289
5254
  "recording",
5290
5255
  "recording-engine",
5291
- "remote-access",
5292
5256
  "restreamer",
5293
5257
  "settings-store",
5294
5258
  "smtp-provider",
@@ -5302,7 +5266,6 @@ const KNOWN_CAP_NAMES = [
5302
5266
  "switch",
5303
5267
  "system",
5304
5268
  "toast",
5305
- "turn-orchestrator",
5306
5269
  "turn-provider",
5307
5270
  "user-management",
5308
5271
  "user-passkeys",
@@ -5352,7 +5315,6 @@ const SYSTEM_CAP_NAMES = [
5352
5315
  "audio-analyzer",
5353
5316
  "audio-codec",
5354
5317
  "auth-provider",
5355
- "authentication",
5356
5318
  "backup",
5357
5319
  "decoder",
5358
5320
  "device-export",
@@ -5364,7 +5326,6 @@ const SYSTEM_CAP_NAMES = [
5364
5326
  "local-network",
5365
5327
  "log-destination",
5366
5328
  "mesh-network",
5367
- "mesh-orchestrator",
5368
5329
  "metrics-provider",
5369
5330
  "mqtt-broker",
5370
5331
  "network-access",
@@ -5376,7 +5337,6 @@ const SYSTEM_CAP_NAMES = [
5376
5337
  "pipeline-runner",
5377
5338
  "platform-probe",
5378
5339
  "recording-engine",
5379
- "remote-access",
5380
5340
  "restreamer",
5381
5341
  "settings-store",
5382
5342
  "smtp-provider",
@@ -5388,7 +5348,6 @@ const SYSTEM_CAP_NAMES = [
5388
5348
  "streaming-engine",
5389
5349
  "system",
5390
5350
  "toast",
5391
- "turn-orchestrator",
5392
5351
  "turn-provider",
5393
5352
  "user-management",
5394
5353
  "user-passkeys",
@@ -5541,7 +5500,6 @@ exports.AudioMetricsHistoryPointSchema = index.AudioMetricsHistoryPointSchema;
5541
5500
  exports.AudioMetricsHistorySchema = index.AudioMetricsHistorySchema;
5542
5501
  exports.AudioMetricsSnapshotSchema = index.AudioMetricsSnapshotSchema;
5543
5502
  exports.AudioPcmChunkSchema = index.AudioPcmChunkSchema;
5544
- exports.AuthProviderInfoSchema = index.AuthProviderInfoSchema;
5545
5503
  exports.AuthResultSchema = index.AuthResultSchema;
5546
5504
  exports.AutoUpdateSettingsSchema = index.AutoUpdateSettingsSchema;
5547
5505
  exports.AvailableIntegrationTypeSchema = index.AvailableIntegrationTypeSchema;
@@ -5618,6 +5576,8 @@ exports.EncodedPacketSchema = index.EncodedPacketSchema;
5618
5576
  exports.EnrichedWidgetMetadataSchema = index.EnrichedWidgetMetadataSchema;
5619
5577
  exports.EventItemSchema = index.EventItemSchema;
5620
5578
  exports.EventKindSchema = index.EventKindSchema;
5579
+ exports.ExportSetupFieldSchema = index.ExportSetupFieldSchema;
5580
+ exports.ExportSetupSchema = index.ExportSetupSchema;
5621
5581
  exports.ExposedDeviceSchema = index.ExposedDeviceSchema;
5622
5582
  exports.ExposedResourceSchema = index.ExposedResourceSchema;
5623
5583
  exports.FeatureManifestSchema = index.FeatureManifestSchema;
@@ -5640,6 +5600,8 @@ exports.LogLevelSchema = index.LogLevelSchema;
5640
5600
  exports.LogStreamEntrySchema = index.LogStreamEntrySchema;
5641
5601
  exports.MODEL_FORMATS = index.MODEL_FORMATS;
5642
5602
  exports.MediaFileSchema = index.MediaFileSchema;
5603
+ exports.MeshPeerSchema = index.MeshPeerSchema;
5604
+ exports.MeshStatusSchema = index.MeshStatusSchema;
5643
5605
  exports.MethodAccessSchema = index.MethodAccessSchema;
5644
5606
  exports.MotionAnalysisResultSchema = index.MotionAnalysisResultSchema;
5645
5607
  exports.MotionEventSchema = index.MotionEventSchema;
@@ -5693,8 +5655,6 @@ exports.PtzPositionSchema = index.PtzPositionSchema;
5693
5655
  exports.PtzPresetSchema = index.PtzPresetSchema;
5694
5656
  exports.QueryFilterSchema = index.QueryFilterSchema;
5695
5657
  exports.RegisteredStreamSchema = index.RegisteredStreamSchema;
5696
- exports.RemoteAccessEndpointSchema = index.RemoteAccessEndpointSchema;
5697
- exports.RemoteAccessProviderInfoSchema = index.RemoteAccessProviderInfoSchema;
5698
5658
  exports.ReportMotionInputSchema = index.ReportMotionInputSchema;
5699
5659
  exports.RtpSourceSchema = index.RtpSourceSchema;
5700
5660
  exports.RtspRestreamEntrySchema = index.RtspRestreamEntrySchema;
@@ -5748,7 +5708,6 @@ exports.TopologyServiceSchema = index.TopologyServiceSchema;
5748
5708
  exports.TrackSchema = index.TrackSchema;
5749
5709
  exports.TrackStateSchema = index.TrackStateSchema;
5750
5710
  exports.TrackedDetectionSchema = index.TrackedDetectionSchema;
5751
- exports.TurnProviderInfoSchema = index.TurnProviderInfoSchema;
5752
5711
  exports.TurnServerSchema = index.TurnServerSchema;
5753
5712
  exports.UpdateIntegrationInputSchema = index.UpdateIntegrationInputSchema;
5754
5713
  exports.UpdateUserInputSchema = index.UpdateUserInputSchema;
@@ -5786,7 +5745,6 @@ exports.audioAnalyzerCapability = index.audioAnalyzerCapability;
5786
5745
  exports.audioCodecCapability = index.audioCodecCapability;
5787
5746
  exports.audioMetricsCapability = index.audioMetricsCapability;
5788
5747
  exports.authProviderCapability = index.authProviderCapability;
5789
- exports.authenticationCapability = index.authenticationCapability;
5790
5748
  exports.backupCapability = index.backupCapability;
5791
5749
  exports.batteryCapability = index.batteryCapability;
5792
5750
  exports.brightnessCapability = index.brightnessCapability;
@@ -5817,7 +5775,6 @@ exports.localNetworkCapability = index.localNetworkCapability;
5817
5775
  exports.logDestinationCapability = index.logDestinationCapability;
5818
5776
  exports.mapAudioLabelToMacro = index.mapAudioLabelToMacro;
5819
5777
  exports.meshNetworkCapability = index.meshNetworkCapability;
5820
- exports.meshOrchestratorCapability = index.meshOrchestratorCapability;
5821
5778
  exports.method = index.method;
5822
5779
  exports.metricsProviderCapability = index.metricsProviderCapability;
5823
5780
  exports.motionCapability = index.motionCapability;
@@ -5840,7 +5797,6 @@ exports.ptzCapability = index.ptzCapability;
5840
5797
  exports.rebootCapability = index.rebootCapability;
5841
5798
  exports.recordingCapability = index.recordingCapability;
5842
5799
  exports.recordingEngineCapability = index.recordingEngineCapability;
5843
- exports.remoteAccessCapability = index.remoteAccessCapability;
5844
5800
  exports.resolveDeviceProfile = index.resolveDeviceProfile;
5845
5801
  exports.restreamerCapability = index.restreamerCapability;
5846
5802
  exports.settingsStoreCapability = index.settingsStoreCapability;
@@ -5855,7 +5811,6 @@ exports.streamingEngineCapability = index.streamingEngineCapability;
5855
5811
  exports.switchCapability = index.switchCapability;
5856
5812
  exports.systemCapability = index.systemCapability;
5857
5813
  exports.toastCapability = index.toastCapability;
5858
- exports.turnOrchestratorCapability = index.turnOrchestratorCapability;
5859
5814
  exports.turnProviderCapability = index.turnProviderCapability;
5860
5815
  exports.userManagementCapability = index.userManagementCapability;
5861
5816
  exports.userPasskeysCapability = index.userPasskeysCapability;