/** @format */ export type EndpointDefinition = { method: "GET" | "POST" | "PUT" | "DELETE" | "FUNCTION"; path: string; auth?: "developer_jwt" | "vehicle_jwt"; body?: Record; queryParams?: Record; headers?: Record; return?: string; }; export type ResourceMap = Record;