feat: implement billing, usage tracking, and administrative geocoding features in API with infrastructure updates
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import { BasePlace } from './base-place.entity';
|
||||
export declare enum CandidateStatus {
|
||||
PENDING = "PENDING",
|
||||
APPROVED = "APPROVED",
|
||||
REJECTED = "REJECTED"
|
||||
}
|
||||
export declare enum CountryCode {
|
||||
JORDAN = "JORDAN",
|
||||
SYRIA = "SYRIA",
|
||||
EGYPT = "EGYPT"
|
||||
}
|
||||
export declare class MapCandidate extends BasePlace {
|
||||
status: CandidateStatus;
|
||||
submittedBy: string;
|
||||
rejectionReason: string;
|
||||
country: CountryCode;
|
||||
metadata: any;
|
||||
verified_name: string;
|
||||
confidence_score: number;
|
||||
verification_metadata: any;
|
||||
}
|
||||
Reference in New Issue
Block a user