ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
24 lines • 1.25 kB
TypeScript
/**
* @fileoverview WSF Terminals API Input Schemas
*
* This module provides Zod schemas for validating input parameters for the WSF
* Terminals API endpoints.
*/
import { z } from "../../../../shared/zod";
/**
* Schema for TerminalTransports input parameters
*
* This operation provides helpful information for terminal commuters (including parking notes, vehicle-specific tips, etc). A TerminalID, or unique terminal identifier, may be optionally passed to retrieve a specific terminal.
*/
export declare const terminalTransportsInputSchema: z.ZodObject<{}, z.core.$strip>;
export type TerminalTransportsInput = z.infer<typeof terminalTransportsInputSchema>;
/**
* Schema for TerminalTransportsById input parameters
*
* This operation provides helpful information for terminal commuters (including parking notes, vehicle-specific tips, etc). A TerminalID, or unique terminal identifier, may be optionally passed to retrieve a specific terminal.
*/
export declare const terminalTransportsByTerminalIdInputSchema: z.ZodObject<{
TerminalID: z.ZodNumber;
}, z.core.$strip>;
export type TerminalTransportsByTerminalIdInput = z.infer<typeof terminalTransportsByTerminalIdInputSchema>;
//# sourceMappingURL=terminalTransports.input.d.ts.map