feat: implement billing, usage tracking, and administrative geocoding features in API with infrastructure updates
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import { AuthService } from './auth.service';
|
||||
import { CreateKeyDto } from './dto/management/create-key.dto';
|
||||
export declare class TenantController {
|
||||
private readonly authService;
|
||||
constructor(authService: AuthService);
|
||||
createKey(req: any, dto: CreateKeyDto): Promise<import("./entities/api-key.entity").ApiKey>;
|
||||
getKeys(req: any): Promise<import("./entities/api-key.entity").ApiKey[]>;
|
||||
getMe(req: any): Promise<any>;
|
||||
}
|
||||
Reference in New Issue
Block a user