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 561 B
import { z } from "zod"; import { scheduleBriefResponsesSchema, } from "@/schemas/wsf-schedule/scheduleBriefResponse"; /** Input schema for getActiveSeasons */ const activeSeasonsInput = z.object({}); /** Endpoint metadata for getActiveSeasons */ export const getActiveSeasonsMeta = { id: "wsf-schedule/activeSeasons", endpoint: "/ferries/api/schedule/rest/activeseasons", inputSchema: activeSeasonsInput, outputSchema: scheduleBriefResponsesSchema, sampleParams: {}, cacheStrategy: "STATIC", }; //# sourceMappingURL=activeSeasons.js.map