UNPKG

@vepler/http-sdk

Version:

The definitive TypeScript SDK for UK property technology. Access comprehensive property data, school metrics, demographics, planning applications, and more through a single, powerful API.

38 lines (37 loc) 950 B
export interface GetConnectivityScoresParams { geographicCodes: string; includeBreakdown?: boolean; includeAreaInfo?: boolean; dataPeriod?: string; startPeriod?: string; endPeriod?: string; includePeriodHistory?: boolean; periodLimit?: number; format?: 'basic' | 'detailed'; limit?: number; } export interface ConnectivityScore { code: string; name?: string; type?: string; score: number; breakdown?: { [key: string]: number; }; periodHistory?: { period: string; score: number; }[]; } export interface GetConnectivityScoresResponse { result: ConnectivityScore[]; success: boolean; metadata?: { totalCount: number; periodRange?: { start: string; end: string; }; }; } export declare function getConnectivityScores(params: GetConnectivityScoresParams): Promise<GetConnectivityScoresResponse>;