import { ok, type ReadonlyDB } from "@tailor-platform/erp-kit/core"; import type { DB } from "../generated/kysely-tailordb"; export interface GetJobProfileInput { id: string; } export async function run(db: ReadonlyDB, input: GetJobProfileInput) { const jobProfile = await db .selectFrom("JobProfile") .selectAll() .where("id", "=", input.id) .executeTakeFirst(); return ok({ jobProfile: jobProfile ?? null }); }