From 05ae529addf22ba686e13b59ceadb68df75e4f10 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Mon, 27 Jan 2025 14:29:59 +0400 Subject: [PATCH] Allow single strings in watcher emails (#3606) (cherry picked from commit e5d3f71f618917def3ddc1e7de0ddb4c77a87093) --- specification/watcher/_types/Actions.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/specification/watcher/_types/Actions.ts b/specification/watcher/_types/Actions.ts index 20e3655620..fdd643a184 100644 --- a/specification/watcher/_types/Actions.ts +++ b/specification/watcher/_types/Actions.ts @@ -237,15 +237,15 @@ export class DataEmailAttachment { export class Email { id?: Id - bcc?: string[] + bcc?: string | string[] body?: EmailBody - cc?: string[] + cc?: string | string[] from?: string priority?: EmailPriority - reply_to?: string[] + reply_to?: string | string[] sent_date?: DateTime subject: string - to: string[] + to: string | string[] attachments?: Dictionary }