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