@@ -8,6 +8,7 @@ import { DraftAttachments } from "./DraftAttachments.js";
88import { DraftBcc } from "./DraftBcc.js" ;
99import { DraftCc } from "./DraftCc.js" ;
1010import { DraftId } from "./DraftId.js" ;
11+ import { DraftInReplyTo } from "./DraftInReplyTo.js" ;
1112import { DraftLabels } from "./DraftLabels.js" ;
1213import { DraftPreview } from "./DraftPreview.js" ;
1314import { DraftSendAt } from "./DraftSendAt.js" ;
@@ -27,6 +28,7 @@ export const DraftItem: core.serialization.ObjectSchema<serializers.DraftItem.Ra
2728 subject : DraftSubject . optional ( ) ,
2829 preview : DraftPreview . optional ( ) ,
2930 attachments : DraftAttachments . optional ( ) ,
31+ inReplyTo : core . serialization . property ( "in_reply_to" , DraftInReplyTo . optional ( ) ) ,
3032 sendStatus : core . serialization . property ( "send_status" , DraftSendStatus . optional ( ) ) ,
3133 sendAt : core . serialization . property ( "send_at" , DraftSendAt . optional ( ) ) ,
3234 updatedAt : core . serialization . property ( "updated_at" , DraftUpdatedAt ) ,
@@ -43,6 +45,7 @@ export declare namespace DraftItem {
4345 subject ?: DraftSubject . Raw | null ;
4446 preview ?: DraftPreview . Raw | null ;
4547 attachments ?: DraftAttachments . Raw | null ;
48+ in_reply_to ?: DraftInReplyTo . Raw | null ;
4649 send_status ?: DraftSendStatus . Raw | null ;
4750 send_at ?: DraftSendAt . Raw | null ;
4851 updated_at : DraftUpdatedAt . Raw ;
0 commit comments