Files
fusion/packages/dashboard/src/index.ts
Fusion 95f6cd8457 feat(FN-3875): add GitHub tracking auth resolver and forced client auth mod
Implements a tracking auth resolver with forced GitHub client authentication mode, wiring it across the GitHub tracking lifecycle and settings UI. The feature spans six steps: adding the resolver, forced auth mode, routing tracking issue creation through the resolver, and wiring into lifecycle and s

Fusion-Task-Id: FN-3875
2026-05-10 05:20:26 -07:00

53 lines
2.3 KiB
TypeScript

export { createServer, loadTlsCredentialsFromEnv, type ServerOptions } from "./server.js";
export { stopAllDevServers, destroyAllDevServerManagers, getActiveProcessManagers } from "./dev-server-routes.js";
export {
createRuntimeLogger,
getRuntimeLogSink,
resetRuntimeLogSink,
setRuntimeLogSink,
type RuntimeLogContext,
type RuntimeLogger,
type RuntimeLogLevel,
type RuntimeLogSink,
} from "./runtime-logger.js";
export { createSkillsAdapter, getProjectSettingsPath, type SkillsAdapter, type DiscoveredSkill, type CatalogEntry, type CatalogFetchResult, type ToggleSkillResult, type UpstreamError, type UpstreamErrorCode, type SkillContent, type SkillFileEntry } from "./skills-adapter.js";
export { GitHubClient, isPrMergeReady, type GitHubClientOptions, type PrMergeStatus, type PrCheckStatus, type ReviewDecision, type MergePrParams, type FindPrParams, type CreateIssueParams, type CreatedIssue } from "./github.js";
export { maybeCreateTrackingIssue, type MaybeCreateTrackingIssueDeps } from "./github-tracking.js";
export {
resolveGithubTrackingAuth,
type GithubTrackingAuth,
type GithubTrackingAuthResolution,
type ResolveGithubTrackingAuthDeps,
} from "./github-auth.js";
export { rateLimit, RATE_LIMITS, type RateLimitOptions } from "./rate-limit.js";
export { GitHubPollingService, type GitHubPollingServiceOptions, type TaskWatchInput, type WatchedBadgeType } from "./github-poll.js";
export { GitHubIssueCommentService, DEFAULT_COMMENT_TEMPLATE } from "./github-issue-comment.js";
export { GitHubTrackingCommentService, formatTrackingComment } from "./github-tracking-comments.js";
export { GitHubTrackingStateService, decideIssueAction } from "./github-tracking-state.js";
export { getCliPackageVersion, resolveCliPackageVersionInfo, type CliPackageVersionInfo } from "./cli-package-version.js";
export {
ApiError,
type ApiErrorResponse,
type SendErrorOptions,
sendErrorResponse,
catchHandler,
badRequest,
unauthorized,
notFound,
conflict,
rateLimited,
internalError,
} from "./api-error.js";
export {
type BadgePubSub,
type BadgePubSubEvents,
type BadgePubSubMessage,
type BadgePubSubFactory,
type BadgePubSubFactoryOptions,
InMemoryBadgePubSub,
RedisBadgePubSub,
createBadgePubSub,
} from "./badge-pubsub.js";
export * from "./plugins/index.js";