Skip to content

Commit 05ae529

Browse files
pquentingithub-actions[bot]
authored andcommitted
Allow single strings in watcher emails (#3606)
(cherry picked from commit e5d3f71)
1 parent 54f7abd commit 05ae529

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

specification/watcher/_types/Actions.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,15 +237,15 @@ export class DataEmailAttachment {
237237

238238
export class Email {
239239
id?: Id
240-
bcc?: string[]
240+
bcc?: string | string[]
241241
body?: EmailBody
242-
cc?: string[]
242+
cc?: string | string[]
243243
from?: string
244244
priority?: EmailPriority
245-
reply_to?: string[]
245+
reply_to?: string | string[]
246246
sent_date?: DateTime
247247
subject: string
248-
to: string[]
248+
to: string | string[]
249249
attachments?: Dictionary<string, EmailAttachmentContainer>
250250
}
251251

0 commit comments

Comments
 (0)