fix(mta): update email status response type in MTA platform service
This commit is contained in:
parent
eb8350f453
commit
d5b91789d1
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## 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
|
||||
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@serve.zone/cloudly',
|
||||
version: '5.0.2',
|
||||
version: '5.0.3',
|
||||
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
||||
}
|
||||
|
@ -47,7 +47,7 @@ export interface IReq_CheckEmailStatus extends plugins.typedrequestInterfaces.im
|
||||
emailId: string;
|
||||
};
|
||||
response: {
|
||||
status: 'unknown',
|
||||
status: string,
|
||||
details: { message: 'Email not found' }
|
||||
};
|
||||
}
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@serve.zone/cloudly',
|
||||
version: '5.0.2',
|
||||
version: '5.0.3',
|
||||
description: 'A comprehensive tool for managing containerized applications across multiple cloud providers using Docker Swarmkit, featuring web, CLI, and API interfaces.'
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user