twilio-ruby 5.63.1 → 5.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test-and-deploy.yml +2 -2
- data/CHANGES.md +31 -0
- data/README.md +3 -2
- data/lib/twilio-ruby/rest/api/v2010/account/call/stream.rb +667 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +26 -0
- data/lib/twilio-ruby/rest/conversations/v1/address_configuration.rb +435 -0
- data/lib/twilio-ruby/rest/conversations/v1.rb +17 -0
- data/lib/twilio-ruby/rest/conversations.rb +9 -0
- data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -77
- data/lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb +56 -65
- data/lib/twilio-ruby/rest/insights/v1/conference.rb +82 -54
- data/lib/twilio-ruby/rest/insights/v1.rb +1 -1
- data/lib/twilio-ruby/rest/insights.rb +1 -1
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +75 -18
- data/lib/twilio-ruby/rest/supersim/v1/fleet.rb +71 -30
- data/lib/twilio-ruby/rest/supersim/v1/sms_command.rb +1 -1
- data/lib/twilio-ruby/rest/verify/v2/template.rb +1 -1
- data/lib/twilio-ruby/rest/verify/v2/verification_attempt.rb +89 -21
- data/lib/twilio-ruby/rest/verify.rb +2 -2
- data/lib/twilio-ruby/rest/video/v1/room.rb +7 -4
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac21b282f9cbe5b8fcf0409fa7640ee81595555b
|
4
|
+
data.tar.gz: 64f19f3e30a9fa224cab24fa89aa7dea5e2ef66d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1d43a8631f36c4d04a29cb54dff8ff980fcfcc27416f71466aed84144e99fa512e68894b245274f63f8c5b162dad597bcb420e462000e9f45438d842e7cd118
|
7
|
+
data.tar.gz: 60dd90cdad8f348cce9185f13d7d78b0fa41e6d9e373a8ababbbf083ca30da0f85f2f00388f9e29f4dbae29c4daca28bb62806b32ae710bca449022c9cfc6253
|
@@ -17,7 +17,7 @@ jobs:
|
|
17
17
|
timeout-minutes: 20
|
18
18
|
strategy:
|
19
19
|
matrix:
|
20
|
-
ruby: [ 2.4, 2.5, 2.6, 2.7, '3.0', ruby-head, jruby-9.2 ]
|
20
|
+
ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', 'ruby-head', 'jruby-9.2' ]
|
21
21
|
steps:
|
22
22
|
- name: Checkout twilio-ruby
|
23
23
|
uses: actions/checkout@v2
|
@@ -115,7 +115,7 @@ jobs:
|
|
115
115
|
env:
|
116
116
|
SLACK_COLOR: failure
|
117
117
|
SLACK_ICON_EMOJI: ':github:'
|
118
|
-
SLACK_MESSAGE: ${{ format('
|
118
|
+
SLACK_MESSAGE: ${{ format('Test *{0}*, Deploy *{1}*, {2}/{3}/actions/runs/{4}', needs.test.result, needs.deploy.result, github.server_url, github.repository, github.run_id) }}
|
119
119
|
SLACK_TITLE: Action Failure - ${{ github.repository }}
|
120
120
|
SLACK_USERNAME: GitHub Actions
|
121
121
|
SLACK_MSG_AUTHOR: twilio-dx
|
data/CHANGES.md
CHANGED
@@ -1,6 +1,37 @@
|
|
1
1
|
twilio-ruby changelog
|
2
2
|
=====================
|
3
3
|
|
4
|
+
[2022-02-09] Version 5.64.0
|
5
|
+
---------------------------
|
6
|
+
**Library - Chore**
|
7
|
+
- [PR #594](https://github.com/twilio/twilio-ruby/pull/594): upgrade supported language versions. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
8
|
+
|
9
|
+
**Api**
|
10
|
+
- Add `stream` resource
|
11
|
+
|
12
|
+
**Conversations**
|
13
|
+
- Fixed DELETE request to accept "sid_like" params in Address Configuration resources **(breaking change)**
|
14
|
+
- Expose Address Configuration resource for `sms` and `whatsapp`
|
15
|
+
|
16
|
+
**Fax**
|
17
|
+
- Removed deprecated Programmable Fax Create and Update methods **(breaking change)**
|
18
|
+
|
19
|
+
**Insights**
|
20
|
+
- Rename `call_state` to `call_status` and remove `whisper` in conference participant summary **(breaking change)**
|
21
|
+
|
22
|
+
**Numbers**
|
23
|
+
- Expose valid_until filters as part of provisionally-approved compliance feature on the List Bundles resource
|
24
|
+
|
25
|
+
**Supersim**
|
26
|
+
- Fix typo in Fleet resource docs
|
27
|
+
- Updated documentation for the Fleet resource indicating that fields related to commands have been deprecated and to use sms_command fields instead.
|
28
|
+
- Add support for setting and reading `ip_commands_url` and `ip_commands_method` on Fleets resource for helper libraries
|
29
|
+
- Changed `sim` property in requests to create an SMS Command made to the /SmsCommands to accept SIM UniqueNames in addition to SIDs
|
30
|
+
|
31
|
+
**Verify**
|
32
|
+
- Update list attempts API to include new filters and response fields.
|
33
|
+
|
34
|
+
|
4
35
|
[2022-01-26] Version 5.63.1
|
5
36
|
---------------------------
|
6
37
|
**Library - Fix**
|
data/README.md
CHANGED
@@ -25,6 +25,7 @@ This library supports the following Ruby implementations:
|
|
25
25
|
* Ruby 2.6
|
26
26
|
* Ruby 2.7
|
27
27
|
* Ruby 3.0
|
28
|
+
* Ruby 3.1
|
28
29
|
|
29
30
|
### Migrating from 4.x
|
30
31
|
|
@@ -35,13 +36,13 @@ This library supports the following Ruby implementations:
|
|
35
36
|
To install using [Bundler][bundler] grab the latest stable version:
|
36
37
|
|
37
38
|
```ruby
|
38
|
-
gem 'twilio-ruby', '~> 5.
|
39
|
+
gem 'twilio-ruby', '~> 5.64.0'
|
39
40
|
```
|
40
41
|
|
41
42
|
To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
|
42
43
|
|
43
44
|
```bash
|
44
|
-
gem install twilio-ruby -v 5.
|
45
|
+
gem install twilio-ruby -v 5.64.0
|
45
46
|
```
|
46
47
|
|
47
48
|
To build and install the development branch yourself from the latest source:
|