@cline/core 0.0.42 → 0.0.43
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/cron/service/schedule-service.d.ts +1 -0
- package/dist/extensions/config/user-instruction-config-loader.d.ts +4 -0
- package/dist/extensions/index.d.ts +1 -1
- package/dist/extensions/plugin/plugin-config-loader.d.ts +3 -0
- package/dist/extensions/plugin/plugin-loader.d.ts +1 -0
- package/dist/extensions/plugin/plugin-sandbox.d.ts +7 -0
- package/dist/extensions/plugin-sandbox-bootstrap.js +1 -1
- package/dist/extensions/tools/helpers.d.ts +4 -1
- package/dist/extensions/tools/schemas.d.ts +8 -0
- package/dist/hub/daemon/entry.js +164 -163
- package/dist/hub/discovery/index.d.ts +1 -0
- package/dist/hub/index.js +163 -163
- package/dist/index.d.ts +4 -2
- package/dist/index.js +163 -163
- package/dist/runtime/host/runtime-host.d.ts +7 -0
- package/dist/runtime/orchestration/session-runtime.d.ts +1 -0
- package/dist/services/llms/apihandler-agent-model-adapter.d.ts +26 -0
- package/dist/services/plugin-uninstall.d.ts +13 -0
- package/dist/services/providers/provider-config-fields.d.ts +1 -1
- package/dist/services/telemetry/core-events.d.ts +18 -0
- package/dist/services/telemetry/index.js +1 -1
- package/dist/services/telemetry/tool-context.d.ts +3 -0
- package/dist/types.d.ts +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export type { OAuthCredentials, OAuthLoginCallbacks, OAuthPrompt, OAuthProviderI
|
|
|
19
19
|
export { ClineCore } from "./ClineCore";
|
|
20
20
|
export type { ClineAutomationEventIngressResult, ClineAutomationEventLog, ClineAutomationEventSuppression, ClineAutomationListEventsOptions, ClineAutomationListRunsOptions, ClineAutomationListSpecsOptions, ClineAutomationRun, ClineAutomationRunStatus, ClineAutomationSpec, ClineCoreAutomationApi, ClineCoreAutomationOptions, ClineCoreListHistoryOptions, ClineCoreOptions, ClineCoreSettingsApi, ClineCoreStartInput, HubOptions, RemoteOptions, RestoreInput, RestoreOptions, RestoreResult, } from "./cline-core/types";
|
|
21
21
|
export type { LoadAgentPluginFromPathOptions, PluginInitializationFailure, PluginInitializationWarning, PluginLoadDiagnostics, ResolveAgentPluginPathsOptions, } from "./extensions";
|
|
22
|
-
export { discoverPluginModulePaths, loadAgentPluginFromPath, loadAgentPluginsFromPaths, loadAgentPluginsFromPathsWithDiagnostics, resolveAgentPluginPaths, resolveAndLoadAgentPlugins, resolvePluginConfigSearchPaths, } from "./extensions";
|
|
22
|
+
export { discoverPluginModulePaths, loadAgentPluginFromPath, loadAgentPluginsFromPaths, loadAgentPluginsFromPathsWithDiagnostics, resolveAgentPluginPaths, resolveAndLoadAgentPlugins, resolvePluginConfigSearchPaths, resolvePluginSkillDirectoriesFromPaths, } from "./extensions";
|
|
23
23
|
export type { AvailableRuntimeCommand, CreateInstructionWatcherOptions, CreateRulesConfigDefinitionOptions, CreateSkillsConfigDefinitionOptions, CreateUserInstructionConfigServiceOptions, CreateWorkflowsConfigDefinitionOptions, ParseMarkdownFrontmatterResult, RuleConfig, SkillConfig, UnifiedConfigDefinition, UnifiedConfigFileCandidate, UnifiedConfigFileContext, UnifiedConfigRecord, UnifiedConfigWatcherEvent, UnifiedConfigWatcherOptions, UserInstructionConfig, UserInstructionConfigRecord, UserInstructionConfigService, UserInstructionConfigType, WorkflowConfig, } from "./extensions/config";
|
|
24
24
|
export { createRulesConfigDefinition, createSkillsConfigDefinition, createUserInstructionConfigService, createWorkflowsConfigDefinition, parseRuleConfigFromMarkdown, parseSkillConfigFromMarkdown, parseWorkflowConfigFromMarkdown, RULES_CONFIG_DIRECTORY_NAME, resolveRulesConfigSearchPaths, resolveSkillsConfigSearchPaths, resolveWorkflowsConfigSearchPaths, SKILLS_CONFIG_DIRECTORY_NAME, UnifiedConfigFileWatcher, WORKFLOWS_CONFIG_DIRECTORY_NAME, } from "./extensions/config";
|
|
25
25
|
export { type AuthorizeMcpServerOAuthOptions, type AuthorizeMcpServerOAuthResult, authorizeMcpServerOAuth, type CreateDisabledMcpToolPoliciesOptions, type CreateDisabledMcpToolPolicyOptions, type CreateMcpToolsOptions, createDefaultMcpServerClientFactory, createDisabledMcpToolPolicies, createDisabledMcpToolPolicy, createMcpTools, type DefaultMcpServerClientFactoryOptions, getMcpServerOAuthState, hasMcpSettingsFile, InMemoryMcpManager, type LoadMcpSettingsOptions, listMcpServerOAuthStatuses, loadMcpSettingsFile, type McpConnectionStatus, type McpManager, type McpManagerOptions, type McpServerClient, type McpServerClientFactory, type McpServerOAuthState, type McpServerOAuthStatus, type McpServerRegistration, type McpServerSnapshot, type McpServerTransportConfig, type McpSettingsFile, type McpSseTransportConfig, type McpStdioTransportConfig, type McpStreamableHttpTransportConfig, type McpToolCallRequest, type McpToolCallResult, type McpToolDescriptor, type McpToolNameTransform, type McpToolProvider, type RegisterMcpServersFromSettingsOptions, registerMcpServersFromSettingsFile, resolveDefaultMcpSettingsPath, resolveMcpServerRegistrations, type SetMcpServerDisabledOptions, setMcpServerDisabled, updateMcpServerOAuthState, } from "./extensions/mcp";
|
|
@@ -37,7 +37,7 @@ export type { SessionBackend } from "./runtime/host/host";
|
|
|
37
37
|
export { createRuntimeHost, createRuntimeHost as createSessionHost, resolveSessionBackend, } from "./runtime/host/host";
|
|
38
38
|
export { LocalRuntimeHost } from "./runtime/host/local-runtime-host";
|
|
39
39
|
export type { PendingPromptMutationResult, PendingPromptsDeleteInput, PendingPromptsListInput, PendingPromptsRuntimeService, PendingPromptsServiceApi, PendingPromptsUpdateInput, RestoreSessionInput, RestoreSessionResult, RuntimeHost, RuntimeHost as SessionHost, RuntimeHostMode, RuntimeHostSubscribeOptions, SendSessionInput, SessionAccumulatedUsage, SessionUsageSummary, StartSessionInput, StartSessionResult, } from "./runtime/host/runtime-host";
|
|
40
|
-
export { splitCoreSessionConfig } from "./runtime/host/runtime-host";
|
|
40
|
+
export { isSessionNotFoundError, SESSION_NOT_FOUND_ERROR_CODE, SessionNotFoundError, splitCoreSessionConfig, } from "./runtime/host/runtime-host";
|
|
41
41
|
export { createTeamName, DefaultRuntimeBuilder, } from "./runtime/orchestration/runtime-builder";
|
|
42
42
|
export type { BuiltRuntime, RuntimeBuilder, RuntimeBuilderInput, SessionRuntime, } from "./runtime/orchestration/session-runtime";
|
|
43
43
|
export { formatRulesForSystemPrompt, isRuleEnabled, mergeRulesForSystemPrompt, } from "./runtime/safety/rules";
|
|
@@ -47,6 +47,8 @@ export type { GlobalSettings } from "./services/global-settings";
|
|
|
47
47
|
export { filterDisabledPluginPaths, filterDisabledTools, filterExtensionToolRegistrations, GlobalSettingsSchema, isPluginDisabledGlobally, isTelemetryOptedOutGlobally, isToolDisabledGlobally, readGlobalSettings, resolveDisabledPluginPaths, resolveDisabledToolNames, setDisabledPlugin, setDisabledTools, setTelemetryOptOutGlobally, toggleDisabledTool, writeGlobalSettings, } from "./services/global-settings";
|
|
48
48
|
export type { ListPluginToolsResult, PluginToolSummary, } from "./services/plugin-tools";
|
|
49
49
|
export { listPluginTools, listPluginToolsWithDiagnostics, } from "./services/plugin-tools";
|
|
50
|
+
export type { PluginUninstallOptions, PluginUninstallResult, } from "./services/plugin-uninstall";
|
|
51
|
+
export { uninstallPlugin } from "./services/plugin-uninstall";
|
|
50
52
|
export { addLocalProvider, type DeleteLocalProviderRequest, deleteLocalProvider, ensureCustomProvidersLoaded, getLocalProviderModels, listLocalProviders, loginLocalProvider, normalizeOAuthProvider, refreshProviderModelsFromSource, resolveLocalClineAuthToken, saveLocalProviderOAuthCredentials, saveLocalProviderSettings, type UpdateLocalProviderRequest, updateLocalProvider, } from "./services/providers/local-provider-service";
|
|
51
53
|
export { getProviderConfigFields, type ProviderConfigFieldKey, type ProviderConfigFieldRequirement, type ProviderConfigFields, } from "./services/providers/provider-config-fields";
|
|
52
54
|
export { type MigrateLegacyProviderSettingsOptions, type MigrateLegacyProviderSettingsResult, migrateLegacyProviderSettings, } from "./services/storage/provider-settings-legacy-migration";
|