archetecture security fix
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
export interface LicenseValidationResult {
|
||||
status: 'VALID' | 'EXPIRING' | 'EXPIRED';
|
||||
daysUntilExpiry: number | null;
|
||||
requiresApproval: boolean;
|
||||
message: string;
|
||||
}
|
||||
export declare function validateLicense(licenseExpiry: Date | null): LicenseValidationResult;
|
||||
export declare function validateAndFlagLicense(customerId: string, companyId?: string): Promise<LicenseValidationResult>;
|
||||
//# sourceMappingURL=licenseValidationService.d.ts.map
|
||||
Reference in New Issue
Block a user