chore: clean up dead exports after merges
This commit is contained in:
@@ -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,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;
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -51,4 +51,4 @@ function searchPathFor(command) {
|
||||
return null;
|
||||
}
|
||||
|
||||
export { isExecutable, resolveExplicitBinary, searchPathFor };
|
||||
export { resolveExplicitBinary, searchPathFor };
|
||||
|
||||
@@ -210,7 +210,6 @@ export {
|
||||
requestServerShutdown,
|
||||
requestJson,
|
||||
isServerHealthReady,
|
||||
waitForServerHealth,
|
||||
fetchTunnelProvidersFromPort,
|
||||
fetchSystemInfoFromPort,
|
||||
};
|
||||
|
||||
@@ -141,14 +141,12 @@ function assertAuthenticatedNetworkExposure({ host, uiPassword }) {
|
||||
|
||||
|
||||
export {
|
||||
isUnsafeBrowserPort,
|
||||
resolveConfiguredBindHost,
|
||||
resolveServeHost,
|
||||
resolveApiHost,
|
||||
formatHostForUrl,
|
||||
buildLocalUrl,
|
||||
detectLanIPv4Address,
|
||||
formatUnsafePortWarning,
|
||||
assertSafeBrowserPort,
|
||||
hasUiPasswordConfigured,
|
||||
assertAuthenticatedNetworkExposure,
|
||||
|
||||
@@ -102,16 +102,10 @@ function getRunDir() {
|
||||
|
||||
export {
|
||||
getDataDir,
|
||||
getLogsDir,
|
||||
getSettingsFilePath,
|
||||
readDesktopLocalPortFromSettings,
|
||||
ensureLogsDir,
|
||||
getLogFilePath,
|
||||
getTunnelProfilesFilePath,
|
||||
getLegacyCloudflareManagedRemoteFilePath,
|
||||
getTunnelCliStateFilePath,
|
||||
readTunnelCliState,
|
||||
readLastManagedLocalConfigPath,
|
||||
writeLastManagedLocalConfigPath,
|
||||
getRunDir,
|
||||
};
|
||||
|
||||
@@ -283,12 +283,10 @@ export {
|
||||
writeInstanceOptions,
|
||||
removeInstanceFile,
|
||||
isProcessRunning,
|
||||
readProcessCmdline,
|
||||
isOpenchamberCmdline,
|
||||
isOpenchamberProcessRunning,
|
||||
getOpenchamberProcessState,
|
||||
hasOpenchamberRuntimeInfo,
|
||||
waitForProcessExit,
|
||||
terminateProcessTree,
|
||||
stopInstanceProcess,
|
||||
};
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -294,10 +294,6 @@ async function resolveTunnelTtlOverrides(options) {
|
||||
|
||||
|
||||
export {
|
||||
parseHumanDurationToMs,
|
||||
parseTtlMsOrThrow,
|
||||
formatDurationForCli,
|
||||
shellQuote,
|
||||
buildTunnelStartReplayCommand,
|
||||
buildTunnelProfileAddCommand,
|
||||
resolveTunnelTtlOverrides,
|
||||
|
||||
Reference in New Issue
Block a user