Replace the deprecated v3 string-method forms with the top-level
validator helpers zod 4 prefers:
- z.string().url() → z.url() (3 sites)
- z.string().uuid() → z.uuid() (5 sites)
- z.string().datetime() → z.iso.datetime() (9 sites)
Also swap the ZodIssueCode.custom compat-shim reference in
demo-bot.server.ts's superRefine for the bare string literal "custom",
which is v4's idiomatic form. No runtime change.
All 147 tests still pass.
The `parsed.error.issues.map(i => ({field, message}))` pattern in the
five journal API route handlers stays as-is — the fields we read are
unchanged in v4, and zod's new error helpers (z.treeifyError,
z.prettifyError) produce different shapes that would change our
public API error contract.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
import { z } from "zod";
|
|
|
|
/** Activity summary for list views */
|
|
export const ActivitySummarySchema = z.object({
|
|
id: z.uuid(),
|
|
name: z.string(),
|
|
description: z.string(),
|
|
routeId: z.uuid().nullable(),
|
|
routeName: z.string().nullable(),
|
|
distance: z.number().nullable(),
|
|
duration: z.number().nullable(),
|
|
elevationGain: z.number().nullable(),
|
|
elevationLoss: z.number().nullable(),
|
|
startedAt: z.iso.datetime().nullable(),
|
|
geojson: z.string().nullable(),
|
|
createdAt: z.iso.datetime(),
|
|
});
|
|
|
|
/** Full activity detail */
|
|
export const ActivityDetailSchema = ActivitySummarySchema.extend({
|
|
gpx: z.string().nullable(),
|
|
photos: z.array(z.url()),
|
|
});
|
|
|
|
/** Paginated activity list response */
|
|
export const ActivityListResponseSchema = z.object({
|
|
activities: z.array(ActivitySummarySchema),
|
|
nextCursor: z.string().nullable(),
|
|
});
|
|
|
|
/** Create activity request */
|
|
export const CreateActivityRequestSchema = z.object({
|
|
name: z.string().min(1).max(200),
|
|
description: z.string().max(5000).default(""),
|
|
gpx: z.string().optional(),
|
|
routeId: z.uuid().optional(),
|
|
startedAt: z.iso.datetime().optional(),
|
|
duration: z.number().optional(),
|
|
distance: z.number().optional(),
|
|
});
|
|
|
|
export type ActivitySummary = z.infer<typeof ActivitySummarySchema>;
|
|
export type ActivityDetail = z.infer<typeof ActivityDetailSchema>;
|
|
export type ActivityListResponse = z.infer<typeof ActivityListResponseSchema>;
|
|
export type CreateActivityRequest = z.infer<typeof CreateActivityRequestSchema>;
|