Skip to content

Commit 7bc5cc6

Browse files
committed
[Librarian] Regenerated @ 3fba30a1b1e7c6460438ce1ca58c8ea68ad7b236 61d888152c68c1d07f711f67b7faf94bb9526469
1 parent 8640090 commit 7bc5cc6

File tree

11 files changed

+291
-27
lines changed

11 files changed

+291
-27
lines changed

CHANGES.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
twilio-ruby changelog
22
=====================
33

4+
[2025-08-18] Version 7.7.1
5+
--------------------------
6+
**Accounts**
7+
- Update beta feature flag for consent and contact bulk upsert APIs
8+
9+
**Api**
10+
- Add multiple missing usage categories to usage records and usage triggers api
11+
- Add `channels-whatsapp-template-marketing` and `channels-whatsapp-template-utility` to usage categories
12+
13+
**Conversations**
14+
- Fix `state` spelling for `initializing` enum value
15+
- Update `state` to include `intializing` for ServiceConversationWithParticipants and ConversationWithParticipants
16+
17+
**Flex**
18+
- Adding new optional parameter `identity` to `web_channels` API in version `v2`
19+
20+
**Trusthub**
21+
- Add required Permissions to the ComplianceInquiries API
22+
23+
**Verify**
24+
- Add passkeys support to Verify API creating and updating services.
25+
- Update `ienum` type for Factor creation
26+
- Add passkeys as challenge and factor type
27+
28+
429
[2025-07-24] Version 7.7.0
530
--------------------------
631
**Events**

lib/twilio-ruby/rest/flex_api/v1/assessments.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def assessment_sid
346346
end
347347

348348
##
349-
# @return [Float] Offset of the conversation
349+
# @return [String] Offset of the conversation
350350
def offset
351351
@properties['offset']
352352
end
@@ -358,7 +358,7 @@ def report
358358
end
359359

360360
##
361-
# @return [Float] The weightage given to this comment
361+
# @return [String] The weightage given to this comment
362362
def weight
363363
@properties['weight']
364364
end
@@ -406,7 +406,7 @@ def assessment
406406
end
407407

408408
##
409-
# @return [Float]
409+
# @return [String]
410410
def timestamp
411411
@properties['timestamp']
412412
end

lib/twilio-ruby/rest/flex_api/v1/insights_assessments_comment.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def comment
264264
end
265265

266266
##
267-
# @return [Float] The offset
267+
# @return [String] The offset
268268
def offset
269269
@properties['offset']
270270
end
@@ -276,7 +276,7 @@ def report
276276
end
277277

278278
##
279-
# @return [Float] The weightage given to this comment
279+
# @return [String] The weightage given to this comment
280280
def weight
281281
@properties['weight']
282282
end
@@ -306,7 +306,7 @@ def user_email
306306
end
307307

308308
##
309-
# @return [Float] The timestamp when the record is inserted
309+
# @return [String] The timestamp when the record is inserted
310310
def timestamp
311311
@properties['timestamp']
312312
end

lib/twilio-ruby/rest/flex_api/v2/web_channels.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ def initialize(version)
3636
# @param [String] chat_friendly_name The Conversation's friendly name. See the [Conversation resource](https://www.twilio.com/docs/conversations/api/conversation-resource) for an example.
3737
# @param [String] customer_friendly_name The Conversation participant's friendly name. See the [Conversation Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource) for an example.
3838
# @param [String] pre_engagement_data The pre-engagement data.
39+
# @param [String] identity The Identity of the guest user. See the [Conversation User Resource](https://www.twilio.com/docs/conversations/api/user-resource) for an example.
3940
# @param [String] ui_version The Ui-Version HTTP request header
4041
# @return [WebChannelsInstance] Created WebChannelsInstance
4142
def create(
4243
address_sid: nil,
4344
chat_friendly_name: :unset,
4445
customer_friendly_name: :unset,
4546
pre_engagement_data: :unset,
47+
identity: :unset,
4648
ui_version: :unset
4749
)
4850

@@ -51,6 +53,7 @@ def create(
5153
'ChatFriendlyName' => chat_friendly_name,
5254
'CustomerFriendlyName' => customer_friendly_name,
5355
'PreEngagementData' => pre_engagement_data,
56+
'Identity' => identity,
5457
})
5558

5659
headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', 'Ui-Version' => ui_version, })

lib/twilio-ruby/rest/iam/v1/get_api_keys.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ def initialize(version, payload )
179179
'friendly_name' => payload['friendly_name'],
180180
'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
181181
'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
182+
'flags' => payload['flags'],
182183
}
183184
end
184185

@@ -207,6 +208,12 @@ def date_updated
207208
@properties['date_updated']
208209
end
209210

211+
##
212+
# @return [Array<String>]
213+
def flags
214+
@properties['flags']
215+
end
216+
210217
##
211218
# Provide a user friendly representation
212219
def to_s

lib/twilio-ruby/rest/messaging/v1/brand_registration.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ def initialize(version, sid)
180180
# Dependents
181181
@brand_registration_otps = nil
182182
@brand_vettings = nil
183+
@brand_registration2_fa = nil
183184
end
184185
##
185186
# Fetch the BrandRegistrationInstance
@@ -249,6 +250,16 @@ def brand_vettings(brand_vetting_sid=:unset)
249250

250251
@brand_vettings
251252
end
253+
##
254+
# Access the brand_registration2_fa
255+
# @return [BrandRegistration2FaList]
256+
# @return [BrandRegistration2FaContext]
257+
def brand_registration2_fa
258+
BrandRegistration2FaContext.new(
259+
@version,
260+
@solution[:sid]
261+
)
262+
end
252263

253264
##
254265
# Provide a user friendly representation
@@ -503,6 +514,13 @@ def brand_vettings
503514
context.brand_vettings
504515
end
505516

517+
##
518+
# Access the brand_registration2_fa
519+
# @return [brand_registration2_fa] brand_registration2_fa
520+
def brand_registration2_fa
521+
context.brand_registration2_fa
522+
end
523+
506524
##
507525
# Provide a user friendly representation
508526
def to_s

0 commit comments

Comments
 (0)