diff --git a/changelog.md b/changelog.md index 41e96ae..4155a62 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-04-25 - 5.0.1 - fix(mta) +Update email stats response interface in mta platform service to include totalEmailsSent, totalEmailsDelivered, totalEmailsBounced, averageDeliveryTimeMs, and lastUpdated timestamp. + +- Modified IReq_GetEMailStats response in ts_interfaces/platformservice/mta.ts from an empty status object to a detailed email statistics structure. + ## 2025-04-25 - 5.0.0 - BREAKING CHANGE(ts_interfaces/platformservice/mta) Rename mta interfaces and upgrade dependency versions diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index bc64463..7ef78b3 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/cloudly', - version: '5.0.0', + version: '5.0.1', description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.' } diff --git a/ts_interfaces/platformservice/mta.ts b/ts_interfaces/platformservice/mta.ts index 80046d8..ec0fce6 100644 --- a/ts_interfaces/platformservice/mta.ts +++ b/ts_interfaces/platformservice/mta.ts @@ -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; }; } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index bc64463..7ef78b3 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/cloudly', - version: '5.0.0', + version: '5.0.1', description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.' }