import { error } from '@sveltejs/kit'; import type { PageServerLoad } from './$types'; import { createApiClient } from '$lib/api.server'; import { getErrorMessage } from '$lib/errors'; export const load: PageServerLoad = async ({ params, fetch }) => { const api = createApiClient(fetch); const result = await api.GET('/api/ocr/training-info/{personId}', { params: { path: { personId: params.personId } } }); if (!result.response.ok) { const code = (result.error as unknown as { code?: string })?.code; throw error(result.response.status, getErrorMessage(code)); } return { history: result.data! }; };