@adhdev/daemon-core 0.9.29 → 0.9.30

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.
package/dist/index.mjs CHANGED
@@ -17918,7 +17918,11 @@ function buildAvailableProviders(providerLoader) {
17918
17918
  icon: provider.icon || "\u{1F4BB}",
17919
17919
  category: provider.category,
17920
17920
  ...provider.installed !== void 0 ? { installed: provider.installed } : {},
17921
- ...provider.detectedPath !== void 0 ? { detectedPath: provider.detectedPath } : {}
17921
+ ...provider.detectedPath !== void 0 ? { detectedPath: provider.detectedPath } : {},
17922
+ ...provider.enabled !== void 0 ? { enabled: provider.enabled } : {},
17923
+ ...provider.machineStatus !== void 0 ? { machineStatus: provider.machineStatus } : {},
17924
+ ...provider.lastDetection !== void 0 ? { lastDetection: provider.lastDetection } : {},
17925
+ ...provider.lastVerification !== void 0 ? { lastVerification: provider.lastVerification } : {}
17922
17926
  }));
17923
17927
  }
17924
17928
  function buildMachineInfo(profile = "full") {