twilio-ruby 5.61.0 → 5.63.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/{deploy.yml → test-and-deploy.yml} +55 -18
- data/.gitignore +1 -0
- data/.rubocop.yml +1 -1
- data/CHANGES.md +98 -0
- data/Makefile +3 -3
- data/README.md +4 -4
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +3 -3
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +19 -5
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb +269 -0
- data/lib/twilio-ruby/rest/conversations/v1/service/configuration.rb +8 -0
- data/lib/twilio-ruby/rest/flex_api/v1/configuration.rb +14 -0
- data/lib/twilio-ruby/rest/frontline_api/v1/user.rb +31 -6
- data/lib/twilio-ruby/rest/insights/v1/setting.rb +215 -0
- data/lib/twilio-ruby/rest/insights/v1.rb +7 -0
- data/lib/twilio-ruby/rest/insights.rb +6 -0
- data/lib/twilio-ruby/rest/media/v1/media_processor.rb +14 -1
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration/brand_vetting.rb +84 -3
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +24 -2
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb +80 -0
- data/lib/twilio-ruby/rest/supersim/v1/ip_command.rb +416 -0
- data/lib/twilio-ruby/rest/supersim/v1.rb +16 -0
- data/lib/twilio-ruby/rest/supersim.rb +9 -0
- data/lib/twilio-ruby/rest/verify/v2/service/access_token.rb +8 -2
- data/lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb +12 -2
- data/lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb +2 -2
- data/lib/twilio-ruby/rest/video/v1/composition.rb +7 -0
- data/lib/twilio-ruby/rest/video/v1/recording.rb +7 -0
- data/lib/twilio-ruby/rest/video/v1/room/recording.rb +7 -0
- data/lib/twilio-ruby/rest/video/v1/room.rb +34 -1
- data/lib/twilio-ruby/rest/voice/v1/archived_call.rb +184 -0
- data/lib/twilio-ruby/rest/voice/v1.rb +21 -0
- data/lib/twilio-ruby/rest/voice.rb +8 -0
- data/lib/twilio-ruby/rest/wireless/v1/sim.rb +4 -4
- data/lib/twilio-ruby/twiml/voice_response.rb +613 -36
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +7 -9
- data/.github/workflows/test.yml +0 -51
- data/.yardoc/checksums +0 -532
- data/.yardoc/complete +0 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
data/lib/twilio-ruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twilio-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.63.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Twilio API Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -212,16 +212,10 @@ extra_rdoc_files:
|
|
212
212
|
- LICENSE
|
213
213
|
files:
|
214
214
|
- ".dockerignore"
|
215
|
-
- ".github/workflows/deploy.yml"
|
216
|
-
- ".github/workflows/test.yml"
|
215
|
+
- ".github/workflows/test-and-deploy.yml"
|
217
216
|
- ".gitignore"
|
218
217
|
- ".rubocop.yml"
|
219
218
|
- ".rubocop_todo.yml"
|
220
|
-
- ".yardoc/checksums"
|
221
|
-
- ".yardoc/complete"
|
222
|
-
- ".yardoc/object_types"
|
223
|
-
- ".yardoc/objects/root.dat"
|
224
|
-
- ".yardoc/proxy_types"
|
225
219
|
- AUTHORS.md
|
226
220
|
- CHANGES.md
|
227
221
|
- CODE_OF_CONDUCT.md
|
@@ -411,6 +405,7 @@ files:
|
|
411
405
|
- lib/twilio-ruby/rest/conversations/v1/service/binding.rb
|
412
406
|
- lib/twilio-ruby/rest/conversations/v1/service/configuration.rb
|
413
407
|
- lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb
|
408
|
+
- lib/twilio-ruby/rest/conversations/v1/service/configuration/webhook.rb
|
414
409
|
- lib/twilio-ruby/rest/conversations/v1/service/conversation.rb
|
415
410
|
- lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb
|
416
411
|
- lib/twilio-ruby/rest/conversations/v1/service/conversation/message/delivery_receipt.rb
|
@@ -454,6 +449,7 @@ files:
|
|
454
449
|
- lib/twilio-ruby/rest/insights/v1/call_summaries.rb
|
455
450
|
- lib/twilio-ruby/rest/insights/v1/room.rb
|
456
451
|
- lib/twilio-ruby/rest/insights/v1/room/participant.rb
|
452
|
+
- lib/twilio-ruby/rest/insights/v1/setting.rb
|
457
453
|
- lib/twilio-ruby/rest/ip_messaging.rb
|
458
454
|
- lib/twilio-ruby/rest/ip_messaging/v1.rb
|
459
455
|
- lib/twilio-ruby/rest/ip_messaging/v1/credential.rb
|
@@ -642,6 +638,7 @@ files:
|
|
642
638
|
- lib/twilio-ruby/rest/supersim/v1.rb
|
643
639
|
- lib/twilio-ruby/rest/supersim/v1/command.rb
|
644
640
|
- lib/twilio-ruby/rest/supersim/v1/fleet.rb
|
641
|
+
- lib/twilio-ruby/rest/supersim/v1/ip_command.rb
|
645
642
|
- lib/twilio-ruby/rest/supersim/v1/network.rb
|
646
643
|
- lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb
|
647
644
|
- lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb
|
@@ -746,6 +743,7 @@ files:
|
|
746
743
|
- lib/twilio-ruby/rest/video/v1/room/room_recording_rule.rb
|
747
744
|
- lib/twilio-ruby/rest/voice.rb
|
748
745
|
- lib/twilio-ruby/rest/voice/v1.rb
|
746
|
+
- lib/twilio-ruby/rest/voice/v1/archived_call.rb
|
749
747
|
- lib/twilio-ruby/rest/voice/v1/byoc_trunk.rb
|
750
748
|
- lib/twilio-ruby/rest/voice/v1/connection_policy.rb
|
751
749
|
- lib/twilio-ruby/rest/voice/v1/connection_policy/connection_policy_target.rb
|
data/.github/workflows/test.yml
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
name: Tests
|
2
|
-
on:
|
3
|
-
push:
|
4
|
-
branches: [ '*' ]
|
5
|
-
pull_request:
|
6
|
-
branches: [ main ]
|
7
|
-
schedule:
|
8
|
-
# Run automatically at 8AM PST Monday-Friday
|
9
|
-
- cron: '0 15 * * 1-5'
|
10
|
-
workflow_dispatch:
|
11
|
-
|
12
|
-
jobs:
|
13
|
-
test:
|
14
|
-
name: Test
|
15
|
-
runs-on: ubuntu-latest
|
16
|
-
timeout-minutes: 20
|
17
|
-
strategy:
|
18
|
-
matrix:
|
19
|
-
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', ruby-head, jruby-9.2]
|
20
|
-
steps:
|
21
|
-
- name: Checkout twilio-ruby
|
22
|
-
uses: actions/checkout@v2
|
23
|
-
|
24
|
-
- name: Set up Ruby
|
25
|
-
uses: ruby/setup-ruby@v1
|
26
|
-
with:
|
27
|
-
ruby-version: ${{ matrix.ruby }}
|
28
|
-
bundler-cache: true
|
29
|
-
|
30
|
-
- run: bundle install --with development
|
31
|
-
- run: bundle exec rake install
|
32
|
-
- name: Run Unit Tests
|
33
|
-
run: make test
|
34
|
-
|
35
|
-
notify-on-failure:
|
36
|
-
name: Slack notify on failure
|
37
|
-
if: ${{ failure() && github.ref == 'refs/heads/main' && github.event_name != 'pull_request' }}
|
38
|
-
needs: [test]
|
39
|
-
runs-on: ubuntu-latest
|
40
|
-
steps:
|
41
|
-
- uses: rtCamp/action-slack-notify@v2
|
42
|
-
env:
|
43
|
-
SLACK_COLOR: ${{ needs.test.status }}
|
44
|
-
SLACK_ICON_EMOJI: ':github:'
|
45
|
-
SLACK_MESSAGE: ${{ format('Build {2} in {1} failed{3} {0}/{1}/actions/runs/{2}', github.server_url, github.repository, github.run_id, ':') }}
|
46
|
-
SLACK_TITLE: Build Failure
|
47
|
-
SLACK_USERNAME: GitHub Actions
|
48
|
-
SLACK_MSG_AUTHOR: twilio-dx
|
49
|
-
SLACK_FOOTER: Posted automatically using GitHub Actions
|
50
|
-
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
51
|
-
MSG_MINIMAL: true
|