@adhdev/daemon-core 0.9.82-rc.447 → 0.9.82-rc.448
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 -0
- package/dist/index.js +575 -431
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +576 -430
- package/dist/index.mjs.map +1 -1
- package/dist/session-host/managed-host.d.ts +64 -0
- package/package.json +2 -2
- package/src/index.ts +2 -0
- package/src/session-host/managed-host.ts +218 -0
package/dist/index.d.ts
CHANGED
|
@@ -151,6 +151,8 @@ export type { HostedCliRuntimeDescriptor, CliTransportFactoryParams } from './co
|
|
|
151
151
|
export { DEFAULT_SESSION_HOST_APP_NAME, DEFAULT_STANDALONE_SESSION_HOST_APP_NAME, resolveSessionHostAppName, resolveSessionHostAppNameResolution, } from './session-host/app-name.js';
|
|
152
152
|
export type { SessionHostAppNameResolution } from './session-host/app-name.js';
|
|
153
153
|
export { ensureSessionHostReady, listHostedCliRuntimes } from './session-host/runtime-support.js';
|
|
154
|
+
export { createManagedSessionHost } from './session-host/managed-host.js';
|
|
155
|
+
export type { ManagedSessionHost, ManagedSessionHostOptions } from './session-host/managed-host.js';
|
|
154
156
|
export { getSessionHostRecoveryLabel, getSessionHostSurfaceKind, isSessionHostLiveRuntime, isSessionHostRecoverySnapshot, partitionSessionHostDiagnosticsSessions, partitionSessionHostRecords, } from './session-host/runtime-surface.js';
|
|
155
157
|
export type { SessionHostSurfaceKind, SessionHostSurfaceRecordLike } from './session-host/runtime-surface.js';
|
|
156
158
|
export { shouldAutoRestoreHostedSessionsOnStartup } from './session-host/startup-restore-policy.js';
|