Compare commits

..

No commits in common. "master" and "v5.0.2" have entirely different histories.

5 changed files with 5 additions and 15 deletions

View File

@ -1,15 +1,5 @@
# 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
- Changed the response 'status' field in IRequest_CheckEmailStatus from a literal 'unknown' to a generic string for improved flexibility
## 2025-04-25 - 5.0.2 - fix(platformservice/mta)
Refactor email status response in MTA service

View File

@ -1,6 +1,6 @@
{
"name": "@serve.zone/cloudly",
"version": "5.0.4",
"version": "5.0.2",
"private": false,
"description": "A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.",
"type": "module",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '5.0.4',
version: '5.0.2',
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
}

View File

@ -47,8 +47,8 @@ export interface IReq_CheckEmailStatus extends plugins.typedrequestInterfaces.im
emailId: string;
};
response: {
status: string,
details?: { message: string; }
status: 'unknown',
details: { message: 'Email not found' }
};
}

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '5.0.4',
version: '5.0.2',
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
}