From 07889ab08ce8e6a51fa970f9d37d939ffac87b97 Mon Sep 17 00:00:00 2001 From: Calvin Tang Date: Wed, 23 Oct 2024 16:42:22 -0700 Subject: [PATCH 1/2] Adds SensitivityMask to DialogSensitivityUpdate --- .../src/Models/Events/DialogSensitivityUpdate.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk/communication/Azure.Communication.CallAutomation/src/Models/Events/DialogSensitivityUpdate.cs b/sdk/communication/Azure.Communication.CallAutomation/src/Models/Events/DialogSensitivityUpdate.cs index 5bc771420fad1..59eb67c643a28 100644 --- a/sdk/communication/Azure.Communication.CallAutomation/src/Models/Events/DialogSensitivityUpdate.cs +++ b/sdk/communication/Azure.Communication.CallAutomation/src/Models/Events/DialogSensitivityUpdate.cs @@ -26,6 +26,7 @@ internal DialogSensitivityUpdate(DialogSensitivityUpdateInternal internalEvent) OperationContext = internalEvent.OperationContext; ResultInformation = internalEvent.ResultInformation; DialogId = internalEvent.DialogId; + SensitiveMask = internalEvent.SensitiveMask; } /// Determines the type of the dialog. @@ -34,6 +35,9 @@ internal DialogSensitivityUpdate(DialogSensitivityUpdateInternal internalEvent) /// Dialog Id public string DialogId { get; } + /// SensitiveMask + public bool? SensitiveMask { get; } + /// /// Deserialize event. /// From 4af142ec7e5030dd399a74ce97b4dd0a87453e72 Mon Sep 17 00:00:00 2001 From: Calvin Tang Date: Thu, 24 Oct 2024 11:08:51 -0700 Subject: [PATCH 2/2] Ran Export-API Script --- .../api/Azure.Communication.CallAutomation.netstandard2.0.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/communication/Azure.Communication.CallAutomation/api/Azure.Communication.CallAutomation.netstandard2.0.cs b/sdk/communication/Azure.Communication.CallAutomation/api/Azure.Communication.CallAutomation.netstandard2.0.cs index c037d066333fb..d2f53d639d6bc 100644 --- a/sdk/communication/Azure.Communication.CallAutomation/api/Azure.Communication.CallAutomation.netstandard2.0.cs +++ b/sdk/communication/Azure.Communication.CallAutomation/api/Azure.Communication.CallAutomation.netstandard2.0.cs @@ -766,6 +766,7 @@ public partial class DialogSensitivityUpdate : Azure.Communication.CallAutomatio internal DialogSensitivityUpdate() { } public string DialogId { get { throw null; } } public Azure.Communication.CallAutomation.DialogInputType? DialogInputType { get { throw null; } } + public bool? SensitiveMask { get { throw null; } } public static Azure.Communication.CallAutomation.DialogSensitivityUpdate Deserialize(string content) { throw null; } } public partial class DialogStarted : Azure.Communication.CallAutomation.CallAutomationEventBase