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
+10
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,16 @@
1
1
twilio-ruby changelog
2
2
=====================
3
3
4
+
[2025-01-13] Version 7.4.2
5
+
--------------------------
6
+
**Library - Chore**
7
+
-[PR #739](https://github.com/twilio/twilio-ruby/pull/739): add ostruct and benchmark in gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
8
+
-[PR #738](https://github.com/twilio/twilio-ruby/pull/738): add ostruct in gemfile. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
9
+
10
+
**Messaging**
11
+
- Adds validity period Default value in service resource documentation
# @param [String] speech_model Recognition model used by the transcription engine, among those supported by the provider
49
49
# @param [String] hints A Phrase contains words and phrase \\\"hints\\\" so that the speech recognition engine is more likely to recognize them.
50
50
# @param [Boolean] enable_automatic_punctuation The provider will add punctuation to recognition result
51
-
# @param [String] intelligence_service The SID or the unique name of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) to process the transcription.
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 .
52
52
# @return [TranscriptionInstance] Created TranscriptionInstance
Copy file name to clipboardExpand all lines: lib/twilio-ruby/rest/conversations/v1/configuration/webhook.rb
+3-3
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ def fetch
77
77
##
78
78
# Update the WebhookInstance
79
79
# @param [String] method The HTTP method to be used when sending a webhook request.
80
-
# @param [Array[String]] filters The list of webhook event triggers that are enabled for this Service: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onConversationUpdated`, `onConversationRemoved`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`
80
+
# @param [Array[String]] filters The list of webhook event triggers that are enabled for this Service: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onMessageAdd`, `onMessageUpdate`, `onMessageRemove`, `onConversationUpdated`, `onConversationRemoved`, `onConversationAdd`, `onConversationAdded`, `onConversationRemove`, `onConversationUpdate`, `onConversationStateUpdated`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`, `onParticipantAdd`, `onParticipantRemove`, `onParticipantUpdate`, `onDeliveryUpdated`, `onUserAdded`, `onUserUpdate`, `onUserUpdated`
81
81
# @param [String] pre_webhook_url The absolute url the pre-event webhook request should be sent to.
82
82
# @param [String] post_webhook_url The absolute url the post-event webhook request should be sent to.
83
83
# @param [Target] target
@@ -208,7 +208,7 @@ def method
208
208
end
209
209
210
210
##
211
-
# @return [Array<String>] The list of webhook event triggers that are enabled for this Service: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onConversationUpdated`, `onConversationRemoved`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`
211
+
# @return [Array<String>] The list of webhook event triggers that are enabled for this Service: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onMessageAdd`, `onMessageUpdate`, `onMessageRemove`, `onConversationUpdated`, `onConversationRemoved`, `onConversationAdd`, `onConversationAdded`, `onConversationRemove`, `onConversationUpdate`, `onConversationStateUpdated`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`, `onParticipantAdd`, `onParticipantRemove`, `onParticipantUpdate`, `onDeliveryUpdated`, `onUserAdded`, `onUserUpdate`, `onUserUpdated`
212
212
deffilters
213
213
@properties['filters']
214
214
end
@@ -248,7 +248,7 @@ def fetch
248
248
##
249
249
# Update the WebhookInstance
250
250
# @param [String] method The HTTP method to be used when sending a webhook request.
251
-
# @param [Array[String]] filters The list of webhook event triggers that are enabled for this Service: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onConversationUpdated`, `onConversationRemoved`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`
251
+
# @param [Array[String]] filters The list of webhook event triggers that are enabled for this Service: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onMessageAdd`, `onMessageUpdate`, `onMessageRemove`, `onConversationUpdated`, `onConversationRemoved`, `onConversationAdd`, `onConversationAdded`, `onConversationRemove`, `onConversationUpdate`, `onConversationStateUpdated`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`, `onParticipantAdd`, `onParticipantRemove`, `onParticipantUpdate`, `onDeliveryUpdated`, `onUserAdded`, `onUserUpdate`, `onUserUpdated`
252
252
# @param [String] pre_webhook_url The absolute url the pre-event webhook request should be sent to.
253
253
# @param [String] post_webhook_url The absolute url the post-event webhook request should be sent to.
Copy file name to clipboardExpand all lines: lib/twilio-ruby/rest/iam/v1/key.rb
+20-20
Original file line number
Diff line number
Diff line change
@@ -17,12 +17,12 @@ module Twilio
17
17
moduleREST
18
18
classIam < IamBase
19
19
classV1 < Version
20
-
classNewApiKeyList < ListResource
20
+
classKeyList < ListResource
21
21
22
22
##
23
-
# Initialize the NewApiKeyList
23
+
# Initialize the KeyList
24
24
# @param [Version] version Version that contains the resource
25
-
# @return [NewApiKeyList] NewApiKeyList
25
+
# @return [KeyList] KeyList
26
26
definitialize(version)
27
27
super(version)
28
28
# Path Solution
@@ -31,12 +31,12 @@ def initialize(version)
31
31
32
32
end
33
33
##
34
-
# Create the NewApiKeyInstance
34
+
# Create the KeyInstance
35
35
# @param [String] account_sid The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Payments resource.
36
36
# @param [String] friendly_name A descriptive string that you create to describe the resource. It can be up to 64 characters long.
37
37
# @param [Keytype] key_type
38
38
# @param [Object] policy The \\\\`Policy\\\\` object is a collection that specifies the allowed Twilio permissions for the restricted key. For more information on the permissions available with restricted API keys, refer to the [Twilio documentation](https://www.twilio.com/docs/iam/api-keys/restricted-api-keys#permissions-available-with-restricted-api-keys).
39
-
# @return [NewApiKeyInstance] Created NewApiKeyInstance
0 commit comments