Add chat gifts and relationship diary UI
Docker Image / Quality and Bundle Budgets (push) Successful in 3s
Docker Image / Build and Push Docker Image (push) Has been cancelled

This commit is contained in:
Codex
2026-07-21 17:41:18 +08:00
parent 4c512d323e
commit 7ed97af68e
54 changed files with 1950 additions and 69 deletions
@@ -0,0 +1,11 @@
import { z } from "zod";
export const UnlockRelationshipDiaryRequestSchema = z
.object({
expectedCost: z.number().int().positive(),
})
.readonly();
export type UnlockRelationshipDiaryRequest = z.output<
typeof UnlockRelationshipDiaryRequestSchema
>;