| import { apiRequest } from './client' | |
| import type { VersionInfo } from '../types' | |
| /** Non-sensitive build/version info for the footer and deploy verification. */ | |
| export async function getVersion(): Promise<VersionInfo> { | |
| return apiRequest<VersionInfo>('/version') | |
| } | |