Skip to content

Commit aa511e7

Browse files
committed
[Librarian] Regenerated @ fffff4e2a9903902262deb482f4cefeb44c2d081
1 parent 57d1d50 commit aa511e7

File tree

114 files changed

+1008
-398
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+1008
-398
lines changed

CHANGES.md

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

4+
[2023-05-18] Version 6.0.1
5+
--------------------------
6+
**Library - Fix**
7+
- [PR #654](https://github.com/twilio/twilio-ruby/pull/654): match only against the end of a file path. Thanks to [@pat](https://github.com/pat)!
8+
9+
**Conversations**
10+
- Added `AddressCountry` parameter to Address Configuration endpoint, to support regional short code addresses
11+
- Added query parameters `start_date`, `end_date` and `state` in list Conversations resource for filtering
12+
13+
**Insights**
14+
- Added annotations parameters to list summary api
15+
16+
**Messaging**
17+
- Add GET domainByMessagingService endpoint to linkShortening service
18+
- Add `disable_https` to link shortening domain_config properties
19+
20+
**Numbers**
21+
- Add bulk_eligibility api under version `/v1`.
22+
23+
424
[2023-05-04] Version 6.0.0
525
--------------------------
626
**Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md#2023-05-03-5xx-to-6xx) for detailed migration notes.

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def update(
239239
def usage
240240
unless @usage
241241
@usage = UsageList.new(
242-
@version, account_sid: @solution[:sid], )
242+
@version, account_sid: @solution[:sid], )
243243
end
244244
@usage
245245
end
@@ -250,7 +250,7 @@ def usage
250250
def new_keys
251251
unless @new_keys
252252
@new_keys = NewKeyList.new(
253-
@version, account_sid: @solution[:sid], )
253+
@version, account_sid: @solution[:sid], )
254254
end
255255
@new_keys
256256
end
@@ -261,7 +261,7 @@ def new_keys
261261
def validation_requests
262262
unless @validation_requests
263263
@validation_requests = ValidationRequestList.new(
264-
@version, account_sid: @solution[:sid], )
264+
@version, account_sid: @solution[:sid], )
265265
end
266266
@validation_requests
267267
end
@@ -272,7 +272,7 @@ def validation_requests
272272
def tokens
273273
unless @tokens
274274
@tokens = TokenList.new(
275-
@version, account_sid: @solution[:sid], )
275+
@version, account_sid: @solution[:sid], )
276276
end
277277
@tokens
278278
end
@@ -283,7 +283,7 @@ def tokens
283283
def balance
284284
unless @balance
285285
@balance = BalanceList.new(
286-
@version, account_sid: @solution[:sid], )
286+
@version, account_sid: @solution[:sid], )
287287
end
288288
@balance
289289
end
@@ -294,7 +294,7 @@ def balance
294294
def sip
295295
unless @sip
296296
@sip = SipList.new(
297-
@version, account_sid: @solution[:sid], )
297+
@version, account_sid: @solution[:sid], )
298298
end
299299
@sip
300300
end
@@ -305,7 +305,7 @@ def sip
305305
def new_signing_keys
306306
unless @new_signing_keys
307307
@new_signing_keys = NewSigningKeyList.new(
308-
@version, account_sid: @solution[:sid], )
308+
@version, account_sid: @solution[:sid], )
309309
end
310310
@new_signing_keys
311311
end
@@ -323,7 +323,7 @@ def applications(sid=:unset)
323323

324324
unless @applications
325325
@applications = ApplicationList.new(
326-
@version, account_sid: @solution[:sid], )
326+
@version, account_sid: @solution[:sid], )
327327
end
328328

329329
@applications
@@ -342,7 +342,7 @@ def recordings(sid=:unset)
342342

343343
unless @recordings
344344
@recordings = RecordingList.new(
345-
@version, account_sid: @solution[:sid], )
345+
@version, account_sid: @solution[:sid], )
346346
end
347347

348348
@recordings
@@ -361,7 +361,7 @@ def connect_apps(sid=:unset)
361361

362362
unless @connect_apps
363363
@connect_apps = ConnectAppList.new(
364-
@version, account_sid: @solution[:sid], )
364+
@version, account_sid: @solution[:sid], )
365365
end
366366

367367
@connect_apps
@@ -380,7 +380,7 @@ def calls(sid=:unset)
380380

381381
unless @calls
382382
@calls = CallList.new(
383-
@version, account_sid: @solution[:sid], )
383+
@version, account_sid: @solution[:sid], )
384384
end
385385

386386
@calls
@@ -399,7 +399,7 @@ def signing_keys(sid=:unset)
399399

400400
unless @signing_keys
401401
@signing_keys = SigningKeyList.new(
402-
@version, account_sid: @solution[:sid], )
402+
@version, account_sid: @solution[:sid], )
403403
end
404404

405405
@signing_keys
@@ -418,7 +418,7 @@ def outgoing_caller_ids(sid=:unset)
418418

419419
unless @outgoing_caller_ids
420420
@outgoing_caller_ids = OutgoingCallerIdList.new(
421-
@version, account_sid: @solution[:sid], )
421+
@version, account_sid: @solution[:sid], )
422422
end
423423

424424
@outgoing_caller_ids
@@ -437,7 +437,7 @@ def short_codes(sid=:unset)
437437

438438
unless @short_codes
439439
@short_codes = ShortCodeList.new(
440-
@version, account_sid: @solution[:sid], )
440+
@version, account_sid: @solution[:sid], )
441441
end
442442

443443
@short_codes
@@ -456,7 +456,7 @@ def incoming_phone_numbers(sid=:unset)
456456

457457
unless @incoming_phone_numbers
458458
@incoming_phone_numbers = IncomingPhoneNumberList.new(
459-
@version, account_sid: @solution[:sid], )
459+
@version, account_sid: @solution[:sid], )
460460
end
461461

462462
@incoming_phone_numbers
@@ -475,7 +475,7 @@ def queues(sid=:unset)
475475

476476
unless @queues
477477
@queues = QueueList.new(
478-
@version, account_sid: @solution[:sid], )
478+
@version, account_sid: @solution[:sid], )
479479
end
480480

481481
@queues
@@ -494,7 +494,7 @@ def authorized_connect_apps(connect_app_sid=:unset)
494494

495495
unless @authorized_connect_apps
496496
@authorized_connect_apps = AuthorizedConnectAppList.new(
497-
@version, account_sid: @solution[:sid], )
497+
@version, account_sid: @solution[:sid], )
498498
end
499499

500500
@authorized_connect_apps
@@ -513,7 +513,7 @@ def available_phone_numbers(country_code=:unset)
513513

514514
unless @available_phone_numbers
515515
@available_phone_numbers = AvailablePhoneNumberCountryList.new(
516-
@version, account_sid: @solution[:sid], )
516+
@version, account_sid: @solution[:sid], )
517517
end
518518

519519
@available_phone_numbers
@@ -532,7 +532,7 @@ def addresses(sid=:unset)
532532

533533
unless @addresses
534534
@addresses = AddressList.new(
535-
@version, account_sid: @solution[:sid], )
535+
@version, account_sid: @solution[:sid], )
536536
end
537537

538538
@addresses
@@ -551,7 +551,7 @@ def transcriptions(sid=:unset)
551551

552552
unless @transcriptions
553553
@transcriptions = TranscriptionList.new(
554-
@version, account_sid: @solution[:sid], )
554+
@version, account_sid: @solution[:sid], )
555555
end
556556

557557
@transcriptions
@@ -570,7 +570,7 @@ def conferences(sid=:unset)
570570

571571
unless @conferences
572572
@conferences = ConferenceList.new(
573-
@version, account_sid: @solution[:sid], )
573+
@version, account_sid: @solution[:sid], )
574574
end
575575

576576
@conferences
@@ -589,7 +589,7 @@ def keys(sid=:unset)
589589

590590
unless @keys
591591
@keys = KeyList.new(
592-
@version, account_sid: @solution[:sid], )
592+
@version, account_sid: @solution[:sid], )
593593
end
594594

595595
@keys
@@ -608,7 +608,7 @@ def notifications(sid=:unset)
608608

609609
unless @notifications
610610
@notifications = NotificationList.new(
611-
@version, account_sid: @solution[:sid], )
611+
@version, account_sid: @solution[:sid], )
612612
end
613613

614614
@notifications
@@ -627,7 +627,7 @@ def messages(sid=:unset)
627627

628628
unless @messages
629629
@messages = MessageList.new(
630-
@version, account_sid: @solution[:sid], )
630+
@version, account_sid: @solution[:sid], )
631631
end
632632

633633
@messages

lib/twilio-ruby/rest/api/v2010/account/address.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def update(
285285
def dependent_phone_numbers
286286
unless @dependent_phone_numbers
287287
@dependent_phone_numbers = DependentPhoneNumberList.new(
288-
@version, account_sid: @solution[:account_sid], address_sid: @solution[:sid], )
288+
@version, account_sid: @solution[:account_sid], address_sid: @solution[:sid], )
289289
end
290290
@dependent_phone_numbers
291291
end

lib/twilio-ruby/rest/api/v2010/account/available_phone_number_country.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def fetch
170170
def voip
171171
unless @voip
172172
@voip = VoipList.new(
173-
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
173+
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
174174
end
175175
@voip
176176
end
@@ -181,7 +181,7 @@ def voip
181181
def national
182182
unless @national
183183
@national = NationalList.new(
184-
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
184+
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
185185
end
186186
@national
187187
end
@@ -192,7 +192,7 @@ def national
192192
def mobile
193193
unless @mobile
194194
@mobile = MobileList.new(
195-
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
195+
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
196196
end
197197
@mobile
198198
end
@@ -203,7 +203,7 @@ def mobile
203203
def machine_to_machine
204204
unless @machine_to_machine
205205
@machine_to_machine = MachineToMachineList.new(
206-
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
206+
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
207207
end
208208
@machine_to_machine
209209
end
@@ -214,7 +214,7 @@ def machine_to_machine
214214
def toll_free
215215
unless @toll_free
216216
@toll_free = TollFreeList.new(
217-
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
217+
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
218218
end
219219
@toll_free
220220
end
@@ -225,7 +225,7 @@ def toll_free
225225
def shared_cost
226226
unless @shared_cost
227227
@shared_cost = SharedCostList.new(
228-
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
228+
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
229229
end
230230
@shared_cost
231231
end
@@ -236,7 +236,7 @@ def shared_cost
236236
def local
237237
unless @local
238238
@local = LocalList.new(
239-
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
239+
@version, account_sid: @solution[:account_sid], country_code: @solution[:country_code], )
240240
end
241241
@local
242242
end

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ def update(
431431
def events
432432
unless @events
433433
@events = EventList.new(
434-
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
434+
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
435435
end
436436
@events
437437
end
@@ -442,7 +442,7 @@ def events
442442
def user_defined_messages
443443
unless @user_defined_messages
444444
@user_defined_messages = UserDefinedMessageList.new(
445-
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
445+
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
446446
end
447447
@user_defined_messages
448448
end
@@ -460,7 +460,7 @@ def siprec(sid=:unset)
460460

461461
unless @siprec
462462
@siprec = SiprecList.new(
463-
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
463+
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
464464
end
465465

466466
@siprec
@@ -479,7 +479,7 @@ def user_defined_message_subscriptions(sid=:unset)
479479

480480
unless @user_defined_message_subscriptions
481481
@user_defined_message_subscriptions = UserDefinedMessageSubscriptionList.new(
482-
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
482+
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
483483
end
484484

485485
@user_defined_message_subscriptions
@@ -498,7 +498,7 @@ def payments(sid=:unset)
498498

499499
unless @payments
500500
@payments = PaymentList.new(
501-
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
501+
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
502502
end
503503

504504
@payments
@@ -517,7 +517,7 @@ def recordings(sid=:unset)
517517

518518
unless @recordings
519519
@recordings = RecordingList.new(
520-
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
520+
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
521521
end
522522

523523
@recordings
@@ -536,7 +536,7 @@ def notifications(sid=:unset)
536536

537537
unless @notifications
538538
@notifications = NotificationList.new(
539-
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
539+
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
540540
end
541541

542542
@notifications
@@ -566,7 +566,7 @@ def streams(sid=:unset)
566566

567567
unless @streams
568568
@streams = StreamList.new(
569-
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
569+
@version, account_sid: @solution[:account_sid], call_sid: @solution[:sid], )
570570
end
571571

572572
@streams

0 commit comments

Comments
 (0)