Structured draft fields returned alongside the formatted HTML email body.

interface PrOutreachDraft {
    body?: null | string;
    body_html?: null | string;
    key_points?: string[];
    missing_context_warnings?: string[];
    opener?: null | string;
    personalization_notes?: string[];
    review_notes?: string[];
    subject?: null | string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

body?: null | string
body_html?: null | string
key_points?: string[]
missing_context_warnings?: string[]
opener?: null | string
personalization_notes?: string[]
review_notes?: string[]
subject?: null | string

Generated using TypeDoc