trails/packages/api/src/discovery.ts
Ullrich Schäfer 49b304749e
Add @trails-cool/api package with Zod schemas for REST API contract
Single source of truth for the Journal REST API:
- API_VERSION semver constant (1.0.0)
- Endpoint path constants (routes, activities, auth, uploads, push)
- Zod schemas for all request/response shapes:
  - Routes: list, detail, create, update, compute
  - Activities: list, detail, create
  - Auth: token exchange, refresh, device management
  - Discovery: instance info + API version
  - Uploads: presigned URL flow
  - Errors: structured error response with field-level details
- Cursor-based pagination schemas
- TypeScript types inferred from Zod (z.infer)

Used by Journal server (validation) and mobile client (type safety).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-12 22:49:30 +02:00

10 lines
280 B
TypeScript

import { z } from "zod";
export const DiscoveryResponseSchema = z.object({
apiVersion: z.string(),
instanceName: z.string(),
apiBaseUrl: z.string().url(),
tileUrl: z.string().url().optional(),
});
export type DiscoveryResponse = z.infer<typeof DiscoveryResponseSchema>;