From d8aee7cea22fddfeb9e6a9135e0ad726eb1e91a3 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Fri, 24 Jan 2025 17:02:36 +0400 Subject: [PATCH] Allow single strings in watcher emails --- 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 }