@adhdev/daemon-core 0.8.16 → 0.8.17
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.d.ts +2 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/node_modules/@adhdev/session-host-core/package.json +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -39,7 +39,8 @@ export { DaemonCommandHandler } from './commands/handler.js';
|
|
|
39
39
|
export type { CommandResult, CommandContext } from './commands/handler.js';
|
|
40
40
|
export { DaemonCommandRouter } from './commands/router.js';
|
|
41
41
|
export type { CommandRouterDeps, CommandRouterResult } from './commands/router.js';
|
|
42
|
-
export { maybeRunDaemonUpgradeHelperFromEnv } from './commands/upgrade-helper.js';
|
|
42
|
+
export { maybeRunDaemonUpgradeHelperFromEnv, spawnDetachedDaemonUpgradeHelper } from './commands/upgrade-helper.js';
|
|
43
|
+
export type { DaemonUpgradeHelperPayload } from './commands/upgrade-helper.js';
|
|
43
44
|
export { DaemonStatusReporter } from './status/reporter.js';
|
|
44
45
|
export { buildSessionEntries, findCdpManager, hasCdpManager, isCdpConnected } from './status/builders.js';
|
|
45
46
|
export { buildStatusSnapshot } from './status/snapshot.js';
|
package/dist/index.js
CHANGED
|
@@ -2617,6 +2617,7 @@ __export(index_exports, {
|
|
|
2617
2617
|
setLogLevel: () => setLogLevel,
|
|
2618
2618
|
setupIdeInstance: () => setupIdeInstance,
|
|
2619
2619
|
shutdownDaemonComponents: () => shutdownDaemonComponents,
|
|
2620
|
+
spawnDetachedDaemonUpgradeHelper: () => spawnDetachedDaemonUpgradeHelper,
|
|
2620
2621
|
startDaemonDevSupport: () => startDaemonDevSupport,
|
|
2621
2622
|
updateConfig: () => updateConfig,
|
|
2622
2623
|
upsertSavedProviderSession: () => upsertSavedProviderSession
|
|
@@ -19619,6 +19620,7 @@ async function shutdownDaemonComponents(components) {
|
|
|
19619
19620
|
setLogLevel,
|
|
19620
19621
|
setupIdeInstance,
|
|
19621
19622
|
shutdownDaemonComponents,
|
|
19623
|
+
spawnDetachedDaemonUpgradeHelper,
|
|
19622
19624
|
startDaemonDevSupport,
|
|
19623
19625
|
updateConfig,
|
|
19624
19626
|
upsertSavedProviderSession
|