chore: clean up dead exports after merges

This commit is contained in:
Bohdan Triapitsyn
2026-06-26 19:35:25 +03:00
parent 1f549e4525
commit fc9146eb7b
11 changed files with 4 additions and 23 deletions
+1 -1
View File
@@ -162,7 +162,7 @@ export const isExpectedAutoReviewAssistantParent = (message: Message, expectedPa
return getMessageParentID(message) === expectedParentID;
};
export const getAutoReviewForwardKey = (run: AutoReviewRun, messageID: string): string => [
const getAutoReviewForwardKey = (run: AutoReviewRun, messageID: string): string => [
run.runtimeKey,
run.originalSessionID,
run.phase,
+2 -2
View File
@@ -2,8 +2,8 @@ import { create } from 'zustand';
import { persist, createJSONStorage } from 'zustand/middleware';
import { getSafeStorage } from '@/stores/utils/safeStorage';
export type AutoReviewPhase = 'waiting_for_reviewer' | 'waiting_for_implementer';
export type AutoReviewStatus = 'running' | 'completed' | 'stopped' | 'error';
type AutoReviewPhase = 'waiting_for_reviewer' | 'waiting_for_implementer';
type AutoReviewStatus = 'running' | 'completed' | 'stopped' | 'error';
export type AutoReviewRun = {
originalSessionID: string;
-1
View File
@@ -716,7 +716,6 @@ complete -c openchamber -n '__fish_seen_subcommand_from tunnel; and __fish_seen_
export {
DEFAULT_PORT,
DEFAULT_TAIL_LINES,
parseArgs,
showHelp,
showStartupHelp,
+1 -1
View File
@@ -51,4 +51,4 @@ function searchPathFor(command) {
return null;
}
export { isExecutable, resolveExplicitBinary, searchPathFor };
export { resolveExplicitBinary, searchPathFor };
-1
View File
@@ -210,7 +210,6 @@ export {
requestServerShutdown,
requestJson,
isServerHealthReady,
waitForServerHealth,
fetchTunnelProvidersFromPort,
fetchSystemInfoFromPort,
};
-2
View File
@@ -141,14 +141,12 @@ function assertAuthenticatedNetworkExposure({ host, uiPassword }) {
export {
isUnsafeBrowserPort,
resolveConfiguredBindHost,
resolveServeHost,
resolveApiHost,
formatHostForUrl,
buildLocalUrl,
detectLanIPv4Address,
formatUnsafePortWarning,
assertSafeBrowserPort,
hasUiPasswordConfigured,
assertAuthenticatedNetworkExposure,
-6
View File
@@ -102,16 +102,10 @@ function getRunDir() {
export {
getDataDir,
getLogsDir,
getSettingsFilePath,
readDesktopLocalPortFromSettings,
ensureLogsDir,
getLogFilePath,
getTunnelProfilesFilePath,
getLegacyCloudflareManagedRemoteFilePath,
getTunnelCliStateFilePath,
readTunnelCliState,
readLastManagedLocalConfigPath,
writeLastManagedLocalConfigPath,
getRunDir,
};
-2
View File
@@ -283,12 +283,10 @@ export {
writeInstanceOptions,
removeInstanceFile,
isProcessRunning,
readProcessCmdline,
isOpenchamberCmdline,
isOpenchamberProcessRunning,
getOpenchamberProcessState,
hasOpenchamberRuntimeInfo,
waitForProcessExit,
terminateProcessTree,
stopInstanceProcess,
};
-1
View File
@@ -364,7 +364,6 @@ function disableStartupService() {
export {
getStartupServicePaths,
getStartupStatus,
enableStartupService,
disableStartupService,
@@ -358,9 +358,7 @@ export {
redactProfileForOutput,
redactProfilesForOutput,
formatProfileTokenStatus,
sanitizeTunnelProfilesData,
warnIfUnsafeFilePermissions,
readTunnelProfilesFromDisk,
writeTunnelProfilesToDisk,
writeManagedRemotePairsToDiskFromProfiles,
ensureTunnelProfilesMigrated,
-4
View File
@@ -294,10 +294,6 @@ async function resolveTunnelTtlOverrides(options) {
export {
parseHumanDurationToMs,
parseTtlMsOrThrow,
formatDurationForCli,
shellQuote,
buildTunnelStartReplayCommand,
buildTunnelProfileAddCommand,
resolveTunnelTtlOverrides,