Skip to content

Commit 9df4132

Browse files
committed
[Librarian] Regenerated @ 46fda61a99ae466baec95ccfb33bfdd1b12de546 ac40c0ff376309c2351c6b59c7c15bbb6af6da52
1 parent e2ebd3c commit 9df4132

File tree

11 files changed

+694
-408
lines changed

11 files changed

+694
-408
lines changed

CHANGES.md

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

4+
[2025-09-30] Version 7.8.3
5+
--------------------------
6+
**Library - Chore**
7+
- [PR #762](https://github.com/twilio/twilio-ruby/pull/762): change oauth token endpoint. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
8+
9+
**Insights**
10+
- Replace `field` with `key` in Request Filters and Response Metadata Filters and for Reports API
11+
12+
413
[2025-09-25] Version 7.8.2
514
--------------------------
615
**Api**

lib/twilio-ruby/rest/conversations/v1/service/binding.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def initialize(version, chat_service_sid: nil)
3737
# Lists BindingInstance records from the API as a list.
3838
# Unlike stream(), this operation is eager and will load `limit` records into
3939
# memory before returning.
40-
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
40+
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, `fcm`, or `twilsock`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
4141
# @param [Array[String]] identity The identity of a [Conversation User](https://www.twilio.com/docs/conversations/api/user-resource) this binding belongs to. See [access tokens](https://www.twilio.com/docs/conversations/create-tokens) for more details.
4242
# @param [Integer] limit Upper limit for the number of records to return. stream()
4343
# guarantees to never return more than limit. Default is no limit
@@ -59,7 +59,7 @@ def list(binding_type: :unset, identity: :unset, limit: nil, page_size: nil)
5959
# Streams Instance records from the API as an Enumerable.
6060
# This operation lazily loads records as efficiently as possible until the limit
6161
# is reached.
62-
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
62+
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, `fcm`, or `twilsock`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
6363
# @param [Array[String]] identity The identity of a [Conversation User](https://www.twilio.com/docs/conversations/api/user-resource) this binding belongs to. See [access tokens](https://www.twilio.com/docs/conversations/create-tokens) for more details.
6464
# @param [Integer] limit Upper limit for the number of records to return. stream()
6565
# guarantees to never return more than limit. Default is no limit
@@ -96,7 +96,7 @@ def each
9696
##
9797
# Retrieve a single page of BindingInstance records from the API.
9898
# Request is executed immediately.
99-
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, or `fcm`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
99+
# @param [Array[BindingType]] binding_type The push technology used by the Binding resources to read. Can be: `apn`, `gcm`, `fcm`, or `twilsock`. See [push notification configuration](https://www.twilio.com/docs/chat/push-notification-configuration) for more info.
100100
# @param [Array[String]] identity The identity of a [Conversation User](https://www.twilio.com/docs/conversations/api/user-resource) this binding belongs to. See [access tokens](https://www.twilio.com/docs/conversations/create-tokens) for more details.
101101
# @param [String] page_token PageToken provided by the API
102102
# @param [Integer] page_number Page Number, this value is simply for client state

lib/twilio-ruby/rest/lookups/v2/phone_number.rb

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ def initialize(version, payload , phone_number: nil)
190190
'caller_name' => payload['caller_name'],
191191
'sim_swap' => payload['sim_swap'],
192192
'call_forwarding' => payload['call_forwarding'],
193-
'line_status' => payload['line_status'],
194193
'line_type_intelligence' => payload['line_type_intelligence'],
194+
'line_status' => payload['line_status'],
195195
'identity_match' => payload['identity_match'],
196196
'reassigned_number' => payload['reassigned_number'],
197197
'sms_pumping_risk' => payload['sms_pumping_risk'],
@@ -253,49 +253,49 @@ def validation_errors
253253
end
254254

255255
##
256-
# @return [Hash] An object that contains caller name information based on [CNAM](https://support.twilio.com/hc/en-us/articles/360051670533-Getting-Started-with-CNAM-Caller-ID).
256+
# @return [CallerName]
257257
def caller_name
258258
@properties['caller_name']
259259
end
260260

261261
##
262-
# @return [Hash] An object that contains information on the last date the subscriber identity module (SIM) was changed for a mobile phone number.
262+
# @return [SimSwap]
263263
def sim_swap
264264
@properties['sim_swap']
265265
end
266266

267267
##
268-
# @return [Hash] An object that contains information on the unconditional call forwarding status of mobile phone number.
268+
# @return [CallForwarding]
269269
def call_forwarding
270270
@properties['call_forwarding']
271271
end
272272

273273
##
274-
# @return [Hash] An object that contains line status information for a mobile phone number.
275-
def line_status
276-
@properties['line_status']
274+
# @return [LineTypeIntelligence]
275+
def line_type_intelligence
276+
@properties['line_type_intelligence']
277277
end
278278

279279
##
280-
# @return [Hash] An object that contains line type information including the carrier name, mobile country code, and mobile network code.
281-
def line_type_intelligence
282-
@properties['line_type_intelligence']
280+
# @return [LineStatus]
281+
def line_status
282+
@properties['line_status']
283283
end
284284

285285
##
286-
# @return [Hash] An object that contains identity match information. The result of comparing user-provided information including name, address, date of birth, national ID, against authoritative phone-based data sources
286+
# @return [IdentityMatch]
287287
def identity_match
288288
@properties['identity_match']
289289
end
290290

291291
##
292-
# @return [Hash] An object that contains reassigned number information. Reassigned Numbers will return a phone number's reassignment status given a phone number and date
292+
# @return [ReassignedNumber]
293293
def reassigned_number
294294
@properties['reassigned_number']
295295
end
296296

297297
##
298-
# @return [Hash] An object that contains information on if a phone number has been currently or previously blocked by Verify Fraud Guard for receiving malicious SMS pumping traffic as well as other signals associated with risky carriers and low conversion rates.
298+
# @return [SmsPumpingRisk]
299299
def sms_pumping_risk
300300
@properties['sms_pumping_risk']
301301
end

0 commit comments

Comments
 (0)