feat: implement billing, usage tracking, and administrative geocoding features in API with infrastructure updates
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import { ConfigService } from '@nestjs/config';
|
||||
export declare class MailService {
|
||||
private configService;
|
||||
private readonly logger;
|
||||
private transporter;
|
||||
constructor(configService: ConfigService);
|
||||
sendInvoiceEmail(to: string, data: {
|
||||
tenantName: string;
|
||||
plan: string;
|
||||
amount: string;
|
||||
transactionId: string;
|
||||
}): Promise<boolean>;
|
||||
}
|
||||
Reference in New Issue
Block a user