import { z } from "zod"; export const UnlockRelationshipDiaryRequestSchema = z .object({ expectedCost: z.number().int().positive(), }) .readonly(); export type UnlockRelationshipDiaryRequest = z.output< typeof UnlockRelationshipDiaryRequestSchema >;