feat: implement billing, usage tracking, and administrative geocoding features in API with infrastructure updates
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
import { UsageService } from './usage.service';
|
||||
export declare class UsageController {
|
||||
private usageService;
|
||||
constructor(usageService: UsageService);
|
||||
getSummary(req: any): Promise<{
|
||||
limit: any;
|
||||
percentage: string;
|
||||
plan: any;
|
||||
monthlyUsage: number;
|
||||
monthlyLimit: any;
|
||||
totalToday: number;
|
||||
avgLatency: number;
|
||||
successRate: number;
|
||||
lastUpdated: Date;
|
||||
}>;
|
||||
getHistory(req: any, days?: number): Promise<any>;
|
||||
}
|
||||
Reference in New Issue
Block a user