🚨(backend) run make api-update

This commit is contained in:
Stanislas Bruhiere
2025-09-04 17:16:29 +02:00
parent 03a8dc743d
commit 647abfb2eb
2 changed files with 6 additions and 7 deletions
+3 -4
View File
@@ -4065,8 +4065,8 @@
},
"subject": {
"type": "string",
"minLength": 1,
"description": "Subject of the message"
"nullable": true,
"description": "Subject of the message (optional; empty or null allowed)"
},
"draftBody": {
"type": "string",
@@ -4109,8 +4109,7 @@
}
},
"required": [
"senderId",
"subject"
"senderId"
]
},
"FlagEnum": {
@@ -21,10 +21,10 @@ export interface DraftMessageRequestRequest {
/** Mailbox ID to use as sender */
senderId: string;
/**
* Subject of the message
* @minLength 1
* Subject of the message (optional; empty or null allowed)
* @nullable
*/
subject: string;
subject?: string | null;
/** Content of the draft message as arbitrary text (usually JSON) */
draftBody?: string;
/** List of recipient email addresses */