You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,28 @@
1
1
twilio-csharp Changelog
2
2
=======================
3
3
4
+
[2024-12-05] Version 7.8.0
5
+
--------------------------
6
+
**Library - Fix**
7
+
-[PR #770](https://github.com/twilio/twilio-csharp/pull/770): Update TwilioRestClient.cs to add overloaded method in rest client. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
8
+
9
+
**Library - Feature**
10
+
-[PR #767](https://github.com/twilio/twilio-csharp/pull/767): Adding test cases for public oauth uptake. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
11
+
12
+
**Api**
13
+
- Add optional parameter `intelligence_service` to `transcription`
14
+
- Updated `phone_number_sid` to be populated for sip trunking terminating calls.
15
+
16
+
**Numbers**
17
+
- Add Update Hosted Number Order V2 API endpoint
18
+
- Update Port in docs
19
+
20
+
**Twiml**
21
+
- Add optional parameter `intelligence_service` to `<Transcription>`
22
+
- Add support for new `<ConversationRelay>` and `<Assistant>` noun
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Api/V2010/Account/Call/TranscriptionOptions.cs
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,9 @@ public class CreateTranscriptionOptions : IOptions<TranscriptionResource>
73
73
///<summary> The provider will add punctuation to recognition result </summary>
74
74
publicbool?EnableAutomaticPunctuation{get;set;}
75
75
76
+
///<summary> The SID or the unique name of the [IntelligentService](https://www.twilio.com/docs/voice/intelligence/api/service-resource) to process the transcription. </summary>
77
+
publicstringIntelligenceService{get;set;}
78
+
76
79
77
80
/// <summary> Construct a new CreateRealtimeTranscriptionOptions </summary>
78
81
/// <param name="pathCallSid"> The SID of the [Call](https://www.twilio.com/docs/voice/api/call-resource) the Transcription resource is associated with. </param>
@@ -139,6 +142,10 @@ public List<KeyValuePair<string, string>> GetParams()
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Api/V2010/Account/Call/TranscriptionResource.cs
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,7 @@ public static async System.Threading.Tasks.Task<TranscriptionResource> CreateAsy
131
131
/// <param name="speechModel"> Recognition model used by the transcription engine, among those supported by the provider </param>
132
132
/// <param name="hints"> A Phrase contains words and phrase \\\"hints\\\" so that the speech recognition engine is more likely to recognize them. </param>
133
133
/// <param name="enableAutomaticPunctuation"> The provider will add punctuation to recognition result </param>
134
+
/// <param name="intelligenceService"> The SID or the unique name of the [IntelligentService](https://www.twilio.com/docs/voice/intelligence/api/service-resource) to process the transcription. </param>
134
135
/// <param name="client"> Client to make requests to Twilio </param>
135
136
/// <returns> A single instance of Transcription </returns>
136
137
publicstaticTranscriptionResourceCreate(
@@ -149,9 +150,10 @@ public static TranscriptionResource Create(
@@ -172,6 +174,7 @@ public static TranscriptionResource Create(
172
174
/// <param name="speechModel"> Recognition model used by the transcription engine, among those supported by the provider </param>
173
175
/// <param name="hints"> A Phrase contains words and phrase \\\"hints\\\" so that the speech recognition engine is more likely to recognize them. </param>
174
176
/// <param name="enableAutomaticPunctuation"> The provider will add punctuation to recognition result </param>
177
+
/// <param name="intelligenceService"> The SID or the unique name of the [IntelligentService](https://www.twilio.com/docs/voice/intelligence/api/service-resource) to process the transcription. </param>
175
178
/// <param name="client"> Client to make requests to Twilio </param>
176
179
/// <returns> Task that resolves to A single instance of Transcription </returns>
0 commit comments