File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed
sdk/communication/Azure.Communication.CallAutomation Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 44
55### Features Added
66
7+ - Support multiple play sources for Play and Recognize
8+ - Support for PlayStarted event in Play/Recognize
9+ - Hold and Unhold the participant
10+ - Support to manage the rooms/servercall/group call using connect API
11+ - Expose original PSTN number target from incoming call event in call connection properties
12+ - Support for VoIP to PSTN transfer scenario
13+ - Added CreateCallFailed event to signify when create call API fails to establish a call
14+ - Added AnswerFailed event to signify when answer call API fails to answer a call
15+
716### Breaking Changes
817
918### Bugs Fixed
1019
1120### Other Changes
12- - Added CreateCallFailed event to signify when create call API fails to establish a call
13- - Added AnswerFailed event to signify when answer call API fails to answer a call
1421
1522## 1.3.0-beta.1 (2024-08-02)
1623
1724### Features Added
1825
1926- Support multiple play sources for Play and Recognize
2027- Support for PlayStarted event in Play/Recognize
28+ - Support for the real time transcription
29+ - Monetization for real-time transcription and audio streaming
2130- Hold and Unhold the participant
2231- Support to manage the rooms/servercall/group call using connect API
2332- Expose original PSTN number target from incoming call event in call connection properties
24- - Support for VoIP to PSTN transfer scenario
33+ - Support for VoIP to PSTN transfer scenario
2534
2635## 1.2.0 (2024-04-15)
2736
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ public CallAutomationClientOptions(ServiceVersion version = LatestVersion)
3535 ServiceVersion . V2023_03_06 => "2023-03-06" ,
3636 ServiceVersion . V2023_10_15 => "2023-10-15" ,
3737 ServiceVersion . V2024_04_15 => "2024-04-15" ,
38- ServiceVersion . V2024_06_15_Preview => "2024-06-15-preview" ,
3938 ServiceVersion . V2024_09_15 => "2024-09-15" ,
4039 _ => throw new ArgumentOutOfRangeException ( nameof ( version ) ) ,
4140 } ;
@@ -62,15 +61,10 @@ public enum ServiceVersion
6261 /// </summary>
6362 V2024_04_15 = 3 ,
6463
65- /// <summary>
66- /// Latest BETA4 (1.3.0-beta) preview of the CallAutomation service.
67- /// </summary>
68- V2024_06_15_Preview = 4 ,
69-
7064 /// <summary>
7165 /// Latest GA4 (1.3.0) of the CallAutomation service.
7266 /// </summary>
73- V2024_09_15 = 5
67+ V2024_09_15 = 4
7468#pragma warning restore CA1707 // Identifiers should not contain underscores
7569 }
7670 }
You can’t perform that action at this time.
0 commit comments