fix(mta): Update email stats response interface in mta platform service to include totalEmailsSent, totalEmailsDelivered, totalEmailsBounced, averageDeliveryTimeMs, and lastUpdated timestamp.
This commit is contained in:
@ -60,6 +60,10 @@ export interface IReq_GetEMailStats extends plugins.typedrequestInterfaces.imple
|
||||
jwt: string;
|
||||
};
|
||||
response: {
|
||||
status: {};
|
||||
totalEmailsSent: number;
|
||||
totalEmailsDelivered: number;
|
||||
totalEmailsBounced: number;
|
||||
averageDeliveryTimeMs: number;
|
||||
lastUpdated: string;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user