UNPKG

ws-dottie

Version:

Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration

14 lines 500 B
import { z } from "zod"; import { alertsSchema } from "@/schemas/wsf-schedule/alert.zod"; /** Input schema for getAlerts */ const scheduleAlertsInput = z.object({}); /** Endpoint metadata for getAlerts */ export const getScheduleAlertsMeta = { id: "wsf-schedule/scheduleAlerts", endpoint: "/ferries/api/schedule/rest/alerts", inputSchema: scheduleAlertsInput, outputSchema: alertsSchema, sampleParams: {}, cacheStrategy: "STATIC", }; //# sourceMappingURL=scheduleAlerts.js.map