@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.js
CHANGED
|
@@ -18066,7 +18066,11 @@ function buildAvailableProviders(providerLoader) {
|
|
|
18066
18066
|
icon: provider.icon || "\u{1F4BB}",
|
|
18067
18067
|
category: provider.category,
|
|
18068
18068
|
...provider.installed !== void 0 ? { installed: provider.installed } : {},
|
|
18069
|
-
...provider.detectedPath !== void 0 ? { detectedPath: provider.detectedPath } : {}
|
|
18069
|
+
...provider.detectedPath !== void 0 ? { detectedPath: provider.detectedPath } : {},
|
|
18070
|
+
...provider.enabled !== void 0 ? { enabled: provider.enabled } : {},
|
|
18071
|
+
...provider.machineStatus !== void 0 ? { machineStatus: provider.machineStatus } : {},
|
|
18072
|
+
...provider.lastDetection !== void 0 ? { lastDetection: provider.lastDetection } : {},
|
|
18073
|
+
...provider.lastVerification !== void 0 ? { lastVerification: provider.lastVerification } : {}
|
|
18070
18074
|
}));
|
|
18071
18075
|
}
|
|
18072
18076
|
function buildMachineInfo(profile = "full") {
|