Skip to content

Commit fcafde7

Browse files
committed
[Librarian] Regenerated @ 125dc871b4170bce0faca169f8a588f6ff356a88 0c222649d98edbac6858ea253f9b77fc22386e47
1 parent 966f8de commit fcafde7

File tree

8 files changed

+442
-51
lines changed

8 files changed

+442
-51
lines changed

CHANGES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
twilio-ruby changelog
22
=====================
33

4+
[2025-02-20] Version 7.4.5
5+
--------------------------
6+
**Flex**
7+
- Adding Digital Transfers APIs under v1/Interactions
8+
9+
**Numbers**
10+
- Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}
11+
12+
**Trusthub**
13+
- Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing
14+
15+
416
[2025-02-11] Version 7.4.4
517
--------------------------
618
**Api**

lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def initialize(version, account_sid: nil, call_sid: nil)
4848
# @param [String] speech_model Recognition model used by the transcription engine, among those supported by the provider
4949
# @param [String] hints A Phrase contains words and phrase \\\"hints\\\" so that the speech recognition engine is more likely to recognize them.
5050
# @param [Boolean] enable_automatic_punctuation The provider will add punctuation to recognition result
51-
# @param [String] intelligence_service The SID of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
51+
# @param [String] intelligence_service The SID or unique name of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
5252
# @return [TranscriptionInstance] Created TranscriptionInstance
5353
def create(
5454
name: :unset,

lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb

+27
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ def initialize(version, interaction_sid, sid)
145145

146146
# Dependents
147147
@invites = nil
148+
@transfers = nil
148149
@participants = nil
149150
end
150151
##
@@ -209,6 +210,25 @@ def invites
209210
@invites
210211
end
211212
##
213+
# Access the transfers
214+
# @return [InteractionTransferList]
215+
# @return [InteractionTransferContext] if sid was passed.
216+
def transfers(sid=:unset)
217+
218+
raise ArgumentError, 'sid cannot be nil' if sid.nil?
219+
220+
if sid != :unset
221+
return InteractionTransferContext.new(@version, @solution[:interaction_sid], @solution[:sid],sid )
222+
end
223+
224+
unless @transfers
225+
@transfers = InteractionTransferList.new(
226+
@version, interaction_sid: @solution[:interaction_sid], channel_sid: @solution[:sid], )
227+
end
228+
229+
@transfers
230+
end
231+
##
212232
# Access the participants
213233
# @return [InteractionChannelParticipantList]
214234
# @return [InteractionChannelParticipantContext] if sid was passed.
@@ -391,6 +411,13 @@ def invites
391411
context.invites
392412
end
393413

414+
##
415+
# Access the transfers
416+
# @return [transfers] transfers
417+
def transfers
418+
context.transfers
419+
end
420+
394421
##
395422
# Access the participants
396423
# @return [participants] participants

0 commit comments

Comments
 (0)