refactor: bunch of improvements
All checks were successful
Build Test / test (pull_request) Successful in 35s
JS Unit Tests / test (pull_request) Successful in 33s
PHP Unit Tests / test (pull_request) Successful in 1m5s

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-04-23 22:04:36 -04:00
parent d0e8406830
commit acc42d09ee
8 changed files with 406 additions and 259 deletions

View File

@@ -22,6 +22,12 @@ export interface JmapAuxiliary {
/** JMAP account ID */
accountId?: string;
/** Message delete behavior */
deleteMode?: 'soft' | 'hard';
/** Optional destination mailbox identifier for soft delete */
deleteDestination?: string;
/** Allow additional custom fields */
[key: string]: any;