diff --git a/changelog.md b/changelog.md index 043d8a9..e5294d8 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-04-25 - 5.0.4 - fix(platformservice/mta) +Update getEmailStatus response schema: make details property optional + +- Changed details property from required with fixed message to optional with a flexible message structure in IReq_GetEMailStats response + ## 2025-04-25 - 5.0.3 - fix(mta) update email status response type in MTA platform service diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 77769e0..bb1bdde 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.3', + version: '5.0.4', 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 b147f0e..2881cb7 100644 --- a/ts_interfaces/platformservice/mta.ts +++ b/ts_interfaces/platformservice/mta.ts @@ -48,7 +48,7 @@ export interface IReq_CheckEmailStatus extends plugins.typedrequestInterfaces.im }; response: { status: string, - details: { message: 'Email not found' } + details?: { message: string; } }; } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 77769e0..bb1bdde 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.3', + version: '5.0.4', description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.' }