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 • 988 B
TypeScript
/**
* @fileoverview WSDOT Traffic Flow API Input Schemas
*
* This module provides Zod schemas for validating input parameters for the WSDOT
* Traffic Flow API endpoints.
*/
import { z } from "../../../../shared/zod";
/**
* Schema for GetTrafficFlow input parameters
*
* Provides real-time data on Traffic Flow sensors for the entire state. Data is updated every 90 seconds. Coverage Area: Statewide.
*/
export declare const trafficFlowByIdInputSchema: z.ZodObject<{
FlowDataID: z.ZodNumber;
}, z.core.$strip>;
export type TrafficFlowByIdInput = z.infer<typeof trafficFlowByIdInputSchema>;
/**
* Schema for GetTrafficFlows input parameters
*
* Provides real-time data on Traffic Flow sensors for the entire state. Data is updated every 90 seconds. Coverage Area: Statewide.
*/
export declare const trafficFlowsInputSchema: z.ZodObject<{}, z.core.$strip>;
export type TrafficFlowsInput = z.infer<typeof trafficFlowsInputSchema>;
//# sourceMappingURL=flowData.input.d.ts.map