UNPKG

ws-dottie

Version:

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

18 lines 820 B
/** * @fileoverview Input schemas for WSF Fares API TerminalCombo endpoints * * These schemas define the input parameters for WSF Fares API TerminalCombo endpoints. * Note: AccessCode is handled separately and is not included in these schemas. */ import { z } from "../../../../shared/zod"; export declare const terminalComboInputSchema: z.ZodObject<{ TripDate: z.ZodString; DepartingTerminalID: z.ZodNumber; ArrivingTerminalID: z.ZodNumber; }, z.core.$strip>; export type TerminalComboInput = z.infer<typeof terminalComboInputSchema>; export declare const terminalComboFaresVerboseInputSchema: z.ZodObject<{ TripDate: z.ZodString; }, z.core.$strip>; export type TerminalComboFaresVerboseInput = z.infer<typeof terminalComboFaresVerboseInputSchema>; //# sourceMappingURL=terminalCombo.input.d.ts.map