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 605 B
import { z } from "zod"; import { wsfStandardCacheFlushDateSchema } from "@/schemas/shared/cacheFlushDate.zod"; /** Input schema for getScheduleCacheFlushDate */ const scheduleCacheFlushDateInput = z.object({}); /** Endpoint metadata for getScheduleCacheFlushDate */ export const getScheduleCacheFlushDateMeta = { id: "wsf-schedule/cacheFlushDate", endpoint: "/ferries/api/schedule/rest/cacheflushdate", inputSchema: scheduleCacheFlushDateInput, outputSchema: wsfStandardCacheFlushDateSchema, sampleParams: {}, cacheStrategy: "STATIC", }; //# sourceMappingURL=cacheFlushDate.js.map