mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-05 05:28:37 +01:00
- jellyfinProbe (/System/Info/Public, ProductName check) + reachabilityProbe (services with no health route). - ServerUrlStatusText: compact resolver status for ListItem-row layouts. - Streamystats + Marlin: resolve the URL on blur (https-first, http fallback) and store the canonical URL; inline status feedback.
17 lines
499 B
TypeScript
17 lines
499 B
TypeScript
export {
|
|
getServerUrlCandidates,
|
|
type ParsedServerInput,
|
|
parseServerInput,
|
|
} from "./candidates";
|
|
export { jellyfinProbe } from "./probes/jellyfin";
|
|
export { jellyseerrProbe } from "./probes/jellyseerr";
|
|
export { reachabilityProbe } from "./probes/reachability";
|
|
export {
|
|
type ResolveFailureReason,
|
|
type ResolveOptions,
|
|
type ResolveResult,
|
|
resolveServerUrl,
|
|
} from "./resolve";
|
|
export { isVersionBelow } from "./semver";
|
|
export type { ServerProbe, ServerProbeOutcome } from "./types";
|