From 77d911e47ab6b670ae28aa3b9ac90ecd88c90d88 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 25 Apr 2025 18:20:18 +0000 Subject: [PATCH] fix(platformservice/mta): Update getEmailStatus response schema: make details property optional --- changelog.md | 5 +++++ ts/00_commitinfo_data.ts | 2 +- ts_interfaces/platformservice/mta.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) 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.' }