@cline/core 0.0.74 → 0.0.75
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/ClineCore.d.ts +13 -3
- package/dist/cline-core/types.d.ts +2 -2
- package/dist/extensions/plugin/plugin-sandbox.d.ts +8 -0
- package/dist/extensions/plugin-sandbox-bootstrap.js +1 -1
- package/dist/extensions/tools/runtime.d.ts +1 -0
- package/dist/hub/client/index.d.ts +15 -0
- package/dist/hub/client/managed-hub-build-watcher.d.ts +10 -3
- package/dist/hub/client/session-client.d.ts +2 -2
- package/dist/hub/daemon/entry.js +189 -189
- package/dist/hub/daemon/index.d.ts +19 -0
- package/dist/hub/discovery/index.d.ts +42 -13
- package/dist/hub/discovery/workspace.d.ts +9 -0
- package/dist/hub/index.js +176 -176
- package/dist/hub/runtime-host/hub-runtime-host.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +177 -177
- package/dist/runtime/host/local-runtime-host.d.ts +2 -2
- package/dist/runtime/host/runtime-host-support.d.ts +1 -1
- package/dist/runtime/host/runtime-host.d.ts +4 -4
- package/dist/runtime/orchestration/runtime-event-adapter.d.ts +1 -1
- package/dist/runtime/orchestration/session-runtime.d.ts +2 -1
- package/dist/runtime/tools/subprocess-sandbox-lifecycle.d.ts +9 -0
- package/dist/runtime/tools/subprocess-sandbox.d.ts +19 -0
- package/dist/services/global-settings.d.ts +13 -1
- package/dist/services/telemetry/index.js +1 -1
- package/dist/session/checkpoint-restore.d.ts +4 -4
- package/dist/session/display-messages.d.ts +28 -0
- package/dist/session/persisted-tool-result-content.d.ts +8 -0
- package/dist/session/services/persistence-service.d.ts +2 -2
- package/dist/session/session-snapshot.d.ts +2 -2
- package/dist/session/session-versioning-service.d.ts +4 -4
- package/dist/session/stores/session-manifest-store.d.ts +1 -1
- package/dist/session/team/team-child-session-manager.d.ts +2 -2
- package/dist/types.d.ts +2 -3
- package/package.json +4 -4
|
@@ -66,7 +66,7 @@ export declare class HubRuntimeHost implements RuntimeHost {
|
|
|
66
66
|
updated: boolean;
|
|
67
67
|
}>;
|
|
68
68
|
readSessionCompactionState(sessionId: string): Promise<SessionCompactionState | undefined>;
|
|
69
|
-
readSessionMessages(sessionId: string): Promise<import("@cline/llms").
|
|
69
|
+
readSessionMessages(sessionId: string): Promise<import("@cline/llms").MessageWithMetadata[]>;
|
|
70
70
|
dispatchHookEvent(_payload: HookEventPayload): Promise<void>;
|
|
71
71
|
subscribe(listener: (event: CoreSessionEvent) => void, options?: RuntimeHostSubscribeOptions): () => void;
|
|
72
72
|
private ensureSessionSubscription;
|
package/dist/index.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export { cleanupConnectorInstanceViaCli } from "./services/connectors/connector-
|
|
|
56
56
|
export { ADOPTED_POLL_INTERVAL_MS, ConnectorSupervisor, type ConnectorSupervisorDeps, getActiveConnectorSupervisor, RESTART_BASE_DELAY_MS, RESTART_COUNTER_RESET_MS, RESTART_GIVE_UP_AFTER, RESTART_MAX_DELAY_MS, STOP_SIGKILL_TIMEOUT_MS, STOP_SIGTERM_TIMEOUT_MS, setActiveConnectorSupervisor, } from "./services/connectors/connector-supervisor";
|
|
57
57
|
export { FeatureFlagsService, type FeatureFlagsServiceOptions, NoOpFeatureFlagsProvider, } from "./services/feature-flags";
|
|
58
58
|
export type { GlobalCompactionMode, GlobalCompactionStrategy, GlobalPlanActMode, GlobalSettings, } from "./services/global-settings";
|
|
59
|
-
export { filterDisabledPluginPaths, filterDisabledTools, filterExtensionToolRegistrations, GlobalSettingsSchema, isAutoUpdateEnabledGlobally, isPluginDisabledGlobally, isTelemetryOptedOutGlobally, isToolDisabledGlobally, readCompactionModeGlobally, readCompactionStrategyGlobally, readGlobalSettings, readPlanActModeGlobally, readToolAutoApproveGlobally, readTuiThemeGlobally, resolveDisabledPluginPaths, resolveDisabledToolNames, setAutoUpdateEnabledGlobally, setCompactionModeGlobally, setCompactionStrategyGlobally, setDisabledPlugin, setDisabledTools, setPlanActModeGlobally, setTelemetryOptOutGlobally, setToolAutoApproveGlobally, setTuiThemeGlobally, toggleDisabledTool, writeGlobalSettings, } from "./services/global-settings";
|
|
59
|
+
export { filterDisabledPluginPaths, filterDisabledTools, filterExtensionToolRegistrations, GlobalSettingsSchema, isAutoUpdateEnabledGlobally, isModelToolEnabledGlobally, isPluginDisabledGlobally, isTelemetryOptedOutGlobally, isToolDisabledGlobally, readCompactionModeGlobally, readCompactionStrategyGlobally, readGlobalSettings, readPlanActModeGlobally, readToolAutoApproveGlobally, readTuiThemeGlobally, resolveDisabledPluginPaths, resolveDisabledToolNames, resolveModelToolSettings, setAutoUpdateEnabledGlobally, setCompactionModeGlobally, setCompactionStrategyGlobally, setDisabledPlugin, setDisabledTools, setModelToolEnabledGlobally, setPlanActModeGlobally, setTelemetryOptOutGlobally, setToolAutoApproveGlobally, setTuiThemeGlobally, toggleDisabledTool, writeGlobalSettings, } from "./services/global-settings";
|
|
60
60
|
export type { MarketplaceActionResult, MarketplaceEntryInput, MarketplacePrimitiveType, MarketplaceSpawnCommand, MarketplaceSpawnResult, UninstallMarketplaceEntryOptions, } from "./services/marketplace";
|
|
61
61
|
export { findInstalledGlobalMarketplaceSkillName, getGlobalMarketplaceSkillPaths, getMarketplaceSkillCandidates, isMarketplaceSkillInstalled, marketplaceEntryKey, resolveMarketplaceMcpServerName, uninstallMarketplaceEntry, uninstallMarketplaceMcpServerFromSettings, uninstallMarketplacePlugin, uninstallMarketplaceSkill, } from "./services/marketplace";
|
|
62
62
|
export type { McpInstallOptions, McpInstallResult, McpUninstallOptions, McpUninstallResult, } from "./services/mcp-install";
|
|
@@ -90,6 +90,7 @@ export { InMemoryWorkspaceManager } from "./services/workspace/workspace-manager
|
|
|
90
90
|
export { buildWorkspaceMetadata, generateWorkspaceInfo, generateWorkspaceInfoWithDiagnostics, normalizeWorkspacePath, } from "./services/workspace/workspace-manifest";
|
|
91
91
|
export { buildCheckpointWorkspaceDiff, type CheckpointComparePlan, type CheckpointContentDiff, type CheckpointWorkspaceCompareResult, compareCheckpointToWorkspace, createCheckpointComparePlan, } from "./session/checkpoint-diff";
|
|
92
92
|
export { createRestoredCheckpointMetadata, findCheckpointForRun, readSessionCheckpointHistory, trimMessagesBeforeUserRun, } from "./session/checkpoint-restore";
|
|
93
|
+
export { projectSessionMessagesForDisplay, type SessionDisplayMessage, } from "./session/display-messages";
|
|
93
94
|
export { deriveSubsessionStatus, makeSubSessionId, makeTeamTaskSubSessionId, sanitizeSessionToken, } from "./session/models/session-graph";
|
|
94
95
|
export type { SessionManifest } from "./session/models/session-manifest";
|
|
95
96
|
export type { SessionRow } from "./session/models/session-row";
|