haixunMaster/lib/threads-browser/index.ts

31 lines
815 B
TypeScript
Raw Normal View History

2026-06-21 12:50:31 +00:00
export {
startLoginFlow,
clearBrowserSession,
getActiveAccount,
checkSessionValid,
getStoredSessionStatus,
accountHasStoredSession,
ensureActiveSession,
refreshSession,
saveAccountSession,
probeSession,
SessionError,
type ActiveSession,
} from "./session";
export {
humanPause,
humanLandingPause,
humanScrollPage,
jitterMs,
computeStaggerMs,
getBrowserConcurrency,
getReplyFetchConcurrency,
DEFAULT_STAGGER_MS,
DEFAULT_TASK_STAGGER_MS,
type HumanPauseKind,
} from "./human-behavior";
export { search, searchTagsParallel, executeScanTasks } from "./search";
export { getProfilePosts } from "./profile";
export { getReplies, getRepliesParallel } from "./replies";
export { publish } from "./publish";
export type { ThreadsPost, ThreadsReply, PublishResult } from "./types";